diff --git a/configure.ac b/configure.ac index 3ff4524b5..85d7c5952 100644 --- a/configure.ac +++ b/configure.ac @@ -237,6 +237,7 @@ AC_OUTPUT( tests/gsm0408/Makefile tests/handover/Makefile tests/nanobts_omlattr/Makefile + tests/paging/Makefile tests/subscr/Makefile doc/Makefile doc/examples/Makefile diff --git a/tests/Makefile.am b/tests/Makefile.am index 03ba2121b..fcfc4eaf1 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -6,6 +6,7 @@ SUBDIRS = \ gsm0408 \ handover \ nanobts_omlattr \ + paging \ subscr \ $(NULL) diff --git a/tests/paging/Makefile.am b/tests/paging/Makefile.am new file mode 100644 index 000000000..5472c489a --- /dev/null +++ b/tests/paging/Makefile.am @@ -0,0 +1,38 @@ +AM_CPPFLAGS = \ + $(all_includes) \ + -I$(top_srcdir)/include \ + $(NULL) + +AM_CFLAGS = \ + -Wall \ + -ggdb3 \ + $(LIBOSMOCORE_CFLAGS) \ + $(LIBOSMOGSM_CFLAGS) \ + $(LIBOSMOABIS_CFLAGS) \ + $(LIBOSMONETIF_CFLAGS) \ + $(LIBOSMOSIGTRAN_CFLAGS) \ + $(COVERAGE_CFLAGS) \ + $(NULL) + +EXTRA_DIST = \ + paging_test.ok \ + $(NULL) + +check_PROGRAMS = \ + paging_test \ + $(NULL) + +paging_test_SOURCES = \ + paging_test.c \ + $(NULL) + +paging_test_LDFLAGS = \ + -Wl,--wrap=abis_rsl_sendmsg \ + $(NULL) + +paging_test_LDADD = \ + $(top_builddir)/src/osmo-bsc/libbsc.la \ + $(LIBOSMOCORE_LIBS) \ + $(LIBOSMOABIS_LIBS) \ + $(LIBOSMOGSM_LIBS) \ + $(NULL) diff --git a/tests/paging/paging_test.c b/tests/paging/paging_test.c new file mode 100644 index 000000000..5979e93e9 --- /dev/null +++ b/tests/paging/paging_test.c @@ -0,0 +1,286 @@ +/* + * (C) 2022 by sysmocom s.f.m.c. GmbH + * All Rights Reserved + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +struct timespec *clk_monotonic_override; +unsigned int _sent_pg_cmd_rsl; + +static void clock_debug(char *str) +{ + struct timeval tv; + osmo_gettimeofday(&tv, NULL); + fprintf(stderr, "sys={%lu.%06lu}: %s\n", + tv.tv_sec, tv.tv_usec, str); +} + + +static void clock_set(uint64_t sec, uint64_t usec) +{ + osmo_gettimeofday_override_time.tv_sec = sec; + osmo_gettimeofday_override_time.tv_usec = usec; + clk_monotonic_override->tv_sec = sec; + clk_monotonic_override->tv_nsec = usec * 1000; +} + +static void clock_inc(unsigned int sec, unsigned int usec) +{ + osmo_gettimeofday_override_add(sec, usec); + osmo_clock_override_add(CLOCK_MONOTONIC, sec, usec * 1000); +} + +#define bts_init(net) _bts_init(net, __func__) +static inline struct gsm_bts *_bts_init(struct gsm_network *net, const char *msg) +{ + struct gsm_bts_sm *bts_sm = gsm_bts_sm_alloc(net, 0); + struct gsm_bts *bts = bts_sm->bts[0]; + if (!bts) { + fprintf(stderr, "BTS allocation failure in %s()\n", msg); + exit(1); + } + fprintf(stderr, "BTS allocation OK in %s()\n", msg); + + bts->network = net; + + /* Make sure trx_is_usable() returns true for bts->c0: */ + bts->c0->mo.nm_state.operational = NM_OPSTATE_ENABLED; + bts->c0->mo.nm_state.availability = NM_AVSTATE_OK; + bts->c0->mo.nm_state.administrative = NM_STATE_UNLOCKED; + bts->c0->bb_transc.mo.nm_state.operational = NM_OPSTATE_ENABLED; + bts->c0->bb_transc.mo.nm_state.availability = NM_AVSTATE_OK; + bts->c0->bb_transc.mo.nm_state.administrative = NM_STATE_UNLOCKED; + bts->c0->rsl_link_primary = (struct e1inp_sign_link *)(intptr_t)0x01; /* Fake RSL is UP */ + + return bts; +} + +#define bts_del(bts) _bts_del(bts, __func__) +static inline void _bts_del(struct gsm_bts *bts, const char *msg) +{ + /* no need to llist_del(&bts->list), we never registered the bts there. */ + talloc_free(bts->site_mgr); + fprintf(stderr, "BTS deallocated OK in %s()\n", msg); +} + +static void emu_bsc_paging_cmd_from_msc(struct gsm_network *net, struct gsm_bts *bts, const char *imsi) +{ + int ret; + struct bsc_paging_params params = { + .reason = BSC_PAGING_FROM_CN, + .msc = NULL, + .tmsi = GSM_RESERVED_TMSI, + .imsi = { + .type = GSM_MI_TYPE_IMSI, + } + }; + OSMO_STRLCPY_ARRAY(params.imsi.imsi, imsi); + params.bsub = bsc_subscr_find_or_create_by_imsi(net->bsc_subscribers, params.imsi.imsi, + BSUB_USE_PAGING_START); + ret = paging_request_bts(¶ms, bts); + OSMO_ASSERT(ret == 1); +} + +static void test_paging500(struct gsm_network *net) +{ + fprintf(stderr, "===%s===\n", __func__); + int i; + clock_set(0, 0); + _sent_pg_cmd_rsl = 0; + struct gsm_bts *bts = bts_init(net); + + for (i = 0; i < 500; i++) { + char imsi[32]; + snprintf(imsi, sizeof(imsi), "1234%06u", i); + emu_bsc_paging_cmd_from_msc(net, bts, imsi); + } + + while (_sent_pg_cmd_rsl < 500) { + osmo_timers_prepare(); + int nearest_ms = osmo_timers_nearest_ms(); + if (nearest_ms == -1) + nearest_ms = 250; + clock_inc(0, nearest_ms*1000); + clock_debug("select()"); + osmo_select_main_ctx(0); + if (llist_empty(&bts->paging.pending_requests)) { + fprintf(stderr, "ERROR: some request timed out before being sent! %u\n", _sent_pg_cmd_rsl); + OSMO_ASSERT(0); + } + } + + bts_del(bts); +} + +static void test_paging500_combined(struct gsm_network *net) +{ + fprintf(stderr, "===%s===\n", __func__); + int i; + clock_set(0, 0); + _sent_pg_cmd_rsl = 0; + struct gsm_bts *bts = bts_init(net); + bts->si_common.chan_desc.ccch_conf = RSL_BCCH_CCCH_CONF_1_C; + + for (i = 0; i < 500; i++) { + char imsi[32]; + snprintf(imsi, sizeof(imsi), "1234%06u", i); + emu_bsc_paging_cmd_from_msc(net, bts, imsi); + } + + while (_sent_pg_cmd_rsl < 500) { + osmo_timers_prepare(); + int nearest_ms = osmo_timers_nearest_ms(); + if (nearest_ms == -1) + nearest_ms = 250; + clock_inc(0, nearest_ms*1000); + clock_debug("select()"); + osmo_select_main_ctx(0); + if (llist_empty(&bts->paging.pending_requests)) { + fprintf(stderr, "ERROR: some request timed out before being sent! %u\n", _sent_pg_cmd_rsl); + OSMO_ASSERT(0); + } + } + + bts_del(bts); +} + +static void test_paging500_samepgroup(struct gsm_network *net) +{ + fprintf(stderr, "===%s===\n", __func__); + int i; + clock_set(0, 0); + _sent_pg_cmd_rsl = 0; + struct gsm_bts *bts = bts_init(net); + + unsigned int num_pgroups = gsm48_number_of_paging_subchannels(&bts->si_common.chan_desc); + fprintf(stderr, "Number of paging groups: %u\n", num_pgroups); + + for (i = 0; i < 500; i++) { + char imsi[32]; + snprintf(imsi, sizeof(imsi), "1234%08u", i*num_pgroups); + emu_bsc_paging_cmd_from_msc(net, bts, imsi); + } + + while (_sent_pg_cmd_rsl < 500) { + osmo_timers_prepare(); + int nearest_ms = osmo_timers_nearest_ms(); + if (nearest_ms == -1) + nearest_ms = 250; + clock_inc(0, nearest_ms*1000); + clock_debug("select()"); + osmo_select_main_ctx(0); + if (llist_empty(&bts->paging.pending_requests)) { + fprintf(stderr, "ERROR: some request timed out before being sent! %u\n", _sent_pg_cmd_rsl); + OSMO_ASSERT(0); + } + } + + bts_del(bts); +} + +static const struct log_info_cat log_categories[] = { + [DPAG] = { + .name = "DPAG", + .description = "", + .enabled = 1, .loglevel = LOGL_NOTICE, + }, +}; + +static const struct log_info log_info = { + .cat = log_categories, + .num_cat = ARRAY_SIZE(log_categories), +}; + +int main(int argc, char **argv) +{ + struct gsm_network *net; + + osmo_gettimeofday_override = true; + osmo_clock_override_enable(CLOCK_MONOTONIC, true); + clk_monotonic_override = osmo_clock_override_gettimespec(CLOCK_MONOTONIC); + clock_set(0, 0); + + tall_bsc_ctx = talloc_named_const(NULL, 0, "paging_test"); + osmo_init_logging2(tall_bsc_ctx, &log_info); + log_set_log_level(osmo_stderr_target, LOGL_DEBUG); + log_set_print_category_hex(osmo_stderr_target, 0); + log_set_print_category(osmo_stderr_target, 0); + log_set_print_filename2(osmo_stderr_target, LOG_FILENAME_NONE); + log_set_use_color(osmo_stderr_target, 0); + log_parse_category_mask(osmo_stderr_target, "DPAG,1:"); + osmo_fsm_log_addr(false); + + bsc_network_alloc(); + net = bsc_gsmnet; + if (!net) { + fprintf(stderr, "Network init failure.\n"); + return EXIT_FAILURE; + } + + test_paging500(net); + test_paging500_samepgroup(net); + test_paging500_combined(net); + + return EXIT_SUCCESS; +} + +/* override, requires '-Wl,--wrap=abis_rsl_sendmsg'. + * Catch RSL messages sent towards the BTS. */ +int __real_abis_rsl_sendmsg(struct msgb *msg); +int __wrap_abis_rsl_sendmsg(struct msgb *msg) +{ + struct abis_rsl_cchan_hdr *cch = (struct abis_rsl_cchan_hdr *) msg->data; + struct tlv_parsed tp; + struct osmo_mobile_identity mi; + int rc; + char mi_str[64]; + + switch (cch->c.msg_type) { + case RSL_MT_PAGING_CMD: + if (rsl_tlv_parse(&tp, msgb_data(msg) + sizeof(*cch), msgb_length(msg) - sizeof(*cch)) < 0) { + LOGP(DRSL, LOGL_ERROR, "%s(): rsl_tlv_parse() failed\n", __func__); + OSMO_ASSERT(0); + } + rc = osmo_mobile_identity_decode(&mi, TLVP_VAL(&tp, RSL_IE_MS_IDENTITY), TLVP_LEN(&tp, RSL_IE_MS_IDENTITY), true); + OSMO_ASSERT(rc == 0); + mi_str[0] = '\0'; + osmo_mobile_identity_to_str_buf(mi_str, sizeof(mi_str), &mi); + fprintf(stderr, "abis_rsl_sendmsg: Paging CMD %s\n", mi_str); + _sent_pg_cmd_rsl++; + break; + default: + fprintf(stderr, "abis_rsl_sendmsg: unknown rsl message=0x%x\n", cch->c.msg_type); + } + msgb_free(msg); + return 0; +} diff --git a/tests/paging/paging_test.ok b/tests/paging/paging_test.ok new file mode 100644 index 000000000..39d654675 --- /dev/null +++ b/tests/paging/paging_test.ok @@ -0,0 +1,7991 @@ +===test_paging500=== +(bts=0) Estimated 76 paging available_slots over 2 seconds +BTS allocation OK in test_paging500() +(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 (available_slots=75) +(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-1234000002: (bts=0) Start paging +(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) Paging request: T3113 expires in 9 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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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() +(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000001 +(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000002 +(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000003 +(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000004 +(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000005 +(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000006 +(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000007 +(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000008 +(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000009 +(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000010 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=65) +sys={0.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000011 +(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000012 +(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000013 +(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000014 +(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000015 +(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000016 +(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000017 +(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000018 +(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000019 +(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000020 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=55) +sys={0.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000021 +(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000022 +(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000023 +(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000024 +(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000025 +(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000026 +(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000027 +(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000028 +(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000029 +(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000030 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=45) +sys={1.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000031 +(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000032 +(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000033 +(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000034 +(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000035 +(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000036 +(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000037 +(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000038 +(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000039 +(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000040 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=35) +sys={1.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000041 +(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000042 +(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000043 +(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000044 +(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000045 +(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000046 +(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000047 +(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000048 +(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000049 +(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000050 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=25) +sys={1.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000051 +(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000052 +(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000053 +(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000054 +(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000055 +(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000056 +(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000057 +(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000058 +(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000059 +(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000060 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=15) +sys={1.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000061 +(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000062 +(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000063 +(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000064 +(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000065 +(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000066 +(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000067 +(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000068 +(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000069 +(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000070 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=5) +sys={2.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000071 +(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000072 +(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000073 +(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000074 +(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000075 +(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Paging delayed: waiting for available slots at BTS +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000076 +(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000077 +(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000078 +(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000079 +(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000080 +(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000081 +(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000082 +(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000083 +(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000084 +(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000085 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={2.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000086 +(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000087 +(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000088 +(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000089 +(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000090 +(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000091 +(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000092 +(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000093 +(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000094 +(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000095 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={2.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000096 +(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000097 +(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000098 +(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000099 +(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000100 +(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000101 +(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000102 +(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000103 +(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000104 +(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000105 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={2.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000106 +(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000107 +(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000108 +(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000109 +(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000110 +(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000111 +(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000112 +(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000113 +(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000114 +(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000115 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={3.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000116 +(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000117 +(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000118 +(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000119 +(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000120 +(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000121 +(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000122 +(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000123 +(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000124 +(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000125 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +sys={3.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000126 +(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000127 +(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000128 +(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000129 +(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000130 +(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000131 +(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000132 +(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000133 +(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000134 +(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000135 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={3.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000136 +(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000137 +(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000138 +(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000139 +(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000140 +(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000141 +(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000142 +(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Paging delayed: waiting for available slots at BTS +sys={4.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000143 +(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000144 +(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000145 +(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000146 +(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000147 +(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000148 +(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000149 +(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000150 +(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000151 +(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000152 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={4.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000153 +(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000154 +(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000155 +(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000156 +(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000157 +(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000158 +(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000159 +(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000160 +(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000161 +(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000162 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={4.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000163 +(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000164 +(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000165 +(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000166 +(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000167 +(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000168 +(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000169 +(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000170 +(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000171 +(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000172 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={4.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000173 +(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000174 +(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000175 +(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000176 +(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000177 +(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000178 +(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000179 +(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000180 +(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000181 +(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000182 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={5.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000183 +(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000184 +(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000185 +(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000186 +(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000187 +(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000188 +(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000189 +(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000190 +(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000191 +(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000192 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +sys={5.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000193 +(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000194 +(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000195 +(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000196 +(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000197 +(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000198 +(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000199 +(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000200 +(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000201 +(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000202 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={5.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000203 +(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000204 +(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000205 +(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000206 +(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000207 +(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000208 +(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000209 +(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Paging delayed: waiting for available slots at BTS +sys={6.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000210 +(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000211 +(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000212 +(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000213 +(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000214 +(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000215 +(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000216 +(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000217 +(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000218 +(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000219 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={6.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000220 +(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000221 +(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000222 +(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000223 +(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000224 +(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000225 +(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000226 +(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000227 +(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000228 +(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000229 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={6.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000230 +(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000231 +(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000232 +(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000233 +(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000234 +(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000235 +(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000236 +(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000237 +(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000238 +(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000239 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={6.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000240 +(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000241 +(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000242 +(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000243 +(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000244 +(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000245 +(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000246 +(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000247 +(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000248 +(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000249 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={7.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000250 +(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000251 +(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000252 +(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000253 +(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000254 +(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000255 +(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000256 +(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000257 +(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000258 +(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000259 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +sys={7.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000260 +(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000261 +(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000262 +(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000263 +(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000264 +(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000265 +(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000266 +(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000267 +(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000268 +(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000269 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={7.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000270 +(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000271 +(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000272 +(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000273 +(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000274 +(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000275 +(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000276 +(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Paging delayed: waiting for available slots at BTS +sys={8.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000277 +(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000278 +(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000279 +(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000280 +(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000281 +(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000282 +(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000283 +(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000284 +(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000285 +(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000286 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={8.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000287 +(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000288 +(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000289 +(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000290 +(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000291 +(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000292 +(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000293 +(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000294 +(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000295 +(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000296 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={8.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000297 +(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000298 +(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000299 +(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000300 +(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000301 +(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000302 +(msc=-1) Paging: subscr-IMSI-1234000303: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000303 +(msc=-1) Paging: subscr-IMSI-1234000304: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000304 +(msc=-1) Paging: subscr-IMSI-1234000305: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000305 +(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000306 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={8.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000307 +(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000308 +(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000309 +(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000310 +(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000311 +(msc=-1) Paging: subscr-IMSI-1234000312: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000312 +(msc=-1) Paging: subscr-IMSI-1234000313: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000313 +(msc=-1) Paging: subscr-IMSI-1234000314: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000314 +(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000315 +(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000316 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={9.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000317 +(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000318 +(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000319 +(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000320 +(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000321 +(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000322 +(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000323 +(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000324 +(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000325 +(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000326 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) T3113 expired +sys={9.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000327 +(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000328 +(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000329 +(msc=-1) Paging: subscr-IMSI-1234000330: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000330 +(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000331 +(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000332 +(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000333 +(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000334 +(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000335 +(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000336 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={9.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000337 +(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000338 +(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000339 +(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000340 +(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000341 +(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000342 +(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000343 +(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Paging delayed: waiting for available slots at BTS +sys={10.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000344 +(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000345 +(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000346 +(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000347 +(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000348 +(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000349 +(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000350 +(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000351 +(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000352 +(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000353 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) T3113 expired +sys={10.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000354 +(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000355 +(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000356 +(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000357 +(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000358 +(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000359 +(msc=-1) Paging: subscr-IMSI-1234000360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000360 +(msc=-1) Paging: subscr-IMSI-1234000361: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000361 +(msc=-1) Paging: subscr-IMSI-1234000362: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000362 +(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000363 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={10.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000364 +(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000365 +(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000366 +(msc=-1) Paging: subscr-IMSI-1234000367: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000367 +(msc=-1) Paging: subscr-IMSI-1234000368: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000368 +(msc=-1) Paging: subscr-IMSI-1234000369: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000369 +(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000370 +(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000371 +(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000372 +(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000373 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={10.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000374 +(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000375 +(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000376 +(msc=-1) Paging: subscr-IMSI-1234000377: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000377 +(msc=-1) Paging: subscr-IMSI-1234000378: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000378 +(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000379 +(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000380 +(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000381 +(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000382 +(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000383 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={11.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000384 +(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000385 +(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000386 +(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000387 +(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000388 +(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000389 +(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000390 +(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000391 +(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000392 +(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000393 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) T3113 expired +sys={11.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000394 +(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000395 +(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000396 +(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000397 +(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000398 +(msc=-1) Paging: subscr-IMSI-1234000399: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000399 +(msc=-1) Paging: subscr-IMSI-1234000400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000400 +(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000401 +(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000402 +(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000403 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={11.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000404 +(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000405 +(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000406 +(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000407 +(msc=-1) Paging: subscr-IMSI-1234000408: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000408 +(msc=-1) Paging: subscr-IMSI-1234000409: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000409 +(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000410 +(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Paging delayed: waiting for available slots at BTS +sys={12.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000411 +(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000412 +(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000413 +(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000414 +(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000415 +(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000416 +(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000417 +(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000418 +(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000419 +(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000420 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) T3113 expired +sys={12.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000421 +(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000422 +(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000423 +(msc=-1) Paging: subscr-IMSI-1234000424: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000424 +(msc=-1) Paging: subscr-IMSI-1234000425: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000425 +(msc=-1) Paging: subscr-IMSI-1234000426: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000426 +(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000427 +(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000428 +(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000429 +(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000430 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={12.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000431 +(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000432 +(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000433 +(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000434 +(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000435 +(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000436 +(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000437 +(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000438 +(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000439 +(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000440 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={12.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000441 +(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000442 +(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000443 +(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000444 +(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000445 +(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000446 +(msc=-1) Paging: subscr-IMSI-1234000447: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000447 +(msc=-1) Paging: subscr-IMSI-1234000448: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000448 +(msc=-1) Paging: subscr-IMSI-1234000449: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000449 +(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000450 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={13.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000451 +(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000452 +(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000453 +(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000454 +(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000455 +(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000456 +(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000457 +(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000458 +(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000459 +(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000460 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) T3113 expired +sys={13.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000461 +(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000462 +(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000463 +(msc=-1) Paging: subscr-IMSI-1234000464: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000464 +(msc=-1) Paging: subscr-IMSI-1234000465: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000465 +(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000466 +(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000467 +(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000468 +(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000469 +(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000470 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={13.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000471 +(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000472 +(msc=-1) Paging: subscr-IMSI-1234000473: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000473 +(msc=-1) Paging: subscr-IMSI-1234000474: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000474 +(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000475 +(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000476 +(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000477 +(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Paging delayed: waiting for available slots at BTS +sys={14.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000478 +(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000479 +(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000480 +(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000481 +(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000482 +(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000483 +(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000484 +(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000485 +(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000486 +(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000487 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) T3113 expired +sys={14.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000488 +(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000489 +(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000490 +(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000491 +(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000492 +(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000493 +(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000494 +(msc=-1) Paging: subscr-IMSI-1234000495: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000495 +(msc=-1) Paging: subscr-IMSI-1234000496: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000496 +(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000497 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={14.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000498 +(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000499 +(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000182 +(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000183 +(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000184 +(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000185 +(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000186 +(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000187 +(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000188 +(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000189 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000303: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000304: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000305: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000312: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000313: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000314: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000330: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000361: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000362: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000367: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000368: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000369: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000377: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000378: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000399: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000408: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000409: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000424: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000425: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000426: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000447: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000448: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000449: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000464: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000465: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000473: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000474: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000495: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000496: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Stop paging (flush) +BTS deallocated OK in test_paging500() +===test_paging500_samepgroup=== +(bts=0) Estimated 76 paging available_slots over 2 seconds +BTS allocation OK in test_paging500_samepgroup() +Number of paging groups: 40 +(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 (available_slots=75) +(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-123400000080: (bts=0) Start paging +(msc=-1) Paging: subscr-IMSI-123400000080: (bts=0) Paging request: T3113 expires in 9 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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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() +(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000040 +(msc=-1) Paging: subscr-IMSI-123400000080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000080 +(msc=-1) Paging: subscr-IMSI-123400000120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000120 +(msc=-1) Paging: subscr-IMSI-123400000160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000160 +(msc=-1) Paging: subscr-IMSI-123400000200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000200 +(msc=-1) Paging: subscr-IMSI-123400000240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000240 +(msc=-1) Paging: subscr-IMSI-123400000280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000280 +(msc=-1) Paging: subscr-IMSI-123400000320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000320 +(msc=-1) Paging: subscr-IMSI-123400000360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000360 +(msc=-1) Paging: subscr-IMSI-123400000400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000400 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=65) +sys={0.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400000440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000440 +(msc=-1) Paging: subscr-IMSI-123400000480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000480 +(msc=-1) Paging: subscr-IMSI-123400000520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000520 +(msc=-1) Paging: subscr-IMSI-123400000560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000560 +(msc=-1) Paging: subscr-IMSI-123400000600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000600 +(msc=-1) Paging: subscr-IMSI-123400000640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000640 +(msc=-1) Paging: subscr-IMSI-123400000680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000680 +(msc=-1) Paging: subscr-IMSI-123400000720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000720 +(msc=-1) Paging: subscr-IMSI-123400000760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000760 +(msc=-1) Paging: subscr-IMSI-123400000800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000800 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=55) +sys={0.750000}: select() +(msc=-1) Paging: subscr-IMSI-123400000840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000840 +(msc=-1) Paging: subscr-IMSI-123400000880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000880 +(msc=-1) Paging: subscr-IMSI-123400000920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000920 +(msc=-1) Paging: subscr-IMSI-123400000960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400000960 +(msc=-1) Paging: subscr-IMSI-123400001000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001000 +(msc=-1) Paging: subscr-IMSI-123400001040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001040 +(msc=-1) Paging: subscr-IMSI-123400001080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001080 +(msc=-1) Paging: subscr-IMSI-123400001120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001120 +(msc=-1) Paging: subscr-IMSI-123400001160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001160 +(msc=-1) Paging: subscr-IMSI-123400001200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001200 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=45) +sys={1.000000}: select() +(msc=-1) Paging: subscr-IMSI-123400001240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001240 +(msc=-1) Paging: subscr-IMSI-123400001280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001280 +(msc=-1) Paging: subscr-IMSI-123400001320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001320 +(msc=-1) Paging: subscr-IMSI-123400001360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001360 +(msc=-1) Paging: subscr-IMSI-123400001400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001400 +(msc=-1) Paging: subscr-IMSI-123400001440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001440 +(msc=-1) Paging: subscr-IMSI-123400001480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001480 +(msc=-1) Paging: subscr-IMSI-123400001520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001520 +(msc=-1) Paging: subscr-IMSI-123400001560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001560 +(msc=-1) Paging: subscr-IMSI-123400001600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001600 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=35) +sys={1.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400001640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001640 +(msc=-1) Paging: subscr-IMSI-123400001680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001680 +(msc=-1) Paging: subscr-IMSI-123400001720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001720 +(msc=-1) Paging: subscr-IMSI-123400001760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001760 +(msc=-1) Paging: subscr-IMSI-123400001800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001800 +(msc=-1) Paging: subscr-IMSI-123400001840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001840 +(msc=-1) Paging: subscr-IMSI-123400001880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001880 +(msc=-1) Paging: subscr-IMSI-123400001920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001920 +(msc=-1) Paging: subscr-IMSI-123400001960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400001960 +(msc=-1) Paging: subscr-IMSI-123400002000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002000 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=25) +sys={1.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400002040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002040 +(msc=-1) Paging: subscr-IMSI-123400002080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002080 +(msc=-1) Paging: subscr-IMSI-123400002120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002120 +(msc=-1) Paging: subscr-IMSI-123400002160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002160 +(msc=-1) Paging: subscr-IMSI-123400002200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002200 +(msc=-1) Paging: subscr-IMSI-123400002240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002240 +(msc=-1) Paging: subscr-IMSI-123400002280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002280 +(msc=-1) Paging: subscr-IMSI-123400002320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002320 +(msc=-1) Paging: subscr-IMSI-123400002360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002360 +(msc=-1) Paging: subscr-IMSI-123400002400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002400 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=15) +sys={1.750000}: select() +(msc=-1) Paging: subscr-IMSI-123400002440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002440 +(msc=-1) Paging: subscr-IMSI-123400002480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002480 +(msc=-1) Paging: subscr-IMSI-123400002520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002520 +(msc=-1) Paging: subscr-IMSI-123400002560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002560 +(msc=-1) Paging: subscr-IMSI-123400002600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002600 +(msc=-1) Paging: subscr-IMSI-123400002640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002640 +(msc=-1) Paging: subscr-IMSI-123400002680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002680 +(msc=-1) Paging: subscr-IMSI-123400002720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002720 +(msc=-1) Paging: subscr-IMSI-123400002760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002760 +(msc=-1) Paging: subscr-IMSI-123400002800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002800 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=5) +sys={2.000000}: select() +(msc=-1) Paging: subscr-IMSI-123400002840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002840 +(msc=-1) Paging: subscr-IMSI-123400002880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002880 +(msc=-1) Paging: subscr-IMSI-123400002920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002920 +(msc=-1) Paging: subscr-IMSI-123400002960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400002960 +(msc=-1) Paging: subscr-IMSI-123400003000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003000 +(msc=-1) Paging: subscr-IMSI-123400003040: (bts=0) Paging delayed: waiting for available slots at BTS +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-123400003040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003040 +(msc=-1) Paging: subscr-IMSI-123400003080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003080 +(msc=-1) Paging: subscr-IMSI-123400003120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003120 +(msc=-1) Paging: subscr-IMSI-123400003160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003160 +(msc=-1) Paging: subscr-IMSI-123400003200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003200 +(msc=-1) Paging: subscr-IMSI-123400003240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003240 +(msc=-1) Paging: subscr-IMSI-123400003280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003280 +(msc=-1) Paging: subscr-IMSI-123400003320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003320 +(msc=-1) Paging: subscr-IMSI-123400003360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003360 +(msc=-1) Paging: subscr-IMSI-123400003400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003400 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={2.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400003440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003440 +(msc=-1) Paging: subscr-IMSI-123400003480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003480 +(msc=-1) Paging: subscr-IMSI-123400003520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003520 +(msc=-1) Paging: subscr-IMSI-123400003560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003560 +(msc=-1) Paging: subscr-IMSI-123400003600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003600 +(msc=-1) Paging: subscr-IMSI-123400003640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003640 +(msc=-1) Paging: subscr-IMSI-123400003680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003680 +(msc=-1) Paging: subscr-IMSI-123400003720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003720 +(msc=-1) Paging: subscr-IMSI-123400003760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003760 +(msc=-1) Paging: subscr-IMSI-123400003800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003800 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={2.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400003840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003840 +(msc=-1) Paging: subscr-IMSI-123400003880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003880 +(msc=-1) Paging: subscr-IMSI-123400003920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003920 +(msc=-1) Paging: subscr-IMSI-123400003960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400003960 +(msc=-1) Paging: subscr-IMSI-123400004000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004000 +(msc=-1) Paging: subscr-IMSI-123400004040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004040 +(msc=-1) Paging: subscr-IMSI-123400004080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004080 +(msc=-1) Paging: subscr-IMSI-123400004120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004120 +(msc=-1) Paging: subscr-IMSI-123400004160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004160 +(msc=-1) Paging: subscr-IMSI-123400004200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004200 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={2.750000}: select() +(msc=-1) Paging: subscr-IMSI-123400004240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004240 +(msc=-1) Paging: subscr-IMSI-123400004280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004280 +(msc=-1) Paging: subscr-IMSI-123400004320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004320 +(msc=-1) Paging: subscr-IMSI-123400004360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004360 +(msc=-1) Paging: subscr-IMSI-123400004400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004400 +(msc=-1) Paging: subscr-IMSI-123400004440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004440 +(msc=-1) Paging: subscr-IMSI-123400004480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004480 +(msc=-1) Paging: subscr-IMSI-123400004520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004520 +(msc=-1) Paging: subscr-IMSI-123400004560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004560 +(msc=-1) Paging: subscr-IMSI-123400004600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004600 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={3.000000}: select() +(msc=-1) Paging: subscr-IMSI-123400004640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004640 +(msc=-1) Paging: subscr-IMSI-123400004680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004680 +(msc=-1) Paging: subscr-IMSI-123400004720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004720 +(msc=-1) Paging: subscr-IMSI-123400004760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004760 +(msc=-1) Paging: subscr-IMSI-123400004800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004800 +(msc=-1) Paging: subscr-IMSI-123400004840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004840 +(msc=-1) Paging: subscr-IMSI-123400004880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004880 +(msc=-1) Paging: subscr-IMSI-123400004920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004920 +(msc=-1) Paging: subscr-IMSI-123400004960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400004960 +(msc=-1) Paging: subscr-IMSI-123400005000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005000 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +sys={3.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400005040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005040 +(msc=-1) Paging: subscr-IMSI-123400005080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005080 +(msc=-1) Paging: subscr-IMSI-123400005120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005120 +(msc=-1) Paging: subscr-IMSI-123400005160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005160 +(msc=-1) Paging: subscr-IMSI-123400005200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005200 +(msc=-1) Paging: subscr-IMSI-123400005240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005240 +(msc=-1) Paging: subscr-IMSI-123400005280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005280 +(msc=-1) Paging: subscr-IMSI-123400005320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005320 +(msc=-1) Paging: subscr-IMSI-123400005360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005360 +(msc=-1) Paging: subscr-IMSI-123400005400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005400 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={3.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400005440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005440 +(msc=-1) Paging: subscr-IMSI-123400005480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005480 +(msc=-1) Paging: subscr-IMSI-123400005520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005520 +(msc=-1) Paging: subscr-IMSI-123400005560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005560 +(msc=-1) Paging: subscr-IMSI-123400005600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005600 +(msc=-1) Paging: subscr-IMSI-123400005640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005640 +(msc=-1) Paging: subscr-IMSI-123400005680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005680 +(msc=-1) Paging: subscr-IMSI-123400005720: (bts=0) Paging delayed: waiting for available slots at BTS +sys={4.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-123400005720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005720 +(msc=-1) Paging: subscr-IMSI-123400005760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005760 +(msc=-1) Paging: subscr-IMSI-123400005800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005800 +(msc=-1) Paging: subscr-IMSI-123400005840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005840 +(msc=-1) Paging: subscr-IMSI-123400005880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005880 +(msc=-1) Paging: subscr-IMSI-123400005920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005920 +(msc=-1) Paging: subscr-IMSI-123400005960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400005960 +(msc=-1) Paging: subscr-IMSI-123400006000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006000 +(msc=-1) Paging: subscr-IMSI-123400006040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006040 +(msc=-1) Paging: subscr-IMSI-123400006080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006080 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={4.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400006120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006120 +(msc=-1) Paging: subscr-IMSI-123400006160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006160 +(msc=-1) Paging: subscr-IMSI-123400006200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006200 +(msc=-1) Paging: subscr-IMSI-123400006240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006240 +(msc=-1) Paging: subscr-IMSI-123400006280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006280 +(msc=-1) Paging: subscr-IMSI-123400006320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006320 +(msc=-1) Paging: subscr-IMSI-123400006360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006360 +(msc=-1) Paging: subscr-IMSI-123400006400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006400 +(msc=-1) Paging: subscr-IMSI-123400006440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006440 +(msc=-1) Paging: subscr-IMSI-123400006480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006480 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={4.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400006520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006520 +(msc=-1) Paging: subscr-IMSI-123400006560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006560 +(msc=-1) Paging: subscr-IMSI-123400006600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006600 +(msc=-1) Paging: subscr-IMSI-123400006640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006640 +(msc=-1) Paging: subscr-IMSI-123400006680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006680 +(msc=-1) Paging: subscr-IMSI-123400006720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006720 +(msc=-1) Paging: subscr-IMSI-123400006760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006760 +(msc=-1) Paging: subscr-IMSI-123400006800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006800 +(msc=-1) Paging: subscr-IMSI-123400006840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006840 +(msc=-1) Paging: subscr-IMSI-123400006880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006880 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={4.750000}: select() +(msc=-1) Paging: subscr-IMSI-123400006920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006920 +(msc=-1) Paging: subscr-IMSI-123400006960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400006960 +(msc=-1) Paging: subscr-IMSI-123400007000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007000 +(msc=-1) Paging: subscr-IMSI-123400007040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007040 +(msc=-1) Paging: subscr-IMSI-123400007080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007080 +(msc=-1) Paging: subscr-IMSI-123400007120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007120 +(msc=-1) Paging: subscr-IMSI-123400007160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007160 +(msc=-1) Paging: subscr-IMSI-123400007200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007200 +(msc=-1) Paging: subscr-IMSI-123400007240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007240 +(msc=-1) Paging: subscr-IMSI-123400007280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007280 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={5.000000}: select() +(msc=-1) Paging: subscr-IMSI-123400007320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007320 +(msc=-1) Paging: subscr-IMSI-123400007360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007360 +(msc=-1) Paging: subscr-IMSI-123400007400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007400 +(msc=-1) Paging: subscr-IMSI-123400007440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007440 +(msc=-1) Paging: subscr-IMSI-123400007480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007480 +(msc=-1) Paging: subscr-IMSI-123400007520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007520 +(msc=-1) Paging: subscr-IMSI-123400007560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007560 +(msc=-1) Paging: subscr-IMSI-123400007600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007600 +(msc=-1) Paging: subscr-IMSI-123400007640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007640 +(msc=-1) Paging: subscr-IMSI-123400007680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007680 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +sys={5.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400007720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007720 +(msc=-1) Paging: subscr-IMSI-123400007760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007760 +(msc=-1) Paging: subscr-IMSI-123400007800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007800 +(msc=-1) Paging: subscr-IMSI-123400007840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007840 +(msc=-1) Paging: subscr-IMSI-123400007880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007880 +(msc=-1) Paging: subscr-IMSI-123400007920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007920 +(msc=-1) Paging: subscr-IMSI-123400007960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400007960 +(msc=-1) Paging: subscr-IMSI-123400008000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008000 +(msc=-1) Paging: subscr-IMSI-123400008040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008040 +(msc=-1) Paging: subscr-IMSI-123400008080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008080 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={5.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400008120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008120 +(msc=-1) Paging: subscr-IMSI-123400008160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008160 +(msc=-1) Paging: subscr-IMSI-123400008200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008200 +(msc=-1) Paging: subscr-IMSI-123400008240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008240 +(msc=-1) Paging: subscr-IMSI-123400008280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008280 +(msc=-1) Paging: subscr-IMSI-123400008320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008320 +(msc=-1) Paging: subscr-IMSI-123400008360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008360 +(msc=-1) Paging: subscr-IMSI-123400008400: (bts=0) Paging delayed: waiting for available slots at BTS +sys={6.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-123400008400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008400 +(msc=-1) Paging: subscr-IMSI-123400008440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008440 +(msc=-1) Paging: subscr-IMSI-123400008480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008480 +(msc=-1) Paging: subscr-IMSI-123400008520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008520 +(msc=-1) Paging: subscr-IMSI-123400008560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008560 +(msc=-1) Paging: subscr-IMSI-123400008600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008600 +(msc=-1) Paging: subscr-IMSI-123400008640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008640 +(msc=-1) Paging: subscr-IMSI-123400008680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008680 +(msc=-1) Paging: subscr-IMSI-123400008720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008720 +(msc=-1) Paging: subscr-IMSI-123400008760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008760 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={6.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400008800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008800 +(msc=-1) Paging: subscr-IMSI-123400008840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008840 +(msc=-1) Paging: subscr-IMSI-123400008880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008880 +(msc=-1) Paging: subscr-IMSI-123400008920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008920 +(msc=-1) Paging: subscr-IMSI-123400008960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400008960 +(msc=-1) Paging: subscr-IMSI-123400009000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009000 +(msc=-1) Paging: subscr-IMSI-123400009040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009040 +(msc=-1) Paging: subscr-IMSI-123400009080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009080 +(msc=-1) Paging: subscr-IMSI-123400009120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009120 +(msc=-1) Paging: subscr-IMSI-123400009160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009160 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={6.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400009200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009200 +(msc=-1) Paging: subscr-IMSI-123400009240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009240 +(msc=-1) Paging: subscr-IMSI-123400009280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009280 +(msc=-1) Paging: subscr-IMSI-123400009320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009320 +(msc=-1) Paging: subscr-IMSI-123400009360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009360 +(msc=-1) Paging: subscr-IMSI-123400009400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009400 +(msc=-1) Paging: subscr-IMSI-123400009440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009440 +(msc=-1) Paging: subscr-IMSI-123400009480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009480 +(msc=-1) Paging: subscr-IMSI-123400009520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009520 +(msc=-1) Paging: subscr-IMSI-123400009560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009560 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={6.750000}: select() +(msc=-1) Paging: subscr-IMSI-123400009600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009600 +(msc=-1) Paging: subscr-IMSI-123400009640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009640 +(msc=-1) Paging: subscr-IMSI-123400009680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009680 +(msc=-1) Paging: subscr-IMSI-123400009720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009720 +(msc=-1) Paging: subscr-IMSI-123400009760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009760 +(msc=-1) Paging: subscr-IMSI-123400009800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009800 +(msc=-1) Paging: subscr-IMSI-123400009840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009840 +(msc=-1) Paging: subscr-IMSI-123400009880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009880 +(msc=-1) Paging: subscr-IMSI-123400009920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009920 +(msc=-1) Paging: subscr-IMSI-123400009960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400009960 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={7.000000}: select() +(msc=-1) Paging: subscr-IMSI-123400010000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010000 +(msc=-1) Paging: subscr-IMSI-123400010040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010040 +(msc=-1) Paging: subscr-IMSI-123400010080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010080 +(msc=-1) Paging: subscr-IMSI-123400010120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010120 +(msc=-1) Paging: subscr-IMSI-123400010160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010160 +(msc=-1) Paging: subscr-IMSI-123400010200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010200 +(msc=-1) Paging: subscr-IMSI-123400010240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010240 +(msc=-1) Paging: subscr-IMSI-123400010280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010280 +(msc=-1) Paging: subscr-IMSI-123400010320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010320 +(msc=-1) Paging: subscr-IMSI-123400010360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010360 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +sys={7.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400010400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010400 +(msc=-1) Paging: subscr-IMSI-123400010440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010440 +(msc=-1) Paging: subscr-IMSI-123400010480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010480 +(msc=-1) Paging: subscr-IMSI-123400010520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010520 +(msc=-1) Paging: subscr-IMSI-123400010560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010560 +(msc=-1) Paging: subscr-IMSI-123400010600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010600 +(msc=-1) Paging: subscr-IMSI-123400010640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010640 +(msc=-1) Paging: subscr-IMSI-123400010680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010680 +(msc=-1) Paging: subscr-IMSI-123400010720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010720 +(msc=-1) Paging: subscr-IMSI-123400010760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010760 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={7.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400010800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010800 +(msc=-1) Paging: subscr-IMSI-123400010840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010840 +(msc=-1) Paging: subscr-IMSI-123400010880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010880 +(msc=-1) Paging: subscr-IMSI-123400010920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010920 +(msc=-1) Paging: subscr-IMSI-123400010960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400010960 +(msc=-1) Paging: subscr-IMSI-123400011000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011000 +(msc=-1) Paging: subscr-IMSI-123400011040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011040 +(msc=-1) Paging: subscr-IMSI-123400011080: (bts=0) Paging delayed: waiting for available slots at BTS +sys={8.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-123400011080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011080 +(msc=-1) Paging: subscr-IMSI-123400011120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011120 +(msc=-1) Paging: subscr-IMSI-123400011160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011160 +(msc=-1) Paging: subscr-IMSI-123400011200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011200 +(msc=-1) Paging: subscr-IMSI-123400011240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011240 +(msc=-1) Paging: subscr-IMSI-123400011280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011280 +(msc=-1) Paging: subscr-IMSI-123400011320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011320 +(msc=-1) Paging: subscr-IMSI-123400011360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011360 +(msc=-1) Paging: subscr-IMSI-123400011400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011400 +(msc=-1) Paging: subscr-IMSI-123400011440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011440 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={8.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400011480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011480 +(msc=-1) Paging: subscr-IMSI-123400011520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011520 +(msc=-1) Paging: subscr-IMSI-123400011560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011560 +(msc=-1) Paging: subscr-IMSI-123400011600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011600 +(msc=-1) Paging: subscr-IMSI-123400011640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011640 +(msc=-1) Paging: subscr-IMSI-123400011680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011680 +(msc=-1) Paging: subscr-IMSI-123400011720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011720 +(msc=-1) Paging: subscr-IMSI-123400011760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011760 +(msc=-1) Paging: subscr-IMSI-123400011800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011800 +(msc=-1) Paging: subscr-IMSI-123400011840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011840 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={8.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400011880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011880 +(msc=-1) Paging: subscr-IMSI-123400011920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011920 +(msc=-1) Paging: subscr-IMSI-123400011960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400011960 +(msc=-1) Paging: subscr-IMSI-123400012000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012000 +(msc=-1) Paging: subscr-IMSI-123400012040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012040 +(msc=-1) Paging: subscr-IMSI-123400012080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012080 +(msc=-1) Paging: subscr-IMSI-123400012120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012120 +(msc=-1) Paging: subscr-IMSI-123400012160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012160 +(msc=-1) Paging: subscr-IMSI-123400012200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012200 +(msc=-1) Paging: subscr-IMSI-123400012240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012240 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={8.750000}: select() +(msc=-1) Paging: subscr-IMSI-123400012280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012280 +(msc=-1) Paging: subscr-IMSI-123400012320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012320 +(msc=-1) Paging: subscr-IMSI-123400012360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012360 +(msc=-1) Paging: subscr-IMSI-123400012400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012400 +(msc=-1) Paging: subscr-IMSI-123400012440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012440 +(msc=-1) Paging: subscr-IMSI-123400012480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012480 +(msc=-1) Paging: subscr-IMSI-123400012520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012520 +(msc=-1) Paging: subscr-IMSI-123400012560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012560 +(msc=-1) Paging: subscr-IMSI-123400012600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012600 +(msc=-1) Paging: subscr-IMSI-123400012640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012640 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={9.000000}: select() +(msc=-1) Paging: subscr-IMSI-123400012680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012680 +(msc=-1) Paging: subscr-IMSI-123400012720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012720 +(msc=-1) Paging: subscr-IMSI-123400012760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012760 +(msc=-1) Paging: subscr-IMSI-123400012800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012800 +(msc=-1) Paging: subscr-IMSI-123400012840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012840 +(msc=-1) Paging: subscr-IMSI-123400012880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012880 +(msc=-1) Paging: subscr-IMSI-123400012920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012920 +(msc=-1) Paging: subscr-IMSI-123400012960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400012960 +(msc=-1) Paging: subscr-IMSI-123400013000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013000 +(msc=-1) Paging: subscr-IMSI-123400013040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013040 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +(msc=-1) Paging: subscr-IMSI-123400000360: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000320: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000280: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000240: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000200: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000160: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000120: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000080: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000040: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000000: (bts=0) T3113 expired +sys={9.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400013080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013080 +(msc=-1) Paging: subscr-IMSI-123400013120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013120 +(msc=-1) Paging: subscr-IMSI-123400013160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013160 +(msc=-1) Paging: subscr-IMSI-123400013200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013200 +(msc=-1) Paging: subscr-IMSI-123400013240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013240 +(msc=-1) Paging: subscr-IMSI-123400013280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013280 +(msc=-1) Paging: subscr-IMSI-123400013320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013320 +(msc=-1) Paging: subscr-IMSI-123400013360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013360 +(msc=-1) Paging: subscr-IMSI-123400013400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013400 +(msc=-1) Paging: subscr-IMSI-123400013440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013440 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={9.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400013480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013480 +(msc=-1) Paging: subscr-IMSI-123400013520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013520 +(msc=-1) Paging: subscr-IMSI-123400013560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013560 +(msc=-1) Paging: subscr-IMSI-123400013600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013600 +(msc=-1) Paging: subscr-IMSI-123400013640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013640 +(msc=-1) Paging: subscr-IMSI-123400013680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013680 +(msc=-1) Paging: subscr-IMSI-123400013720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013720 +(msc=-1) Paging: subscr-IMSI-123400013760: (bts=0) Paging delayed: waiting for available slots at BTS +sys={10.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-123400013760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013760 +(msc=-1) Paging: subscr-IMSI-123400013800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013800 +(msc=-1) Paging: subscr-IMSI-123400013840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013840 +(msc=-1) Paging: subscr-IMSI-123400013880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013880 +(msc=-1) Paging: subscr-IMSI-123400013920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013920 +(msc=-1) Paging: subscr-IMSI-123400013960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400013960 +(msc=-1) Paging: subscr-IMSI-123400014000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014000 +(msc=-1) Paging: subscr-IMSI-123400014040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014040 +(msc=-1) Paging: subscr-IMSI-123400014080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014080 +(msc=-1) Paging: subscr-IMSI-123400014120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014120 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +sys={10.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400014160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014160 +(msc=-1) Paging: subscr-IMSI-123400014200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014200 +(msc=-1) Paging: subscr-IMSI-123400014240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014240 +(msc=-1) Paging: subscr-IMSI-123400014280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014280 +(msc=-1) Paging: subscr-IMSI-123400014320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014320 +(msc=-1) Paging: subscr-IMSI-123400014360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014360 +(msc=-1) Paging: subscr-IMSI-123400014400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014400 +(msc=-1) Paging: subscr-IMSI-123400014440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014440 +(msc=-1) Paging: subscr-IMSI-123400014480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014480 +(msc=-1) Paging: subscr-IMSI-123400014520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014520 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={10.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400014560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014560 +(msc=-1) Paging: subscr-IMSI-123400014600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014600 +(msc=-1) Paging: subscr-IMSI-123400014640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014640 +(msc=-1) Paging: subscr-IMSI-123400014680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014680 +(msc=-1) Paging: subscr-IMSI-123400014720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014720 +(msc=-1) Paging: subscr-IMSI-123400014760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014760 +(msc=-1) Paging: subscr-IMSI-123400014800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014800 +(msc=-1) Paging: subscr-IMSI-123400014840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014840 +(msc=-1) Paging: subscr-IMSI-123400014880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014880 +(msc=-1) Paging: subscr-IMSI-123400014920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014920 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={10.750000}: select() +(msc=-1) Paging: subscr-IMSI-123400014960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400014960 +(msc=-1) Paging: subscr-IMSI-123400015000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015000 +(msc=-1) Paging: subscr-IMSI-123400015040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015040 +(msc=-1) Paging: subscr-IMSI-123400015080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015080 +(msc=-1) Paging: subscr-IMSI-123400015120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015120 +(msc=-1) Paging: subscr-IMSI-123400015160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015160 +(msc=-1) Paging: subscr-IMSI-123400015200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015200 +(msc=-1) Paging: subscr-IMSI-123400015240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015240 +(msc=-1) Paging: subscr-IMSI-123400015280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015280 +(msc=-1) Paging: subscr-IMSI-123400015320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015320 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={11.000000}: select() +(msc=-1) Paging: subscr-IMSI-123400015360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015360 +(msc=-1) Paging: subscr-IMSI-123400015400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015400 +(msc=-1) Paging: subscr-IMSI-123400015440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015440 +(msc=-1) Paging: subscr-IMSI-123400015480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015480 +(msc=-1) Paging: subscr-IMSI-123400015520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015520 +(msc=-1) Paging: subscr-IMSI-123400015560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015560 +(msc=-1) Paging: subscr-IMSI-123400015600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015600 +(msc=-1) Paging: subscr-IMSI-123400015640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015640 +(msc=-1) Paging: subscr-IMSI-123400015680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015680 +(msc=-1) Paging: subscr-IMSI-123400015720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015720 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +(msc=-1) Paging: subscr-IMSI-123400000680: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000640: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000600: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000560: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000520: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000480: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000440: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000400: (bts=0) T3113 expired +sys={11.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400015760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015760 +(msc=-1) Paging: subscr-IMSI-123400015800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015800 +(msc=-1) Paging: subscr-IMSI-123400015840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015840 +(msc=-1) Paging: subscr-IMSI-123400015880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015880 +(msc=-1) Paging: subscr-IMSI-123400015920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015920 +(msc=-1) Paging: subscr-IMSI-123400015960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400015960 +(msc=-1) Paging: subscr-IMSI-123400016000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016000 +(msc=-1) Paging: subscr-IMSI-123400016040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016040 +(msc=-1) Paging: subscr-IMSI-123400016080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016080 +(msc=-1) Paging: subscr-IMSI-123400016120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016120 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={11.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400016160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016160 +(msc=-1) Paging: subscr-IMSI-123400016200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016200 +(msc=-1) Paging: subscr-IMSI-123400016240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016240 +(msc=-1) Paging: subscr-IMSI-123400016280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016280 +(msc=-1) Paging: subscr-IMSI-123400016320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016320 +(msc=-1) Paging: subscr-IMSI-123400016360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016360 +(msc=-1) Paging: subscr-IMSI-123400016400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016400 +(msc=-1) Paging: subscr-IMSI-123400016440: (bts=0) Paging delayed: waiting for available slots at BTS +sys={12.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-123400016440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016440 +(msc=-1) Paging: subscr-IMSI-123400016480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016480 +(msc=-1) Paging: subscr-IMSI-123400016520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016520 +(msc=-1) Paging: subscr-IMSI-123400016560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016560 +(msc=-1) Paging: subscr-IMSI-123400016600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016600 +(msc=-1) Paging: subscr-IMSI-123400016640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016640 +(msc=-1) Paging: subscr-IMSI-123400016680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016680 +(msc=-1) Paging: subscr-IMSI-123400016720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016720 +(msc=-1) Paging: subscr-IMSI-123400016760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016760 +(msc=-1) Paging: subscr-IMSI-123400016800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016800 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +(msc=-1) Paging: subscr-IMSI-123400001000: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000960: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000920: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000880: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000840: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000800: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000760: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400000720: (bts=0) T3113 expired +sys={12.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400016840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016840 +(msc=-1) Paging: subscr-IMSI-123400016880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016880 +(msc=-1) Paging: subscr-IMSI-123400016920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016920 +(msc=-1) Paging: subscr-IMSI-123400016960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400016960 +(msc=-1) Paging: subscr-IMSI-123400017000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017000 +(msc=-1) Paging: subscr-IMSI-123400017040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017040 +(msc=-1) Paging: subscr-IMSI-123400017080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017080 +(msc=-1) Paging: subscr-IMSI-123400017120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017120 +(msc=-1) Paging: subscr-IMSI-123400017160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017160 +(msc=-1) Paging: subscr-IMSI-123400017200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017200 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={12.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400017240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017240 +(msc=-1) Paging: subscr-IMSI-123400017280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017280 +(msc=-1) Paging: subscr-IMSI-123400017320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017320 +(msc=-1) Paging: subscr-IMSI-123400017360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017360 +(msc=-1) Paging: subscr-IMSI-123400017400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017400 +(msc=-1) Paging: subscr-IMSI-123400017440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017440 +(msc=-1) Paging: subscr-IMSI-123400017480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017480 +(msc=-1) Paging: subscr-IMSI-123400017520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017520 +(msc=-1) Paging: subscr-IMSI-123400017560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017560 +(msc=-1) Paging: subscr-IMSI-123400017600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017600 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +sys={12.750000}: select() +(msc=-1) Paging: subscr-IMSI-123400017640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017640 +(msc=-1) Paging: subscr-IMSI-123400017680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017680 +(msc=-1) Paging: subscr-IMSI-123400017720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017720 +(msc=-1) Paging: subscr-IMSI-123400017760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017760 +(msc=-1) Paging: subscr-IMSI-123400017800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017800 +(msc=-1) Paging: subscr-IMSI-123400017840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017840 +(msc=-1) Paging: subscr-IMSI-123400017880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017880 +(msc=-1) Paging: subscr-IMSI-123400017920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017920 +(msc=-1) Paging: subscr-IMSI-123400017960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400017960 +(msc=-1) Paging: subscr-IMSI-123400018000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018000 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=27) +sys={13.000000}: select() +(msc=-1) Paging: subscr-IMSI-123400018040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018040 +(msc=-1) Paging: subscr-IMSI-123400018080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018080 +(msc=-1) Paging: subscr-IMSI-123400018120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018120 +(msc=-1) Paging: subscr-IMSI-123400018160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018160 +(msc=-1) Paging: subscr-IMSI-123400018200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018200 +(msc=-1) Paging: subscr-IMSI-123400018240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018240 +(msc=-1) Paging: subscr-IMSI-123400018280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018280 +(msc=-1) Paging: subscr-IMSI-123400018320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018320 +(msc=-1) Paging: subscr-IMSI-123400018360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018360 +(msc=-1) Paging: subscr-IMSI-123400018400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018400 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=17) +sys={13.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400018440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018440 +(msc=-1) Paging: subscr-IMSI-123400018480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018480 +(msc=-1) Paging: subscr-IMSI-123400018520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018520 +(msc=-1) Paging: subscr-IMSI-123400018560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018560 +(msc=-1) Paging: subscr-IMSI-123400018600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018600 +(msc=-1) Paging: subscr-IMSI-123400018640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018640 +(msc=-1) Paging: subscr-IMSI-123400018680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018680 +(msc=-1) Paging: subscr-IMSI-123400018720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018720 +(msc=-1) Paging: subscr-IMSI-123400018760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018760 +(msc=-1) Paging: subscr-IMSI-123400018800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018800 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=7) +sys={13.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400018840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018840 +(msc=-1) Paging: subscr-IMSI-123400018880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018880 +(msc=-1) Paging: subscr-IMSI-123400018920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018920 +(msc=-1) Paging: subscr-IMSI-123400018960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400018960 +(msc=-1) Paging: subscr-IMSI-123400019000: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019000 +(msc=-1) Paging: subscr-IMSI-123400019040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019040 +(msc=-1) Paging: subscr-IMSI-123400019080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019080 +(msc=-1) Paging: subscr-IMSI-123400019120: (bts=0) Paging delayed: waiting for available slots at BTS +sys={14.000000}: select() +(bts=0) Estimated 67 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 67) +(msc=-1) Paging: subscr-IMSI-123400019120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019120 +(msc=-1) Paging: subscr-IMSI-123400019160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019160 +(msc=-1) Paging: subscr-IMSI-123400019200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019200 +(msc=-1) Paging: subscr-IMSI-123400019240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019240 +(msc=-1) Paging: subscr-IMSI-123400019280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019280 +(msc=-1) Paging: subscr-IMSI-123400019320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019320 +(msc=-1) Paging: subscr-IMSI-123400019360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019360 +(msc=-1) Paging: subscr-IMSI-123400019400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019400 +(msc=-1) Paging: subscr-IMSI-123400019440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019440 +(msc=-1) Paging: subscr-IMSI-123400019480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019480 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=57) +(msc=-1) Paging: subscr-IMSI-123400001320: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400001280: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400001240: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400001200: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400001160: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400001120: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400001080: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-123400001040: (bts=0) T3113 expired +sys={14.250000}: select() +(msc=-1) Paging: subscr-IMSI-123400019520: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019520 +(msc=-1) Paging: subscr-IMSI-123400019560: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019560 +(msc=-1) Paging: subscr-IMSI-123400019600: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019600 +(msc=-1) Paging: subscr-IMSI-123400019640: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019640 +(msc=-1) Paging: subscr-IMSI-123400019680: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019680 +(msc=-1) Paging: subscr-IMSI-123400019720: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019720 +(msc=-1) Paging: subscr-IMSI-123400019760: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019760 +(msc=-1) Paging: subscr-IMSI-123400019800: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019800 +(msc=-1) Paging: subscr-IMSI-123400019840: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019840 +(msc=-1) Paging: subscr-IMSI-123400019880: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019880 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=47) +sys={14.500000}: select() +(msc=-1) Paging: subscr-IMSI-123400019920: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019920 +(msc=-1) Paging: subscr-IMSI-123400019960: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-123400019960 +(msc=-1) Paging: subscr-IMSI-123400001360: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-123400001360 +(msc=-1) Paging: subscr-IMSI-123400001400: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-123400001400 +(msc=-1) Paging: subscr-IMSI-123400001440: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-123400001440 +(msc=-1) Paging: subscr-IMSI-123400001480: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-123400001480 +(msc=-1) Paging: subscr-IMSI-123400001520: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-123400001520 +(msc=-1) Paging: subscr-IMSI-123400001560: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-123400001560 +(msc=-1) Paging: subscr-IMSI-123400001600: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-123400001600 +(msc=-1) Paging: subscr-IMSI-123400001640: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-123400001640 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=37) +(msc=-1) Paging: subscr-IMSI-123400001680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400002960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400003960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400004960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400005960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400006960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400007960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400008960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400009960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400010960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400011960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400012960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400013960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400014960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400015960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400016960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400017960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400018960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019000: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019040: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019080: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019120: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019160: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019200: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019240: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019640: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019680: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019720: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019760: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019800: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019840: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019880: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019920: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400019960: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001520: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001560: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001600: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-123400001640: (bts=0) Stop paging (flush) +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() +(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 (available_slots=75) +(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-1234000002: (bts=0) Start paging +(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) Paging request: T3113 expires in 9 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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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 +(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() +(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000001 +(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000002 +(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000003 +(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000004 +(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000005 +(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000006 +(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000007 +(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000008 +(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000009 +(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000010 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=65) +sys={0.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000011 +(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000012 +(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000013 +(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000014 +(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000015 +(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000016 +(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000017 +(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000018 +(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000019 +(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000020 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=55) +sys={0.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000021 +(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000022 +(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000023 +(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000024 +(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000025 +(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000026 +(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000027 +(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000028 +(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000029 +(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000030 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=45) +sys={1.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000031 +(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000032 +(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000033 +(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000034 +(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000035 +(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000036 +(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000037 +(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000038 +(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000039 +(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000040 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=35) +sys={1.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000041 +(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000042 +(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000043 +(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000044 +(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000045 +(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000046 +(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000047 +(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000048 +(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000049 +(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000050 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=25) +sys={1.500000}: select() +(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000051 +(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000052 +(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000053 +(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000054 +(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000055 +(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000056 +(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000057 +(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000058 +(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000059 +(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000060 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=15) +sys={1.750000}: select() +(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000061 +(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000062 +(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000063 +(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000064 +(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000065 +(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000066 +(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000067 +(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000068 +(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000069 +(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000070 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=5) +sys={2.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000071 +(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000072 +(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000073 +(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000074 +(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000075 +(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Paging delayed: waiting for available slots at BTS +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000076 +(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000077 +(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000078 +(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000079 +(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000080 +(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000081 +(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000082 +(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000083 +(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000084 +(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000085 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +sys={2.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000086 +(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000087 +(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000088 +(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000089 +(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000090 +(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000091 +(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Paging delayed: waiting for available slots at BTS +sys={3.1000000}: select() +sys={4.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000092 +(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000093 +(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000094 +(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000095 +(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000096 +(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000097 +(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000098 +(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000099 +(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000100 +(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000101 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +sys={4.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000102 +(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000103 +(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000104 +(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000105 +(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000106 +(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000107 +(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Paging delayed: waiting for available slots at BTS +sys={5.1000000}: select() +sys={6.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000108 +(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000109 +(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000110 +(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000111 +(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000112 +(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000113 +(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000114 +(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000115 +(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000116 +(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000117 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +sys={6.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000118 +(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000119 +(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000120 +(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000121 +(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000122 +(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000123 +(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Paging delayed: waiting for available slots at BTS +sys={7.1000000}: select() +sys={8.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000124 +(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000125 +(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000126 +(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000127 +(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000128 +(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000129 +(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000130 +(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000131 +(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000132 +(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000133 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +sys={8.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000134 +(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000135 +(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000136 +(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000137 +(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000138 +(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000139 +(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Paging delayed: waiting for available slots at BTS +sys={9.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000004: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000003: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000002: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000001: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000000: (bts=0) T3113 expired +sys={10.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000140 +(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000141 +(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000142 +(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000143 +(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000144 +(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000145 +(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000146 +(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000147 +(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000148 +(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000149 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000012: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000011: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000010: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000009: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000008: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000007: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000006: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000005: (bts=0) T3113 expired +sys={10.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000150 +(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000151 +(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000152 +(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000153 +(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000154 +(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000155 +(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Paging delayed: waiting for available slots at BTS +sys={11.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000021: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000020: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000019: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000018: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000017: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000016: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000015: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000014: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000013: (bts=0) T3113 expired +sys={12.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000156 +(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000157 +(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000158 +(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000159 +(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000160 +(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000161 +(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000162 +(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000163 +(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000164 +(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000165 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000030: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000029: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000028: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000027: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000026: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000025: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000024: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000023: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000022: (bts=0) T3113 expired +sys={12.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000166 +(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000167 +(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000168 +(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000169 +(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000170 +(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000171 +(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Paging delayed: waiting for available slots at BTS +sys={13.1000000}: select() +sys={14.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000172 +(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000173 +(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000174 +(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000175 +(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000176 +(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000177 +(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000178 +(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000179 +(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000180 +(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000181 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000036: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000035: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000034: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000033: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000032: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000031: (bts=0) T3113 expired +sys={14.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000182 +(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000183 +(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000184 +(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000185 +(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000186 +(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000187 +(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Paging delayed: waiting for available slots at BTS +sys={15.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000045: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000044: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000043: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000042: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000041: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000040: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000039: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000038: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000037: (bts=0) T3113 expired +sys={16.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000188 +(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000189 +(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000190 +(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000191 +(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000192 +(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000193 +(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000194 +(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000195 +(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000196 +(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000197 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000050: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000049: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000048: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000047: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000046: (bts=0) T3113 expired +sys={16.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000198 +(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000199 +(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000200 +(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000201 +(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000202 +(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000203 +(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Paging delayed: waiting for available slots at BTS +sys={17.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000051: (bts=0) T3113 expired +sys={18.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000204 +(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000205 +(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000206 +(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000207 +(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000208 +(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000209 +(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000210 +(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000211 +(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000212 +(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000213 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000061: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000060: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000059: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000058: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000057: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000056: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000055: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000054: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000053: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000052: (bts=0) T3113 expired +sys={18.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000214 +(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000215 +(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000216 +(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000217 +(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000218 +(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000219 +(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Paging delayed: waiting for available slots at BTS +sys={19.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000069: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000068: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000067: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000066: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000065: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000064: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000063: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000062: (bts=0) T3113 expired +sys={20.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000220 +(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000221 +(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000222 +(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000223 +(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000224 +(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000225 +(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000226 +(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000227 +(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000228 +(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000229 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000070: (bts=0) T3113 expired +sys={20.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000230 +(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000231 +(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000232 +(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000233 +(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000234 +(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000235 +(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Paging delayed: waiting for available slots at BTS +sys={21.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000075: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000074: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000073: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000072: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000071: (bts=0) T3113 expired +sys={22.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000236 +(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000237 +(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000238 +(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000239 +(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000240 +(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000241 +(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000242 +(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000243 +(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000244 +(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000245 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000085: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000084: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000083: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000082: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000081: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000080: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000079: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000078: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000077: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000076: (bts=0) T3113 expired +sys={22.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000246 +(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000247 +(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000248 +(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000249 +(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000250 +(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000251 +(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Paging delayed: waiting for available slots at BTS +sys={23.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000090: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000089: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000088: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000087: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000086: (bts=0) T3113 expired +sys={24.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000252 +(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000253 +(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000254 +(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000255 +(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000256 +(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000257 +(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000258 +(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000259 +(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000260 +(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000261 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000091: (bts=0) T3113 expired +sys={24.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000262 +(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000263 +(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000264 +(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000265 +(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000266 +(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000267 +(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Paging delayed: waiting for available slots at BTS +sys={25.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000099: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000098: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000097: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000096: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000095: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000094: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000093: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000092: (bts=0) T3113 expired +sys={26.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000268 +(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000269 +(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000270 +(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000271 +(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000272 +(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000273 +(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000274 +(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000275 +(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000276 +(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000277 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000109: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000108: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000107: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000106: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000105: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000104: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000103: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000102: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000101: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000100: (bts=0) T3113 expired +sys={26.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000278 +(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000279 +(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000280 +(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000281 +(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000282 +(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000283 +(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Paging delayed: waiting for available slots at BTS +sys={27.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000110: (bts=0) T3113 expired +sys={28.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000284 +(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000285 +(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000286 +(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000287 +(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000288 +(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000289 +(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000290 +(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000291 +(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000292 +(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000293 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000115: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000114: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000113: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000112: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000111: (bts=0) T3113 expired +sys={28.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000294 +(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000295 +(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000296 +(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000297 +(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000298 +(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000299 +(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Paging delayed: waiting for available slots at BTS +sys={29.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000124: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000123: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000122: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000121: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000120: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000119: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000118: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000117: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000116: (bts=0) T3113 expired +sys={30.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000300 +(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000301 +(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000302 +(msc=-1) Paging: subscr-IMSI-1234000303: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000303 +(msc=-1) Paging: subscr-IMSI-1234000304: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000304 +(msc=-1) Paging: subscr-IMSI-1234000305: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000305 +(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000306 +(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000307 +(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000308 +(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000309 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000130: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000129: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000128: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000127: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000126: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000125: (bts=0) T3113 expired +sys={30.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000310 +(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000311 +(msc=-1) Paging: subscr-IMSI-1234000312: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000312 +(msc=-1) Paging: subscr-IMSI-1234000313: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000313 +(msc=-1) Paging: subscr-IMSI-1234000314: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000314 +(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000315 +(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Paging delayed: waiting for available slots at BTS +sys={31.000000}: select() +sys={32.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000316 +(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000317 +(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000318 +(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000319 +(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000320 +(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000321 +(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000322 +(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000323 +(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000324 +(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000325 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000139: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000138: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000137: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000136: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000135: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000134: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000133: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000132: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000131: (bts=0) T3113 expired +sys={32.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000326 +(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000327 +(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000328 +(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000329 +(msc=-1) Paging: subscr-IMSI-1234000330: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000330 +(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000331 +(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Paging delayed: waiting for available slots at BTS +sys={33.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000148: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000147: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000146: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000145: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000144: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000143: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000142: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000141: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000140: (bts=0) T3113 expired +sys={34.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000332 +(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000333 +(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000334 +(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000335 +(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000336 +(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000337 +(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000338 +(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000339 +(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000340 +(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000341 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000150: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000149: (bts=0) T3113 expired +sys={34.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000342 +(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000343 +(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000344 +(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000345 +(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000346 +(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000347 +(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Paging delayed: waiting for available slots at BTS +sys={35.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000154: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000153: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000152: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000151: (bts=0) T3113 expired +sys={36.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000348 +(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000349 +(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000350 +(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000351 +(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000352 +(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000353 +(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000354 +(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000355 +(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000356 +(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000357 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000164: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000163: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000162: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000161: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000160: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000159: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000158: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000157: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000156: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000155: (bts=0) T3113 expired +sys={36.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000358 +(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000359 +(msc=-1) Paging: subscr-IMSI-1234000360: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000360 +(msc=-1) Paging: subscr-IMSI-1234000361: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000361 +(msc=-1) Paging: subscr-IMSI-1234000362: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000362 +(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000363 +(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Paging delayed: waiting for available slots at BTS +sys={37.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000170: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000169: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000168: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000167: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000166: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000165: (bts=0) T3113 expired +sys={38.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000364 +(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000365 +(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000366 +(msc=-1) Paging: subscr-IMSI-1234000367: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000367 +(msc=-1) Paging: subscr-IMSI-1234000368: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000368 +(msc=-1) Paging: subscr-IMSI-1234000369: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000369 +(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000370 +(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000371 +(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000372 +(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000373 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +sys={38.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000374 +(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000375 +(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000376 +(msc=-1) Paging: subscr-IMSI-1234000377: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000377 +(msc=-1) Paging: subscr-IMSI-1234000378: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000378 +(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000379 +(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Paging delayed: waiting for available slots at BTS +sys={39.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000178: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000177: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000176: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000175: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000174: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000173: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000172: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000171: (bts=0) T3113 expired +sys={40.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000380 +(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000381 +(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000382 +(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000383 +(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000384 +(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000385 +(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000386 +(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000387 +(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000388 +(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000389 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000188: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000187: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000186: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000185: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000184: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000183: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000182: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000181: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000180: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000179: (bts=0) T3113 expired +sys={40.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000390 +(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000391 +(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000392 +(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000393 +(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000394 +(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000395 +(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Paging delayed: waiting for available slots at BTS +sys={41.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000190: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000189: (bts=0) T3113 expired +sys={42.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000396 +(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000397 +(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000398 +(msc=-1) Paging: subscr-IMSI-1234000399: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000399 +(msc=-1) Paging: subscr-IMSI-1234000400: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000400 +(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000401 +(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000402 +(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000403 +(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000404 +(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000405 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000194: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000193: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000192: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000191: (bts=0) T3113 expired +sys={42.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000406 +(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000407 +(msc=-1) Paging: subscr-IMSI-1234000408: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000408 +(msc=-1) Paging: subscr-IMSI-1234000409: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000409 +(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000410 +(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000411 +(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Paging delayed: waiting for available slots at BTS +sys={43.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000203: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000202: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000201: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000200: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000199: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000198: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000197: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000196: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000195: (bts=0) T3113 expired +sys={44.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000412 +(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000413 +(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000414 +(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000415 +(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000416 +(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000417 +(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000418 +(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000419 +(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000420 +(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000421 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000210: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000209: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000208: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000207: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000206: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000205: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000204: (bts=0) T3113 expired +sys={44.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000422 +(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000423 +(msc=-1) Paging: subscr-IMSI-1234000424: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000424 +(msc=-1) Paging: subscr-IMSI-1234000425: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000425 +(msc=-1) Paging: subscr-IMSI-1234000426: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000426 +(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000427 +(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Paging delayed: waiting for available slots at BTS +sys={45.000000}: select() +sys={46.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000428 +(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000429 +(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000430 +(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000431 +(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000432 +(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000433 +(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000434 +(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000435 +(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000436 +(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000437 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000218: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000217: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000216: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000215: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000214: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000213: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000212: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000211: (bts=0) T3113 expired +sys={46.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000438 +(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000439 +(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000440 +(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000441 +(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000442 +(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000443 +(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Paging delayed: waiting for available slots at BTS +sys={47.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000227: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000226: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000225: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000224: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000223: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000222: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000221: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000220: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000219: (bts=0) T3113 expired +sys={48.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000444 +(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000445 +(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000446 +(msc=-1) Paging: subscr-IMSI-1234000447: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000447 +(msc=-1) Paging: subscr-IMSI-1234000448: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000448 +(msc=-1) Paging: subscr-IMSI-1234000449: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000449 +(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000450 +(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000451 +(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000452 +(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000453 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000230: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000229: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000228: (bts=0) T3113 expired +sys={48.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000454 +(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000455 +(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000456 +(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000457 +(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000458 +(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000459 +(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Paging delayed: waiting for available slots at BTS +sys={49.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000233: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000232: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000231: (bts=0) T3113 expired +sys={50.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000460 +(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000461 +(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000462 +(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000463 +(msc=-1) Paging: subscr-IMSI-1234000464: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000464 +(msc=-1) Paging: subscr-IMSI-1234000465: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000465 +(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000466 +(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000467 +(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000468 +(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000469 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000243: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000242: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000241: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000240: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000239: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000238: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000237: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000236: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000235: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000234: (bts=0) T3113 expired +sys={50.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000470 +(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000471 +(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000472 +(msc=-1) Paging: subscr-IMSI-1234000473: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000473 +(msc=-1) Paging: subscr-IMSI-1234000474: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000474 +(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000475 +(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Paging delayed: waiting for available slots at BTS +sys={51.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000250: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000249: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000248: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000247: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000246: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000245: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000244: (bts=0) T3113 expired +sys={52.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000476 +(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000477 +(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000478 +(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000479 +(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000480 +(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000481 +(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000482 +(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000483 +(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000484 +(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000485 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +sys={52.250000}: select() +(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000486 +(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000487 +(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000488 +(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000489 +(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000490 +(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000491 +(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Paging delayed: waiting for available slots at BTS +sys={53.000000}: select() +(msc=-1) Paging: subscr-IMSI-1234000257: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000256: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000255: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000254: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000253: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000252: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000251: (bts=0) T3113 expired +sys={54.000000}: select() +(bts=0) Estimated 16 paging available_slots over 2 seconds +(bts=0) Timeout waiting for CCCH Load Indication, assuming BTS is below Load Threshold (available_slots 0 -> 16) +(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000492 +(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000493 +(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000494 +(msc=-1) Paging: subscr-IMSI-1234000495: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000495 +(msc=-1) Paging: subscr-IMSI-1234000496: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000496 +(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000497 +(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000498 +(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Going to send paging command for ch. type 0 (attempt 0) +abis_rsl_sendmsg: Paging CMD IMSI-1234000499 +(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000258 +(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) Going to send paging command for ch. type 0 (attempt 1) +abis_rsl_sendmsg: Paging CMD IMSI-1234000259 +(bts=0) Paged 10 subscribers during last iteration. Scheduling next batch (available_slots=6) +(msc=-1) Paging: subscr-IMSI-1234000267: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000266: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000265: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000264: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000263: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000262: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000261: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000260: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000259: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000258: (bts=0) T3113 expired +(msc=-1) Paging: subscr-IMSI-1234000268: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000269: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000270: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000271: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000272: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000273: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000274: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000275: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000276: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000277: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000278: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000279: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000280: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000281: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000282: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000283: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000284: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000285: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000286: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000287: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000288: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000289: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000290: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000291: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000292: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000293: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000294: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000295: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000296: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000297: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000298: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000299: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000300: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000301: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000302: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000303: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000304: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000305: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000306: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000307: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000308: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000309: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000310: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000311: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000312: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000313: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000314: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000315: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000316: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000317: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000318: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000319: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000320: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000321: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000322: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000323: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000324: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000325: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000326: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000327: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000328: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000329: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000330: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000331: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000332: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000333: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000334: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000335: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000336: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000337: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000338: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000339: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000340: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000341: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000342: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000343: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000344: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000345: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000346: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000347: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000348: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000349: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000350: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000351: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000352: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000353: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000354: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000355: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000356: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000357: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000358: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000359: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000360: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000361: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000362: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000363: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000364: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000365: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000366: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000367: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000368: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000369: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000370: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000371: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000372: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000373: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000374: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000375: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000376: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000377: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000378: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000379: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000380: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000381: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000382: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000383: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000384: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000385: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000386: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000387: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000388: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000389: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000390: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000391: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000392: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000393: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000394: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000395: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000396: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000397: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000398: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000399: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000400: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000401: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000402: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000403: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000404: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000405: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000406: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000407: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000408: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000409: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000410: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000411: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000412: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000413: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000414: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000415: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000416: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000417: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000418: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000419: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000420: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000421: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000422: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000423: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000424: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000425: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000426: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000427: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000428: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000429: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000430: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000431: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000432: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000433: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000434: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000435: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000436: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000437: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000438: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000439: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000440: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000441: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000442: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000443: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000444: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000445: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000446: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000447: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000448: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000449: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000450: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000451: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000452: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000453: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000454: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000455: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000456: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000457: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000458: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000459: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000460: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000461: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000462: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000463: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000464: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000465: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000466: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000467: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000468: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000469: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000470: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000471: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000472: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000473: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000474: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000475: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000476: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000477: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000478: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000479: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000480: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000481: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000482: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000483: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000484: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000485: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000486: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000487: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000488: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000489: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000490: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000491: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000492: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000493: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000494: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000495: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000496: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000497: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000498: (bts=0) Stop paging (flush) +(msc=-1) Paging: subscr-IMSI-1234000499: (bts=0) Stop paging (flush) +BTS deallocated OK in test_paging500_combined() diff --git a/tests/testsuite.at b/tests/testsuite.at index 9e3e61446..270d10c85 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -37,6 +37,12 @@ cat $abs_srcdir/handover/handover_tests.ok > expout AT_CHECK([$abs_srcdir/handover/handover_tests.sh $abs_srcdir/handover $abs_builddir/handover], [], [expout], [ignore]) AT_CLEANUP +AT_SETUP([paging]) +AT_KEYWORDS([paging]) +cat $abs_srcdir/paging/paging_test.ok > experr +AT_CHECK([$abs_top_builddir/tests/paging/paging_test], [], [ignore], [experr]) +AT_CLEANUP + AT_SETUP([nanobts_omlattr]) AT_KEYWORDS([nanobts_omlattr]) cat $abs_srcdir/nanobts_omlattr/nanobts_omlattr_test.ok > expout