aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2022-05-06 15:41:51 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2022-05-09 17:50:38 +0200
commit712a6647b1b3f397aa624fb50a1bac42550e9321 (patch)
tree6475d4b84d23da08350e7874070824651e05b191
parent52b910ebbdbeca5a423bdeb5bfa08a74f253ce23 (diff)
paging: Avoid queueing more than 60 second estimated requests
Reaching this point will only make system load (CPU, mem) grow, making it hard for the process to keep up with work to do, with no benefit since the requests will anyway be scheduled too late. Related: SYS#5922 Change-Id: I6523c6816a4d16b71084d004e979be40cf0aeeb0
-rw-r--r--include/osmocom/bsc/bts.h1
-rw-r--r--include/osmocom/bsc/paging.h2
-rw-r--r--src/osmo-bsc/bts.c3
-rw-r--r--src/osmo-bsc/paging.c18
-rw-r--r--tests/paging/paging_test.ok1500
5 files changed, 1517 insertions, 7 deletions
diff --git a/include/osmocom/bsc/bts.h b/include/osmocom/bsc/bts.h
index 9e50e2de1..77b54c947 100644
--- a/include/osmocom/bsc/bts.h
+++ b/include/osmocom/bsc/bts.h
@@ -55,6 +55,7 @@ enum bts_counter_id {
BTS_CTR_PAGING_EXPIRED,
BTS_CTR_PAGING_NO_ACTIVE_PAGING,
BTS_CTR_PAGING_MSC_FLUSH,
+ BTS_CTR_PAGING_OVERLOAD,
BTS_CTR_CHAN_ACT_TOTAL,
BTS_CTR_CHAN_ACT_SDCCH,
BTS_CTR_CHAN_ACT_TCH,
diff --git a/include/osmocom/bsc/paging.h b/include/osmocom/bsc/paging.h
index 9eddda0c7..819f47827 100644
--- a/include/osmocom/bsc/paging.h
+++ b/include/osmocom/bsc/paging.h
@@ -101,6 +101,8 @@ struct gsm_paging_request {
struct gsm_bts_paging_state {
/* pending requests */
struct llist_head pending_requests;
+ /* Number of requests in pending_requests_len */
+ unsigned int pending_requests_len;
struct gsm_bts *bts;
struct osmo_timer_list work_timer;
diff --git a/src/osmo-bsc/bts.c b/src/osmo-bsc/bts.c
index df8d93d5d..5489a3b88 100644
--- a/src/osmo-bsc/bts.c
+++ b/src/osmo-bsc/bts.c
@@ -1083,6 +1083,9 @@ const struct rate_ctr_desc bts_ctr_description[] = {
[BTS_CTR_PAGING_MSC_FLUSH] = \
{ "paging:msc_flush",
"Paging flushed due to MSC Reset BSSMAP message" },
+ [BTS_CTR_PAGING_OVERLOAD] = \
+ { "paging:overload",
+ "Paging dropped due to BSC Paging queue overload" },
[BTS_CTR_CHAN_ACT_TOTAL] = \
{ "chan_act:total",
"Total number of Channel Activations" },
diff --git a/src/osmo-bsc/paging.c b/src/osmo-bsc/paging.c
index 4cac64c4c..0445fda99 100644
--- a/src/osmo-bsc/paging.c
+++ b/src/osmo-bsc/paging.c
@@ -61,6 +61,8 @@ void *tall_paging_ctx = NULL;
/* How many paging requests to Tx on RSL at max before going back to main loop */
#define MAX_PAGE_REQ_PER_ITER 10
+#define MAX_TX_DELAY_TIME_SEC 60
+
/* How often to attempt sending new paging requests (initial, not retrans): 250ms */
static const struct timespec initial_period = {
.tv_sec = 0,
@@ -87,6 +89,7 @@ static void paging_remove_request(struct gsm_bts_paging_state *paging_bts,
to_be_deleted->bsub->active_paging_requests--;
osmo_timer_del(&to_be_deleted->T3113);
llist_del(&to_be_deleted->entry);
+ paging_bts->pending_requests_len--;
bsc_subscr_put(to_be_deleted->bsub, BSUB_USE_PAGING_REQUEST);
talloc_free(to_be_deleted);
if (llist_empty(&paging_bts->pending_requests))
@@ -400,6 +403,12 @@ static int _paging_request(const struct bsc_paging_params *params, struct gsm_bt
rate_ctr_inc(rate_ctr_group_get_ctr(bts->bts_ctrs, BTS_CTR_PAGING_ATTEMPTED));
+ /* don't try to queue more requests than we can realistically handle within MAX_TX_DELAY_TIME_SEC seconds */
+ if (paging_pending_requests_nr(bts) > paging_estimate_available_slots(bts, MAX_TX_DELAY_TIME_SEC)) {
+ rate_ctr_inc(rate_ctr_group_get_ctr(bts->bts_ctrs, BTS_CTR_PAGING_OVERLOAD));
+ return -ENOSPC;
+ }
+
/* Iterate list of pending requests to find if we already have one for
* the given subscriber. While on it, find the last
* not-yet-ever-once-transmitted request; the new request will be added
@@ -440,6 +449,7 @@ static int _paging_request(const struct bsc_paging_params *params, struct gsm_bt
req->msc = params->msc;
osmo_timer_setup(&req->T3113, paging_T3113_expired, req);
+ bts_entry->pending_requests_len++;
/* there's no initial req (attempts==0), add to the start of the list */
if (last_initial_req == NULL)
llist_add(&req->entry, &bts_entry->pending_requests);
@@ -611,13 +621,7 @@ void paging_update_buffer_space(struct gsm_bts *bts, uint16_t free_slots)
/*! Count the number of pending paging requests on given BTS */
unsigned int paging_pending_requests_nr(struct gsm_bts *bts)
{
- unsigned int requests = 0;
- struct gsm_paging_request *req;
-
- llist_for_each_entry(req, &bts->paging.pending_requests, entry)
- ++requests;
-
- return requests;
+ return bts->paging.pending_requests_len;
}
/*! Flush all paging requests at a given BTS for a given MSC (or NULL if all MSC should be flushed). */
diff --git a/tests/paging/paging_test.ok b/tests/paging/paging_test.ok
index 20b16ee9f..6b1f80430 100644
--- a/tests/paging/paging_test.ok
+++ b/tests/paging/paging_test.ok
@@ -1,1008 +1,1508 @@
===test_paging500===
(bts=0) Estimated 76 paging available_slots over 2 seconds
BTS allocation OK in test_paging500()
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Paging request: T3113 expires in 9 seconds
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000000
(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=75)
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Paging request: T3113 expires in 9 seconds
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) New req arrived: re-scheduling next batch in 0.250000s
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) Paging request: T3113 expires in 13 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000303: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000303: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000304: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000304: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000305: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000305: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000312: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000312: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000313: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000313: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000314: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000314: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000330: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000330: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Paging request: T3113 expires in 20 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Paging request: T3113 expires in 20 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Paging request: T3113 expires in 20 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Paging request: T3113 expires in 20 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000360: (bts=0) Paging request: T3113 expires in 20 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000361: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000361: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000362: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000362: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000367: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000367: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000368: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000368: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000369: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000369: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000377: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000377: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000378: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000378: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000399: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000399: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000400: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000408: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000408: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000409: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000409: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000424: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000424: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000425: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000425: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000426: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000426: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000447: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000447: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000448: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000448: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000449: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000449: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000464: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000464: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000465: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000465: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000473: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000473: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000474: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000474: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000495: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000495: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000496: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000496: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Paging request: T3113 expires in 25 seconds
sys={0.250000}: select()
@@ -2643,1008 +3143,1508 @@ BTS deallocated OK in test_paging500()
(bts=0) Estimated 76 paging available_slots over 2 seconds
BTS allocation OK in test_paging500_samepgroup()
Number of paging groups: 40
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) Paging request: T3113 expires in 9 seconds
(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-123400000000
(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=75)
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) Paging request: T3113 expires in 9 seconds
(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) New req arrived: re-scheduling next batch in 0.250000s
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000080: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000120: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000160: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000200: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000240: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000280: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000320: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000360: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000400: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000440: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000480: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000520: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000560: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000600: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000640: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000680: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000720: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000760: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000800: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000840: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000880: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000920: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400000960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400000960: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001000: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001040: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001080: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001120: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001160: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001200: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001240: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001280: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001320: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001360: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001400: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001440: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001480: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001520: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001560: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001600: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001640: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001680: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001720: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001760: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001800: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001840: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001880: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001920: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400001960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400001960: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002000: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002040: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002080: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002120: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002160: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002200: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002240: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002280: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002320: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002360: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002400: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002440: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002480: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002520: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002560: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002600: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002640: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002680: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002720: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002760: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002800: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002840: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002880: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002920: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400002960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400002960: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003000: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003040: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003080: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003120: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003160: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003200: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003240: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003280: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003320: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003360: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003400: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003440: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003480: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003520: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003560: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003600: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003640: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003680: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003720: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003760: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003800: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003840: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003880: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003920: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400003960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400003960: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004000: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004040: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004080: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004120: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004160: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004200: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004240: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004280: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004320: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004360: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004400: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004440: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004480: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004520: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004560: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004600: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004640: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004680: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004720: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004760: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004800: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004840: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004880: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004920: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400004960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400004960: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005000: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005040: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005080: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005120: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005160: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005200: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005240: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005280: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005320: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005360: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005400: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005440: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005480: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005520: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005560: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005600: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005640: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005680: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005720: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005760: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005800: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005840: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005880: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005920: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400005960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400005960: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006000: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006040: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006080: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006120: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006160: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006200: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006240: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006280: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006320: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006360: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006400: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006440: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006480: (bts=0) Paging request: T3113 expires in 38 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006520: (bts=0) Paging request: T3113 expires in 38 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006560: (bts=0) Paging request: T3113 expires in 38 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006600: (bts=0) Paging request: T3113 expires in 38 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006640: (bts=0) Paging request: T3113 expires in 38 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006680: (bts=0) Paging request: T3113 expires in 38 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006720: (bts=0) Paging request: T3113 expires in 38 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006760: (bts=0) Paging request: T3113 expires in 38 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006800: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006840: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006880: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006920: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400006960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400006960: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007000: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007040: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007080: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007120: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007160: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007200: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007240: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007280: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007320: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007360: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007400: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007440: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007480: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007520: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007560: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007600: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007640: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007680: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007720: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007760: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007800: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007840: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007880: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007920: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400007960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400007960: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008000: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008040: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008080: (bts=0) Paging request: T3113 expires in 45 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008120: (bts=0) Paging request: T3113 expires in 45 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008160: (bts=0) Paging request: T3113 expires in 45 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008200: (bts=0) Paging request: T3113 expires in 45 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008240: (bts=0) Paging request: T3113 expires in 45 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008280: (bts=0) Paging request: T3113 expires in 45 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008320: (bts=0) Paging request: T3113 expires in 45 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008360: (bts=0) Paging request: T3113 expires in 45 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008400: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008440: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008480: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008520: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008560: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008600: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008640: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008680: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008720: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008760: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008800: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008840: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008880: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008920: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400008960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400008960: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009000: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009040: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009080: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009120: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009160: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009200: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009240: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009280: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009320: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009360: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009400: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009440: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009480: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009520: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009560: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009600: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009640: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009680: (bts=0) Paging request: T3113 expires in 52 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009720: (bts=0) Paging request: T3113 expires in 52 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009760: (bts=0) Paging request: T3113 expires in 52 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009800: (bts=0) Paging request: T3113 expires in 52 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009840: (bts=0) Paging request: T3113 expires in 52 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009880: (bts=0) Paging request: T3113 expires in 52 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009920: (bts=0) Paging request: T3113 expires in 52 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400009960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400009960: (bts=0) Paging request: T3113 expires in 52 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010000: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010040: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010080: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010120: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010160: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010200: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010240: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010280: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010320: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010360: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010400: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010440: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010480: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010520: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010560: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010600: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010640: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010680: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010720: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010760: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010800: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010840: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010880: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010920: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400010960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400010960: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011000: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011040: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011080: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011120: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011160: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011200: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011240: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011280: (bts=0) Paging request: T3113 expires in 59 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011320: (bts=0) Paging request: T3113 expires in 59 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011360: (bts=0) Paging request: T3113 expires in 59 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011400: (bts=0) Paging request: T3113 expires in 59 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011440: (bts=0) Paging request: T3113 expires in 59 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011480: (bts=0) Paging request: T3113 expires in 59 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011520: (bts=0) Paging request: T3113 expires in 59 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011560: (bts=0) Paging request: T3113 expires in 59 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011600: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011640: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011680: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011720: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011760: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011800: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011840: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011880: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011920: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400011960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400011960: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012000: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012040: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012080: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012120: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012160: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012200: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012240: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012280: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012320: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012360: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012400: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012440: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012480: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012520: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012560: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012600: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012640: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012680: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012720: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012760: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012800: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012840: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012880: (bts=0) Paging request: T3113 expires in 66 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012920: (bts=0) Paging request: T3113 expires in 66 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400012960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400012960: (bts=0) Paging request: T3113 expires in 66 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013000: (bts=0) Paging request: T3113 expires in 66 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013040: (bts=0) Paging request: T3113 expires in 66 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013080: (bts=0) Paging request: T3113 expires in 66 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013120: (bts=0) Paging request: T3113 expires in 66 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013160: (bts=0) Paging request: T3113 expires in 66 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013200: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013240: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013280: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013320: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013360: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013400: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013440: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013480: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013520: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013560: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013600: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013640: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013680: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013720: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013760: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013800: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013840: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013880: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013920: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400013960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400013960: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014000: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014040: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014080: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014120: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014160: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014200: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014240: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014280: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014320: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014360: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014400: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014440: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014480: (bts=0) Paging request: T3113 expires in 73 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014520: (bts=0) Paging request: T3113 expires in 73 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014560: (bts=0) Paging request: T3113 expires in 73 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014600: (bts=0) Paging request: T3113 expires in 73 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014640: (bts=0) Paging request: T3113 expires in 73 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014680: (bts=0) Paging request: T3113 expires in 73 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014720: (bts=0) Paging request: T3113 expires in 73 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014760: (bts=0) Paging request: T3113 expires in 73 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014800: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014840: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014880: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014920: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400014960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400014960: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015000: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015040: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015080: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015120: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015160: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015200: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015240: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015280: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015320: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015360: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015400: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015440: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015480: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015520: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015560: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015600: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015640: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015680: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015720: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015760: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015800: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015840: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015880: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015920: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400015960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400015960: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016000: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016040: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016080: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016120: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016160: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016200: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016240: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016280: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016320: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016360: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016400: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016440: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016480: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016520: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016560: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016600: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016640: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016680: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016720: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016760: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016800: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016840: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016880: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016920: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400016960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400016960: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017000: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017040: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017080: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017120: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017160: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017200: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017240: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017280: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017320: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017360: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017400: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017440: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017480: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017520: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017560: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017600: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017640: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017680: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017720: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017760: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017800: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017840: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017880: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017920: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400017960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400017960: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018000: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018040: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018080: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018120: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018160: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018200: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018240: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018280: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018320: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018360: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018400: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018440: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018480: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018520: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018560: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018600: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018640: (bts=0) Paging request: T3113 expires in 91 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018680: (bts=0) Paging request: T3113 expires in 91 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018720: (bts=0) Paging request: T3113 expires in 91 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018760: (bts=0) Paging request: T3113 expires in 91 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018800: (bts=0) Paging request: T3113 expires in 91 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018840: (bts=0) Paging request: T3113 expires in 91 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018880: (bts=0) Paging request: T3113 expires in 91 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018920: (bts=0) Paging request: T3113 expires in 91 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400018960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400018960: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019000: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019040: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019080: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019120: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019160: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019200: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019240: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019280: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019320: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019360: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019400: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019440: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019480: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019520: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019520: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019560: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019560: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019600: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019600: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019640: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019640: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019680: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019680: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019720: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019720: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019760: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019760: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019800: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019800: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019840: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019840: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019880: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019880: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019920: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019920: (bts=0) Paging request: T3113 expires in 97 seconds
+(bts=0) Estimated 2039 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-123400019960: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-123400019960: (bts=0) Paging request: T3113 expires in 97 seconds
sys={0.250000}: select()
@@ -5284,1008 +6284,1508 @@ BTS deallocated OK in test_paging500_samepgroup()
===test_paging500_combined===
(bts=0) Estimated 76 paging available_slots over 2 seconds
BTS allocation OK in test_paging500_combined()
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Paging request: T3113 expires in 9 seconds
(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) Going to send paging command for ch. type 0 (attempt 0)
abis_rsl_sendmsg: Paging CMD IMSI-1234000000
(bts=0) Paged 1 subscribers during last iteration. Scheduling next batch in 0.250000s (available_slots=75)
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Paging request: T3113 expires in 9 seconds
(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) New req arrived: re-scheduling next batch in 0.250000s
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) Paging request: T3113 expires in 9 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) Paging request: T3113 expires in 10 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) Paging request: T3113 expires in 11 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) Paging request: T3113 expires in 12 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) Paging request: T3113 expires in 14 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) Paging request: T3113 expires in 15 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) Paging request: T3113 expires in 16 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) Paging request: T3113 expires in 17 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) Paging request: T3113 expires in 18 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) Paging request: T3113 expires in 19 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) Paging request: T3113 expires in 20 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) Paging request: T3113 expires in 21 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) Paging request: T3113 expires in 22 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) Paging request: T3113 expires in 23 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) Paging request: T3113 expires in 24 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) Paging request: T3113 expires in 25 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) Paging request: T3113 expires in 26 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) Paging request: T3113 expires in 27 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Paging request: T3113 expires in 28 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Paging request: T3113 expires in 29 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) Paging request: T3113 expires in 30 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) Paging request: T3113 expires in 32 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) Paging request: T3113 expires in 33 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) Paging request: T3113 expires in 34 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) Paging request: T3113 expires in 34 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) Paging request: T3113 expires in 35 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) Paging request: T3113 expires in 36 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) Paging request: T3113 expires in 37 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) Paging request: T3113 expires in 37 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) Paging request: T3113 expires in 37 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) Paging request: T3113 expires in 37 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) Paging request: T3113 expires in 37 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) Paging request: T3113 expires in 37 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) Paging request: T3113 expires in 39 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Paging request: T3113 expires in 40 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Paging request: T3113 expires in 41 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Paging request: T3113 expires in 41 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Paging request: T3113 expires in 42 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Paging request: T3113 expires in 43 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Paging request: T3113 expires in 44 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) Paging request: T3113 expires in 44 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) Paging request: T3113 expires in 44 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) Paging request: T3113 expires in 44 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) Paging request: T3113 expires in 44 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) Paging request: T3113 expires in 44 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Paging request: T3113 expires in 44 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) Paging request: T3113 expires in 46 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Paging request: T3113 expires in 47 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) Paging request: T3113 expires in 48 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Paging request: T3113 expires in 48 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Paging request: T3113 expires in 48 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) Paging request: T3113 expires in 49 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Paging request: T3113 expires in 50 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) Paging request: T3113 expires in 51 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) Paging request: T3113 expires in 51 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) Paging request: T3113 expires in 51 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) Paging request: T3113 expires in 51 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) Paging request: T3113 expires in 51 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) Paging request: T3113 expires in 51 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) Paging request: T3113 expires in 51 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) Paging request: T3113 expires in 53 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Paging request: T3113 expires in 54 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Paging request: T3113 expires in 55 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Paging request: T3113 expires in 55 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Paging request: T3113 expires in 55 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Paging request: T3113 expires in 56 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Paging request: T3113 expires in 57 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Paging request: T3113 expires in 58 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Paging request: T3113 expires in 58 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Paging request: T3113 expires in 58 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Paging request: T3113 expires in 58 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Paging request: T3113 expires in 58 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Paging request: T3113 expires in 58 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Paging request: T3113 expires in 58 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Paging request: T3113 expires in 58 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Paging request: T3113 expires in 60 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000303: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000303: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000304: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000304: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000305: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000305: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Paging request: T3113 expires in 61 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Paging request: T3113 expires in 62 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000312: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000312: (bts=0) Paging request: T3113 expires in 63 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000313: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000313: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000314: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000314: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Paging request: T3113 expires in 64 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Paging request: T3113 expires in 65 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Paging request: T3113 expires in 65 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Paging request: T3113 expires in 65 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Paging request: T3113 expires in 65 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Paging request: T3113 expires in 65 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Paging request: T3113 expires in 65 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Paging request: T3113 expires in 65 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000330: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000330: (bts=0) Paging request: T3113 expires in 65 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Paging request: T3113 expires in 67 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Paging request: T3113 expires in 68 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Paging request: T3113 expires in 69 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Paging request: T3113 expires in 70 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000360: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000360: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000361: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000361: (bts=0) Paging request: T3113 expires in 71 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000362: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000362: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000367: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000367: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000368: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000368: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000369: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000369: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Paging request: T3113 expires in 72 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Paging request: T3113 expires in 74 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000377: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000377: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000378: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000378: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Paging request: T3113 expires in 75 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Paging request: T3113 expires in 76 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Paging request: T3113 expires in 77 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000399: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000399: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000400: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000400: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Paging request: T3113 expires in 78 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Paging request: T3113 expires in 79 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Paging request: T3113 expires in 79 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Paging request: T3113 expires in 79 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Paging request: T3113 expires in 79 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Paging request: T3113 expires in 79 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Paging request: T3113 expires in 79 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000408: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000408: (bts=0) Paging request: T3113 expires in 79 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000409: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000409: (bts=0) Paging request: T3113 expires in 79 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Paging request: T3113 expires in 80 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Paging request: T3113 expires in 81 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000424: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000424: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000425: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000425: (bts=0) Paging request: T3113 expires in 82 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000426: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000426: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Paging request: T3113 expires in 83 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Paging request: T3113 expires in 84 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Paging request: T3113 expires in 85 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Paging request: T3113 expires in 85 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Paging request: T3113 expires in 85 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Paging request: T3113 expires in 85 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Paging request: T3113 expires in 85 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Paging request: T3113 expires in 85 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Paging request: T3113 expires in 85 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Paging request: T3113 expires in 85 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000447: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000447: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000448: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000448: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000449: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000449: (bts=0) Paging request: T3113 expires in 86 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Paging request: T3113 expires in 87 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Paging request: T3113 expires in 88 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000464: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000464: (bts=0) Paging request: T3113 expires in 89 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000465: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000465: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Paging request: T3113 expires in 90 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Paging request: T3113 expires in 92 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Paging request: T3113 expires in 92 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000473: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000473: (bts=0) Paging request: T3113 expires in 92 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000474: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000474: (bts=0) Paging request: T3113 expires in 92 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Paging request: T3113 expires in 92 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Paging request: T3113 expires in 92 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Paging request: T3113 expires in 92 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Paging request: T3113 expires in 92 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Paging request: T3113 expires in 93 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Paging request: T3113 expires in 94 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Paging request: T3113 expires in 95 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000495: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000495: (bts=0) Paging request: T3113 expires in 96 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000496: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000496: (bts=0) Paging request: T3113 expires in 96 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Paging request: T3113 expires in 96 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Paging request: T3113 expires in 96 seconds
+(bts=0) Estimated 509 paging available_slots over 60 seconds
(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Start paging
(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Paging request: T3113 expires in 96 seconds
sys={0.250000}: select()