slow_query12.log
995 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
/usr/libexec/mysqld, Version: 10.0.23-MariaDB (MariaDB Server). started with:
Tcp port: 3306 Unix socket: /var/lib/mysql/mysql.sock
Time Id Command Argument
use kstych_flexydial;
insert into full_remark set call_id='1495213',fullremark='RNR';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495219',fullremark='';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:127:{s:2:"id";i:401174;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:10:"VINODKUMAR";s:10:"clientcode";s:8:"20875644";s:16:"clientinternalid";s:8:"20875644";s:6:"status";s:6:"Called";s:8:"priority";s:0:"";s:7:"ucic_id";s:223:" ~||~ PL 10Sec NB Decile: 10 ~||~ PL 10Sec thru NB PA Limit: 1000000 ~||~ ZipDrive Loan Amt: 1440000 ~||~ LE_ONLY - Old Limit: 250000 | New Limit: 300000 | OLDPROD: DINERS BLUE ~||~ COC_AMT: 187500 ~||~ PL2CC_AMT: 375000.00";s:6:"client";s:6:"PM10OC";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"20875644";s:3:"dob";s:25:"11JUL1982:00:00:00.000000";s:3:"age";s:2:"35";s:6:"mobile";s:10:"8220010303";s:9:"altphone1";s:7:"2010638";s:9:"altphone2";s:5:" ";s:7:"emailid";s:16:"[email protected]";s:8:"product1";s:9:"Auto Loan";s:8:"product2";s:9:"Home Loan";s:8:"product3";s:25:"Mobile Banking Activation";s:10:"bp_act_tag";s:1:"Y";s:10:"bp_reg_ora";s:1:"1";s:6:"chillr";s:5:" ";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Inactive";s:7:"dc_type";s:19:"Imperia_platinum DC";s:21:"directpay_billpay_tag";s:1:"1";s:10:"ivr_active";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:67:"Save upto Rs.9000 in CashBack on your HDFC Bank Imperia_platinum DC";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:7:"1200000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:17:"decile_hl_csa_var";s:8:"HomeLoan";s:16:"pl_paperless_amt";s:7:"1000000";s:5:"prod2";s:11:"DINERS BLUE";s:3:"apt";s:50:"HOLDS DINERS BLUE AND IS IN ACTIVE AND COC AMT 97K";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:54:"O/S DUES 57050.00 LAST BILL AMOUNT 2059.00 DUE DATE 01";s:9:"coc_eligi";s:3:"97K";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:8:"rf_offer";s:5:" ";s:19:"decile_ins_casa_var";s:25:"Investment Insurance plan";s:15:"motor_insurance";s:5:" ";s:8:"li_cover";s:91:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.40 Lacs.";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) YOUNGSTAR and 3) PRO_GROWTH_SUPER";s:13:"decile_mf_var";s:2:"MF";s:8:"ins_date";s:19:"2018-04-02 14:51:12";s:7:"auto_id";s:7:"1691352";s:9:"SERVER_IP";s:12:"10.22.214.10";s:5:"Perks";s:188:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 1--> BillPay: InActive, Basic_Banking: Active, ECOM_Shopping: InActive, Investment: InActive, Physical: InActive";s:15:"dialer_lastcall";s:19:"2018-04-04 07:30:12";s:13:"dialer_status";s:6:"REDIAL";s:16:"dialer_substatus";s:6:"REDIAL";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:10:"GROUP_CORR";s:8:"20875644";s:3:"DOB";s:25:"11JUL1982:00:00:00.000000";s:6:"Chillr";s:5:" ";s:9:"FD_Status";s:15:"FD : 05/01/2018";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:3:"SSS";s:5:" ";s:10:"AL_PRE_AMT";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (Y) / FD(Y) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:3:"APT";s:56:"HOLDS DINERS BLUE AND IS IN ACTIVE AND COC AMT 225000.00";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:51:"O/S DUES 15890.00 LAST BILL AMOUNT 0.00 DUE DATE 01";s:9:"COC_ELIGI";s:6:"225000";s:7:"LE_ELIG";s:6:"300000";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:4:"CBDT";s:302:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:RECURRING DEPOSIT // / / / /Pitch CASA/FD nominee online. / . / /Pitch Insta/jumbo loan. / /Pitch SI on BP/";s:20:"decile_LAS_Demat_var";s:1:" ";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:88:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)HDFC Cancer Care 3)Click 2 protect Plus";s:13:"decile_MF_var";s:2:"MF";s:6:"mf_isa";s:0:"";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (Y) / FD(Y) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:302:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:RECURRING DEPOSIT // / / / /Pitch CASA/FD nominee online. / . / /Pitch Insta/jumbo loan. / /Pitch SI on BP/";s:8:"question";s:84:"1056,1327,1026,1322,1325,1326,2485,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059";s:10:"BP_REG_ora";s:1:"1";s:11:"AL_CAR_CASH";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:10:"IVR_active";s:1:"1";s:19:"decile_Ins_CASA_var";s:5:" ";s:10:"al_upgrade";s:5:" ";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:21:"decile_demat_casa_var";s:5:"Demat";s:10:"PL_PRE_AMT";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:114:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:8:"priority";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:9:"altphone1";i:1;s:9:"altphone2";i:1;s:7:"emailid";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"bp_act_tag";i:1;s:10:"bp_reg_ora";i:1;s:6:"chillr";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:10:"ivr_active";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:17:"decile_hl_csa_var";i:1;s:16:"pl_paperless_amt";i:1;s:5:"prod2";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:9:"coc_eligi";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:8:"rf_offer";i:1;s:19:"decile_ins_casa_var";i:1;s:15:"motor_insurance";i:1;s:8:"li_cover";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:13:"decile_mf_var";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:5:"Perks";i:1;s:4:"Unit";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:6:"Chillr";i:1;s:9:"FD_Status";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:3:"SSS";i:1;s:10:"AL_PRE_AMT";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:9:"hl_bt_amt";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:4:"CBDT";i:1;s:20:"decile_LAS_Demat_var";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:13:"decile_MF_var";i:1;s:6:"mf_isa";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:8:"question";i:1;s:10:"BP_REG_ora";i:1;s:11:"AL_CAR_CASH";i:1;s:17:"decile_HL_CSA_var";i:1;s:11:"LAP_PRE_AMT";i:1;s:10:"IVR_active";i:1;s:19:"decile_Ins_CASA_var";i:1;s:10:"al_upgrade";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:21:"decile_demat_casa_var";i:1;s:10:"PL_PRE_AMT";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='VINODKUMAR' ,`mobile`='8220010303' ,`emailid`='[email protected]' ,`altphone1`='2010638' ,`altphone2`=' ' ,`client`='PM10OC' ,`status`='Called' ,`clientinternalid`='20875644' ,`clientcode`='20875644' ,`dialer_status`='REDIAL' ,`dialer_substatus`='REDIAL' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:30:12' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1327,1026,1322,1325,1326,2485,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059' ,`mf_isa`='' where id='401174' limit 1;
insert into full_remark set call_id='1495216',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495215',fullremark='Rnr';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=65194108 and question IN(1021,1319,1053,1056,1057,1058,1322,2462,2515,2505,2498,1328,1329,1330,1051);
SELECT distinct question FROM questionaire_details WHERE cust_id=42658536 and question IN(1021,1319,1056,1058,1327,1322,1325,2485,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495221',fullremark='network issue';
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM10OC' order by dialer_lastcall asc;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=26678147 and question IN(1056,1057,1327,1024,1320,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495214',fullremark='';
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM1OC' order by dialer_lastcall asc;
insert into questionaire_details set created_at='2018-04-04 07:31:41', updated_at='2018-04-04 07:31:41', user_id='94542',cust_id='43935995',call_id='1495199',name='MASTHAN CHEVUU',number='9043650699',question_time='2018-04-04 07-26-33',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:41', updated_at='2018-04-04 07:31:41', user_id='94542',cust_id='43935995',call_id='1495199',name='MASTHAN CHEVUU',number='9043650699',question_time='2018-04-04 07-26-33',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:41', updated_at='2018-04-04 07:31:41', user_id='94542',cust_id='43935995',call_id='1495199',name='MASTHAN CHEVUU',number='9043650699',question_time='2018-04-04 07-26-33',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:41', updated_at='2018-04-04 07:31:41', user_id='94542',cust_id='43935995',call_id='1495199',name='MASTHAN CHEVUU',number='9043650699',question_time='2018-04-04 07-26-33',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:41', updated_at='2018-04-04 07:31:41', user_id='94542',cust_id='43935995',call_id='1495199',name='MASTHAN CHEVUU',number='9043650699',question_time='2018-04-04 07-26-33',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:41', updated_at='2018-04-04 07:31:41', user_id='94542',cust_id='43935995',call_id='1495199',name='MASTHAN CHEVUU',number='9043650699',question_time='2018-04-04 07-26-33',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:41', updated_at='2018-04-04 07:31:41', user_id='94542',cust_id='43935995',call_id='1495199',name='MASTHAN CHEVUU',number='9043650699',question_time='2018-04-04 07-26-33',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:41', updated_at='2018-04-04 07:31:41', user_id='94542',cust_id='43935995',call_id='1495199',name='MASTHAN CHEVUU',number='9043650699',question_time='2018-04-04 07-26-33',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=37603139 and question IN(1015,1016,1319,1053,1056,1327,1024,1320,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059);
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495228',fullremark='swo';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:31:53', updated_at='2018-04-04 07:31:53', user_id='82413',cust_id='34910138',call_id='1495217',name='PRASANNA D',number='9790716061',question_time='2018-04-04 07-29-47',question='1015',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:53', updated_at='2018-04-04 07:31:53', user_id='82413',cust_id='34910138',call_id='1495217',name='PRASANNA D',number='9790716061',question_time='2018-04-04 07-29-47',question='1016',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:53', updated_at='2018-04-04 07:31:53', user_id='82413',cust_id='34910138',call_id='1495217',name='PRASANNA D',number='9790716061',question_time='2018-04-04 07-29-47',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:54', updated_at='2018-04-04 07:31:54', user_id='82413',cust_id='34910138',call_id='1495217',name='PRASANNA D',number='9790716061',question_time='2018-04-04 07-29-47',question='1026',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:54', updated_at='2018-04-04 07:31:54', user_id='82413',cust_id='34910138',call_id='1495217',name='PRASANNA D',number='9790716061',question_time='2018-04-04 07-29-47',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:54', updated_at='2018-04-04 07:31:54', user_id='82413',cust_id='34910138',call_id='1495217',name='PRASANNA D',number='9790716061',question_time='2018-04-04 07-29-47',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='If pre approved eligibility for 10 sec PL is there',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:31:54', updated_at='2018-04-04 07:31:54', user_id='82413',cust_id='34910138',call_id='1495217',name='PRASANNA D',number='9790716061',question_time='2018-04-04 07-29-47',question='1051',primary_question='Check profiling for TWL / car ownership, Pitch for car loan- resh or CNC, update profiler with car details.',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, you have done transcation at petrol pump using your DC/CC',followup1_response=' Yes',followup1_text='',followup2_question='Instant Loan credit facility ',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select id from records where mobile like '%7373792924' OR
altphone1 like '%7373792924' OR
altphone2 like '%7373792924' OR
altphone3 like '%7373792924' OR
altphone4 like '%7373792924' OR
altphone5 like '%7373792924' OR
altphone6 like '%7373792924' OR
altphone7 like '%7373792924' OR
altphone8 like '%7373792924' OR
altphone9 like '%7373792924' OR
altphone10 like '%7373792924' and client in ('PM7OC','PM7OC_RC','null','PM18OC');
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=39993154 and question IN(1056,1057,1327,1026,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1050);
insert into full_remark set call_id='1495199',fullremark='ContactedPurpose Incoming callOut call made on 9043650699cust using CC he want to know any charges will swipe ennumbers';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495200',fullremark='cust want new card CC regala';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495232',fullremark='';
insert into full_remark set call_id='1495217',fullremark='intimated offers to the customer no requirements customer saved my number';
select id from records where mobile like '%8072283989' OR
altphone1 like '%8072283989' OR
altphone2 like '%8072283989' OR
altphone3 like '%8072283989' OR
altphone4 like '%8072283989' OR
altphone5 like '%8072283989' OR
altphone6 like '%8072283989' OR
altphone7 like '%8072283989' OR
altphone8 like '%8072283989' OR
altphone9 like '%8072283989' OR
altphone10 like '%8072283989' and client in ('PM7OC','PM7OC_RC','null','PM18OC');
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495237',fullremark='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:32:53', updated_at='2018-04-04 07:32:53', user_id='82238',cust_id='62693891',call_id='1495208',name='RACHANENI ABHILASH',number='9676274466',question_time='2018-04-04 07-27-27',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='Dear Sir / Madame, request you to help in letting us know your annual income',followup1_response=' My annual Income is XX lacs',followup1_text='',followup2_question='OK
(PB to note the annual income as informed by customer)',followup2_response=' My annual Income is XX lacs',followup2_text='',followup3_question='Apart from you , Is there any one working in your Family',followup3_response=' My annual Income is XX lacs',followup3_text='',followup4_question='Thank You for your time Sir',followup4_response=' OK',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:32:53', updated_at='2018-04-04 07:32:53', user_id='82238',cust_id='62693891',call_id='1495208',name='RACHANENI ABHILASH',number='9676274466',question_time='2018-04-04 07-27-27',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='Sir I can See your have not registered for Insta Alerts .',followup1_response=' Yes',followup1_text='',followup2_question='How can I register for Insta Alerts',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:32:53', updated_at='2018-04-04 07:32:53', user_id='82238',cust_id='62693891',call_id='1495208',name='RACHANENI ABHILASH',number='9676274466',question_time='2018-04-04 07-27-27',question='1026',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, as I can see, you are using a normal CC and there are regular debit in the account',followup1_response=' Yes',followup1_text='',followup2_question='We have an offer of on your credit card',followup2_response=' Yes',followup2_text='',followup3_question='Pls verify you DOB & Mailing address',followup3_response=' Yes',followup3_text='',followup4_question='After positive verification, share eligibilty and explain the benefits, Ask if he would like to go for upgrade',followup4_response=' I don?t want to UG',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:32:53', updated_at='2018-04-04 07:32:53', user_id='82238',cust_id='62693891',call_id='1495208',name='RACHANENI ABHILASH',number='9676274466',question_time='2018-04-04 07-27-27',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see there is not much balance in you?re A/c , Compare to earlier ',followup1_response=' Yes',followup1_text='',followup2_question='is there any funds Requirement , So that I can help for getting the Loans for you .',followup2_response=' Yes',followup2_text='',followup3_question='No issue , Sir but I request you to bring the Balance to the A/C ',followup3_response=' Yes',followup3_text='',followup4_question='Sir I Would also like to tell you , We can extend Classic Prog Benefits to your Family Members also',followup4_response=' No',followup4_text='',followup5_question='Sir it will make them feel proud like you to avail the classic benefits',followup5_response=' No Not right now',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:32:53', updated_at='2018-04-04 07:32:53', user_id='82238',cust_id='62693891',call_id='1495208',name='RACHANENI ABHILASH',number='9676274466',question_time='2018-04-04 07-27-27',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='Sir, why don?t you register for smart pay
Explain beenfits of using smart pay (You will never miss you due date/ No late payment charges)',followup2_response=' Yes',followup2_text='',followup3_question='Ask for the reson',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:32:53', updated_at='2018-04-04 07:32:53', user_id='82238',cust_id='62693891',call_id='1495208',name='RACHANENI ABHILASH',number='9676274466',question_time='2018-04-04 07-27-27',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='Sir, why don?t you register for smart pay
Explain beenfits of using smart pay (You will never miss you due date/ No late payment charges)',followup2_response=' Yes',followup2_text='',followup3_question='Explain the process to register for Bill pay via net banking',followup3_response=' Yes',followup3_text='',followup4_question='Ask customer to login to netbanking and guide for registration of bill pay',followup4_response=' OK',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update records set modified=now(),peopledata='a:140:{s:2:"id";i:273169;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:18:"RACHANENI ABHILASH";s:10:"clientcode";s:8:"62693891";s:16:"clientinternalid";s:8:"62693891";s:6:"status";s:6:"Called";s:7:"ucic_id";s:151:" ~||~ ZipDrive Loan Amt: 802374 ~||~ PL PQ One Check Elig Amt: 325000 ~||~ PL PQ One Check IRR: 11.1% ~||~ PL PQ One Check Segment: PQ with Coapp ~||~ ";s:6:"client";s:6:"PM25OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"62693891";s:3:"DOB";s:25:"18MAY1993:00:00:00.000000";s:3:"age";s:2:"24";s:6:"mobile";s:10:"9676274466";s:7:"emailid";s:59:"[email protected] ~~ Customer Registered for NDNC";s:8:"Product1";s:13:"Personal Loan";s:8:"Product2";s:9:"Gold Loan";s:8:"Product3";s:13:"Personal Loan";s:10:"BP_REG_ora";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active30";s:7:"dc_type";s:19:"Imperia_platinum DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:67:"Save upto Rs.9000 in CashBack on your HDFC Bank Imperia_platinum DC";s:10:"AL_PRE_AMT";s:5:" ";s:15:"EDU_SEGMENT_var";s:7:"EduLoan";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:17:"LAST_TXN_POS_DATE";s:25:"31JAN2018:20:20:40.000000";s:8:"li_cover";s:94:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.69.53 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:75:"LI PLAN Priority 1)HDFC Cancer Care 2)Click 2 protect Plus 3)HDFC Life Uday";s:15:"dialer_lastcall";s:19:"2018-04-04 07:32:58";s:13:"dialer_status";s:31:"Contacted - Follow-Up - Generic";s:16:"dialer_substatus";s:67:"Customer - No Requirement - Not to be called back within same month";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:3:"dob";s:25:"18MAY1993:00:00:00.000000";s:8:"product1";s:27:"Petrol Usage on Credit Card";s:8:"product2";s:26:"Petrol Usage on Debit Card";s:10:"bp_reg_ora";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:15:"edu_segment_var";s:7:"EduLoan";s:16:"pl_paperless_amt";s:6:"143000";s:5:"prod2";s:12:"JET TITANIUM";s:3:"apt";s:51:"HOLDS JET TITANIUM AND IS IN ACTIVE AND COC AMT 25K";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:54:"O/S DUES 3326.41 LAST BILL AMOUNT 18223.00 DUE DATE 18";s:9:"coc_eligi";s:3:"25K";s:17:"last_txn_pos_date";s:25:"18OCT2016:03:43:09.000000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:7:"medical";s:59:"Customer has high medical spends, discuss Health Insurance.";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) PRO_GROWTH_SUPER and 3) YOUNGSTAR";s:14:"DBC_ACTIVATION";s:253:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(Y) /Credit Card Active:(Y) /Debit Card Active:(N) /Total NB online Transactions : 7 /Ac";s:18:"DIGITAL_INITIATIVE";s:163:"NetBanking Active . Top 4 Product :AL/PL /Customer is registered and paying bills through other methods /Kindly Update Aadhar / / / /Kindly pitch for RD product .";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:10:"IVR_active";s:1:"1";s:3:"APT";s:35:"HOLDS JET TITANIUM AND IS IN ACTIVE";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:54:"O/S DUES 12934.59 LAST BILL AMOUNT 8027.00 DUE DATE 18";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:7:"MEdical";s:59:"Customer has high medical spends, discuss Health Insurance.";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:349:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / /Top 4 Pdts :LI / /Pitch CASA nominee online. / . Customer is registered and paying bills through other methods. / / / /Pitch SI on BP/Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 13:39:42";s:7:"auto_id";s:6:"674942";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"62693891";s:9:"altphone2";s:5:" ";s:8:"product3";s:13:"Personal Loan";s:10:"atm_active";s:1:"1";s:6:"chillr";s:5:" ";s:10:"ivr_active";s:1:"1";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:6:"750000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"pl_pre_amt";s:6:"515000";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:349:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / /Top 4 Pdts :LI / /Pitch CASA nominee online. / . Customer is registered and paying bills through other methods. / / / /Pitch SI on BP/Paying Rent pitch SI on DC";s:5:"Perks";s:184:"< ACT:ADHR,NB >< INACT:CHLR,MB,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:6:"Chillr";s:5:" ";s:14:"DC_billpay_tag";s:1:"1";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:5:"BLOCK";s:5:" ";s:9:"COC_ELIGI";s:5:" ";s:7:"LE_ELIG";s:5:" ";s:21:"decile_demat_casa_var";s:5:"Demat";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:20:"decile_LAS_Demat_var";s:1:" ";s:6:"mf_isa";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:8:"question";s:69:"1056,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330,1050,1059";s:9:"altphone1";s:27:"[email protected]";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:10:"al_upgrade";s:5:" ";s:11:"LAS_PRE_AMT";s:5:" ";s:7:"dc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:127:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"BP_REG_ora";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:10:"AL_PRE_AMT";i:1;s:15:"EDU_SEGMENT_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:3:"dob";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:10:"bp_reg_ora";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:15:"edu_segment_var";i:1;s:16:"pl_paperless_amt";i:1;s:5:"prod2";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:9:"coc_eligi";i:1;s:17:"last_txn_pos_date";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:7:"medical";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:10:"IVR_active";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:7:"MEdical";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:9:"altphone2";i:1;s:8:"product3";i:1;s:10:"atm_active";i:1;s:6:"chillr";i:1;s:10:"ivr_active";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:14:"DC_billpay_tag";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:5:"BLOCK";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:21:"decile_demat_casa_var";i:1;s:7:"cc_auto";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:8:"question";i:1;s:9:"altphone1";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:10:"al_upgrade";i:1;s:11:"LAS_PRE_AMT";i:1;s:7:"dc_auto";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='RACHANENI ABHILASH' ,`mobile`='9676274466' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone1`='[email protected]' ,`altphone2`=' ' ,`client`='PM25OC' ,`status`='Called' ,`clientinternalid`='62693891' ,`clientcode`='62693891' ,`dialer_status`='Contacted - Follow-Up - Generic' ,`dialer_substatus`='Customer - No Requirement - Not to be called back within same month' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:32:58' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330,1050,1059' ,`mf_isa`='' where id='273169' limit 1;
insert into full_remark set call_id='1495208',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=37314100 and question IN(1319,1056,1058,1327,1322,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059,1061);
insert into full_remark set call_id='1495235',fullremark='RNR';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:33:54', updated_at='2018-04-04 07:33:54', user_id='82343',cust_id='6327650',call_id='1495227',name='T S KANNAN',number='9884060194',question_time='2018-04-04 07-30-51',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:33:55', updated_at='2018-04-04 07:33:55', user_id='82343',cust_id='6327650',call_id='1495227',name='T S KANNAN',number='9884060194',question_time='2018-04-04 07-30-51',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:33:55', updated_at='2018-04-04 07:33:55', user_id='82343',cust_id='6327650',call_id='1495227',name='T S KANNAN',number='9884060194',question_time='2018-04-04 07-30-51',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:33:55', updated_at='2018-04-04 07:33:55', user_id='82343',cust_id='6327650',call_id='1495227',name='T S KANNAN',number='9884060194',question_time='2018-04-04 07-30-51',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:34:04', updated_at='2018-04-04 07:34:04', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:04', updated_at='2018-04-04 07:34:04', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='Sir I can See your have not registered for Insta Alerts .',followup1_response=' Yes',followup1_text='',followup2_question='How can I register for Insta Alerts',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:04', updated_at='2018-04-04 07:34:04', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='1024',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, as I can see, you are using a normal CC',followup1_response=' OK',followup1_text='',followup2_question='We have an offer of on your credit card',followup2_response=' OK',followup2_text='',followup3_question='Pls verify you DOB & Mailing address',followup3_response=' OK',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495236',fullremark='';
insert into questionaire_details set created_at='2018-04-04 07:34:04', updated_at='2018-04-04 07:34:04', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='1320',primary_question='Pitch for Investment- MF, HLIC, Demat Account.',primary_response=' OK',primary_text='',followup1_question='Sir , I can see you got a Good Balance in you?re a/c . Anything Which you are Planning from that money in the Near Future',followup1_response=' No',followup1_text='',followup2_question='',followup2_response=' No',followup2_text='',followup3_question='',followup3_response=' No',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:04', updated_at='2018-04-04 07:34:04', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='1325',primary_question='Check for reason, if new organisation, update the same in COCO link, pitch CC Payment through NetBanking, PA products, Term Products, BP/SP, increase CTG,',primary_response=' OK',primary_text='',followup1_question='Sir , I can see your Salary is not getting Credit in the A/C',followup1_response=' No , I have not changed my Company',followup1_text='',followup2_question='Is the Still salary is getting Credit in the a/c',followup2_response=' No , I have not changed my Company',followup2_text='',followup3_question='Sir , Request you to confirm the complete name of your company Name for updating the company Code',followup3_response=' No , I have not changed my Company',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:04', updated_at='2018-04-04 07:34:04', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='1326',primary_question='Understadn the reason ',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:05', updated_at='2018-04-04 07:34:05', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='2485',primary_question='Sir, we can see that salary is not getting credited in your salary account. Have you changed the employer or changed salary account with other bank',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:05', updated_at='2018-04-04 07:34:05', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' No',primary_text='',followup1_question='In todays busy schedule, online bill payment is of great help to save time & penalty on late payment',followup1_response=' No I am not interested now. Will let you know if required',followup1_text='',followup2_question='',followup2_response=' No I am not interested now. Will let you know if required',followup2_text='',followup3_question='',followup3_response=' No I am not interested now. Will let you know if required',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:05', updated_at='2018-04-04 07:34:05', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' No',primary_text='',followup1_question='In todays busy schedule, online shopping is of great help to save time and also avail the exciting offers.',followup1_response=' No I am not interested now. Will let you know if required',followup1_text='',followup2_question='Sure Sir, let me know whenever you require any help on same',followup2_response=' No I am not interested now. Will let you know if required',followup2_text='',followup3_question='',followup3_response=' No I am not interested now. Will let you know if required',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:05', updated_at='2018-04-04 07:34:05', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' No',primary_text='',followup1_question='Sir this is simple process wherein without visiting branch you can book FD/RD online anytime.',followup1_response=' OK I will book the same',followup1_text='',followup2_question='Sure Sir it is convenient, I can help you to book it now now itself through a simple step by logging into to net banking.',followup2_response=' OK I will book the same',followup2_text='',followup3_question='',followup3_response=' OK I will book the same',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:05', updated_at='2018-04-04 07:34:05', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:05', updated_at='2018-04-04 07:34:05', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='1050',primary_question='Check profiling for TWL / car ownership, Pitch for car loan.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:34:05', updated_at='2018-04-04 07:34:05', user_id='87322',cust_id='56185957',call_id='1495220',name='DANIEL PANNEER SELVAN',number='9841688776',question_time='2018-04-04 07-30-09',question='1061',primary_question='Pitch HL BT & Top Up',primary_response=' OK',primary_text='',followup1_question='Do you have a Personal Loan currently running with competition bank?',followup1_response=' No',followup1_text='',followup2_question='',followup2_response=' No',followup2_text='',followup3_question='',followup3_response=' No',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495239',fullremark='rnr';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:142:{s:2:"id";i:269795;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:10:"T S KANNAN";s:10:"clientcode";s:7:"6327650";s:16:"clientinternalid";s:7:"6327650";s:6:"status";s:6:"Called";s:7:"ucic_id";s:202:" ~||~ PL 10Sec NB Decile: 4 ~||~ PL 10Sec thru NB PA Limit: 479000 ~||~ ZipDrive Loan Amt: 1320000 ~||~ LE_ONLY - Old Limit: 250000 | New Limit: 300000 | OLDPROD: MASTER WORLD ~||~ COC_AMT: 187500 ~||~ ";s:6:"client";s:6:"PM16OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:7:"6327650";s:3:"DOB";s:25:"09JUN1980:00:00:00.000000";s:3:"age";s:2:"37";s:6:"mobile";s:10:"9884060194";s:9:"altphone1";s:8:"23765254";s:7:"emailid";s:53:"[email protected] ~~ Customer Registered for NDNC";s:8:"Product1";s:16:"Health Insurance";s:8:"Product2";s:27:"Petrol Usage on Credit Card";s:8:"Product3";s:26:"Petrol Usage on Debit Card";s:9:"DR_CR_TAG";s:41:"No Credits but high Debits.Dr.=1154464.56";s:11:"TOT_CHQ_IND";s:4:"7500";s:14:"TOT_CHQ_NONIND";s:4:"3000";s:8:"TOT_SELF";s:7:"2167242";s:6:"TOT_CR";s:1:"0";s:6:"TOT_DR";s:10:"1154464.56";s:11:"TOT_EMI_OUT";s:1:"0";s:13:"TOT_INVST_OUT";s:1:"0";s:11:"TOT_UTL_OUT";s:1:"0";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:10:"BP_REG_ora";s:1:"1";s:6:"db_tag";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:7:"Dormant";s:7:"dc_type";s:19:"Imperia_platinum DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:67:"Save upto Rs.9000 in CashBack on your HDFC Bank Imperia_platinum DC";s:17:"LAST_TXN_POS_DATE";s:25:"06NOV2013:19:40:04.000000";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:8:"li_cover";s:95:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.101.06 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:14:"DBC_ACTIVATION";s:252:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(N) /Credit Card Active:(N) /Debit Card Active:(N) /Total NB online Transactions : 32 /";s:18:"DIGITAL_INITIATIVE";s:140:"NetBanking Active . Top 4 Product :AL /Customer is registered and paying bills through other methods / / / / /Kindly pitch for RD product .";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (Y) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (Y) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:228:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / / / . / /Pitch Insta loan / /Pitch SI on BP/";s:8:"ins_date";s:19:"2018-04-02 13:39:42";s:7:"auto_id";s:6:"614319";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:7:"6327650";s:3:"dob";s:25:"09JUN1980:00:00:00.000000";s:9:"altphone2";s:5:" ";s:8:"product1";s:25:"Mobile Banking Activation";s:8:"product2";s:12:"Reatil Forex";s:8:"product3";s:15:"Motor Insurance";s:9:"dr_cr_tag";s:29:"High on Debits.Dr.=1090730.52";s:11:"tot_chq_ind";s:3:"300";s:14:"tot_chq_nonind";s:5:"14400";s:8:"tot_self";s:6:"494052";s:6:"tot_cr";s:6:"120000";s:6:"tot_dr";s:10:"1090730.52";s:11:"tot_emi_out";s:1:"0";s:13:"tot_invst_out";s:1:"0";s:11:"tot_utl_out";s:1:"0";s:10:"atm_active";s:1:"1";s:10:"bp_reg_ora";s:1:"1";s:6:"chillr";s:5:" ";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:17:"last_txn_pos_date";s:25:"06NOV2013:19:40:04.000000";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:22:"life_insu_premium_amt1";s:1:"0";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (Y) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (Y) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:228:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / / / . / /Pitch Insta loan / /Pitch SI on BP/";s:5:"Perks";s:184:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:5:"prod2";s:12:"MASTER WORLD";s:3:"APT";s:57:"HOLDS MASTER WORLD AND IS IN ACTIVE AND COC AMT 187500.00";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:53:"O/S DUES 8718.75 LAST BILL AMOUNT 4246.00 DUE DATE 06";s:9:"COC_ELIGI";s:6:"187500";s:7:"LE_ELIG";s:6:"300000";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:20:"decile_LAS_Demat_var";s:1:" ";s:12:"LI_PLan_Prio";s:84:"LI PLAN Priority 1)HDFC Cancer Care 2)HDFC Cancer Care 3)HDFC Life Super Income Plan";s:13:"decile_MF_var";s:2:"MF";s:6:"mf_isa";s:0:"";s:10:"AL_PRE_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:1:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:8:"question";s:64:"1021,1319,1056,1327,1322,2462,2515,2505,2498,1328,1329,1330,1051";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:5:"nboff";s:21:"Offline NB (CHQ PAY )";s:15:"dialer_lastcall";s:19:"2018-04-04 07:34:15";s:13:"dialer_status";s:31:"Contacted - Follow-Up - Generic";s:16:"dialer_substatus";s:67:"Customer - No Requirement - Not to be called back within same month";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:19:"Service Requirement";s:10:"resolution";s:8:"Resolved";s:12:"satisfaction";s:3:"Yes";s:21:"final_call_assessment";s:7:"Ok Call";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:34:"Digital Products -- SMS -- Payzapp";s:19:"dialerdata_service2";s:109:"Digital Products -- Net Banking Activation -- Billpay Registration and Activation Link to be sent to customer";s:19:"dialerdata_service3";s:62:"Digital Products -- Aadhaar -- Cust has already linked Aadhaar";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:10:"al_upgrade";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:10:"bp_act_tag";s:1:"Y";s:3:"HSL";s:1:"1";s:11:"LAS_PRE_AMT";s:5:" ";}',modifylog='0',dirty='a:129:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:9:"DR_CR_TAG";i:1;s:11:"TOT_CHQ_IND";i:1;s:14:"TOT_CHQ_NONIND";i:1;s:8:"TOT_SELF";i:1;s:6:"TOT_CR";i:1;s:6:"TOT_DR";i:1;s:11:"TOT_EMI_OUT";i:1;s:13:"TOT_INVST_OUT";i:1;s:11:"TOT_UTL_OUT";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:6:"db_tag";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:11:"pref_action";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:9:"altphone1";i:1;s:8:"Product3";i:1;s:10:"BP_REG_ora";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"wallet";i:1;s:7:"cc_auto";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:9:"dr_cr_tag";i:1;s:11:"tot_chq_ind";i:1;s:14:"tot_chq_nonind";i:1;s:8:"tot_self";i:1;s:6:"tot_cr";i:1;s:6:"tot_dr";i:1;s:11:"tot_emi_out";i:1;s:13:"tot_invst_out";i:1;s:11:"tot_utl_out";i:1;s:10:"atm_active";i:1;s:10:"bp_reg_ora";i:1;s:6:"chillr";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:17:"last_txn_pos_date";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:22:"life_insu_premium_amt1";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:20:"decile_LAS_Demat_var";i:1;s:13:"decile_MF_var";i:1;s:6:"mf_isa";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:5:"nboff";i:1;s:10:"al_upgrade";i:1;s:19:"decile_Ins_CASA_var";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:10:"bp_act_tag";i:1;s:3:"HSL";i:1;s:11:"LAS_PRE_AMT";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='T S KANNAN' ,`mobile`='9884060194' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone1`='23765254' ,`altphone2`=' ' ,`client`='PM16OC' ,`status`='Called' ,`clientinternalid`='6327650' ,`clientcode`='6327650' ,`dialer_status`='Contacted - Follow-Up - Generic' ,`dialer_substatus`='Customer - No Requirement - Not to be called back within same month' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:34:15' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='Service Requirement' ,`resolution`='Resolved' ,`satisfaction`='Yes' ,`final_call_assessment`='Ok Call' ,`question`='1021,1319,1056,1327,1322,2462,2515,2505,2498,1328,1329,1330,1051' ,`mf_isa`='' where id='269795' limit 1;
insert into full_remark set call_id='1495227',fullremark='Not ContactedPurpose RECALL FOR CURRENT OFFERS AND BENEFITS DETAILS CUSTOMER SAY NOW BUSY CALL BACK WEEK END ONLY NOW NO NEED ANY PRODUCTS DETAILS ALSO Out call made on 9884060194';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495241',fullremark='Not ContactedPurpose updation callOut call made on 9894375140 RNR ';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:104:{s:2:"id";i:229582;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:13:"R SUBRAMANIAN";s:10:"clientcode";s:8:"50567729";s:16:"clientinternalid";s:8:"50567729";s:6:"status";s:6:"Called";s:7:"ucic_id";s:287:" ~||~ PL 10Sec thru NB PA Limit: 800000 ~||~ ZipDrive Loan Amt: 1800000 ~||~ ~||~ SPC CC_UPG_ELIG: EMV MC HNW REGALIA FIRST ~||~ LE_AND_UPG - Old Limit: 177000 | New Limit: 214000 | OLDPROD: MASTER WORLD | NEWPROD: WORLD REGALIA FIRST ~||~ ~||~ COC_AMT: 132750 ~||~ PL2CC_AMT: 850000.00";s:6:"client";s:6:"PM30OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"50567729";s:6:"mobile";s:10:"9884323617";s:7:"emailid";s:51:"[email protected] ~~ Customer Registered for NDNC";s:10:"IVR_active";s:25:"[RBI CLASS] :Metropolitan";s:11:"pref_action";s:28:"Platinum DC thru net banking";s:3:"SSS";s:5:" ";s:10:"al_upgrade";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:17:"STATEMENT_DETAILS";s:47:"O/S DUES 0.00 LAST BILL AMOUNT 0.00 DUE DATE 13";s:5:"Perks";s:184:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:11:"AL_CAR_CASH";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:9:"COC_ELIGI";s:6:"132750";s:8:"ins_date";s:19:"2018-04-02 13:04:53";s:7:"auto_id";s:6:"389797";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:7:"status1";s:7:"PRIMARY";s:3:"DOB";s:25:"05MAY1956:00:00:00.000000";s:3:"age";s:2:"61";s:9:"altphone2";s:5:" ";s:8:"product1";s:13:"Fixed Deposit";s:8:"product2";s:12:"Reatil Forex";s:8:"product3";s:12:"Reatil Forex";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:6:"Chillr";s:5:" ";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active30";s:7:"dc_type";s:10:"Regular DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:10:"AL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(Y) /Smart Pay:(N) /CC Active:(N) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:10:"PL_PRE_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:1:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:5:"prod2";s:12:"MASTER WORLD";s:3:"APT";s:115:"HOLDS MASTER WORLD AND ELIGIBLE FOR LE AMT 199000AND UPGRADE TO EMV MC HNW REGALIA FIRST INTL AND COC AMT 132750.00";s:17:"LAST_TXN_POS_DATE";s:25:"30JAN2018:19:59:37.000000";s:7:"LE_ELIG";s:6:"199000";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:4:"CBDT";s:311:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:FIXED DEPOSIT // / /Top 4 Pdts :Forex / / / . Pitch Billpay / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:20:"decile_LAS_Demat_var";s:327:" | PL: NO | AL: NO | TWL: NO | HL: NO | CC: YES | Demat: NO | Insurance: NO | ISA: NO | FD: NO | RD: YES | DC: YES | GRP_Assets_and_CC_Elig_PL: 800000 | PL_10_SECS: [email protected]% | AL: 1800000 | TWL: 0 | CC: | CC_TYPE: OTHERS | CC_USAGE: CC IS ACTIVE | GRP_Recommended_Products_1: FIXED DEPOSIT, 2, 3, 4, 5, 6 | EmailID_Y_N: Y";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:6:"mf_isa";s:0:"";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(Y) /Smart Pay:(N) /CC Active:(N) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:311:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:FIXED DEPOSIT // / /Top 4 Pdts :Forex / / / . Pitch Billpay / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"question";s:84:"1015,1016,1319,1056,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330,1051,1059";s:9:"altphone1";s:19:"[email protected]";s:10:"BL_PRE_AMT";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:10:"ACT_STATUS";s:6:"ACTIVE";s:18:"decile_Ins_pen_var";s:5:" ";s:15:"dialer_lastcall";s:19:"2018-04-04 07:34:59";s:13:"dialer_status";s:31:"Contacted - Follow-Up - Generic";s:16:"dialer_substatus";s:67:"Customer - No Requirement - Not to be called back within same month";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:16:"PL_PAPERLESS_AMT";s:5:" ";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:7:"dc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:8:"li_cover";s:94:"Basis internal data, the suggestive life cover amount for the customer should be Rs.86.7 Lacs.";s:9:"FD_Status";s:15:"FD : 06/05/2017";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:17:"decile_las_mf_var";s:273:"Aadhaar: NOT UPDATED | PriorIty: Prioirty 3 | COCODE: 2043C | Br_Code: 206 | GRP_Product_Holding_NB_Active: Y | MB_Active: Y | Financial_Txn_done_on_NB: Y | Financial_Txn_done_on_MB: N | Chillr: NO | PayZapp: NO | BillPay_Reg: NO | BillPay_Use: YES | Debit_Card_active: YES";s:2:"Si";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:21:"decile_demat_casa_var";s:5:"Demat";s:19:"decile_Ins_CASA_var";s:5:" ";s:12:"LI_PLan_Prio";s:98:"LI PLAN Priority 1)HDFC Life Guranteed Pension Plan 2)HDFC Life Super Income Plan 3)HDFC Life Uday";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:91:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:10:"IVR_active";i:1;s:11:"pref_action";i:1;s:3:"SSS";i:1;s:10:"al_upgrade";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:17:"STATEMENT_DETAILS";i:1;s:5:"Perks";i:1;s:11:"AL_CAR_CASH";i:1;s:16:"decile_AL_SA_var";i:1;s:9:"COC_ELIGI";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:7:"status1";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:6:"Chillr";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:10:"AL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:9:"hl_bt_amt";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:7:"LE_ELIG";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:4:"CBDT";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:20:"decile_LAS_Demat_var";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:6:"mf_isa";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:8:"question";i:1;s:9:"altphone1";i:1;s:10:"BL_PRE_AMT";i:1;s:11:"LAP_PRE_AMT";i:1;s:5:"BLOCK";i:1;s:10:"ACT_STATUS";i:1;s:18:"decile_Ins_pen_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:7:"cc_auto";i:1;s:7:"dc_auto";i:1;s:8:"li_cover";i:1;s:9:"FD_Status";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:17:"decile_las_mf_var";i:1;s:2:"Si";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:21:"decile_demat_casa_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:12:"LI_PLan_Prio";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='R SUBRAMANIAN' ,`mobile`='9884323617' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone1`='[email protected]' ,`altphone2`=' ' ,`client`='PM30OC' ,`status`='Called' ,`clientinternalid`='50567729' ,`clientcode`='50567729' ,`dialer_status`='Contacted - Follow-Up - Generic' ,`dialer_substatus`='Customer - No Requirement - Not to be called back within same month' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:34:59' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1015,1016,1319,1056,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330,1051,1059' ,`mf_isa`='' where id='229582' limit 1;
insert into full_remark set call_id='1495203',fullremark='INCOMINGNB LOCKED RELATEDthen i will indimate after 24hours your login the nb then am explain asset offer and savings details but he say no need for anythingprofiling done';
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM30OC' order by dialer_lastcall asc;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495251',fullremark='';
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM10OC' order by dialer_lastcall asc;
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=37603139 and question IN(1015,1016,1319,1053,1056,1327,1024,1320,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495220',fullremark='ALREADY SPOKEN INSTA LOAN EXPLAINED CALLBACK LATER';
update records set modified=now(),peopledata='a:137:{s:2:"id";i:297189;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:9:"K RAJAVEL";s:10:"clientcode";s:8:"37314100";s:16:"clientinternalid";s:8:"37314100";s:6:"status";s:6:"Called";s:7:"ucic_id";s:170:" ~||~ PL BT Loan Amt: 500000 ~||~ ZipDrive Loan Amt: 1200000 ~||~ LE_ONLY - Old Limit: 135000 | New Limit: 168000 | OLDPROD: WORLD REGALIA FIRST ~||~ COC_AMT: 90000 ~||~ ";s:6:"client";s:6:"PM21OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"37314100";s:3:"DOB";s:25:"13AUG1985:00:00:00.000000";s:3:"age";s:2:"32";s:6:"mobile";s:10:"8939896366";s:7:"emailid";s:52:"[email protected] ~~ Customer Registered for NDNC";s:8:"Product1";s:13:"Personal Loan";s:8:"Product2";s:16:"Health Insurance";s:8:"Product3";s:9:"Atm Ronus";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active30";s:7:"dc_type";s:11:"Titanium DC";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:28:"Platinum DC thru net banking";s:17:"LAST_TXN_POS_DATE";s:25:"13JAN2018:11:37:17.000000";s:21:"decile_demat_casa_var";s:5:"Demat";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:7:"dc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:8:"li_cover";s:95:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.152.16 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:15:"dialer_lastcall";s:19:"2018-04-04 07:35:22";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:15:"Phone No Answer";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:9:"altphone1";s:7:"2246610";s:10:"PL_PRE_AMT";s:5:" ";s:5:"prod2";s:19:"WORLD REGALIA FIRST";s:3:"APT";s:78:"HOLDS WORLD REGALIA FIRST AND ELIGIBLE FOR LE AMT 168000 AND COC AMT 101250.00";s:10:"ACT_STATUS";s:5:" ";s:17:"STATEMENT_DETAILS";s:50:"O/S DUES 7.84 LAST BILL AMOUNT 4462.00 DUE DATE 24";s:9:"COC_ELIGI";s:6:"101250";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:7:"MEdical";s:59:"Customer has high medical spends, discuss Health Insurance.";s:14:"DBC_ACTIVATION";s:252:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(Y) /Credit Card Active:(Y) /Debit Card Active:(Y) /Total NB online Transactions : 23 /";s:18:"DIGITAL_INITIATIVE";s:200:"NetBanking Active . Top 4 Product :AL/PL /Customer is neither registered for BillPay nor pays bill /Kindly Update Aadhar / / /Pitch for Insta loan /Pitch for Jumbo loan /Kindly pitch for FD product .";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:262:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / /Pitch CASA nominee online. / . Pitch Billpay / /Pitch Insta loan / / /";s:8:"ins_date";s:19:"2018-04-02 13:53:43";s:7:"auto_id";s:6:"995880";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"37314100";s:3:"dob";s:25:"13AUG1985:00:00:00.000000";s:9:"altphone2";s:5:" ";s:8:"product1";s:27:"Petrol Usage on Credit Card";s:8:"product2";s:26:"Petrol Usage on Debit Card";s:8:"product3";s:25:"Mobile Banking Activation";s:10:"atm_active";s:1:"1";s:6:"chillr";s:5:" ";s:14:"dc_billpay_tag";s:1:"1";s:5:"nboff";s:21:"Offline NB (CHQ PAY )";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"pl_pre_amt";s:6:"776000";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:11:"twl_pre_amt";s:6:"515000";s:3:"apt";s:116:"HOLDS TITANIUM EDGE AND IS IN ACTIVE AND UPGRADE TO EMV MC HNW REGALIA FIRST AND COC AMT 65K AND SMARTPAY REGISTERED";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:55:"O/S DUES 33872.88 LAST BILL AMOUNT 17849.00 DUE DATE 24";s:9:"coc_eligi";s:3:"65K";s:17:"last_txn_pos_date";s:25:"28OCT2016:07:24:06.000000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"Y";s:8:"rf_offer";s:5:" ";s:7:"medical";s:59:"Customer has high medical spends, discuss Health Insurance.";s:15:"motor_insurance";s:5:" ";s:22:"life_insu_premium_amt1";s:1:"0";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:262:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / /Pitch CASA nominee online. / . Pitch Billpay / /Pitch Insta loan / / /";s:5:"Perks";s:182:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: Active";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:6:"Chillr";s:5:" ";s:21:"directpay_billpay_tag";s:1:"1";s:10:"IVR_active";s:1:"1";s:3:"SSS";s:5:" ";s:10:"AL_PRE_AMT";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:11:"TWL_PRE_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:7:"LE_ELIG";s:6:"168000";s:20:"decile_LAS_Demat_var";s:331:" | PL: NO | AL: NO | TWL: NO | HL: NO | CC: YES | Demat: NO | Insurance: NO | ISA: NO | FD: NO | RD: NO | DC: YES | GRP_Assets_and_CC_Elig_PL: 800000 | PL_10_SECS: [email protected]% | AL: 1200000 | TWL: 0 | CC: | CC_TYPE: TITANIUM EDGE | CC_USAGE: CC IS INACTIVE | GRP_Recommended_Products_1: HOME LOAN, 2, 3, 4, 5, 6 | EmailID_Y_N: Y";s:12:"LI_PLan_Prio";s:88:"LI PLAN Priority 1)HDFC Cancer Care 2)HDFC Life Super Income Plan 3)Click 2 protect Plus";s:6:"mf_isa";s:0:"";s:8:"question";s:79:"1319,1056,1058,1327,1322,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059,1061";s:10:"HL_PRE_AMT";s:5:" ";s:14:"DC_billpay_tag";s:1:"1";s:11:"AL_CAR_CASH";s:5:" ";s:10:"al_upgrade";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:13:"decile_MF_var";s:2:"MF";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:17:"decile_las_mf_var";s:272:"Aadhaar: NOT UPDATED | PriorIty: Prioirty 3 | COCODE: G007 | Br_Code: 847 | GRP_Product_Holding_NB_Active: Y | MB_Active: N | Financial_Txn_done_on_NB: Y | Financial_Txn_done_on_MB: N | Chillr: NO | PayZapp: NO | BillPay_Reg: NO | BillPay_Use: YES | Debit_Card_active: YES";s:2:"Si";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:124:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:21:"decile_demat_casa_var";i:1;s:7:"cc_auto";i:1;s:7:"dc_auto";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:9:"altphone1";i:1;s:10:"PL_PRE_AMT";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:9:"COC_ELIGI";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:7:"MEdical";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"atm_active";i:1;s:6:"chillr";i:1;s:14:"dc_billpay_tag";i:1;s:5:"nboff";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:11:"twl_pre_amt";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:9:"coc_eligi";i:1;s:17:"last_txn_pos_date";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:8:"rf_offer";i:1;s:7:"medical";i:1;s:15:"motor_insurance";i:1;s:22:"life_insu_premium_amt1";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:21:"directpay_billpay_tag";i:1;s:10:"IVR_active";i:1;s:3:"SSS";i:1;s:10:"AL_PRE_AMT";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:5:"BLOCK";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:12:"LI_PLan_Prio";i:1;s:6:"mf_isa";i:1;s:8:"question";i:1;s:10:"HL_PRE_AMT";i:1;s:14:"DC_billpay_tag";i:1;s:11:"AL_CAR_CASH";i:1;s:10:"al_upgrade";i:1;s:17:"decile_HL_CSA_var";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:13:"decile_MF_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:17:"decile_las_mf_var";i:1;s:2:"Si";i:1;s:11:"LAP_PRE_AMT";i:1;s:18:"decile_Ins_pen_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='K RAJAVEL' ,`mobile`='8939896366' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone1`='2246610' ,`altphone2`=' ' ,`client`='PM21OC' ,`status`='Called' ,`clientinternalid`='37314100' ,`clientcode`='37314100' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone No Answer' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:35:22' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1319,1056,1058,1327,1322,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059,1061' ,`mf_isa`='' where id='297189' limit 1;
insert into full_remark set call_id='1495249',fullremark='RNR offers update';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:127:{s:2:"id";i:267223;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:15:"GAYATHRI DEVI D";s:10:"clientcode";s:8:"41957880";s:16:"clientinternalid";s:8:"41957880";s:6:"status";s:6:"Called";s:7:"ucic_id";s:144:" ~||~ PL 10Sec NB Decile: 6 ~||~ PL 10Sec thru NB PA Limit: 875000 ~||~ ZipDrive Loan Amt: 1320000 ~||~ COC_AMT: 30750 ~||~ PL2CC_AMT: 130000.00";s:6:"client";s:6:"PM13OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"41957880";s:3:"DOB";s:25:"05DEC1988:00:00:00.000000";s:3:"age";s:2:"29";s:6:"mobile";s:10:"9788620139";s:7:"emailid";s:23:"[email protected]";s:8:"Product1";s:13:"Personal Loan";s:8:"Product2";s:13:"Fixed Deposit";s:8:"Product3";s:12:"Reatil Forex";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Inactive";s:7:"dc_type";s:11:"Platinum DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:37:"Platinum Debit Card thru E-age(VEC01)";s:10:"AL_PRE_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:17:"LAST_TXN_POS_DATE";s:25:"14MAY2017:19:31:23.000000";s:8:"li_cover";s:94:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.62.28 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:88:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)Click 2 protect Plus 3)HDFC Cancer Care";s:15:"dialer_lastcall";s:19:"2018-04-04 07:35:26";s:13:"dialer_status";s:31:"Contacted - FollowUp - Specific";s:16:"dialer_substatus";s:59:"Customer - No Info Given - Call back later at Specific time";s:15:"dialer_callback";s:19:"2018-04-04 11:57:00";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:5:"prod2";s:23:"SIGNATURE REGALIA FIRST";s:3:"APT";s:81:"HOLDS SIGNATURE REGALIA FIRST AND ELIGIBLE FOR LE AMT 100000 AND COC AMT 30750.00";s:10:"ACT_STATUS";s:5:" ";s:17:"STATEMENT_DETAILS";s:47:"O/S DUES 0.00 LAST BILL AMOUNT 0.00 DUE DATE 03";s:9:"COC_ELIGI";s:5:"30750";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:21:"decile_demat_casa_var";s:5:"Demat";s:8:"rf_offer";s:5:" ";s:14:"DBC_ACTIVATION";s:252:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(Y) /Credit Card Active:(Y) /Debit Card Active:(Y) /Total NB online Transactions : 19 /";s:18:"DIGITAL_INITIATIVE";s:164:"NetBanking Active . Top 4 Product :AL/PL/Forex /Customer is neither registered for BillPay nor pays bill / / / /Pitch for Jumbo loan /Kindly pitch for RD product .";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:273:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / /Pitch CASA nominee online. / . / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 13:53:43";s:7:"auto_id";s:6:"926986";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"41957880";s:3:"dob";s:25:"05DEC1988:00:00:00.000000";s:9:"altphone2";s:5:" ";s:10:"atm_active";s:1:"1";s:6:"chillr";s:5:" ";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:6:"812518";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"pl_pre_amt";s:6:"496000";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:3:"apt";s:90:"HOLDS VISA PLATINUM AND ELIGIBLE FOR LE AMT 82000AND UPGRADE TO EMV VISA HNW REGALIA FIRST";s:17:"statement_details";s:54:"O/S DUES 18192.78 LAST BILL AMOUNT 6698.00 DUE DATE 03";s:17:"last_txn_pos_date";s:25:"30SEP2016:23:59:29.000000";s:7:"le_elig";s:5:"82000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:15:"motor_insurance";s:5:" ";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:67:"LI PLAN Priority : 1) PRO_GROWTH 2) PRO_GROWTH_SUPER and 3) SANCHAY";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:273:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / /Pitch CASA nominee online. / . / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:5:"Perks";s:190:"< ACT:ADHR,NB >< INACT:CHLR,MB,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 0--> BillPay: InActive, Basic_Banking: InActive, ECOM_Shopping: InActive, Investment: InActive, Physical: InActive";s:8:"product1";s:9:"Auto Loan";s:8:"product2";s:25:"Mobile Banking Activation";s:8:"product3";s:11:"Mutual Fund";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:7:"LE_ELIG";s:6:"100000";s:20:"decile_LAS_Demat_var";s:322:" | PL: NO | AL: NO | TWL: NO | HL: NO | CC: YES | Demat: NO | Insurance: NO | ISA: NO | FD: NO | RD: NO | DC: YES | GRP_Assets_and_CC_Elig_PL: 1305850 | PL_10_SECS: [email protected]% | AL: 1320000 | TWL: 550000 | CC: | CC_TYPE: OTHERS | CC_USAGE: CC IS INACTIVE | GRP_Recommended_Products_1: , 2, 3, 4, 5, 6 | EmailID_Y_N: Y";s:6:"mf_isa";s:0:"";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:11:"TWL_PRE_AMT";s:5:" ";s:8:"question";s:79:"1319,1056,1058,1327,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:10:"al_upgrade";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:11:"LAS_PRE_AMT";s:5:" ";s:17:"decile_las_mf_var";s:273:"Aadhaar: NOT UPDATED | PriorIty: Prioirty 3 | COCODE: R0430 | Br_Code: 1862 | GRP_Product_Holding_NB_Active: Y | MB_Active: N | Financial_Txn_done_on_NB: Y | Financial_Txn_done_on_MB: N | Chillr: NO | PayZapp: NO | BillPay_Reg: NO | BillPay_Use: NO | Debit_Card_active: YES";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:114:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:9:"COC_ELIGI";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:21:"decile_demat_casa_var";i:1;s:8:"rf_offer";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:9:"altphone2";i:1;s:10:"atm_active";i:1;s:6:"chillr";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:3:"apt";i:1;s:17:"statement_details";i:1;s:17:"last_txn_pos_date";i:1;s:7:"le_elig";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:15:"motor_insurance";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:19:"decile_GoldLoan_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:11:"LAS_PRE_AMT";i:1;s:17:"decile_las_mf_var";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='GAYATHRI DEVI D' ,`mobile`='9788620139' ,`emailid`='[email protected]' ,`altphone2`=' ' ,`client`='PM13OC' ,`status`='Called' ,`clientinternalid`='41957880' ,`clientcode`='41957880' ,`dialer_status`='Contacted - FollowUp - Specific' ,`dialer_substatus`='Customer - No Info Given - Call back later at Specific time' ,`dialer_callback`='2018-04-04 11:57:00' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:35:26' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1319,1056,1058,1327,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059' ,`mf_isa`='' where id='267223' limit 1;
insert into full_remark set call_id='1495242',fullremark='customer not available';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495257',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495258',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495250',fullremark='rnr';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495265',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495238',fullremark='customer going to open a institute asking awiping machine for that';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:128:{s:2:"id";i:269737;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:20:"SANANDA BHATTACHARYA";s:10:"clientcode";s:8:"37603139";s:16:"clientinternalid";s:8:"37603139";s:6:"status";s:6:"Called";s:7:"ucic_id";s:316:" ~||~ PL 10Sec NB Decile: 8 ~||~ PL 10Sec thru NB PA Limit: 811000 ~||~ ZipDrive Loan Amt: 1320000 ~||~ ~||~ SPC CC_UPG_ELIG: EMV MC HNW REGALIA FIRST ~||~ LE_AND_UPG - Old Limit: 100000 | New Limit: 140000 | OLDPROD: MASTER PLATINUM | NEWPROD: WORLD REGALIA FIRST ~||~ ~||~ COC_AMT: 75000 ~||~ PL2CC_AMT: 240000.00";s:6:"client";s:6:"PM10OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"37603139";s:3:"DOB";s:25:"13AUG1988:00:00:00.000000";s:3:"age";s:2:"29";s:6:"mobile";s:10:"8951175597";s:7:"emailid";s:25:"[email protected]";s:8:"Product1";s:9:"Home Loan";s:8:"Product2";s:13:"Personal Loan";s:8:"Product3";s:13:"Fixed Deposit";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:7:"Dormant";s:7:"dc_type";s:7:"Gold DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:9:"Inactive.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:28:"Platinum DC thru net banking";s:10:"AL_PRE_AMT";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:8:"rf_offer";s:5:" ";s:8:"li_cover";s:95:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.100.32 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:88:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)Click 2 protect Plus 3)HDFC Cancer Care";s:10:"PL_PRE_AMT";s:5:" ";s:5:"prod2";s:15:"MASTER PLATINUM";s:3:"APT";s:117:"HOLDS MASTER PLATINUM AND ELIGIBLE FOR LE AMT 140000AND UPGRADE TO EMV MC HNW REGALIA FIRST INTL AND COC AMT 75000.00";s:17:"STATEMENT_DETAILS";s:47:"O/S DUES 0.00 LAST BILL AMOUNT 0.00 DUE DATE 04";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:14:"DBC_ACTIVATION";s:253:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(N) /Credit Card Active:(N) /Debit Card Active:(Y) /Total NB online Transactions : 8 / /";s:18:"DIGITAL_INITIATIVE";s:144:"NetBanking Active . Top 4 Product :AL/PL/Forex /Customer is neither registered for BillPay nor pays bill / / / / /Kindly pitch for RD product .";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: N /NB Fin usage - JAN18: N /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (N) /Digital 2.0 Score( 0) /Banking Txn:(N) /BillPayments:(N) /Shopping:(N) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:211:"/ // /NU: channel reco:NB/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY / / /Pitch CASA nominee online. / . / /Pitch Insta/jumbo loan. / / /";s:8:"ins_date";s:19:"2018-04-02 13:39:42";s:7:"auto_id";s:6:"759673";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"37603139";s:3:"dob";s:25:"13AUG1988:00:00:00.000000";s:9:"altphone2";s:5:" ";s:8:"product1";s:9:"Auto Loan";s:8:"product2";s:9:"Home Loan";s:8:"product3";s:25:"Mobile Banking Activation";s:10:"atm_active";s:1:"1";s:6:"chillr";s:5:" ";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:7:"1500000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"hl_pre_amt";s:7:"2544964";s:10:"pl_pre_amt";s:6:"918459";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:11:"twl_pre_amt";s:6:"510000";s:3:"apt";s:60:"HOLDS MASTER PLATINUMAND UPGRADE TO EMV MC HNW REGALIA FIRST";s:17:"statement_details";s:51:"O/S DUES 0.00 LAST BILL AMOUNT 22729.00 DUE DATE 04";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:15:"motor_insurance";s:5:" ";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) PRO_GROWTH_SUPER and 3) YOUNGSTAR";s:14:"dbc_activation";s:404:"NB Status - JAN18: N /NB Fin usage - JAN18: N /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (N) /Digital 2.0 Score( 0) /Banking Txn:(N) /BillPayments:(N) /Shopping:(N) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:211:"/ // /NU: channel reco:NB/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY / / /Pitch CASA nominee online. / . / /Pitch Insta/jumbo loan. / / /";s:5:"Perks";s:191:"< ACT: >< INACT:ADHR,CHLR,MB,MCR,NB,PZAP,SMS > Apr02 || Digital 2.0 Score is 0--> BillPay: InActive, Basic_Banking: InActive, ECOM_Shopping: InActive, Investment: InActive, Physical: InActive";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:5:"BLOCK";s:5:" ";s:10:"ACT_STATUS";s:5:" ";s:9:"COC_ELIGI";s:5:"75000";s:7:"LE_ELIG";s:6:"140000";s:20:"decile_LAS_Demat_var";s:1:" ";s:6:"mf_isa";s:0:"";s:8:"question";s:94:"1015,1016,1319,1053,1056,1327,1024,1320,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059";s:15:"dialer_lastcall";s:19:"2018-04-04 07:36:52";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:19:"Phone Network issue";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:11:"AL_CAR_CASH";s:5:" ";s:10:"al_upgrade";s:5:" ";s:4:"Jwel";s:47:"Shopping on Jewellery: Discuss GoldBar,Gold etf";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:10:"IVR_active";s:1:"1";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:2:"Si";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:17:"LAST_TXN_POS_DATE";s:25:"09JUN2017:18:50:42.000000";s:18:"decile_Ins_pen_var";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:9:"altphone1";s:1:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:115:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:8:"rf_offer";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:10:"PL_PRE_AMT";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:17:"STATEMENT_DETAILS";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"atm_active";i:1;s:6:"chillr";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"hl_pre_amt";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:11:"twl_pre_amt";i:1;s:3:"apt";i:1;s:17:"statement_details";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:15:"motor_insurance";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:5:"BLOCK";i:1;s:10:"ACT_STATUS";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:10:"al_upgrade";i:1;s:4:"Jwel";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:10:"IVR_active";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:2:"Si";i:1;s:11:"LAP_PRE_AMT";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:18:"decile_Ins_pen_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:9:"altphone1";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='SANANDA BHATTACHARYA' ,`mobile`='8951175597' ,`emailid`='[email protected]' ,`altphone1`=' ' ,`altphone2`=' ' ,`client`='PM10OC' ,`status`='Called' ,`clientinternalid`='37603139' ,`clientcode`='37603139' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone Network issue' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:36:52' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1015,1016,1319,1053,1056,1327,1024,1320,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059' ,`mf_isa`='' where id='269737' limit 1;
insert into full_remark set call_id='1495263',fullremark='network problem';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=40106108 and question IN(1056,1058,1327,1026,1322,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059);
select distinct clientinternalid from records;
insert into full_remark set call_id='1495262',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495268',fullremark='';
insert into full_remark set call_id='1495240',fullremark='Contacted Purpose Introduction Out call made on 9900214110 Program introduction providedProfiled customer on Income family Investments and Income Informed about preferential rates of Loan and Forex Follow up email sent Yes No Further assistance offered customer happy with our services Aadhar Updation Informed Yes No Customer not interested as does not have an aadhaar no picthed personal loan detlis ';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=53690995 and question IN(1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495204',fullremark='Incomingcustomer asked pl preclosure details and i cleared itand upg done through nband profile refreshedand pitched for li but avail laterbecoz emi commitment only comfort now Payzapp promoted and link shared via SMS Profiling to be updated only incase customer refusesFollow up email sent NoFurther assistance offered customer happy with our servicesAadhar Updation Informed Yes Customer not interested as does not have an aadhaar no';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495244',fullremark='Incoming call Giftplus card details provided ';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select id,created,modified,peopledata,modifylog,dirty ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where id='264897' and client in ('PM27OC','PM27OC_RC','null') limit 1;
insert into full_remark set call_id='1495272',fullremark='Alternate call ';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495165',fullremark='';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:135:{s:2:"id";i:390790;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:18:"RUDRASHETTY DEEPTI";s:10:"clientcode";s:8:"40106108";s:16:"clientinternalid";s:8:"40106108";s:6:"status";s:6:"Called";s:7:"ucic_id";s:317:" ~||~ PL 10Sec NB Decile: 2 ~||~ PL 10Sec thru NB PA Limit: 800000 ~||~ ZipDrive Loan Amt: 1200000 ~||~ ~||~ SPC CC_UPG_ELIG: EMV MC HNW REGALIA FIRST ~||~ LE_AND_UPG - Old Limit: 170000 | New Limit: 221000 | OLDPROD: MASTER PLATINUM | NEWPROD: WORLD REGALIA FIRST ~||~ ~||~ COC_AMT: 127500 ~||~ PL2CC_AMT: 485000.00";s:6:"client";s:6:"PM10OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"40106108";s:3:"DOB";s:25:"15JUL1988:00:00:00.000000";s:3:"age";s:2:"29";s:6:"mobile";s:10:"9177413637";s:7:"emailid";s:20:"[email protected]";s:8:"Product1";s:13:"Fixed Deposit";s:8:"Product2";s:9:"Auto Loan";s:8:"Product3";s:9:"Gold Loan";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active30";s:7:"dc_type";s:11:"Platinum DC";s:14:"DC_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:28:"Platinum DC thru net banking";s:10:"AL_PRE_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:5:"prod2";s:15:"MASTER PLATINUM";s:3:"APT";s:105:"HOLDS MASTER PLATINUM AND IS IN ACTIVE AND UPGRADE TO EMV MC HNW REGALIA FIRST INTL AND COC AMT 127500.00";s:17:"STATEMENT_DETAILS";s:54:"O/S DUES 1115.00 LAST BILL AMOUNT 28059.00 DUE DATE 12";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:8:"li_cover";s:92:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.152 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:14:"DBC_ACTIVATION";s:253:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: N ,AUG16: Y ,SEP16: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(Y) /Credit Card Active:(Y) /Debit Card Active:(Y) /Total NB online Transactions : 5 / /";s:18:"DIGITAL_INITIATIVE";s:138:"NetBanking Active . Top 4 Product :AL/PL /Customer is neither registered for BillPay nor pays bill / / / / /Kindly pitch for FD product .";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 1).";s:4:"CBDT";s:388:"DA: Pref. channel:NB/Offline:CHEQUE PAYMENT/BALANCE INQUIRY/ / / //Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:FIXED DEPOSIT // / / / /Pitch CASA nominee online. /Offline NB (CHQ PAY ) . Pitch Billpay / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 14:36:06";s:7:"auto_id";s:7:"1484622";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"40106108";s:3:"dob";s:25:"15JUL1988:00:00:00.000000";s:9:"altphone2";s:5:" ";s:8:"product1";s:13:"Fixed Deposit";s:8:"product2";s:27:"Petrol Usage on Credit Card";s:8:"product3";s:26:"Petrol Usage on Debit Card";s:10:"atm_active";s:1:"1";s:6:"chillr";s:5:" ";s:14:"dc_billpay_tag";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:7:"1500000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"hl_pre_amt";s:7:"2847599";s:16:"pl_paperless_amt";s:6:"884000";s:10:"pl_pre_amt";s:6:"876000";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:11:"twl_pre_amt";s:6:"487000";s:3:"apt";s:60:"HOLDS MASTER PLATINUMAND UPGRADE TO EMV MC HNW REGALIA FIRST";s:17:"statement_details";s:53:"O/S DUES 12500.00 LAST BILL AMOUNT 390.00 DUE DATE 12";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:67:"LI PLAN Priority : 1) PRO_GROWTH 2) PRO_GROWTH_SUPER and 3) SANCHAY";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 1).";s:18:"digital_initiative";s:388:"DA: Pref. channel:NB/Offline:CHEQUE PAYMENT/BALANCE INQUIRY/ / / //Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:FIXED DEPOSIT // / / / /Pitch CASA nominee online. /Offline NB (CHQ PAY ) . Pitch Billpay / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:5:"Perks";s:184:"< ACT:ADHR,NB >< INACT:CHLR,MB,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:10:"HL_PRE_AMT";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:10:"ACT_STATUS";s:6:"ACTIVE";s:9:"COC_ELIGI";s:6:"127500";s:17:"LAST_TXN_POS_DATE";s:25:"29JAN2018:20:08:41.000000";s:7:"LE_ELIG";s:6:"221000";s:21:"decile_demat_casa_var";s:5:"Demat";s:20:"decile_LAS_Demat_var";s:328:" | PL: NO | AL: NO | TWL: NO | HL: NO | CC: YES | Demat: NO | Insurance: NO | ISA: NO | FD: NO | RD: NO | DC: YES | GRP_Assets_and_CC_Elig_PL: 756595 | PL_10_SECS: [email protected]% | AL: 1500000 | TWL: 0 | CC: | CC_TYPE: TITANIUM | CC_USAGE: CC IS ACTIVE | GRP_Recommended_Products_1: PERSONAL LOAN, 2, 3, 4, 5, 6 | EmailID_Y_N: Y";s:12:"LI_PLan_Prio";s:88:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)Click 2 protect Plus 3)HDFC Cancer Care";s:6:"mf_isa";s:0:"";s:21:"directpay_billpay_tag";s:1:"1";s:5:"nboff";s:21:"Offline NB (CHQ PAY )";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services Disuss Auto insurance.";s:7:"dc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:8:"question";s:74:"1056,1058,1327,1026,1322,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:10:"al_upgrade";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:13:"decile_MF_var";s:2:"MF";s:11:"LAS_PRE_AMT";s:5:" ";s:15:"dialer_lastcall";s:19:"2018-04-04 07:38:44";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:15:"Phone No Answer";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:17:"decile_las_mf_var";s:274:"Aadhaar: NOT UPDATED | PriorIty: Prioirty 3 | COCODE: W0364 | Br_Code: 1996 | GRP_Product_Holding_NB_Active: Y | MB_Active: N | Financial_Txn_done_on_NB: Y | Financial_Txn_done_on_MB: N | Chillr: NO | PayZapp: NO | BillPay_Reg: NO | BillPay_Use: YES | Debit_Card_active: YES";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:9:"altphone1";s:1:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:122:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:14:"DC_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:11:"TWL_PRE_AMT";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:17:"STATEMENT_DETAILS";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"atm_active";i:1;s:6:"chillr";i:1;s:14:"dc_billpay_tag";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"hl_pre_amt";i:1;s:16:"pl_paperless_amt";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:11:"twl_pre_amt";i:1;s:3:"apt";i:1;s:17:"statement_details";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:10:"HL_PRE_AMT";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:10:"ACT_STATUS";i:1;s:9:"COC_ELIGI";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:7:"LE_ELIG";i:1;s:21:"decile_demat_casa_var";i:1;s:20:"decile_LAS_Demat_var";i:1;s:12:"LI_PLan_Prio";i:1;s:6:"mf_isa";i:1;s:21:"directpay_billpay_tag";i:1;s:5:"nboff";i:1;s:17:"decile_PL_CSA_var";i:1;s:7:"cc_auto";i:1;s:7:"dc_auto";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:17:"decile_HL_CSA_var";i:1;s:13:"decile_MF_var";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:17:"decile_las_mf_var";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:9:"altphone1";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='RUDRASHETTY DEEPTI' ,`mobile`='9177413637' ,`emailid`='[email protected]' ,`altphone1`=' ' ,`altphone2`=' ' ,`client`='PM10OC' ,`status`='Called' ,`clientinternalid`='40106108' ,`clientcode`='40106108' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone No Answer' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:38:44' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1058,1327,1026,1322,1318,1004,2462,2515,2505,2498,1328,1329,1330,1059' ,`mf_isa`='' where id='390790' limit 1;
insert into full_remark set call_id='1495273',fullremark='RNR';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495281',fullremark='';
insert into full_remark set call_id='1495083',fullremark='adfc';
insert into full_remark set call_id='1495280',fullremark='rnr';
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM5OC' order by dialer_lastcall asc;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495282',fullremark='voice not audible';
insert into full_remark set call_id='1495274',fullremark='rnr';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:39:39', updated_at='2018-04-04 07:39:39', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='1021',primary_question='Understand the current CC customer is using and the benefits he is enjoying in the same, Pitch SPC.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:39:39', updated_at='2018-04-04 07:39:39', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:39:40', updated_at='2018-04-04 07:39:40', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:39:40', updated_at='2018-04-04 07:39:40', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='1325',primary_question='Check for reason, if new organisation, update the same in COCO link, pitch CC Payment through NetBanking, PA products, Term Products, BP/SP, increase CTG,',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:39:40', updated_at='2018-04-04 07:39:40', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='2485',primary_question='Sir, we can see that salary is not getting credited in your salary account. Have you changed the employer or changed salary account with other bank',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
SELECT distinct question FROM questionaire_details WHERE cust_id=45122212 and question IN(1021,1319,1053,1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330);
insert into questionaire_details set created_at='2018-04-04 07:39:40', updated_at='2018-04-04 07:39:40', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
SELECT distinct question FROM questionaire_details WHERE cust_id=53690995 and question IN(1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1059);
SELECT distinct question FROM questionaire_details WHERE cust_id=33345584 and question IN(1056,1057,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330);
insert into questionaire_details set created_at='2018-04-04 07:39:40', updated_at='2018-04-04 07:39:40', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:39:40', updated_at='2018-04-04 07:39:40', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:39:40', updated_at='2018-04-04 07:39:40', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:39:40', updated_at='2018-04-04 07:39:40', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:39:41', updated_at='2018-04-04 07:39:41', user_id='82332',cust_id='33373527',call_id='1495212',name='MUTHU KUMAR C',number='9884723030',question_time='2018-04-04 07-28-16',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update records set modified=now(),peopledata='a:123:{s:2:"id";i:267832;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:13:"MUTHU KUMAR C";s:10:"clientcode";s:8:"33373527";s:16:"clientinternalid";s:8:"33373527";s:6:"status";s:6:"Called";s:7:"ucic_id";s:6:" ~||~ ";s:6:"client";s:6:"PM24OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"33373527";s:3:"DOB";s:25:"26JUL1982:00:00:00.000000";s:3:"age";s:2:"35";s:6:"mobile";s:10:"9884723030";s:7:"emailid";s:51:"[email protected] ~~ Customer Registered for NDNC";s:8:"Product1";s:11:"Credit Card";s:8:"Product2";s:9:"Auto Loan";s:8:"Product3";s:11:"Mutual Fund";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:10:"BP_REG_ora";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active30";s:7:"dc_type";s:19:"Imperia_platinum DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:11:"pref_action";s:67:"Save upto Rs.9000 in CashBack on your HDFC Bank Imperia_platinum DC";s:10:"AL_PRE_AMT";s:5:" ";s:17:"LAST_TXN_POS_DATE";s:25:"18JAN2018:17:32:01.000000";s:21:"decile_demat_casa_var";s:5:"Demat";s:7:"dc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:8:"li_cover";s:94:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.77.57 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:15:"dialer_lastcall";s:19:"2018-04-04 07:39:43";s:13:"dialer_status";s:31:"Contacted - Follow-Up - Generic";s:16:"dialer_substatus";s:67:"Customer - No Requirement - Not to be called back within same month";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:9:"altphone1";s:10:"9884723030";s:3:"APT";s:5:" ";s:18:"decile_CC_CASA_var";s:10:"CreditCard";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:14:"DBC_ACTIVATION";s:253:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: N ,AUG16: Y ,SEP16: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(N) /Credit Card Active:(N) /Debit Card Active:(Y) /Total NB online Transactions : 3 / /";s:18:"DIGITAL_INITIATIVE";s:82:"NetBanking Active . Top 4 Product :AL/CC / / / / / /Kindly pitch for RD product .";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: N /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:250:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / /Pitch CASA nominee online. / . / / / / /Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 13:39:42";s:7:"auto_id";s:6:"723103";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"33373527";s:3:"dob";s:25:"26JUL1982:00:00:00.000000";s:9:"altphone2";s:5:" ";s:8:"product1";s:26:"Petrol Usage on Debit Card";s:8:"product2";s:25:"Mobile Banking Activation";s:10:"atm_active";s:1:"1";s:10:"bp_reg_ora";s:1:"1";s:6:"chillr";s:5:" ";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:6:"260000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:18:"decile_cc_casa_var";s:10:"CreditCard";s:17:"last_txn_pos_date";s:25:"07OCT2016:17:47:15.000000";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:22:"life_insu_premium_amt1";s:1:"0";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: N /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:250:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / /Pitch CASA nominee online. / . / / / / /Paying Rent pitch SI on DC";s:5:"Perks";s:186:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 2--> BillPay: InActive, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:8:"product3";s:11:"Mutual Fund";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:5:"prod2";s:5:" ";s:10:"ACT_STATUS";s:5:" ";s:17:"STATEMENT_DETAILS";s:5:" ";s:9:"COC_ELIGI";s:5:" ";s:7:"LE_ELIG";s:5:" ";s:20:"decile_LAS_Demat_var";s:1:" ";s:12:"LI_PLan_Prio";s:84:"LI PLAN Priority 1)HDFC Cancer Care 2)HDFC Life Classic Assure Plus 3)HDFC Life Uday";s:6:"mf_isa";s:0:"";s:10:"PL_PRE_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:11:"TWL_PRE_AMT";s:5:" ";s:8:"question";s:69:"1021,1319,1056,1327,1322,1325,2485,2462,2515,2505,2498,1328,1329,1330";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:11:"AL_CAR_CASH";s:5:" ";s:10:"al_upgrade";s:5:" ";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:2:"Si";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:110:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:10:"BP_REG_ora";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:11:"pref_action";i:1;s:10:"AL_PRE_AMT";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:21:"decile_demat_casa_var";i:1;s:7:"dc_auto";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:9:"altphone1";i:1;s:3:"APT";i:1;s:18:"decile_CC_CASA_var";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:10:"atm_active";i:1;s:10:"bp_reg_ora";i:1;s:6:"chillr";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:18:"decile_cc_casa_var";i:1;s:17:"last_txn_pos_date";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:22:"life_insu_premium_amt1";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:8:"product3";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:5:"prod2";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:12:"LI_PLan_Prio";i:1;s:6:"mf_isa";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:10:"al_upgrade";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:2:"Si";i:1;s:11:"LAP_PRE_AMT";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:19:"decile_Ins_CASA_var";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='MUTHU KUMAR C' ,`mobile`='9884723030' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone1`='9884723030' ,`altphone2`=' ' ,`client`='PM24OC' ,`status`='Called' ,`clientinternalid`='33373527' ,`clientcode`='33373527' ,`dialer_status`='Contacted - Follow-Up - Generic' ,`dialer_substatus`='Customer - No Requirement - Not to be called back within same month' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:39:43' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1021,1319,1056,1327,1322,1325,2485,2462,2515,2505,2498,1328,1329,1330' ,`mf_isa`='' where id='267832' limit 1;
insert into full_remark set call_id='1495212',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=53690995 and question IN(1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1059);
update records set modified=now(),peopledata='a:143:{s:2:"id";i:132559;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:8:"VIDHYA P";s:10:"clientcode";s:8:"35370158";s:16:"clientinternalid";s:8:"35370158";s:6:"status";s:6:"Called";s:7:"ucic_id";s:222:"~||~ PL PQ One Check Elig Amt: 109000 ~||~ PL PQ One Check IRR: 11.1% ~||~ PL PQ One Check Segment: PQ_WITH_INCOME ~||~~||~ SPC CC_FRESH_ELIG - TKN_NO: ASW0L23SE3 || PROD: DINERS CLUB MILES/REGALIA FIRST/JET PLATINUM ~||~ ";s:6:"client";s:6:"PM26OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"35370158";s:6:"mobile";s:10:"9952763762";s:7:"emailid";s:18:"[email protected]";s:10:"IVR_active";s:18:"[RBI CLASS] :Urban";s:11:"pref_action";s:28:"Platinum DC thru net banking";s:3:"SSS";s:5:" ";s:11:"AL_CAR_CASH";s:5:" ";s:10:"AL_PRE_AMT";s:5:" ";s:10:"al_upgrade";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:11:"TWL_PRE_AMT";s:5:" ";s:3:"APT";s:79:"NON CARDED AND ELIGIBLE FOR HNWREGALIA FIRST AND CAN ALSO APPLY THRU NETBANKING";s:10:"ACT_STATUS";s:5:" ";s:17:"STATEMENT_DETAILS";s:5:" ";s:15:"dialer_lastcall";s:19:"2018-04-04 07:39:49";s:13:"dialer_status";s:31:"Contacted - Follow-Up - Generic";s:16:"dialer_substatus";s:67:"Customer - No Requirement - Not to be called back within same month";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:3:"dob";s:25:"11JUL1989:00:00:00.000000";s:3:"age";s:2:"28";s:8:"product1";s:9:"Auto Loan";s:8:"product2";s:9:"Home Loan";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:7:"Dormant";s:7:"dc_type";s:7:"Gold DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:6:"wallet";s:1:"1";s:16:"pl_paperless_amt";s:6:"279000";s:17:"last_txn_pos_date";s:25:"26OCT2016:22:33:39.000000";s:8:"li_cover";s:94:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.32.95 Lacs.";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) PRO_GROWTH_SUPER and 3) YOUNGSTAR";s:14:"DBC_ACTIVATION";s:253:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(N) /Credit Card Active:(N) /Debit Card Active:(Y) /Total NB online Transactions : 5 / /";s:18:"DIGITAL_INITIATIVE";s:141:"NetBanking Active . Top 4 Product :AL/PL/CC /Customer is neither registered for BillPay nor pays bill / / / / /Kindly pitch for RD product .";s:3:"DOB";s:25:"11JUL1989:00:00:00.000000";s:8:"Product1";s:9:"Auto Loan";s:8:"Product2";s:13:"Fixed Deposit";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:18:"decile_CC_CASA_var";s:10:"CreditCard";s:17:"LAST_TXN_POS_DATE";s:25:"20JUN2017:17:11:43.000000";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:97:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)HDFC Cancer Care 3)HDFC Life Classic Assure Plus";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 1) /Banking Txn:(N) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:271:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:RECURRING DEPOSIT // / / / /Pitch CASA nominee online. / . / / / / /";s:8:"ins_date";s:19:"2018-04-02 13:04:53";s:7:"auto_id";s:6:"275965";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"35370158";s:9:"altphone2";N;s:10:"atm_active";s:1:"1";s:6:"chillr";s:5:" ";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:7:"1200000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"pl_pre_amt";s:6:"415000";s:11:"twl_pre_amt";s:6:"381000";s:18:"decile_cc_casa_var";s:10:"CreditCard";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 1) /Banking Txn:(N) /BillPayments:(N) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:271:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:RECURRING DEPOSIT // / / / /Pitch CASA nominee online. / . / / / / /";s:5:"Perks";s:188:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 1--> BillPay: InActive, Basic_Banking: Active, ECOM_Shopping: InActive, Investment: InActive, Physical: InActive";s:8:"product3";s:25:"Mobile Banking Activation";s:6:"Chillr";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:5:"BLOCK";s:5:" ";s:5:"prod2";s:5:" ";s:9:"COC_ELIGI";s:5:" ";s:7:"LE_ELIG";s:5:" ";s:20:"decile_LAS_Demat_var";s:1:" ";s:6:"mf_isa";s:0:"";s:8:"question";s:69:"1021,1319,1056,1058,1327,1320,2462,2515,2505,2498,1328,1329,1330,1059";s:11:"LAS_PRE_AMT";s:5:" ";s:14:"altphone_lbl_2";N;s:9:"altphone3";N;s:14:"altphone_lbl_3";N;s:9:"altphone4";s:0:"";s:14:"altphone_lbl_4";s:0:"";s:9:"altphone5";s:0:"";s:14:"altphone_lbl_5";s:0:"";s:9:"altphone6";s:0:"";s:14:"altphone_lbl_6";s:0:"";s:9:"altphone7";s:0:"";s:14:"altphone_lbl_7";s:0:"";s:9:"altphone8";s:0:"";s:14:"altphone_lbl_8";s:0:"";s:9:"altphone9";s:0:"";s:14:"altphone_lbl_9";s:0:"";s:10:"altphone10";s:0:"";s:15:"altphone_lbl_10";s:0:"";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:21:"decile_demat_casa_var";s:5:"Demat";s:9:"altphone1";s:10:"9791633969";s:14:"altphone_lbl_1";s:2:"cv";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:2:"Si";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:112:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:10:"IVR_active";i:1;s:11:"pref_action";i:1;s:3:"SSS";i:1;s:11:"AL_CAR_CASH";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:3:"dob";i:1;s:3:"age";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:6:"wallet";i:1;s:16:"pl_paperless_amt";i:1;s:17:"last_txn_pos_date";i:1;s:8:"li_cover";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:3:"DOB";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:18:"decile_CC_CASA_var";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:9:"altphone2";i:1;s:10:"atm_active";i:1;s:6:"chillr";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"pl_pre_amt";i:1;s:11:"twl_pre_amt";i:1;s:18:"decile_cc_casa_var";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:8:"product3";i:1;s:6:"Chillr";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:5:"BLOCK";i:1;s:5:"prod2";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:8:"question";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:21:"decile_demat_casa_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:2:"Si";i:1;s:11:"LAP_PRE_AMT";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:9:"altphone1";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='VIDHYA P' ,`mobile`='9952763762' ,`emailid`='[email protected]' ,`altphone1`='9791633969' ,`altphone4`='' ,`altphone5`='' ,`altphone6`='' ,`altphone7`='' ,`altphone8`='' ,`altphone9`='' ,`altphone10`='' ,`client`='PM26OC' ,`status`='Called' ,`clientinternalid`='35370158' ,`clientcode`='35370158' ,`dialer_status`='Contacted - Follow-Up - Generic' ,`dialer_substatus`='Customer - No Requirement - Not to be called back within same month' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:39:49' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1021,1319,1056,1058,1327,1320,2462,2515,2505,2498,1328,1329,1330,1059' ,`mf_isa`='' where id='132559' limit 1;
insert into full_remark set call_id='1495283',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495287',fullremark='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:39:59', updated_at='2018-04-04 07:39:59', user_id='95046',cust_id='64060662',call_id='1495259',name='CHINNAMMAL A',number='9894722393',question_time='2018-04-04 07-35-28',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:00', updated_at='2018-04-04 07:40:00', user_id='95046',cust_id='64060662',call_id='1495259',name='CHINNAMMAL A',number='9894722393',question_time='2018-04-04 07-35-28',question='1326',primary_question='Understadn the reason ',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:00', updated_at='2018-04-04 07:40:00', user_id='95046',cust_id='64060662',call_id='1495259',name='CHINNAMMAL A',number='9894722393',question_time='2018-04-04 07-35-28',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495259',fullremark='ContactedPurpose Introduction Out call made on 9894722393 Program introduction providedcustomer need LE offers';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=35862858 and question IN(1015,1016,1319,1056,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330,1050,1059);
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM4OC' order by dialer_lastcall asc;
SELECT distinct question FROM questionaire_details WHERE cust_id=45122212 and question IN(1021,1319,1053,1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330);
insert into full_remark set call_id='1495124',fullremark='customer asked savings details';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=61524110 and question IN(1056,1327,1026,1322,2462,2515,2505,2498,1059);
insert into full_remark set call_id='1495288',fullremark='not reachable service call ';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495285',fullremark='CUSTOMER CUT THE CALL';
select id from records where mobile like '%8778296100' OR
altphone1 like '%8778296100' OR
altphone2 like '%8778296100' OR
altphone3 like '%8778296100' OR
altphone4 like '%8778296100' OR
altphone5 like '%8778296100' OR
altphone6 like '%8778296100' OR
altphone7 like '%8778296100' OR
altphone8 like '%8778296100' OR
altphone9 like '%8778296100' OR
altphone10 like '%8778296100' and client in ('PM11OC','PM11OC_RC','null');
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:40:30', updated_at='2018-04-04 07:40:30', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='1016',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='Add on card for family members',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:30', updated_at='2018-04-04 07:40:30', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:30', updated_at='2018-04-04 07:40:30', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:30', updated_at='2018-04-04 07:40:30', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:30', updated_at='2018-04-04 07:40:30', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:30', updated_at='2018-04-04 07:40:30', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:30', updated_at='2018-04-04 07:40:30', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:31', updated_at='2018-04-04 07:40:31', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:31', updated_at='2018-04-04 07:40:31', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:31', updated_at='2018-04-04 07:40:31', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:40:31', updated_at='2018-04-04 07:40:31', user_id='82350',cust_id='37575231',call_id='1495210',name='PETCHIMUTHU M',number='9994253338',question_time='2018-04-04 07-27-59',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:41:01', updated_at='2018-04-04 07:41:01', user_id='90209',cust_id='56327400',call_id='1495233',name='NETHAJI DUVARAKANATHAN',number='9841230332',question_time='2018-04-04 07-32-01',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:41:01', updated_at='2018-04-04 07:41:01', user_id='90209',cust_id='56327400',call_id='1495233',name='NETHAJI DUVARAKANATHAN',number='9841230332',question_time='2018-04-04 07-32-01',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:41:01', updated_at='2018-04-04 07:41:01', user_id='90209',cust_id='56327400',call_id='1495233',name='NETHAJI DUVARAKANATHAN',number='9841230332',question_time='2018-04-04 07-32-01',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:41:01', updated_at='2018-04-04 07:41:01', user_id='90209',cust_id='56327400',call_id='1495233',name='NETHAJI DUVARAKANATHAN',number='9841230332',question_time='2018-04-04 07-32-01',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495300',fullremark='';
select distinct clientinternalid from records;
delete from `cache` where `key` = 'laravel83 Prime_Quality Prime_Quality10.22.211.207ajaxerrordialer/playrecfile';
delete from `cache` where `key` = 'laravel83 Prime_Quality Prime_Quality10.22.211.207ajaxerrordialer/playrecfilecnt';
insert into `cache` (`key`, `value`, `expiration`) values ('laravel83 Prime_Quality Prime_Quality10.22.211.207ajaxerrordialer/playrecfile', 'eyJpdiI6Ijg2ZlZpbHdPd1NuUVFLUzA4YnQ5TFE9PSIsInZhbHVlIjoia1U5Z2lMQUppOG5jRlFKZ1JtcUQwMlwvZVdwckM5aG1HdVwvdTdrT1dubkJ6MVV6UDA2eTBMOE1HRWE4eWUwUnVjdDA0QkloN1J5czlodWVcL1Y1UzMrVUE9PSIsIm1hYyI6ImEzOTQ2YTVkYzlmNDY4MmMwYjk3NDkyY2M2NTdmMTM4MjI1MTBmMWY2NGU3YzViYjQxOWI4ZDhjZjhlYzhjM2QifQ==', '1522914085');
insert into `cache` (`key`, `value`, `expiration`) values ('laravel83 Prime_Quality Prime_Quality10.22.211.207ajaxerrordialer/playrecfilecnt', 'eyJpdiI6IklGb2tQTlFrc1wvQkZFb3h2K1kya2xRPT0iLCJ2YWx1ZSI6Im5NTExJcm9hQzVsSURJVDd4R2dKRWc9PSIsIm1hYyI6IjczZDlkMmU0NTY2ZTczNDRmY2M0MjRjNTViZDdmYzBmNmY5YzdjZmI4ZDY1ZTg5N2JiN2NhMTAyMzFjYWQ4YWMifQ==', '1522914085');
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=59205425 and question IN(1021,1319,1056,1058,1322,2462,2515,2505,2498,1328,1329,1330,1059);
select distinct clientinternalid from records;
insert into full_remark set call_id='1495293',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495294',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495298',fullremark='Not ContactedPurpose updation callOut call made on 9940332755 RNR ';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select id from records where mobile like '%6360726879' OR
altphone1 like '%6360726879' OR
altphone2 like '%6360726879' OR
altphone3 like '%6360726879' OR
altphone4 like '%6360726879' OR
altphone5 like '%6360726879' OR
altphone6 like '%6360726879' OR
altphone7 like '%6360726879' OR
altphone8 like '%6360726879' OR
altphone9 like '%6360726879' OR
altphone10 like '%6360726879' and client in ('PM8OC','PM8OC_RC','null');
update records set modified=now(),peopledata='a:143:{s:2:"id";i:140963;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:13:"KARTHIKEYAN M";s:10:"clientcode";s:8:"31927892";s:16:"clientinternalid";s:8:"31927892";s:6:"status";s:6:"Called";s:7:"ucic_id";s:313:" ~||~ PL 10Sec NB Decile: 8 ~||~ PL 10Sec thru NB PA Limit: 800000 ~||~ ZipDrive Loan Amt: 1200000 ~||~ ~||~ SPC CC_UPG_ELIG: EMV MC HNW REGALIA FIRST ~||~ LE_AND_UPG - Old Limit: 100000 | New Limit: 130000 | OLDPROD: MASTER WORLD | NEWPROD: WORLD REGALIA FIRST ~||~ ~||~ COC_AMT: 75000 ~||~ PL2CC_AMT: 460000.00";s:6:"client";s:6:"PM10OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"31927892";s:6:"mobile";s:10:"7034336446";s:7:"emailid";s:53:"[email protected] ~~ Customer Registered for NDNC";s:10:"IVR_active";s:1:"1";s:11:"pref_action";s:28:"Platinum DC thru net banking";s:3:"SSS";s:5:" ";s:11:"AL_CAR_CASH";s:5:" ";s:10:"AL_PRE_AMT";s:5:" ";s:10:"al_upgrade";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:11:"TWL_PRE_AMT";s:5:" ";s:3:"APT";s:114:"HOLDS MASTER WORLD AND ELIGIBLE FOR LE AMT 120000AND UPGRADE TO EMV MC HNW REGALIA FIRST INTL AND COC AMT 75000.00";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:50:"O/S DUES 0.00 LAST BILL AMOUNT 5416.00 DUE DATE 17";s:15:"dialer_lastcall";s:19:"2018-04-04 07:42:25";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:15:"Phone No Answer";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:3:"DOB";s:25:"20NOV1981:00:00:00.000000";s:3:"age";s:2:"36";s:8:"Product1";s:9:"Home Loan";s:8:"Product2";s:11:"Mutual Fund";s:8:"Product3";s:13:"Fixed Deposit";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:10:"BP_REG_ora";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:7:"Dormant";s:7:"dc_type";s:7:"Gold DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:8:"HomeLoan";s:18:"decile_CC_CASA_var";s:10:"CreditCard";s:17:"LAST_TXN_POS_DATE";s:25:"08OCT2017:00:03:37.000000";s:8:"rf_offer";s:5:" ";s:7:"dc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:19:"decile_Ins_CASA_var";s:5:" ";s:8:"li_cover";s:95:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.148.43 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:101:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)Click 2 protect Plus 3)HDFC Life Classic Assure Plus";s:3:"dob";s:25:"20NOV1981:00:00:00.000000";s:8:"product1";s:9:"Auto Loan";s:8:"product2";s:27:"Petrol Usage on Credit Card";s:8:"product3";s:26:"Petrol Usage on Debit Card";s:10:"atm_active";s:1:"1";s:10:"bp_reg_ora";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:10:"hl_pre_amt";s:7:"1610523";s:17:"decile_hl_csa_var";s:8:"HomeLoan";s:16:"pl_paperless_amt";s:6:"521000";s:17:"last_txn_pos_date";s:25:"28OCT2016:22:06:51.000000";s:22:"life_insu_premium_amt1";s:1:"0";s:13:"decile_mf_var";s:2:"MF";s:14:"DBC_ACTIVATION";s:252:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD:(N) /RD:(Y) /Smart Pay:(Y) /Credit Card Active:(Y) /Debit Card Active:(Y) /Total NB online Transactions : 20 /";s:18:"DIGITAL_INITIATIVE";s:233:"NetBanking Active. Customer did these transactions offline in sep which can be migrated to NB -CHQ PAY . Top 4 Product :AL/PL /Customer is registered and paying bills through other methods (Biller Name : AIRTEL MOBILE ) / / / / / .";s:5:"nboff";s:21:"Offline NB (CHQ PAY )";s:5:"prod2";s:12:"MASTER WORLD";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:21:"decile_demat_casa_var";s:5:"Demat";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:13:"decile_MF_var";s:2:"MF";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(Y) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(Y) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:380:"DA: Pref. channel:MB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/OPEN FIXED DEPOSIT/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/ADD BENEFICIARY/Online prod purchas:RECURRING DEPOSIT // / /Top 4 Pdts :LI / / / . Customer is registered and paying bills through other methods. / /Pitch Insta loan / /Pitch SI on BP/Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 12:48:52";s:7:"auto_id";s:6:"172774";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"31927892";s:9:"altphone2";s:5:" ";s:6:"chillr";s:5:" ";s:6:"wallet";s:1:"1";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:7:"1500000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"pl_pre_amt";s:6:"893907";s:11:"twl_pre_amt";s:6:"797000";s:3:"apt";s:51:"HOLDS MASTER WORLD AND IS IN ACTIVE AND COC AMT 50K";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:53:"O/S DUES 32953.16 LAST BILL AMOUNT 388.00 DUE DATE 17";s:9:"coc_eligi";s:3:"50K";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:19:"decile_ins_casa_var";s:25:"Investment Insurance plan";s:15:"motor_insurance";s:5:" ";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) YOUNGSTAR and 3) PRO_GROWTH_SUPER";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(Y) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(N) /Shopping:(Y) /Investment:(Y) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:380:"DA: Pref. channel:MB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/OPEN FIXED DEPOSIT/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/ADD BENEFICIARY/Online prod purchas:RECURRING DEPOSIT // / /Top 4 Pdts :LI / / / . Customer is registered and paying bills through other methods. / /Pitch Insta loan / /Pitch SI on BP/Paying Rent pitch SI on DC";s:5:"Perks";s:184:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: InActive, Basic_Banking: Active, ECOM_Shopping: Active, Investment: Active, Physical: InActive";s:6:"Chillr";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:5:"BLOCK";s:5:" ";s:9:"COC_ELIGI";s:5:"75000";s:7:"LE_ELIG";s:6:"120000";s:20:"decile_LAS_Demat_var";s:1:" ";s:6:"mf_isa";s:0:"";s:8:"question";s:99:"1015,1016,1319,1056,1057,1327,1026,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1017,1059";s:7:"MEdical";s:59:"Customer has high medical spends, discuss Health Insurance.";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:14:"DC_billpay_tag";s:1:"1";s:2:"Si";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:9:"FD_Status";s:15:"FD : 09/01/2018";s:3:"HSL";s:1:"0";s:11:"LAS_PRE_AMT";s:5:" ";}',modifylog='0',dirty='a:130:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:10:"IVR_active";i:1;s:11:"pref_action";i:1;s:3:"SSS";i:1;s:11:"AL_CAR_CASH";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:10:"BP_REG_ora";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:18:"decile_CC_CASA_var";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:8:"rf_offer";i:1;s:7:"dc_auto";i:1;s:19:"decile_Ins_CASA_var";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:3:"dob";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"atm_active";i:1;s:10:"bp_reg_ora";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:10:"hl_pre_amt";i:1;s:17:"decile_hl_csa_var";i:1;s:16:"pl_paperless_amt";i:1;s:17:"last_txn_pos_date";i:1;s:22:"life_insu_premium_amt1";i:1;s:13:"decile_mf_var";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:5:"nboff";i:1;s:5:"prod2";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:21:"decile_demat_casa_var";i:1;s:7:"cc_auto";i:1;s:13:"decile_MF_var";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:9:"altphone2";i:1;s:6:"chillr";i:1;s:6:"wallet";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"pl_pre_amt";i:1;s:11:"twl_pre_amt";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:9:"coc_eligi";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:19:"decile_ins_casa_var";i:1;s:15:"motor_insurance";i:1;s:12:"li_plan_prio";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:19:"decile_GoldLoan_var";i:1;s:5:"BLOCK";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:8:"question";i:1;s:7:"MEdical";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:14:"DC_billpay_tag";i:1;s:2:"Si";i:1;s:11:"LAP_PRE_AMT";i:1;s:18:"decile_Ins_pen_var";i:1;s:9:"FD_Status";i:1;s:3:"HSL";i:1;s:11:"LAS_PRE_AMT";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='KARTHIKEYAN M' ,`mobile`='7034336446' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone2`=' ' ,`client`='PM10OC' ,`status`='Called' ,`clientinternalid`='31927892' ,`clientcode`='31927892' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone No Answer' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:42:25' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1015,1016,1319,1056,1057,1327,1026,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1017,1059' ,`mf_isa`='' where id='140963' limit 1;
insert into full_remark set call_id='1495296',fullremark='RNR';
insert into full_remark set call_id='1495308',fullremark='sswithed off';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495309',fullremark='';
select id from records where mobile like '%6360726879' OR
altphone1 like '%6360726879' OR
altphone2 like '%6360726879' OR
altphone3 like '%6360726879' OR
altphone4 like '%6360726879' OR
altphone5 like '%6360726879' OR
altphone6 like '%6360726879' OR
altphone7 like '%6360726879' OR
altphone8 like '%6360726879' OR
altphone9 like '%6360726879' OR
altphone10 like '%6360726879' and client in ('PM8OC','PM8OC_RC','null');
insert into full_remark set call_id='1495307',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495313',fullremark='';
insert into full_remark set call_id='1495210',fullremark='Purpose Introduction Spoke to the customer and ask about credit card clarification for march 17 th tranasction Offers also pitched tot he customer but customer said not intrested now even famil account opening details and investment also not intrested now Digital products pitched to the customer but customer said already aware in payzapp net banking Closing call done ';
insert into full_remark set call_id='1495303',fullremark='call not answered';
select distinct clientinternalid from records;
select id from records where mobile like '%7010108330' OR
altphone1 like '%7010108330' OR
altphone2 like '%7010108330' OR
altphone3 like '%7010108330' OR
altphone4 like '%7010108330' OR
altphone5 like '%7010108330' OR
altphone6 like '%7010108330' OR
altphone7 like '%7010108330' OR
altphone8 like '%7010108330' OR
altphone9 like '%7010108330' OR
altphone10 like '%7010108330' and client in ('PM8OC','PM8OC_RC','null');
insert into full_remark set call_id='1495233',fullremark='ASKING ABOUT PASSBOOK DETAILS PITCH CC NOT INTERESTED';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495305',fullremark='BUSY';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=53690995 and question IN(1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1059);
select distinct clientinternalid from records;
insert into full_remark set call_id='1495306',fullremark='ContactedPurpose incoming callOut call made on 9940332755 Program introduction provided';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:43:37', updated_at='2018-04-04 07:43:37', user_id='82341',cust_id='21026369',call_id='1495118',name='M ELANGOVAN',number='09845680343',question_time='2018-04-04 07-14-18',question='1016',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:43:37', updated_at='2018-04-04 07:43:37', user_id='82341',cust_id='21026369',call_id='1495118',name='M ELANGOVAN',number='09845680343',question_time='2018-04-04 07-14-18',question='1026',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:43:37', updated_at='2018-04-04 07:43:37', user_id='82341',cust_id='21026369',call_id='1495118',name='M ELANGOVAN',number='09845680343',question_time='2018-04-04 07-14-18',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:43:38', updated_at='2018-04-04 07:43:38', user_id='82341',cust_id='21026369',call_id='1495118',name='M ELANGOVAN',number='09845680343',question_time='2018-04-04 07-14-18',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:43:38', updated_at='2018-04-04 07:43:38', user_id='82341',cust_id='21026369',call_id='1495118',name='M ELANGOVAN',number='09845680343',question_time='2018-04-04 07-14-18',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:146:{s:2:"id";i:400184;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:6:"AMMU S";s:10:"clientcode";s:7:"8382375";s:16:"clientinternalid";s:7:"8382375";s:6:"status";s:6:"Called";s:8:"priority";s:0:"";s:7:"ucic_id";s:145:" ~||~ PL 10Sec NB Decile: 9 ~||~ PL 10Sec thru NB PA Limit: 975000 ~||~ ZipDrive Loan Amt: 1320000 ~||~ COC_AMT: 117000 ~||~ PL2CC_AMT: 240000.00";s:6:"client";s:6:"PM21OC";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:7:"8382375";s:3:"dob";s:25:"10MAY1980:00:00:00.000000";s:3:"age";s:2:"37";s:6:"mobile";s:10:"9941012147";s:9:"altphone2";s:5:" ";s:7:"emailid";s:55:"[email protected] ~~ Customer Registered for NDNC";s:8:"product1";s:11:"Mutual Fund";s:8:"product2";s:11:"Mutual Fund";s:8:"product3";s:11:"Mutual Fund";s:10:"atm_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:6:"chillr";s:5:" ";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active30";s:7:"dc_type";s:19:"Imperia_platinum DC";s:14:"dc_billpay_tag";s:1:"1";s:21:"directpay_billpay_tag";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:67:"Save upto Rs.9000 in CashBack on your HDFC Bank Imperia_platinum DC";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:6:"530000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (Y) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 1).";s:10:"pl_pre_amt";s:6:"191000";s:5:"prod2";s:19:"WORLD REGALIA FIRST";s:3:"apt";s:63:"HOLDS MASTER WORLD AND IS IN ACTIVE ELIGIBLE FOR LE AMT 156000";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:55:"O/S DUES 56301.57 LAST BILL AMOUNT 22241.00 DUE DATE 09";s:17:"last_txn_pos_date";s:25:"28OCT2016:12:23:16.000000";s:7:"le_elig";s:6:"156000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:4:"CBDT";s:298:"DA: Pref. channel:MB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/OPEN FIXED DEPOSIT/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/ADD BENEFICIARY // / / / /Pitch CASA nominee online. / . Pitch Billpay / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"rf_offer";s:5:" ";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:7:"dc_auto";s:67:"Customer spending on petorl and Car services,Disuss Auto insurance.";s:15:"motor_insurance";s:5:" ";s:8:"li_cover";s:94:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.45.16 Lacs.";s:22:"life_insu_premium_amt1";s:1:"0";s:10:"mf_sip_amt";s:4:"8000";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (Y) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 1).";s:18:"digital_initiative";s:298:"DA: Pref. channel:MB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/OPEN FIXED DEPOSIT/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/ADD BENEFICIARY // / / / /Pitch CASA nominee online. / . Pitch Billpay / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 14:51:12";s:7:"auto_id";s:7:"1775110";s:9:"SERVER_IP";s:12:"10.22.214.10";s:15:"dialer_lastcall";s:19:"2018-04-04 07:43:51";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:15:"Phone No Answer";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:5:"Perks";s:182:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: Active";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:10:"GROUP_CORR";s:7:"8382375";s:3:"DOB";s:25:"10MAY1980:00:00:00.000000";s:10:"ATM_active";s:1:"1";s:6:"Chillr";s:5:" ";s:14:"DC_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"payzap";s:5:" ";s:3:"SSS";s:5:" ";s:10:"AL_PRE_AMT";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:3:"APT";s:64:"HOLDS WORLD REGALIA FIRST AND IS IN ACTIVE AND COC AMT 117000.00";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:54:"O/S DUES 26931.67 LAST BILL AMOUNT 5132.00 DUE DATE 09";s:9:"COC_ELIGI";s:6:"117000";s:17:"LAST_TXN_POS_DATE";s:25:"31JAN2018:19:49:50.000000";s:7:"LE_ELIG";s:5:" ";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:21:"decile_demat_casa_var";s:5:"Demat";s:20:"decile_LAS_Demat_var";s:1:" ";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:88:"LI PLAN Priority 1)Click 2 protect Plus 2)HDFC Cancer Care 3)HDFC Life Super Income Plan";s:13:"decile_MF_var";s:2:"MF";s:6:"mf_isa";s:0:"";s:10:"MF_SIP_AMT";s:4:"8000";s:10:"IVR_active";s:1:"1";s:17:"decile_PL_CSA_var";s:1:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:8:"question";s:79:"1056,1058,1327,1320,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1050,1059";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:7:"MEdical";s:59:"Customer has high medical spends, discuss Health Insurance.";s:10:"al_upgrade";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:9:"altphone1";s:5:" ";s:14:"altphone_lbl_1";N;s:14:"altphone_lbl_2";N;s:9:"altphone3";N;s:14:"altphone_lbl_3";N;s:9:"altphone4";N;s:14:"altphone_lbl_4";N;s:9:"altphone5";N;s:14:"altphone_lbl_5";N;s:9:"altphone6";N;s:14:"altphone_lbl_6";N;s:9:"altphone7";N;s:14:"altphone_lbl_7";N;s:9:"altphone8";N;s:14:"altphone_lbl_8";N;s:9:"altphone9";N;s:14:"altphone_lbl_9";N;s:10:"altphone10";s:0:"";s:15:"altphone_lbl_10";s:0:"";s:3:"HSL";s:1:"0";s:11:"LAS_PRE_AMT";s:5:" ";}',modifylog='0',dirty='a:114:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:8:"priority";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:9:"altphone2";i:1;s:7:"emailid";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"atm_active";i:1;s:9:"atm_usage";i:1;s:6:"chillr";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:14:"dc_billpay_tag";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:9:"hl_bt_amt";i:1;s:10:"pl_pre_amt";i:1;s:5:"prod2";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:17:"last_txn_pos_date";i:1;s:7:"le_elig";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:4:"CBDT";i:1;s:8:"rf_offer";i:1;s:7:"cc_auto";i:1;s:7:"dc_auto";i:1;s:15:"motor_insurance";i:1;s:8:"li_cover";i:1;s:22:"life_insu_premium_amt1";i:1;s:10:"mf_sip_amt";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:5:"Perks";i:1;s:4:"Unit";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:10:"ATM_active";i:1;s:6:"Chillr";i:1;s:14:"DC_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"payzap";i:1;s:3:"SSS";i:1;s:10:"AL_PRE_AMT";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:19:"decile_GoldLoan_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:5:"BLOCK";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:9:"COC_ELIGI";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:7:"LE_ELIG";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:21:"decile_demat_casa_var";i:1;s:20:"decile_LAS_Demat_var";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:13:"decile_MF_var";i:1;s:6:"mf_isa";i:1;s:10:"MF_SIP_AMT";i:1;s:10:"IVR_active";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:7:"MEdical";i:1;s:10:"al_upgrade";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:3:"HSL";i:1;s:11:"LAS_PRE_AMT";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='AMMU S' ,`mobile`='9941012147' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone1`=' ' ,`altphone2`=' ' ,`altphone10`='' ,`client`='PM21OC' ,`status`='Called' ,`clientinternalid`='8382375' ,`clientcode`='8382375' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone No Answer' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:43:51' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1058,1327,1320,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1050,1059' ,`mf_isa`='' where id='400184' limit 1;
insert into full_remark set call_id='1495304',fullremark='RNR called for LI details ';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495316',fullremark='CUSTOMER CUT THE CALL WHILE SPEAKING';
insert into full_remark set call_id='1495323',fullremark='';
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM25OC' order by dialer_lastcall asc;
SELECT distinct question FROM questionaire_details WHERE cust_id=57230236 and question IN(1056,1058,1322,2462,2515,2505,2498,1328,1329,1330,1051);
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=42486846 and question IN(1056,1058,1026,1322,2462,2515,2505,2498,1328,1329,1330);
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM27OC' order by dialer_lastcall asc;
select count(*) as aggregate from `records` where dialer_lastcall>='2018-04-04 00:00:00' and client='PM20OC';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=43539513 and question IN(1056,1057,1058,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330);
insert into questionaire_details set created_at='2018-04-04 07:44:38', updated_at='2018-04-04 07:44:38', user_id='94542',cust_id='37165677',call_id='1495247',name='GUNASEELAN S',number='8608701268',question_time='2018-04-04 07-33-52',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:44:38', updated_at='2018-04-04 07:44:38', user_id='94542',cust_id='37165677',call_id='1495247',name='GUNASEELAN S',number='8608701268',question_time='2018-04-04 07-33-52',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:44:38', updated_at='2018-04-04 07:44:38', user_id='94542',cust_id='37165677',call_id='1495247',name='GUNASEELAN S',number='8608701268',question_time='2018-04-04 07-33-52',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:44:38', updated_at='2018-04-04 07:44:38', user_id='94542',cust_id='37165677',call_id='1495247',name='GUNASEELAN S',number='8608701268',question_time='2018-04-04 07-33-52',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:44:56', updated_at='2018-04-04 07:44:56', user_id='87322',cust_id='26141632',call_id='1495266',name='BASKARAN R',number='8903426954',question_time='2018-04-04 07-36-11',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='Dear Sir / Madame, request you to help in letting us know your annual income',followup1_response=' I am busy now. Call me back later',followup1_text='',followup2_question='Sure Sir, What is the convenience time to call you back',followup2_response=' I am busy now. Call me back later',followup2_text='',followup3_question='',followup3_response=' I am busy now. Call me back later',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:44:57', updated_at='2018-04-04 07:44:57', user_id='87322',cust_id='26141632',call_id='1495266',name='BASKARAN R',number='8903426954',question_time='2018-04-04 07-36-11',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:44:57', updated_at='2018-04-04 07:44:57', user_id='87322',cust_id='26141632',call_id='1495266',name='BASKARAN R',number='8903426954',question_time='2018-04-04 07-36-11',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:44:57', updated_at='2018-04-04 07:44:57', user_id='87322',cust_id='26141632',call_id='1495266',name='BASKARAN R',number='8903426954',question_time='2018-04-04 07-36-11',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' No',primary_text='',followup1_question='Sir this is simple process wherein without visiting branch you can book FD/RD online anytime.',followup1_response=' OK I will book the same',followup1_text='',followup2_question='Sure Sir it is convenient, I can help you to book it now now itself through a simple step by logging into to net banking.',followup2_response=' OK I will book the same',followup2_text='',followup3_question='',followup3_response=' OK I will book the same',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:44:57', updated_at='2018-04-04 07:44:57', user_id='87322',cust_id='26141632',call_id='1495266',name='BASKARAN R',number='8903426954',question_time='2018-04-04 07-36-11',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:44:57', updated_at='2018-04-04 07:44:57', user_id='87322',cust_id='26141632',call_id='1495266',name='BASKARAN R',number='8903426954',question_time='2018-04-04 07-36-11',question='1051',primary_question='Check profiling for TWL / car ownership, Pitch for car loan- resh or CNC, update profiler with car details.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495318',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495339',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495247',fullremark='ContactedPurpose Incoming callOut call made on 8608701268Cust want to know AL porital payment need to call back';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495335',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495337',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495343',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495340',fullremark='line is busy called for offers update ';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495266',fullremark='ALREADY SPOKEN INSTA LOAN AND LI EXPLAINED NOT INTERESTED';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:46:27', updated_at='2018-04-04 07:46:27', user_id='93738',cust_id='61037990',call_id='1495327',name='SIVA KUMAR E',number='9940332755',question_time='2018-04-04 07-43-42',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:46:27', updated_at='2018-04-04 07:46:27', user_id='93738',cust_id='61037990',call_id='1495327',name='SIVA KUMAR E',number='9940332755',question_time='2018-04-04 07-43-42',question='1051',primary_question='Check profiling for TWL / car ownership, Pitch for car loan- resh or CNC, update profiler with car details.',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, you have done transcation at petrol pump using your DC/CC',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:46:27', user_id='93738',cust_id='61037990',call_id='1495327',name='SIVA KUMAR E',number='9940332755',question_time='2018-04-04 07-43-42',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495327' and question='1057' and cust_id='61037990';
update questionaire_details set updated_at='2018-04-04 07:46:28', user_id='93738',cust_id='61037990',call_id='1495327',name='SIVA KUMAR E',number='9940332755',question_time='2018-04-04 07-43-42',question='1051',primary_question='Check profiling for TWL / car ownership, Pitch for car loan- resh or CNC, update profiler with car details.',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, you have done transcation at petrol pump using your DC/CC',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495327' and question='1051' and cust_id='61037990';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495345',fullremark='Not ContactedPurpose IntroductionOut call made on 9444140031 RNR Attempt 1 Alternate number XXXXXX tried Ringing';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:47:17', updated_at='2018-04-04 07:47:17', user_id='82414',cust_id='46808112',call_id='1495270',name='SUKANYA V',number='9176383660',question_time='2018-04-04 07-36-39',question='1021',primary_question='Understand the current CC customer is using and the benefits he is enjoying in the same, Pitch SPC.',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see you are not holding the HDFC Bank Credit Card',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:17', updated_at='2018-04-04 07:47:17', user_id='82414',cust_id='46808112',call_id='1495270',name='SUKANYA V',number='9176383660',question_time='2018-04-04 07-36-39',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='Sir , You are Eligible for LTF Card , I just Need Pan Card & Signature In the Application , When Can Send the Excutive to your Place',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:17', updated_at='2018-04-04 07:47:17', user_id='82414',cust_id='46808112',call_id='1495270',name='SUKANYA V',number='9176383660',question_time='2018-04-04 07-36-39',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='Sir I can See your have not registered for Insta Alerts .',followup1_response=' Yes',followup1_text='',followup2_question='How can I register for Insta Alerts',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:17', updated_at='2018-04-04 07:47:17', user_id='82414',cust_id='46808112',call_id='1495270',name='SUKANYA V',number='9176383660',question_time='2018-04-04 07-36-39',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see there is not much balance in you?re A/c , Compare to earlier ',followup1_response=' Yes',followup1_text='',followup2_question='is there any funds Requirement , So that I can help for getting the Loans for you .',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:17', updated_at='2018-04-04 07:47:17', user_id='82414',cust_id='46808112',call_id='1495270',name='SUKANYA V',number='9176383660',question_time='2018-04-04 07-36-39',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='We have special offers attached for using our Bill pay option. Extra reward points are available if you can register for Smart pay online',followup1_response=' Does it support all operating systems & is it safe',followup1_text='',followup2_question='Sure Sir, I can help you to register now itself through a simple step by logging into to net banking',followup2_response=' Does it support all operating systems & is it safe',followup2_text='',followup3_question='Sure Sir, I will call & confirm with you on same.',followup3_response=' Does it support all operating systems & is it safe',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:17', updated_at='2018-04-04 07:47:17', user_id='82414',cust_id='46808112',call_id='1495270',name='SUKANYA V',number='9176383660',question_time='2018-04-04 07-36-39',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' No',primary_text='',followup1_question='Sir this is simple process wherein without visiting branch you can book FD/RD online anytime.',followup1_response=' OK I will book the same',followup1_text='',followup2_question='',followup2_response=' OK I will book the same',followup2_text='',followup3_question='',followup3_response=' OK I will book the same',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:17', updated_at='2018-04-04 07:47:17', user_id='82414',cust_id='46808112',call_id='1495270',name='SUKANYA V',number='9176383660',question_time='2018-04-04 07-36-39',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='Sure Sir it is convenient, I can help you to book it now now itself through a simple step by logging into to net banking.',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:17', updated_at='2018-04-04 07:47:17', user_id='82414',cust_id='46808112',call_id='1495270',name='SUKANYA V',number='9176383660',question_time='2018-04-04 07-36-39',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495270',fullremark='INCOMINGi spoke to the customer customer asking suganya sampoorthi scheme then i will indimate savings but she say i want monthly payment not fixed amount then i will indimate that is not possibleprofiling done ';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:47:36', updated_at='2018-04-04 07:47:36', user_id='82347',cust_id='27771122',call_id='1495325',name='DIVYA SAMPATH',number='9941561563',question_time='2018-04-04 07-43-37',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:37', updated_at='2018-04-04 07:47:37', user_id='82347',cust_id='27771122',call_id='1495325',name='DIVYA SAMPATH',number='9941561563',question_time='2018-04-04 07-43-37',question='1024',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, as I can see, you are using a normal CC',followup1_response=' OK',followup1_text='',followup2_question='',followup2_response=' OK',followup2_text='',followup3_question='',followup3_response=' OK',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:37', updated_at='2018-04-04 07:47:37', user_id='82347',cust_id='27771122',call_id='1495325',name='DIVYA SAMPATH',number='9941561563',question_time='2018-04-04 07-43-37',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495342',fullremark='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:47:48', updated_at='2018-04-04 07:47:48', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1021',primary_question='Understand the current CC customer is using and the benefits he is enjoying in the same, Pitch SPC.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:48', updated_at='2018-04-04 07:47:48', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:47:48', updated_at='2018-04-04 07:47:48', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:48', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1021',primary_question='Understand the current CC customer is using and the benefits he is enjoying in the same, Pitch SPC.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='1021' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:48', updated_at='2018-04-04 07:47:48', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1325',primary_question='Check for reason, if new organisation, update the same in COCO link, pitch CC Payment through NetBanking, PA products, Term Products, BP/SP, increase CTG,',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:49', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='1056' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:49', updated_at='2018-04-04 07:47:49', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2485',primary_question='Sir, we can see that salary is not getting credited in your salary account. Have you changed the employer or changed salary account with other bank',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:49', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='1322' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:49', updated_at='2018-04-04 07:47:49', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:49', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1325',primary_question='Check for reason, if new organisation, update the same in COCO link, pitch CC Payment through NetBanking, PA products, Term Products, BP/SP, increase CTG,',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='1325' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:49', updated_at='2018-04-04 07:47:49', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:49', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2485',primary_question='Sir, we can see that salary is not getting credited in your salary account. Have you changed the employer or changed salary account with other bank',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='2485' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:50', updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='2462' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:50', updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='2515' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:50', updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='2505' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:50', updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='2498' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:50', updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='1328' and cust_id='39890233';
insert into questionaire_details set created_at='2018-04-04 07:47:50', updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1061',primary_question='Pitch HL BT & Top Up',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='1329' and cust_id='39890233';
update questionaire_details set updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='1059' and cust_id='39890233';
update questionaire_details set updated_at='2018-04-04 07:47:50', user_id='93740',cust_id='39890233',call_id='1495157',name='ADITHYA A',number='9901158321',question_time='2018-04-04 07-19-43',question='1061',primary_question='Pitch HL BT & Top Up',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495157' and question='1061' and cust_id='39890233';
insert into full_remark set call_id='1495347',fullremark='';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:159:{s:2:"id";i:280044;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:23:"SHANTOSHKUMAR MADIWALAR";s:10:"clientcode";s:8:"39918756";s:16:"clientinternalid";s:8:"39918756";s:6:"status";s:6:"Called";s:7:"ucic_id";s:317:" ~||~ PL 10Sec NB Decile: 4 ~||~ PL 10Sec thru NB PA Limit: 441000 ~||~ ZipDrive Loan Amt: 1320000 ~||~ ~||~ SPC CC_UPG_ELIG: EMV VISA HNW REGALIA FIRST ~||~ LE_ONLY - Old Limit: 132000 | New Limit: 146000 | OLDPROD: VISA PLATINUM | NEWPROD: SIGNATURE REGALIA FIRST ~||~ ~||~ COC_AMT: 99000 ~||~ PL2CC_AMT: 580000.00";s:6:"client";s:6:"PM20OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"39918756";s:3:"DOB";s:25:"31JUL1989:00:00:00.000000";s:3:"age";s:2:"28";s:6:"mobile";s:10:"8977290660";s:7:"emailid";s:22:"[email protected]";s:8:"Product1";s:13:"Personal Loan";s:8:"Product2";s:9:"Atm Ronus";s:8:"Product3";s:9:"Home Loan";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Inactive";s:7:"dc_type";s:19:"Imperia_platinum DC";s:14:"DC_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"payzap";s:5:" ";s:6:"wallet";s:1:"1";s:11:"pref_action";s:67:"Save upto Rs.9000 in CashBack on your HDFC Bank Imperia_platinum DC";s:10:"AL_PRE_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:17:"LAST_TXN_POS_DATE";s:25:"03AUG2017:05:54:14.000000";s:21:"decile_demat_casa_var";s:5:"Demat";s:8:"li_cover";s:94:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.98.55 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:88:"LI PLAN Priority 1)HDFC Cancer Care 2)HDFC Life Super Income Plan 3)Click 2 protect Plus";s:15:"dialer_lastcall";s:19:"2018-04-04 07:48:09";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:15:"Phone No Answer";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:21:"directpay_billpay_tag";s:1:"1";s:14:"decile_EEG_var";s:3:"EEG";s:5:"prod2";s:13:"VISA PLATINUM";s:3:"APT";s:77:"HOLDS VISA PLATINUM AND IS IN ACTIVE AND COC AMT 99000.00 AND SMARTPAY ACTIVE";s:17:"STATEMENT_DETAILS";s:55:"O/S DUES 16077.36 LAST BILL AMOUNT 43719.00 DUE DATE 13";s:12:"SMPAY_ACTIVE";s:1:"Y";s:10:"SMPAY_REGD";s:1:"N";s:14:"DBC_ACTIVATION";s:252:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(N) /Credit Card Active:(N) /Debit Card Active:(Y) /Total NB online Transactions : 21 /";s:18:"DIGITAL_INITIATIVE";s:221:"NetBanking Active . Top 4 Product :AL/PL /Customer is not registered for BillPay and paying bills through other methods /Kindly Update Aadhar / / /Pitch for Insta loan /Pitch for Jumbo loan /Kindly pitch for FD product .";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:248:"DA: Pref. channel:NB//DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / /Pitch CASA nominee online. / . / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 13:23:32";s:7:"auto_id";s:6:"569562";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"39918756";s:3:"dob";s:25:"31JUL1989:00:00:00.000000";s:9:"altphone2";s:5:" ";s:8:"product1";s:25:"Mobile Banking Activation";s:8:"product2";s:13:"Personal Loan";s:10:"atm_active";s:1:"1";s:10:"bp_reg_ora";s:1:"1";s:6:"chillr";s:5:" ";s:14:"dc_billpay_tag";s:1:"1";s:10:"ivr_active";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:7:"1500000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:14:"decile_eeg_var";s:3:"EEG";s:10:"hl_pre_amt";s:7:"2185785";s:10:"pl_pre_amt";s:6:"785000";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:11:"twl_pre_amt";s:6:"436000";s:3:"apt";s:107:"HOLDS VISA PLATINUM AND IS IN ACTIVE AND ELIGIBLE FOR LE AMT 130000 AND COC AMT 35K AND SMARTPAY REGISTERED";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:50:"O/S DUES 2597.00 LAST BILL AMOUNT 0.00 DUE DATE 13";s:9:"coc_eligi";s:3:"35K";s:17:"last_txn_pos_date";s:25:"04OCT2016:10:51:54.000000";s:7:"le_elig";s:6:"130000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"Y";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) YOUNGSTAR and 3) PRO_GROWTH_SUPER";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:248:"DA: Pref. channel:NB//DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / / / /Pitch CASA nominee online. / . / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:5:"Perks";s:184:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:10:"HL_PRE_AMT";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:10:"ACT_STATUS";s:6:"ACTIVE";s:9:"COC_ELIGI";s:5:"99000";s:7:"LE_ELIG";s:6:"146000";s:20:"decile_LAS_Demat_var";s:313:" | PL: NO | AL: NO | TWL: NO | HL: NO | CC: YES | Demat: NO | Insurance: NO | ISA: NO | FD: NO | RD: NO | DC: YES | GRP_Assets_and_CC_Elig_PL: 673939 | PL_10_SECS: [email protected]% | AL: 1200000 | TWL: 0 | CC: | CC_TYPE: OTHERS | CC_USAGE: CC IS ACTIVE | GRP_Recommended_Products_1: , 2, 3, 4, 5, 6 | EmailID_Y_N: Y";s:6:"mf_isa";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:10:"BP_REG_ora";s:1:"1";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:8:"question";s:49:"1056,1058,1327,1026,1322,2462,2515,2505,2498,1059";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:10:"bp_act_tag";s:1:"Y";s:2:"Si";s:1:"1";s:10:"al_upgrade";s:5:" ";s:8:"product3";s:25:"Mobile Banking Activation";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:16:"decile_HL_SA_var";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:17:"decile_las_mf_var";s:272:"Aadhaar: NOT UPDATED | PriorIty: Prioirty 3 | COCODE: 75 | Br_Code: 1225 | GRP_Product_Holding_NB_Active: Y | MB_Active: N | Financial_Txn_done_on_NB: Y | Financial_Txn_done_on_MB: N | Chillr: NO | PayZapp: NO | BillPay_Reg: YES | BillPay_Use: YES | Debit_Card_active: YES";s:18:"decile_Ins_pen_var";s:5:" ";s:9:"altphone1";s:1:" ";s:14:"altphone_lbl_1";N;s:14:"altphone_lbl_2";N;s:9:"altphone3";N;s:14:"altphone_lbl_3";N;s:9:"altphone4";N;s:14:"altphone_lbl_4";N;s:9:"altphone5";N;s:14:"altphone_lbl_5";N;s:9:"altphone6";N;s:14:"altphone_lbl_6";N;s:9:"altphone7";N;s:14:"altphone_lbl_7";N;s:9:"altphone8";N;s:14:"altphone_lbl_8";N;s:9:"altphone9";N;s:14:"altphone_lbl_9";N;s:10:"altphone10";s:0:"";s:15:"altphone_lbl_10";s:0:"";s:10:"IVR_active";s:1:"1";s:19:"decile_Ins_CASA_var";s:5:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:128:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:14:"DC_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"payzap";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:11:"TWL_PRE_AMT";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:21:"decile_demat_casa_var";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:21:"directpay_billpay_tag";i:1;s:14:"decile_EEG_var";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:17:"STATEMENT_DETAILS";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:10:"atm_active";i:1;s:10:"bp_reg_ora";i:1;s:6:"chillr";i:1;s:14:"dc_billpay_tag";i:1;s:10:"ivr_active";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:14:"decile_eeg_var";i:1;s:10:"hl_pre_amt";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:11:"twl_pre_amt";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:9:"coc_eligi";i:1;s:17:"last_txn_pos_date";i:1;s:7:"le_elig";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:10:"HL_PRE_AMT";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:10:"ACT_STATUS";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:10:"BP_REG_ora";i:1;s:17:"decile_PL_CSA_var";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:10:"bp_act_tag";i:1;s:2:"Si";i:1;s:10:"al_upgrade";i:1;s:8:"product3";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:16:"decile_HL_SA_var";i:1;s:19:"decile_GoldLoan_var";i:1;s:17:"decile_las_mf_var";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"IVR_active";i:1;s:19:"decile_Ins_CASA_var";i:1;s:9:"altphone1";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='SHANTOSHKUMAR MADIWALAR' ,`mobile`='8977290660' ,`emailid`='[email protected]' ,`altphone1`=' ' ,`altphone2`=' ' ,`altphone10`='' ,`client`='PM20OC' ,`status`='Called' ,`clientinternalid`='39918756' ,`clientcode`='39918756' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone No Answer' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:48:09' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1058,1327,1026,1322,2462,2515,2505,2498,1059' ,`mf_isa`='' where id='280044' limit 1;
insert into full_remark set call_id='1495348',fullremark='IAM TRY TO CONTECT THIS CUSTOMER NUMBER BUT HE IS NOT PICKING MY CALLS';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495325',fullremark='Ashwin';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:48:35', updated_at='2018-04-04 07:48:35', user_id='82346',cust_id='63030147',call_id='1495284',name='ASWANTH P',number='9894838289',question_time='2018-04-04 07-39-08',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:35', updated_at='2018-04-04 07:48:35', user_id='82346',cust_id='63030147',call_id='1495284',name='ASWANTH P',number='9894838289',question_time='2018-04-04 07-39-08',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:35', updated_at='2018-04-04 07:48:35', user_id='82346',cust_id='63030147',call_id='1495284',name='ASWANTH P',number='9894838289',question_time='2018-04-04 07-39-08',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:37', updated_at='2018-04-04 07:48:37', user_id='95046',cust_id='41939399',call_id='1495336',name='D VENUGOPAL',number='8939166297',question_time='2018-04-04 07-44-37',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:37', updated_at='2018-04-04 07:48:37', user_id='95046',cust_id='41939399',call_id='1495336',name='D VENUGOPAL',number='8939166297',question_time='2018-04-04 07-44-37',question='1024',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:37', updated_at='2018-04-04 07:48:37', user_id='95046',cust_id='41939399',call_id='1495336',name='D VENUGOPAL',number='8939166297',question_time='2018-04-04 07-44-37',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495336',fullremark='ContactedPurpose Introduction Out call made on 8939166297 customer wants to link with their LIc payment ';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495358',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=38116640 and question IN(1319,1056,1322,2462,2515,2505,2498,1328,1329,1330,1061);
insert into questionaire_details set created_at='2018-04-04 07:48:57', updated_at='2018-04-04 07:48:57', user_id='82387',cust_id='57054302',call_id='1495341',name='NANCY S',number='8056610744',question_time='2018-04-04 07-45-31',question='1021',primary_question='Understand the current CC customer is using and the benefits he is enjoying in the same, Pitch SPC.',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see you are not holding the HDFC Bank Credit Card',followup1_response=' Yes , But Currently I cant Speak to you now Call me later',followup1_text='',followup2_question='',followup2_response=' Yes , But Currently I cant Speak to you now Call me later',followup2_text='',followup3_question='',followup3_response=' Yes , But Currently I cant Speak to you now Call me later',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:57', updated_at='2018-04-04 07:48:57', user_id='82387',cust_id='57054302',call_id='1495341',name='NANCY S',number='8056610744',question_time='2018-04-04 07-45-31',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='Dear Sir / Madame, request you to help in letting us know your annual income',followup1_response=' I am busy now. Call me back later',followup1_text='',followup2_question='',followup2_response=' I am busy now. Call me back later',followup2_text='',followup3_question='',followup3_response=' I am busy now. Call me back later',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:57', updated_at='2018-04-04 07:48:57', user_id='82387',cust_id='57054302',call_id='1495341',name='NANCY S',number='8056610744',question_time='2018-04-04 07-45-31',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:57', updated_at='2018-04-04 07:48:57', user_id='82387',cust_id='57054302',call_id='1495341',name='NANCY S',number='8056610744',question_time='2018-04-04 07-45-31',question='2485',primary_question='Sir, we can see that salary is not getting credited in your salary account. Have you changed the employer or changed salary account with other bank',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:57', updated_at='2018-04-04 07:48:57', user_id='82387',cust_id='57054302',call_id='1495341',name='NANCY S',number='8056610744',question_time='2018-04-04 07-45-31',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:57', updated_at='2018-04-04 07:48:57', user_id='82387',cust_id='57054302',call_id='1495341',name='NANCY S',number='8056610744',question_time='2018-04-04 07-45-31',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:48:57', updated_at='2018-04-04 07:48:57', user_id='82387',cust_id='57054302',call_id='1495341',name='NANCY S',number='8056610744',question_time='2018-04-04 07-45-31',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:49:20', updated_at='2018-04-04 07:49:20', user_id='90938',cust_id='41474873',call_id='1495310',name='MOHAMMADA ASHRAPHA',number='9743410885',question_time='2018-04-04 07-42-14',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:49:20', updated_at='2018-04-04 07:49:20', user_id='90938',cust_id='41474873',call_id='1495310',name='MOHAMMADA ASHRAPHA',number='9743410885',question_time='2018-04-04 07-42-14',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:49:20', updated_at='2018-04-04 07:49:20', user_id='90938',cust_id='41474873',call_id='1495310',name='MOHAMMADA ASHRAPHA',number='9743410885',question_time='2018-04-04 07-42-14',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:49:21', updated_at='2018-04-04 07:49:21', user_id='90938',cust_id='41474873',call_id='1495310',name='MOHAMMADA ASHRAPHA',number='9743410885',question_time='2018-04-04 07-42-14',question='1050',primary_question='Check profiling for TWL / car ownership, Pitch for car loan.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495327',fullremark='ContactedPurpose updation callOut call made on 9940332755 Program introduction providedcustomer had a query in account transactions and home loan details Further assistance offered customer happy with our services';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495359',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495286',fullremark='ContactedPurpose RECALL ONLINE 10SEC PERSONAL LOAN DETAILS CUSTOMER FEEL HIGH RAGE SUGESS THE CUSTOMER DECIDED AND CALL ME BACK LATER THEN ASK CC UBGRADE DETAILS AFTER CHANG CURRENT ADDRESS AND APPLY LATER Out call made on 9500400225';
insert into full_remark set call_id='1495341',fullremark='Incoming call customer need to preclose a personal loan and details given profiling probed customer resigned her Job ';
select distinct clientinternalid from records;
select `call_id`, `question` from `questionaire_details` where `cust_id` = '36244417' and `call_id` = '1495317' and `question` = '2462' limit 1;
select id from records where mobile like '%9894017020' OR
altphone1 like '%9894017020' OR
altphone2 like '%9894017020' OR
altphone3 like '%9894017020' OR
altphone4 like '%9894017020' OR
altphone5 like '%9894017020' OR
altphone6 like '%9894017020' OR
altphone7 like '%9894017020' OR
altphone8 like '%9894017020' OR
altphone9 like '%9894017020' OR
altphone10 like '%9894017020' and client in ('PM6OC','PM6OC_RC','null');
insert into questionaire_details set created_at='2018-04-04 07:50:12', updated_at='2018-04-04 07:50:12', user_id='82240',cust_id='36244417',call_id='1495317',name='SRIDHAR SADASIVAM',number='9686809111',question_time='2018-04-04 07-42-48',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:50:12', updated_at='2018-04-04 07:50:12', user_id='82240',cust_id='36244417',call_id='1495317',name='SRIDHAR SADASIVAM',number='9686809111',question_time='2018-04-04 07-42-48',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='Sir additionally you can avail of special offers & discounts available for online shopping including cash backs, & higher reward points',followup1_response=' Let me know of the offers available',followup1_text='',followup2_question='',followup2_response=' Let me know of the offers available',followup2_text='',followup3_question='',followup3_response=' Let me know of the offers available',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:50:12', updated_at='2018-04-04 07:50:12', user_id='82240',cust_id='36244417',call_id='1495317',name='SRIDHAR SADASIVAM',number='9686809111',question_time='2018-04-04 07-42-48',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='Thank You Sir, You can also earn higher interest by investing online in FD/RD.',followup1_response=' Ok I will book the same',followup1_text='',followup2_question='Sure Sir it is convenient and safe. You can make payment online for shopping , buying grocery, book tickets, pay utility bills etc.',followup2_response=' Ok I will book the same',followup2_text='',followup3_question='',followup3_response=' Ok I will book the same',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495317',fullremark='';
insert into full_remark set call_id='1495157',fullremark='PITCH PL 10SEC DONE ';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=37697914 and question IN(1056,1058,1327,1026,1322,2462,2515,2505,2498,1051);
SELECT distinct question FROM questionaire_details WHERE cust_id=44008506 and question IN(1056,1058,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1051);
insert into full_remark set call_id='1495367',fullremark='';
select distinct clientinternalid from records;
select distinct mobile from records;
# administrator command: Prepare;
select id from records where mobile in ('6124029856','6477392987','6514345984','6563898065','6598502129','6598594530','6598802254','6728889853','7003982310','7010159802','7010841985','7010980529','7019863290','7022569897','7022929888','7030983565','7032220980','7032798847','7034988111','7042075798','7044098040','7085053982','7091728998','7092219845','7092700981','7092986811','7093154986','7095919822','7200049498','7200098406','7200123498','7200129827','7200199814','7200223983','7200388986','7200389867','7200553898','7200668898','7200668980','7200736983','7200988311','7204398497','7218988996','7219873637','7259005098','7259662998','7259803108','7259812376','7259851579','7259874849','7259891256','7276089998','7299021988','7299067985','7299098078','7299103998','7299118980','7299130598','7299130981','7299270798','7299728986','7299787898','7299802081','7299805252','7299805579','7299809300','7299812177','7299817797','7299818172','7299819993','7299820474','7299822496','7299824424','7299841028','7299844074','7299851118','7299855195','7299856062','7299857031','7299861979','7299865366','7299867211','7299868624','7299876796','7299879849','7299881528','7299882991','7299883439','7299885511','7299887700','7299887964','7299888844','7299891745','7299892893','7299899902','7299941986','7299955598','7299980965','7299981171','7299981601','7299981717','7299982238','7299982488','7299983089','7299983143','7299983490','7299984667','7299986338','7299987087','7299987482','7299987984','7299990498','7329838420','7329868485','7330881981','7338798083','7338810798','7338889868','7338917598','7338940980','7338989714','7346798939','7358033980','7358079884','7358393998','7358398590','7358484398','7358579851','7358703986','7358746983','7358787598','7358789856','7358980302','7373098980','7373199987','7373419820','7373981236','7373987367','7382998393','7387056598','7387329861','7387398670','7387425098','7387425498','7395983445','7395989245','7397183982','7397311998','7397322987','7397322988','7397449818','7401098982','7401199823','7401239829','7401398791','7401598930','7406999899','7409298166','7409589887','7409842020','7411659806','7416037988','7418362298','7418398597','7418557984','7418589893','7418799871','7418899849','7428399885','7448698405','7448859988','7448990898','7459897057','7498085100','7498443056','7502006898','7502339807','7502799853','7502989955','7504547989','7506642985','7530074984','7549179698','7550098330','7559848185','7559850960','7569862042','7569899099','7598010232','7598011631','7598026290','7598027001','7598037020','7598045719','7598067435','7598069695','7598079599','7598092941','7598096871','7598099834','7598101670','7598114016','7598115337','7598116681','7598119136','7598129430','7598144778','7598151389','7598157551','7598160168','7598163883','7598171248','7598172560','7598191209','7598205156','7598209956','7598210805','7598216093','7598219464','7598230499','7598233753','7598235091','7598235981','7598267916','7598268596','7598274758','7598275548','7598278507','7598278976','7598285758','7598305441','7598310527','7598311584','7598315697','7598324107','7598325579','7598330406','7598331616','7598331697','7598334333','7598342595','7598358655','7598358831','7598365477','7598367323','7598377494','7598386554','7598387312','7598409884','7598413200','7598414267','7598418265','7598418630','7598448481','7598455186','7598455923','7598466734','7598481692','7598483216','7598483317','7598489344','7598491136','7598494050','7598500750','7598506550','7598514572','7598521587','7598527275','7598534573','7598550180','7598564999','7598573912','7598580203','7598590354','7598608939','7598611728','7598616875','7598627910','7598648842','7598650822','7598670798','7598671063','7598673380','7598677369','7598717750','7598719946','7598720686','7598747207','7598784134','7598833231','7598851014','7598854054','7598874399','7598917281','7620798837','7624919887','7639198161','7639198235','7639209888','7639370998','7639806162','7639811744','7639851691','7639870072','7639880567','7667101986','7667789881','7667798886','7667983143','7673982432','7674959880','7674980918','7675019885','7676828098','7695898003','7695988999','7698283714','7698746942','7708009886','7708017987','7708059831','7708069807','7708079198','7708096987','7708198201','7708198908','7708229832','7708258989','7708398518','7708398974','7708698285','7708698498','7708798998','7708839887','7708855985','7708862298','7708879891','7708898576','7708917989','7708971986','7708982737','7708982861','7708984424','7708988792','7709844422','7709897129','7718898852','7718981793','7729825656','7748098814','7758987936','7759855220','7760027298','7760509837','7760798989','7760983126','7769804555','7769878125','7795219812','7795298311','7798774842','7798876542','7798986996','7798992225','7799798989','7799819042','7799844335','7799852193','7799874545','7799888008','7810098992','7823980795','7823982301','7823984166','7823998442','7824898741','7825986950','7828198430','7829559810','7829811575','7829833934','7829852788','7829855313','7829892777','7842346986','7845119881','7845269887','7845281982','7845285898','7845335598','7845339884','7845457098','7845659891','7845739805','7845822098','7845862398','7859897073','7867985868','7869286989','7869824770','7871778798','7871998502','7899420986','7899576398','7899800725','7899802046','7899841978','7980044058','7980057830','7981541229','7981923723','7982401630','7984132139','7988971299','7989611968','7989840779','7989931945','7993929845','8008204984','8008583988','8008989580','8012059842','8012227898','8012898208','8015070981','8015140898','8015150988','8015198104','8015210998','8015309803','8015459598','8015471985','8015484298','8015614998','8015698384','8015741198','8015922298','8015983932','8015985262','8015985759','8015986035','8019802443','8019838098','8019867712','8019884831','8019998836','8042998555','8043008998','8048698312','8050283598','8050469896','8056009892','8056034987','8056042981','8056060986','8056069857','8056070098','8056082983','8056091985','8056093198','8056098134','8056098558','8056099853','8056102098','8056139846','8056173998','8056199837','8056207987','8056286698','8056289298','8056298693','8056298739','8056298746','8056298793','8056333698','8056359880','8056362898','8056398686','8056436989','8056455987','8056498106','8056512698','8056517498','8056627498','8056668988','8056769881','8056779889','8056790298','8056798822','8056837998','8056849833','8056850980','8056859873','8056898421','8056898775','8056898865','8056929815','8056947298','8056983436','8056984708','8056999998','8059748982','8072998793','8080985509','8086398255','8087089825','8087398026','8087988255','8088680988','8089863807','8095077980','8095338981','8095982217','8095988555','8095989998','8098006216','8098008286','8098016612','8098020468','8098022839','8098023920','8098043625','8098047912','8098058588','8098059805','8098063699','8098080815','8098080829','8098082783','8098088844','8098090300','8098094189','8098098233','8098118943','8098126116','8098134739','8098145467','8098167089','8098175174','8098177217','8098178373','8098195649','8098220331','8098223292','8098225717','8098225774','8098236358','8098237452','8098239915','8098241729','8098244413','8098247124','8098254988','8098271871','8098273285','8098297041','8098313171','8098332989','8098333798','8098340559','8098341725','8098351914','8098356836','8098361740','8098377282','8098393001','8098398180','8098401172','8098410428','8098411573','8098412460','8098418159','8098424224','8098424267','8098431241','8098439391','8098439750','8098455919','8098460426','8098469202','8098469545','8098474379','8098481856','8098493922','8098499880','8098501999','8098516116','8098521413','8098523555','8098523998','8098528487','8098540207','8098545559','8098550904','8098552398','8098559650','8098560250','8098564837','8098573453','8098583835','8098588725','8098589997','8098593481','8098594870','8098598517','8098600455','8098606580','8098610159','8098621354','8098636181','8098664522','8098665413','8098669211','8098680468','8098690818','8098694609','8098696265','8098705627','8098720158','8098722115','8098722333','8098730648','8098730744','8098762022','8098773610','8098794074','8098805346','8098811433','8098815558','8098816759','8098828384','8098833168','8098833520','8098834207','8098836110','8098838399','8098839904','8098849676','8098855076','8098858479','8098860136','8098861356','8098864617','8098866852','8098872734','8098875105','8098877467','8098888328','8098888872','8098890539','8098892324','8098903323','8098906251','8098932224','8098935591','8098937847','8098939223','8098939737','8098955133','8098956308','8098976562','8098987339','8098991019','8098993500','8098999881','8099288998','8099801155','8099832932','8099852580','8105036984','8105222988','8109828748','8110950898','8110998183','8110998867','8111888988','8122229861','8122279875','8122379845','8122579849','8122698997','8122732098','8122898193','8122981739','8122982153','8122982815','8122998192','8123650981','8123980585','8123986013','8124056989','8124129982','8124549808','8124792986','8124798878','8124829812','8124989509','8125898494','8126569820','8127699884','8129896777','8129987818','8139888857','8144098442','8144126989','8144322298','8144530498','8144591988','8144698374','8144829828','8144917989','8147950986','8148129828','8148279875','8148365698','8148479833','8148509856','8148598155','8148898211','8148908982','8148980869','8148989329','8149806797','8149827457','8179850401','8189814864','8189815336','8189822616','8189840528','8189858110','8189867114','8189879364','8189898966','8189986455','8189988690','8189998888','8190875698','8190939899','8190980655','8190983260','8197198543','8197989059','8197998296','8197998866','8220009895','8220094898','8220099980','8220126598','8220139886','8220304987','8220559883','8220575498','8220585988','8220598974','8220600982','8220658981','8220806198','8220913983','8220923598','8220937298','8248986805','8279835911','8281677985','8281989638','8296190989','8296598951','8296999829','8308303698','8324799833','8332809836','8334989989','8335998147','8344279980','8344877298','8344984595','8349984961','8373985051','8374269988','8377923984','8380986644','8390985107','8412027986','8416045985','8426985919','8428452980','8433929857','8438149893','8438298228','8438389874','8438393981','8438986280','8438986600','8446398066','8449875009','8452983324','8468987739','8489298934','8489348980','8489498985','8489634986','8489807058','8489835009','8489838386','8489842423','8489855258','8489863369','8489867652','8489876966','8489880831','8489886824','8489889212','8489893141','8489893420','8489905598','8489980243','8498068405','8500459839','8500819198','8508376983','8508465982','8508498877','8508705988','8508987325','8511198177','8519832939','8519980947','8523923985','8526589894','8547985171','8553814298','8554988322','8583988540','8584984491','8587981008','8589988065','8593963989','8599865135','8600087983','8608056098','8608498598','8608526981','8608619875','8608671598','8608729878','8608871988','8608951198','8610451198','8628098637','8655839833','8667449841','8668089980','8675598979','8678981091','8678983454','8678987898','8678998678','8680980284','8680988804','8680989935','8680998665','8681010985','8681898936','8681899871','8681989162','8682959899','8682985897','8682986735','8682989060','8682989692','8686098429','8689854259','8695698461','8695898950','8697981271','8697984330','8698026644','8698063356','8698286048','8698364216','8698376693','8698474969','8698525954','8698535758','8698635752','8698639086','8698642841','8698772768','8699891232','8712211980','8729698706','8754059867','8754064989','8754089981','8754132982','8754153698','8754191998','8754249854','8754259800','8754266988','8754298722','8754405398','8754406098','8754422198','8754437298','8754445498','8754463981','8754489839','8754489869','8754498761','8754498867','8754519865','8754519887','8754550988','8754556298','8754562398','8754568983','8754575898','8754598123','8754598399','8754598516','8754598868','8754598891','8754619865','8754798564','8754942986','8754985485','8754988666','8754989345','8754998616','8760187981','8760198237','8760251981','8760479846','8778326985','8778998603','8790983535','8792941798','8800674598','8800798685','8800984301','8800984949','8801094985','8801398628','8802983820','8807379849','8807398748','8807448988','8807598838','8807898861','8807988251','8820998119','8825472298','8825538988','8825894984','8826898748','8838390098','8838398791','8860529876','8861245698','8861298372','8861569819','8867069998','8867898292','8870009981','8870038998','8870039888','8870069899','8870129889','8870149814','8870189849','8870189884','8870197983','8870229820','8870388983','8870423498','8870499874','8870579800','8870773987','8870784498','8870790989','8870878985','8870890987','8870898740','8870980078','8870983198','8870987185','8880498274','8880722198','8883318898','8883459811','8883486898','8883849866','8883898794','8884038989','8884099898','8884598588','8884679837','8884722298','8884819823','8888998783','8891983987','8892098670','8892298892','8893889998','8897135989','8897461980','8897983444','8903219890','8903409855','8903880098','8904604981','8925887898','8939049398','8939079899','8939098382','8939098625','8939152098','8939175985','8939179899','8939198830','8939199899','8939259819','8939286898','8939295988','8939298281','8939298893','8939366198','8939393981','8939398253','8939399807','8939404298','8939419817','8939439832','8939498167','8939579827','8939598007','8939599298','8939599880','8939609865','8939616698','8939619815','8939619899','8939639859','8939639989','8939649198','8939680498','8939687988','8939698581','8939699798','8939708987','8939713098','8939739844','8939776898','8939800463','8939800590','8939800730','8939803050','8939803131','8939804343','8939804495','8939805500','8939805502','8939807141','8939807873','8939808071','8939809153','8939810140','8939810523','8939811332','8939811399','8939812939','8939813390','8939814382','8939814423','8939814443','8939814631','8939815959','8939817366','8939818972','8939819189','8939819824','8939820144','8939820501','8939820597','8939821340','8939821521','8939822331','8939822556','8939822733','8939822926','8939823409','8939823502','8939823914','8939824725','8939824949','8939826272','8939826406','8939826468','8939828123','8939828623','8939830200','8939830266','8939830515','8939830534','8939830690','8939830948','8939830980','8939831291','8939834058','8939834270','8939835213','8939836730','8939837389','8939837666','8939838894','8939839254','8939839378','8939839439','8939840263','8939840866','8939841418','8939841518','8939841966','8939842689','8939843267','8939844240','8939844461','8939844909','8939844925','8939845532','8939846490','8939848565','8939848822','8939848903','8939848927','8939849421','8939850850','8939850926','8939851788','8939852225','8939853110','8939855331','8939855667','8939856222','8939856519','8939856564','8939857000','8939857326','8939857505','8939858523','8939864387','8939865862','8939866176','8939866191','8939866243','8939866246','8939866286','8939866366','8939866612','8939866699','8939868401','8939868493','8939869177','8939870733','8939870848','8939870866','8939870937','8939872018','8939872999','8939875773','8939876139','8939878565','8939879126','8939879497','8939879533','8939879784','8939880409','8939882157','8939882234','8939882244','8939882907','8939882977','8939883389','8939883686','8939883730','8939883830','8939883868','8939884277','8939884355','8939884445','8939884707','8939884729','8939884969','8939885212','8939885457','8939886319','8939886620','8939886621','8939887323','8939888087','8939888181','8939888184','8939888295','8939888363','8939888729','8939888735','8939888749','8939888857','8939890683','8939890828','8939891368','8939891555','8939891717','8939892149','8939892151','8939892531','8939893003','8939893045','8939893943','8939894991','8939895596','8939895828','8939896366','8939897265','8939898406','8939900981','8939909198','8939911998','8939929598','8939936988','8939947698','8939980011','8939980013','8939980099','8939980221','8939980475','8939981117','8939982346','8939982392','8939984842','8939986399','8939988113','8939988388','8939988789','8939988995','8939989207','8939990098','8940309822','8940309896','8940318980','8940454980','8940881982','8940988020','8940988858','8940997985','8943619849','8951211398','8951283984','8951353988','8961309885','8961761898','8973598735','8976309858','8977776698','8978431980','8978569498','8978907098','8978985897','8980002705','8980002712','8980784625','8980961778','8981016199','8981063406','8981108533','8981121978','8981124371','8981133125','8981144494','8981172557','8981173664','8981203885','8981221047','8981232356','8981254717','8981261739','8981284088','8981351151','8981361399','8981602307','8981761032','8981809387','8981812775','8981870058','8982399964','8982411232','8983006665','8983033111','8983034181','8983245510','8983272511','8983283248','8983377913','8983399169','8983406439','8983529313','8983539549','8983559860','8983603916','8983780360','8983793889','8984131744','8984466987','8984503441','8985009394','8985055441','8985080594','8985088075','8985112995','8985134584','8985148660','8985272197','8985377961','8985396038','8985405563','8985412863','8985413810','8985431863','8985454605','8985555607','8985637828','8985663686','8985746907','8985763359','8985769244','8985781684','8985810766','8985887658','8985944214','8985969378','8985981708','8985986963','8986189859','8987621587','8989205954','8989414005','8989439975','8989517523','8989939529','9000983075','9003014198','9003020798','9003029855','9003046798','9003049810','9003049841','9003053986','9003065983','9003070989','9003079858','9003084598','9003089876','9003091098','9003093981','9003098565','9003098644','9003099823','9003103898','9003109808','9003119822','9003121098','9003129840','9003131898','9003147298','9003153998','9003157984','9003189877','9003193998','9003195983','9003195984','9003198064','9003198293','9003198313','9003198356','9003198386','9003198466','9003198469','9003198470','9003198515','9003198787','9003198899','9003201982','9003201988','9003219598','9003222898','9003253983','9003274998','9003289862','9003298014','9003298649','9003328980','9003339841','9003357698','9003363598','9003363981','9003374698','9003398555','9003429829','9003429881','9003437981','9003449847','9003494498','9003503898','9003529598','9003579987','9003598262','9003635898','9003641398','9003744986','9003788998','9003792986','9003798338','9003798585','9003852989','9003879878','9003898595','9003938986','9003979870','9003980415','9003980426','9003981287','9003982539','9003983029','9003983477','9003984632','9003986375','9003987798','9003987915','9003987998','9003988180','9003998374','9004014985','9004565998','9004679854','9004983008','9007419849','9008110984','9008698532','9008988070','9009985781','9014023498','9015579855','9019891625','9019989892','9025139808','9025298086','9025298609','9025454898','9025599849','9025679877','9025809873','9025899825','9025984089','9028059098','9030998866','9032444998','9032981881','9035098813','9035286898','9035648987','9035983316','9036395298','9036579893','9036798084','9036939895','9042039832','9042129983','9042198105','9042398065','9042519812','9042528981','9042547988','9042669845','9042759865','9042769824','9042798007','9042798945','9042818984','9042883198','9042962987','9042981301','9042987739','9042988015','9042988118','9042988476','9042989143','9043135298','9043198326','9043246982','9043247198','9043298521','9043358984','9043429844','9043617298','9043719838','9043719842','9043798095','9043870987','9043969874','9043985759','9047019899','9047098474','9047098826','9047137988','9047198829','9047456598','9047698177','9047798700','9047798951','9047798970','9047839998','9048698771','9048987782','9049988271','9049988987','9052049895','9052059880','9059860728','9063398318','9066340980','9070203988','9072451987','9073329868','9080209830','9080469897','9080698005','9080982212','9082985628','9087098985','9087283985','9087989650','9088229850','9092005989','9092015998','9092019811','9092019984','9092109989','9092354985','9092498408','9092560989','9092665983','9092798084','9092898764','9092958987','9092961398','9092979829','9092982915','9092985682','9092986050','9092988898','9092989164','9094047898','9094056798','9094108198','9094129893','9094384986','9094401984','9094468298','9094468983','9094487987','9094498129','9094517985','9094518980','9094528798','9094569598','9094579880','9094598527','9094639841','9094666985','9094698617','9094789894','9094829827','9094833398','9094889810','9094898779','9094980236','9094980306','9094980502','9094982407','9094982830','9094985811','9094998778','9095098983','9095296988','9095568098','9095679801','9095969896','9095980480','9095980851','9095998821','9099870662','9108559398','9111888398','9159298457','9159398585','9159484983','9159486098','9159539849','9159698400','9159800100','9159806449','9159809595','9159810657','9159815301','9159823817','9159829307','9159835167','9159843698','9159844649','9159844748','9159855919','9159857367','9159862501','9159867555','9159878793','9159883683','9159888081','9159892124','9159895162','9159937798','9159988810','9159998006','9160160598','9160684984','9163667989','9171099984','9171724981','9176029986','9176042988','9176064987','9176081998','9176089844','9176089988','9176098532','9176098646','9176098982','9176149883','9176189826','9176189865','9176198202','9176198331','9176198404','9176199881','9176229815','9176245898','9176284798','9176298658','9176298761','9176306983','9176333898','9176379837','9176398449','9176429840','9176447987','9176449801','9176476985','9176492998','9176494498','9176496498','9176498038','9176499850','9176539897','9176557988','9176589848','9176598157','9176598720','9176609814','9176615986','9176619802','9176619982','9176624984','9176633298','9176633398','9176634398','9176638298','9176649892','9176651898','9176659987','9176669890','9176670798','9176681198','9176688989','9176698160','9176698289','9176698367','9176698619','9176739884','9176841698','9176859884','9176859894','9176864198','9176889861','9176898559','9176898899','9176959698','9176973698','9176980332','9176983304','9176983690','9176985384','9176987669','9176987764','9176988602','9176988608','9176988832','9176989440','9176989826','9176997898','9176998618','9176998622','9177239816','9177798698','9177959848','9199868608','9207064981','9244419855','9245298778','9246619865','9282329896','9283499863','9292959825','9308980083','9322299798','9325098354','9330329998','9340098950','9341602598','9344108398','9344298396','9344616198','9344812798','9344981250','9344989888','9345983888','9360010981','9360699885','9362402984','9363317985','9364486986','9364488998','9364499998','9370457698','9380078998','9380089852','9380169828','9380169834','9380283987','9380986777','9380987400','9381001987','9381049804','9381098937','9381129858','9381719843','9381719847','9381754982','9381898218','9382298630','9382609895','9382842998','9382873987','9382933987','9382976988','9382985623','9382987974','9382987988','9393731980','9398984384','9404009867','9418309819','9432314398','9435701598','9438566798','9439811162','9440089867','9441062798','9441187498','9441984895','9442019861','9442119888','9442194898','9442215498','9442259838','9442306398','9442331698','9442499813','9442559850','9442634098','9442652989','9442680989','9442698903','9442779845','9442898832','9442899988','9442919889','9442980220','9442981296','9442984767','9442998614','9443048198','9443075698','9443082098','9443094983','9443096983','9443110398','9443189803','9443209881','9443219898','9443237988','9443276898','9443379889','9443398115','9443398277','9443398546','9443445998','9443449888','9443459882','9443480980','9443498430','9443498954','9443505985','9443527989','9443558987','9443599820','9443629822','9443698966','9443705984','9443709895','9443739817','9443739855','9443749980','9443789829','9443790698','9443798432','9443798462','9443806986','9443861298','9443879098','9443967298','9443981121','9443981834','9443982014','9443983341','9443983688','9443984818','9443985870','9443986396','9443986806','9443987131','9443988118','9443988798','9443989135','9443989212','9443998051','9443998076','9444004998','9444019998','9444025998','9444028798','9444042981','9444049866','9444049874','9444067980','9444083985','9444119842','9444125983','9444132798','9444159814','9444166898','9444168981','9444209824','9444209998','9444215984','9444229888','9444239831','9444255598','9444269863','9444298292','9444298589','9444310981','9444311984','9444319876','9444329876','9444339872','9444340898','9444398061','9444398306','9444398432','9444399829','9444406989','9444409498','9444440098','9444467989','9444469805','9444485989','9444486298','9444496298','9444519863','9444609820','9444643982','9444700986','9444701986','9444719835','9444729826','9444739869','9444791998','9444809849','9444840987','9444853985','9444865198','9444895987','9444898987','9444904987','9444939853','9444941698','9444969809','9444981107','9444983307','9444984139','9444984363','9444984845','9444986902','9444989015','9444998027','9444998999','9445106998','9445176498','9445204898','9445233698','9445339842','9445394989','9445406298','9445435980','9445639830','9445640998','9445669835','9445745198','9445798821','9445798883','9445884988','9445980897','9445984354','9445987067','9445987653','9447706298','9448459982','9449840986','9449874504','9479878828','9483569862','9486020982','9486078098','9486089849','9486129870','9486172898','9486189861','9486198058','9486198806','9486206983','9486271198','9486309897','9486368798','9486456998','9486639899','9486929841','9486982817','9486988005','9486989257','9486989792','9486989964','9486999813','9487094981','9487104898','9487233998','9487394983','9487409865','9487447098','9487469882','9487769865','9487777987','9487829986','9487889888','9487898319','9487985639','9488076198','9488124498','9488359837','9488409983','9488449998','9488457984','9488471983','9488520985','9488751098','9488871984','9488876981','9488909988','9488982796','9488983051','9489123298','9489494989','9489689398','9489702898','9489800000','9489802349','9489810507','9489822712','9489824523','9489833007','9489861716','9489865554','9489865611','9489866273','9489870224','9489870531','9489876195','9489881502','9489881745','9489884192','9489893711','9489894531','9490549989','9490689824','9490859857','9491298538','9491398857','9491779883','9493207098','9494254988','9494998293','9495695998','9496326988','9496329867','9496805898','9496919805','9498004136','9498004297','9498009836','9498020795','9498022123','9498022476','9498025289','9498029526','9498031242','9498034758','9498035286','9498035884','9498042703','9498044891','9498046017','9498046057','9498050775','9498050931','9498053452','9498054629','9498057779','9498063794','9498063963','9498071823','9498075622','9498076093','9498078993','9498079327','9498081107','9498084823','9498088824','9498090171','9498091621','9498096424','9498098443','9498098562','9498105551','9498107943','9498117766','9498155728','9498169645','9498188465','9498191417','9498196643','9498414410','9500001998','9500004098','9500005985','9500006998','9500007981','9500009888','9500009988','9500016984','9500019860','9500026983','9500028398','9500030398','9500045998','9500056980','9500057985','9500059825','9500059854','9500060498','9500062398','9500062982','9500062985','9500065988','9500068298','9500069805','9500075985','9500080398','9500081983','9500084298','9500088998','9500089298','9500094498','9500095598','9500096998','9500098093','9500098161','9500098351','9500098669','9500098731','9500098818','9500098872','9500098874','9500098970','9500098976','9500099886','9500101988','9500109892','9500120983','9500129828','9500132981','9500139598','9500154981','9500159598','9500163980','9500178998','9500189843','9500190498','9500198548','9500198893','9500198899','9500208398','9500211398','9500269873','9500498581','9500498745','9500509806','9500598394','9500598633','9500634980','9500677980','9500698696','9500713198','9500719985','9500739983','9500759842','9500798336','9500798500','9500798636','9500798758','9500799801','9500831798','9500857598','9500951987','9500980555','9500980712','9500981009','9500983057','9500984141','9500984846','9500986462','9500986677','9500986835','9500989909','9500998411','9500998997','9501979098','9502799840','9505539846','9505719890','9511898019','9515198824','9524139984','9524149818','9524709801','9524849862','9524898867','9524989995','9526405985','9533381981','9533948984','9533989309','9535159808','9535519848','9535589898','9535598800','9535679864','9535703798','9538406398','9538896986','9538898577','9538898635','9538983125','9538986075','9538988933','9538996986','9538999698','9539877758','9539890528','9540798297','9540989228','9542288898','9542986020','9542998682','9543098374','9543299998','9543379822','9543498334','9543798228','9543941989','9543957982','9543985886','9545939838','9545984771','9545988828','9551031798','9551080989','9551089881','9551091985','9551096598','9551098121','9551218398','9551269985','9551284981','9551291298','9551298855','9551305098','9551381985','9551404984','9551512298','9551519848','9551598776','9551609812','9551609881','9551617898','9551626798','9551627398','9551659848','9551982926','9552389985','9552543985','9553989485','9560606989','9561984787','9563987279','9566009849','9566040982','9566042298','9566060985','9566064982','9566066898','9566079866','9566091984','9566097198','9566098358','9566098427','9566098507','9566098547','9566098651','9566098817','9566129816','9566155498','9566159980','9566165987','9566189801','9566198148','9566198471','9566198880','9566198961','9566198970','9566206998','9566219827','9566228298','9566259885','9566259899','9566278988','9566298001','9566298693','9566299298','9566299808','9566301098','9566336498','9566369890','9566380989','9566382988','9566398522','9566401098','9566410983','9566414981','9566423980','9566446989','9566498899','9566525981','9566536982','9566598293','9566599800','9566648998','9566683989','9566719989','9566759826','9566789698','9566842988','9566921698','9566944980','9566957098','9566981249','9566985385','9566987708','9566987873','9566998099','9578405986','9578569804','9578983019','9578998800','9579835317','9581114198','9581142989','9585069198','9585098183','9585168098','9585488298','9585499883','9585549818','9585998256','9585998866','9585998967','9590902898','9591988486','9591988487','9597035988','9597098413','9597201098','9597209981','9597343987','9597371798','9597451198','9597498279','9597644986','9597719802','9597735984','9597738981','9597759829','9597789855','9597798159','9597798999','9597847198','9597883988','9597933980','9597983179','9597983991','9597985470','9597985845','9597989543','9597998438','9597998805','9599824517','9600000898','9600008698','9600009883','9600019598','9600019987','9600027298','9600030986','9600034398','9600038988','9600039861','9600049826','9600058980','9600062986','9600070982','9600074982','9600094987','9600098628','9600099980','9600129870','9600138989','9600149865','9600165998','9600169802','9600174198','9600189825','9600189893','9600191983','9600198039','9600198052','9600198127','9600198236','9600198253','9600198680','9600198887','9600199879','9600199881','9600219803','9600285498','9600289988','9600333984','9600339802','9600349849','9600362898','9600383898','9600389983','9600396981','9600399985','9600419884','9600454988','9600468988','9600469846','9600544987','9600558998','9600603998','9600659859','9600698132','9600698399','9600698838','9600713798','9600728985','9600729891','9600789863','9600791798','9600798692','9600869858','9600886798','9600887198','9600887980','9600898886','9600980122','9600981466','9600981823','9600981893','9600981946','9600982340','9600982525','9600983474','9600984625','9600985646','9600986642','9600988291','9600988394','9600989303','9600989508','9600989533','9600989821','9600989867','9600998061','9600999807','9601858598','9608769806','9611198725','9611416984','9611898166','9611987767','9618069897','9619829229','9620211989','9620488998','9620647985','9620799888','9620987675','9620989980','9626055698','9626121985','9626198800','9626199988','9626298512','9626389873','9626564983','9626773983','9626786098','9626913982','9626980888','9626984428','9626984480','9626984787','9626985689','9626988900','9626999899','9629129880','9629149888','9629169850','9629219852','9629241398','9629298424','9629298600','9629298939','9629300498','9629398735','9629458098','9629498711','9629563998','9629698468','9629745698','9629800232','9629805355','9629806029','9629806475','9629806514','9629808382','9629808413','9629809299','9629810183','9629810951','9629812033','9629812589','9629818210','9629821774','9629822454','9629822922','9629826100','9629826623','9629826983','9629830805','9629832090','9629832900','9629834345','9629835304','9629838318','9629840500','9629843126','9629843384','9629844335','9629846314','9629846523','9629848423','9629849538','9629850013','9629853484','9629853605','9629854442','9629855306','9629858743','9629859871','9629862438','9629866055','9629866116','9629866767','9629868949','9629870817','9629873702','9629879009','9629880622','9629886294','9629887928','9629888001','9629888480','9629888617','9629889985','9629890636','9629890829','9629896921','9629897145','9629897897','9629898586','9629898701','9629898946','9629909798','9629910298','9629965983','9629983801','9629985041','9629985091','9629985180','9629986234','9629987299','9629987690','9629987877','9629988483','9629988647','9629989981','9632498525','9632898568','9640299827','9640903986','9646983095','9650998191','9652129889','9652939834','9654229876','9654540980','9655176898','9655319886','9655509980','9655598549','9655599834','9655668984','9655698869','9655924988','9655984468','9655988850','9659659877','9659810503','9659890349','9659982825','9659998546','9662483898','9662998873','9663659850','9663982550','9663983839','9665388998','9674298185','9676239845','9676498891','9676899853','9676966986','9676984332','9677009875','9677010985','9677028298','9677039843','9677051983','9677054989','9677059858','9677062598','9677065698','9677076986','9677078981','9677080298','9677081981','9677091985','9677095986','9677098302','9677098737','9677098770','9677098777','9677098985','9677099989','9677112798','9677120982','9677125986','9677133981','9677147198','9677151986','9677152980','9677163987','9677193498','9677198344','9677198449','9677198806','9677205698','9677228987','9677234987','9677239868','9677240298','9677245898','9677249866','9677249984','9677252998','9677253983','9677254983','9677269885','9677275986','9677278981','9677289898','9677298248','9677298718','9677299698','9677309826','9677364989','9677382798','9677438981','9677441984','9677511983','9677609980','9677649864','9677659821','9677676988','9677751987','9677798869','9677898134','9677981586','9677984838','9677985001','9677986743','9677986780','9677988525','9677988655','9677988993','9677998693','9677998820','9678784984','9679549882','9679888410','9681982698','9688093989','9688198832','9688209981','9688499828','9688586698','9688998896','9690399098','9698024800','9698026771','9698041335','9698048271','9698057512','9698067566','9698069023','9698081523','9698084639','9698087203','9698095228','9698106025','9698113535','9698115460','9698116610','9698129121','9698141109','9698154532','9698164683','9698174561','9698181921','9698188907','9698198589','9698211154','9698219400','9698220505','9698223635','9698223920','9698232964','9698239939','9698246684','9698253293','9698259321','9698264516','9698268413','9698273114','9698282235','9698306191','9698315795','9698335601','9698341827','9698350088','9698382085','9698385448','9698387850','9698392950','9698393209','9698395544','9698418542','9698420763','9698421700','9698424820','9698425272','9698430707','9698434411','9698441000','9698450300','9698456721','9698465606','9698475084','9698486634','9698496163','9698506952','9698509700','9698509969','9698526003','9698541242','9698560024','9698563409','9698567055','9698570185','9698579325','9698584400','9698607373','9698608972','9698612726','9698615836','9698620641','9698633888','9698640023','9698652257','9698655217','9698661662','9698671616','9698673090','9698678888','9698683979','9698689234','9698704000','9698715423','9698718324','9698722217','9698725373','9698737626','9698747112','9698755426','9698755570','9698762958','9698763192','9698764648','9698764798','9698770855','9698770865','9698772276','9698780744','9698796998','9698803932','9698810314','9698810974','9698812260','9698813279','9698814134','9698817118','9698824446','9698831405','9698835105','9698848552','9698855324','9698857081','9698858485','9698861024','9698862338','9698863454','9698866427','9698869962','9698875999','9698877308','9698878897','9698884666','9698887719','9698888411','9698893776','9698898867','9698909263','9698918902','9698930332','9698940147','9698955889','9698964281','9698968604','9698975135','9698982712','9698982929','9698984648','9698995816','9698999943','9703398816','9703676989','9703789983','9703829877','9710079798','9710089985','9710098943','9710198303','9710209874','9710363198','9710398979','9710410987','9710419827','9710497981','9710569863','9710582989','9710616982','9710629818','9710709984','9710789890','9710839892','9710861398','9710894898','9710922987','9710984194','9710984292','9712981487','9714984058','9715045988','9715087988','9715098895','9715199984','9715298202','9715396981','9715414981','9715798493','9730619819','9730698244','9738059815','9738680985','9739499899','9739509875','9739737898','9739820612','9739833303','9739835391','9739838892','9739859909','9739880855','9739884442','9739888893','9739896127','9739908989','9739953989','9739979982','9739980070','9740988789','9741046985','9741759816','9741989736','9742019892','9742199986','9742298315','9742699818','9742699984','9742809845','9742933098','9742984102','9742984285','9742988740','9742988788','9743984583','9743999800','9744475698','9744798899','9745398172','9747098626','9749860196','9750141985','9750149804','9750269867','9750298182','9750569844','9750570989','9750598039','9750744984','9750980907','9750986445','9750989919','9751097987','9751171298','9751289879','9751523985','9751531984','9751588898','9751778198','9751980098','9751989636','9760517698','9761691985','9765498898','9766020988','9769440598','9769822574','9769867855','9769986132','9778932798','9779804251','9779878117','9780139893','9786068985','9786069826','9786098423','9786295987','9786398745','9786409882','9786498637','9786598656','9786659877','9786698196','9786698433','9786698496','9786698600','9786790984','9786849823','9786898212','9786898675','9786904098','9786948998','9786957798','9786981654','9786987705','9786987868','9786998335','9787033982','9787199862','9787293987','9787398179','9787443498','9787709989','9787929886','9787948698','9787979824','9787984918','9788166298','9788179874','9788190986','9788379899','9788508984','9788670198','9788698969','9788798530','9788982202','9788985700','9788986611','9788988165','9788988880','9788998009','9789006098','9789009898','9789034980','9789039852','9789047984','9789059891','9789079801','9789091898','9789098127','9789098136','9789098746','9789098916','9789181986','9789189826','9789198974','9789243798','9789288698','9789309830','9789324987','9789339803','9789399893','9789441984','9789472984','9789481298','9789487981','9789487988','9789498279','9789499498','9789509880','9789512987','9789579870','9789581988','9789598155','9789598814','9789598906','9789599899','9789600987','9789649875','9789657298','9789683898','9789695989','9789698008','9789698653','9789769856','9789775980','9789800825','9789800897','9789801010','9789801460','9789801746','9789802927','9789802957','9789802959','9789802962','9789802994','9789803284','9789803467','9789803841','9789804034','9789804043','9789804066','9789804146','9789804167','9789804440','9789804511','9789804538','9789804804','9789804938','9789805050','9789805090','9789805687','9789805985','9789806353','9789806852','9789806961','9789807093','9789807186','9789807902','9789808002','9789808046','9789808207','9789808439','9789808538','9789808638','9789808939','9789809594','9789810045','9789810560','9789810685','9789811132','9789811252','9789811530','9789811860','9789811904','9789812290','9789812994','9789813188','9789813214','9789813330','9789813679','9789813809','9789813845','9789814280','9789814485','9789814646','9789814776','9789815105','9789815621','9789815707','9789815895','9789815934','9789815938','9789815979','9789816084','9789816354','9789816533','9789817027','9789817446','9789817502','9789817865','9789818070','9789818414','9789818548','9789818609','9789819091','9789819337','9789819569','9789820036','9789820091','9789820229','9789821252','9789821591','9789821868','9789822255','9789823694','9789823708','9789823712','9789824323','9789824341','9789824416','9789824466','9789824656','9789825025','9789825566','9789826960','9789826967','9789827241','9789827605','9789827714','9789827964','9789828008','9789828059','9789828444','9789829062','9789829635','9789829699','9789830195','9789830713','9789830754','9789830987','9789830995','9789831077','9789831098','9789831232','9789831483','9789831875','9789831981','9789831983','9789832001','9789832310','9789832565','9789832846','9789833165','9789833482','9789835574','9789835583','9789836060','9789836096','9789836254','9789836577','9789836604','9789836766','9789836845','9789836928','9789837012','9789837269','9789837373','9789837430','9789837704','9789838568','9789838990','9789839341','9789839436','9789839608','9789839654','9789839920','9789840353','9789840473','9789840590','9789841001','9789841379','9789841414','9789841603','9789842018','9789842109','9789842757','9789843311','9789843432','9789843437','9789843833','9789843947','9789844048','9789844050','9789844061','9789844338','9789844433','9789844488','9789844827','9789845457','9789845496','9789845830','9789845832','9789846112','9789846215','9789846381','9789846768','9789846891','9789847330','9789847480','9789848286','9789848681','9789848732','9789848917','9789849130','9789849184','9789849220','9789849262','9789849849','9789850035','9789850220','9789850226','9789850275','9789850645','9789850733','9789851033','9789851105','9789852178','9789854397','9789854939','9789855215','9789855311','9789855425','9789855665','9789856122','9789856346','9789856384','9789856398','9789856716','9789856751','9789856798','9789856908','9789857190','9789857787','9789857837','9789857955','9789858018','9789859471','9789859507','9789860290','9789860331','9789860926','9789861235','9789861243','9789861710','9789861854','9789861932','9789861975','9789862172','9789862320','9789862800','9789863169','9789863190','9789863447','9789863502','9789864104','9789864188','9789864680','9789865111','9789865445','9789865519','9789865596','9789865695','9789866199','9789866606','9789866762','9789866956','9789868003','9789868066','9789868228','9789868919','9789869959','9789870057','9789870564','9789870737','9789870849','9789871067','9789871243','9789871557','9789871660','9789871661','9789871688','9789871983','9789872278','9789873016','9789873342','9789873404','9789873473','9789874031','9789874701','9789875032','9789875327','9789876484','9789876567','9789876728','9789877372','9789877757','9789877798','9789878607','9789878639','9789878873','9789878953','9789879009','9789879269','9789880101','9789880438','9789880567','9789880655','9789880665','9789881145','9789881827','9789882133','9789882142','9789882180','9789882584','9789883146','9789883588','9789883719','9789883814','9789884303','9789884494','9789884652','9789884937','9789885048','9789885163','9789885563','9789885713','9789885727','9789886559','9789886648','9789886660','9789886776','9789886802','9789886900','9789887001','9789887403','9789887670','9789887852','9789888036','9789888351','9789888352','9789888367','9789888983','9789889618','9789890239','9789890296','9789890452','9789890853','9789890854','9789890882','9789890956','9789891019','9789891896','9789891944','9789891980','9789892165','9789892250','9789892965','9789893289','9789894504','9789894798','9789894874','9789895111','9789896373','9789896660','9789897113','9789898114','9789898181','9789898356','9789898423','9789898733','9789899494','9789899566','9789899849','9789899872','9789899935','9789909098','9789919816','9789945980','9789961498','9789962986','9789969868','9789970983','9789976986','9789979198','9789980088','9789980676','9789980789','9789980825','9789980909','9789980912','9789981129','9789981202','9789981309','9789981608','9789982219','9789982276','9789982429','9789982696','9789982708','9789982839','9789983238','9789983277','9789983374','9789983476','9789983516','9789983551','9789983635','9789983690','9789983737','9789984090','9789984374','9789984543','9789984612','9789984672','9789984701','9789984746','9789984957','9789985098','9789985562','9789985887','9789986119','9789986307','9789986429','9789986455','9789986614','9789986790','9789987271','9789987329','9789987732','9789987941','9789988019','9789988158','9789988433','9789988608','9789988647','9789988690','9789988707','9789988939','9789989850','9789989887','9789991198','9789993983','9789998315','9789998390','9789998404','9789998477','9789998710','9789998782','9789998812','9789998877','9790012989','9790019812','9790077987','9790082198','9790083498','9790098190','9790098334','9790102598','9790159983','9790176098','9790249882','9790298956','9790304983','9790310398','9790315698','9790352989','9790359987','9790392098','9790398569','9790449841','9790469814','9790489829','9790498005','9790547798','9790553988','9790561988','9790591984','9790598307','9790609850','9790639798','9790648983','9790680598','9790698457','9790698730','9790709800','9790758498','9790776898','9790782998','9790789882','9790798217','9790798226','9790798780','9790798798','9790798858','9790798927','9790799815','9790809824','9790809876','9790819814','9790819844','9790829816','9790842798','9790857985','9790879869','9790894984','9790898382','9790898666','9790909810','9790909843','9790909852','9790909897','9790929891','9790935983','9790939880','9790952989','9790958985','9790969822','9790971985','9790979800','9790980084','9790980172','9790980193','9790980598','9790980980','9790981137','9790981347','9790981354','9790981402','9790981486','9790981556','9790981732','9790981940','9790981949','9790981995','9790982091','9790982239','9790982329','9790982391','9790982627','9790983213','9790983532','9790983600','9790983887','9790983909','9790983981','9790984069','9790984201','9790984281','9790984342','9790984697','9790984757','9790985204','9790985385','9790985740','9790985771','9790985822','9790985951','9790986882','9790987046','9790987112','9790987193','9790987708','9790987710','9790987972','9790988459','9790988474','9790988506','9790988572','9790988664','9790988670','9790988805','9790988862','9790988896','9790989008','9790989258','9790989382','9790989804','9790992998','9790997983','9790998119','9790998135','9790998815','9790998857','9790998964','9790998966','9790998991','9791010198','9791011798','9791011983','9791032981','9791033198','9791036398','9791039806','9791041982','9791062898','9791078298','9791079844','9791083986','9791090989','9791098087','9791098246','9791098276','9791098325','9791098372','9791101898','9791104498','9791139863','9791140998','9791149855','9791164981','9791177798','9791189889','9791198253','9791198373','9791198411','9791198828','9791198911','9791262988','9791269805','9791272987','9791297982','9791298169','9791298474','9791329896','9791339866','9791359839','9791398305','9791450981','9791459863','9791459896','9791498698','9791639981','9791675798','9791688898','9791710986','9791797898','9791868988','9791898220','9791898537','9791909893','9791931987','9791986068','9791986309','9791986562','9791986716','9791986888','9791988540','9795397988','9798177548','9798805100','9798900615','9799850285','9800265452','9800327997','9800351835','9800459013','9801160279','9801842302','9802231413','9802266444','9802503299','9802983662','9803050130','9804003348','9804012464','9804041700','9804083117','9804107378','9804285260','9804323510','9804390788','9804428153','9804532332','9804661734','9804748441','9805022264','9805207028','9805871977','9806518018','9806908590','9807711196','9807776513','9808007441','9809079795','9809390001','9809670100','9809766600','9809777626','9809813810','9809843356','9810055629','9810069854','9810232504','9810275327','9810315859','9810378474','9810461307','9810497545','9810517825','9810517961','9810600303','9810626051','9810695109','9810724935','9810746691','9810754304','9810798646','9810805489','9811037219','9811129643','9811187805','9811199683','9811230076','9811235860','9811290451','9811320616','9811442034','9811467007','9811507134','9811534949','9811568232','9811573635','9811584177','9811593562','9811600943','9811634035','9811641136','9811865133','9813252371','9814459586','9815191895','9816044729','9816846338','9818008881','9818023313','9818066449','9818136582','9818148591','9818185394','9818208503','9818245257','9818288858','9818319074','9818337120','9818501919','9818532343','9818541445','9818582063','9818671025','9818694136','9818700239','9818712757','9818716773','9818726788','9818758069','9818813064','9818839236','9818851875','9819019709','9819073848','9819087340','9819089264','9819181121','9819185132','9819202919','9819209445','9819243534','9819368012','9819446936','9819514836','9819618133','9819697762','9819739887','9819868108','9819952066','9819963323','9819991227','9820029926','9820068606','9820114585','9820117661','9820186617','9820197838','9820198840','9820201110','9820248354','9820332251','9820351726','9820362989','9820427992','9820441813','9820528356','9820529456','9820620621','9820641189','9820674095','9820702331','9820740864','9820756061','9820770732','9820804220','9820820613','9820867924','9820877690','9820888318','9820901986','9821285445','9821464498','9821654057','9821784783','9822003865','9822094295','9822164435','9822264526','9822332969','9822410716','9822743058','9822974558','9823056469','9823149229','9823215617','9823229481','9823290904','9823401985','9823428456','9823511388','9823577249','9823582464','9823624324','9823921950','9823976920','9823984222','9824742826','9825127582','9825251167','9825476691','9825597968','9825883726','9826017628','9826019887','9826062662','9826357351','9826424365','9826482746','9826486286','9826666991','9826878487','9826932778','9827110180','9827444420','9827852950','9828144281','9828157062','9828912639','9829009748','9829520042','9829655669','9829788269','9829823629','9830029283','9830062078','9830087610','9830121430','9830146512','9830171888','9830262884','9830342327','9830347095','9830365988','9830375554','9830376632','9830392125','9830420643','9830434549','9830472040','9830475178','9830476438','9830479406','9830487227','9830508073','9830523889','9830588882','9830624017','9830637979','9830649080','9830659136','9830666554','9830691999','9830701075','9830714142','9830730994','9830743724','9830757240','9830775880','9830810446','9830843148','9830843902','9830852462','9830879798','9830887013','9830889389','9830898994','9830918889','9830973538','9830982190','9831025392','9831068178','9831074241','9831074773','9831083133','9831111418','9831148234','9831185508','9831227769','9831250910','9831257872','9831258766','9831329536','9831366272','9831386824','9831456618','9831528482','9831539574','9831666006','9831786297','9831848284','9831849362','9831908900','9831927704','9831978439','9831987444','9832024380','9832057944','9832096101','9832175206','9832178314','9832494038','9832577782','9833040304','9833061857','9833063392','9833077859','9833087929','9833217277','9833235004','9833298728','9833385515','9833422276','9833437241','9833498683','9833546818','9833611719','9833666041','9833724631','9833752471','9833825294','9833883851','9833949964','9833989641','9835380444','9835586017','9836006702','9836018700','9836132327','9836164700','9836174433','9836197965','9836226701','9836255990','9836283504','9836288868','9836320196','9836325095','9836334649','9836466658','9836582583','9836659799','9836718846','9836727446','9836766886','9836789471','9836797657','9836802444','9836863097','9836916205','9836940983','9836941005','9836942722','9836946617','9836947586','9836971010','9836991423','9838930222','9839243889','9839686870','9840000968','9840001100','9840001221','9840001233','9840001240','9840001499','9840001561','9840001563','9840002250','9840002272','9840002580','9840003172','9840003247','9840003250','9840003379','9840003442','9840003614','9840004005','9840004036','9840004262','9840004292','9840004457','9840004475','9840004489','9840004565','9840009091','9840009183','9840009353','9840009560','9840009857','9840011110','9840011368','9840011424','9840011507','9840011676','9840012013','9840012201','9840012318','9840012335','9840012421','9840012507','9840012522','9840012606','9840012773','9840012934','9840013293','9840013325','9840013602','9840013710','9840013848','9840013938','9840014035','9840014046','9840014133','9840014134','9840014221','9840014723','9840014767','9840014769','9840015011','9840015067','9840015239','9840015297','9840015395','9840015457','9840015548','9840015665','9840015854','9840016321','9840016350','9840016533','9840016603','9840016813','9840016815','9840016904','9840017136','9840017149','9840017489','9840017642','9840017923','9840017933','9840018001','9840018369','9840018466','9840018676','9840018851','9840018875','9840019604','9840019609','9840020223','9840020526','9840020671','9840020896','9840021092','9840021261','9840021314','9840022204','9840022295','9840022300','9840022505','9840022670','9840022822','9840023096','9840023111','9840023213','9840023231','9840023283','9840023600','9840023775','9840023797','9840023843','9840024036','9840024066','9840024100','9840024113','9840024120','9840024460','9840024967','9840025457','9840025551','9840025657','9840026145','9840026363','9840026375','9840026567','9840026619','9840026632','9840026672','9840027051','9840027116','9840027198','9840027249','9840027308','9840027392','9840027525','9840027720','9840027783','9840028032','9840028309','9840028938','9840028995','9840029165','9840029202','9840029249','9840029360','9840029395','9840029681','9840029776','9840029850','9840029983','9840030124','9840030612','9840030804','9840030810','9840030986','9840031075','9840031132','9840031178','9840031265','9840031385','9840031489','9840031525','9840032182','9840032222','9840032440','9840032446','9840032931','9840033145','9840033325','9840033504','9840033543','9840033683','9840033791','9840033812','9840033887','9840034061','9840034111','9840034121','9840034190','9840034360','9840034446','9840034673','9840034905','9840035024','9840035241','9840035305','9840035322','9840035535','9840036018','9840036494','9840036702','9840036730','9840036761','9840036838','9840037056','9840037121','9840037307','9840037316','9840037381','9840037775','9840037812','9840038097','9840039037','9840039285','9840039333','9840039336','9840039342','9840039611','9840039800','9840039927','9840040081','9840040103','9840040170','9840040172','9840040221','9840040371','9840040532','9840040536','9840040763','9840040778','9840040901','9840040920','9840041119','9840041518','9840041628','9840042076','9840042166','9840042472','9840042713','9840043058','9840043293','9840043396','9840043462','9840043536','9840043736','9840043836','9840043977','9840044093','9840044111','9840044113','9840044310','9840044366','9840044535','9840044624','9840044672','9840044950','9840044990','9840044994','9840045027','9840045039','9840045149','9840045213','9840045218','9840045325','9840045780','9840046040','9840046065','9840046208','9840046222','9840046362','9840046619','9840046623','9840047030','9840047143','9840047278','9840047358','9840048099','9840048293','9840048355','9840048593','9840048727','9840048748','9840049233','9840049427','9840049441','9840050050','9840050094','9840050443','9840050452','9840050827','9840050832','9840050880','9840050890','9840051042','9840051169','9840051334','9840051857','9840051903','9840052244','9840052264','9840052277','9840052399','9840052626','9840052682','9840052689','9840052708','9840052766','9840052882','9840052987','9840053040','9840053105','9840053187','9840053311','9840053368','9840053500','9840053594','9840054145','9840054177','9840054202','9840054307','9840054355','9840054466','9840054558','9840054758','9840054812','9840054822','9840054927','9840055017','9840055150','9840055372','9840055403','9840055414','9840055481','9840055509','9840055533','9840055565','9840055813','9840055988','9840056575','9840056802','9840056876','9840057404','9840057429','9840057490','9840057613','9840057645','9840057683','9840057737','9840057950','9840057985','9840058302','9840058665','9840058756','9840059044','9840059060','9840059157','9840059162','9840059252','9840059259','9840059356','9840059396','9840059463','9840059670','9840059946','9840060081','9840060190','9840060488','9840060589','9840060885','9840061785','9840061841','9840061851','9840062100','9840062239','9840062398','9840062412','9840062488','9840062600','9840062682','9840062703','9840062808','9840062857','9840062936','9840063239','9840063513','9840063746','9840063882','9840063885','9840064160','9840064239','9840064574','9840064885','9840064955','9840065338','9840065438','9840065454','9840065552','9840065561','9840065617','9840065768','9840065833','9840066834','9840066924','9840067051','9840067144','9840067189','9840067466','9840067533','9840067738','9840067811','9840068517','9840068527','9840068707','9840068871','9840068993','9840069095','9840069113','9840069130','9840069614','9840069794','9840069991','9840070280','9840070294','9840070675','9840070693','9840070749','9840070862','9840070872','9840071199','9840071232','9840071284','9840071392','9840071498','9840071513','9840071722','9840071799','9840071886','9840071966','9840072054','9840072138','9840072217','9840072220','9840072430','9840072478','9840072581','9840072978','9840073015','9840073182','9840073205','9840073299','9840073412','9840073445','9840073453','9840073468','9840073544','9840073678','9840073739','9840073956','9840073979','9840074122','9840074430','9840074884','9840074945','9840074954','9840075139','9840075153','9840075526','9840075623','9840075669','9840076015','9840076179','9840076234','9840076474','9840076622','9840076807','9840076920','9840077118','9840077148','9840077385','9840077444','9840077587','9840077779','9840077983','9840078122','9840078180','9840078472','9840078829','9840079060','9840079139','9840079143','9840079177','9840079429','9840079911','9840079996','9840080029','9840080074','9840080078','9840080555','9840080704','9840081109','9840081391','9840081493','9840081702','9840081911','9840082164','9840082240','9840082484','9840082743','9840083080','9840083168','9840083197','9840083231','9840083267','9840083268','9840083473','9840083705','9840083966','9840084393','9840084527','9840084797','9840084937','9840085188','9840085455','9840085492','9840085493','9840085790','9840085830','9840085881','9840086062','9840086297','9840086315','9840086391','9840086510','9840086903','9840087737','9840087746','9840088510','9840088513','9840088517','9840088618','9840088733','9840088992','9840089018','9840089256','9840089339','9840089714','9840089756','9840089814','9840090178','9840090200','9840090345','9840090466','9840090520','9840090992','9840091878','9840091929','9840092058','9840092535','9840092586','9840093025','9840093094','9840093191','9840093366','9840093666','9840093810','9840093851','9840093914','9840094087','9840094501','9840094864','9840095015','9840095155','9840095181','9840095216','9840095339','9840095444','9840095705','9840095795','9840095817','9840095883','9840096048','9840096052','9840096962','9840097321','9840097858','9840097970','9840098008','9840098280','9840098349','9840098357','9840098377','9840098418','9840098465','9840098764','9840098792','9840098926','9840098960','9840099033','9840099114','9840099148','9840099518','9840099687','9840099718','9840099792','9840099881','9840100042','9840100113','9840100445','9840100549','9840100734','9840100815','9840100889','9840101080','9840101443','9840101506','9840101734','9840102184','9840102926','9840102950','9840103072','9840103242','9840103252','9840103263','9840103575','9840103807','9840103901','9840104049','9840104136','9840104140','9840104412','9840104427','9840104538','9840104637','9840105041','9840105113','9840105340','9840105706','9840105979','9840106240','9840106452','9840106489','9840106499','9840106550','9840106752','9840106915','9840107232','9840107578','9840107592','9840108416','9840108426','9840108452','9840108870','9840109020','9840109481','9840110345','9840110501','9840110999','9840111129','9840111379','9840111423','9840111735','9840112053','9840112336','9840112340','9840112567','9840112576','9840112683','9840112763','9840113125','9840113129','9840113173','9840113607','9840113946','9840114119','9840114131','9840114389','9840114649','9840114739','9840114752','9840114880','9840115061','9840115098','9840115164','9840115275','9840115447','9840115459','9840115534','9840115628','9840115669','9840115887','9840116242','9840116674','9840116760','9840117226','9840117402','9840117572','9840117657','9840117757','9840118029','9840118373','9840118468','9840118845','9840118847','9840118941','9840119362','9840119473','9840119940','9840119993','9840120167','9840120258','9840120343','9840120590','9840120641','9840120748','9840120985','9840121014','9840121117','9840121172','9840121382','9840121766','9840121777','9840122225','9840122258','9840122268','9840122310','9840122359','9840122554','9840122774','9840123157','9840123413','9840123490','9840123548','9840123635','9840123746','9840123764','9840123835','9840123930','9840124352','9840124443','9840124446','9840124839','9840124864','9840124930','9840125226','9840125261','9840125533','9840125591','9840125679','9840125925','9840125960','9840126436','9840126533','9840126595','9840126818','9840127024','9840127145','9840127360','9840127450','9840127708','9840127955','9840128529','9840128612','9840128673','9840129425','9840129485','9840129614','9840130006','9840130303','9840130389','9840130502','9840130666','9840131026','9840131452','9840131550','9840131552','9840131681','9840131768','9840132148','9840132185','9840132372','9840132456','9840132458','9840132935','9840133007','9840133103','9840133482','9840133489','9840133908','9840134229','9840134404','9840134535','9840134562','9840134805','9840134831','9840134948','9840134951','9840134998','9840135054','9840135967','9840136226','9840136267','9840136331','9840137140','9840137200','9840137249','9840137345','9840137744','9840138128','9840138388','9840138504','9840138670','9840139352','9840139859','9840140203','9840140283','9840140285','9840140394','9840140490','9840141144','9840141340','9840141536','9840141826','9840141890','9840141925','9840142015','9840142104','9840142105','9840142747','9840142896','9840143056','9840143236','9840143550','9840143578','9840143732','9840143754','9840143884','9840143890','9840144010','9840144409','9840144500','9840144717','9840144972','9840145141','9840145414','9840145487','9840145546','9840145700','9840145889','9840146078','9840146225','9840146508','9840146544','9840146679','9840147658','9840147713','9840147723','9840147724','9840147979','9840148137','9840148283','9840148686','9840148931','9840149372','9840149519','9840149696','9840150015','9840150079','9840150357','9840150526','9840150635','9840150722','9840151033','9840151141','9840151407','9840151518','9840151541','9840151587','9840151797','9840151813','9840151846','9840151850','9840151891','9840151937','9840152235','9840152568','9840152638','9840152826','9840152841','9840152898','9840153187','9840153534','9840153688','9840153875','9840154252','9840154459','9840154703','9840154834','9840155252','9840155340','9840155550','9840155579','9840155581','9840155646','9840155725','9840155727','9840156043','9840156405','9840156567','9840156956','9840157145','9840157368','9840157728','9840157944','9840158028','9840158063','9840158090','9840158817','9840158833','9840158861','9840159691','9840159736','9840160030','9840160426','9840160641','9840160720','9840160855','9840161383','9840161409','9840161506','9840162172','9840162211','9840162223','9840163318','9840163330','9840163370','9840163396','9840163525','9840163587','9840163675','9840163770','9840163843','9840163868','9840163934','9840164474','9840164766','9840165093','9840165439','9840165566','9840166048','9840166119','9840166167','9840166175','9840166328','9840166450','9840166467','9840166749','9840166985','9840167131','9840167206','9840167434','9840167462','9840168011','9840168221','9840168464','9840168574','9840168750','9840168817','9840168907','9840169239','9840169569','9840169782','9840170130','9840170333','9840170567','9840170827','9840171300','9840171426','9840171688','9840172084','9840172189','9840172316','9840172470','9840172655','9840173163','9840173187','9840173593','9840173680','9840173893','9840174054','9840174239','9840174310','9840174522','9840174604','9840174660','9840175128','9840175184','9840175231','9840175320','9840175445','9840175975','9840176091','9840176759','9840177040','9840177077','9840177375','9840177667','9840178451','9840178537','9840178888','9840178928','9840179176','9840179457','9840179499','9840179899','9840180032','9840180084','9840180101','9840180121','9840180370','9840180770','9840180859','9840180906','9840180933','9840181066','9840181200','9840181618','9840181686','9840181692','9840181717','9840181762','9840181779','9840182490','9840182832','9840182881','9840182890','9840182937','9840183001','9840183302','9840183536','9840184180','9840184242','9840184329','9840184684','9840184737','9840184790','9840184951','9840185021','9840185180','9840185696','9840185973','9840186356','9840186817','9840186874','9840186937','9840187122','9840187230','9840187515','9840188046','9840188075','9840188078','9840188380','9840188466','9840188565','9840188997','9840189159','9840189401','9840189403','9840189754','9840189777','9840189787','9840189825','9840189897','9840189901','9840190131','9840190218','9840191362','9840191428','9840191490','9840191806','9840191955','9840191991','9840192257','9840192311','9840192637','9840192684','9840192727','9840193027','9840193251','9840193940','9840193944','9840195143','9840195458','9840195477','9840195729','9840195753','9840196004','9840196475','9840197358','9840197402','9840197654','9840198154','9840198265','9840198356','9840198371','9840198496','9840198569','9840198668','9840198981','9840199002','9840199036','9840199139','9840199325','9840199500','9840200271','9840200310','9840200359','9840200567','9840200629','9840200661','9840201173','9840201387','9840201582','9840201830','9840202328','9840202494','9840202620','9840202864','9840202889','9840202900','9840203537','9840203556','9840203582','9840203775','9840203880','9840204011','9840204112','9840204469','9840204704','9840204732','9840204782','9840206070','9840206606','9840206757','9840206809','9840207143','9840207519','9840207520','9840208076','9840208446','9840208844','9840209710','9840210733','9840211325','9840211973','9840212128','9840212162','9840212249','9840212553','9840212819','9840212942','9840213119','9840213184','9840213268','9840213500','9840213664','9840213907','9840214741','9840215289','9840215651','9840215667','9840215813','9840216165','9840216486','9840216625','9840216746','9840216781','9840217004','9840217171','9840217277','9840217523','9840217808','9840217961','9840218001','9840218755','9840219033','9840219143','9840219270','9840219929','9840219975','9840220000','9840220285','9840220329','9840220438','9840220461','9840220713','9840220829','9840220953','9840221470','9840221642','9840221662','9840221999','9840222238','9840222278','9840222518','9840222654','9840222687','9840222804','9840222979','9840223051','9840223063','9840223125','9840223436','9840223467','9840223500','9840223537','9840223750','9840223984','9840223988','9840224023','9840224594','9840224817','9840225201','9840226266','9840226339','9840226644','9840226669','9840226922','9840227043','9840227192','9840227453','9840227662','9840227753','9840227874','9840227944','9840227988','9840228098','9840228287','9840228485','9840228867','9840228979','9840229118','9840229561','9840229591','9840229767','9840229868','9840229888','9840229955','9840230060','9840230133','9840230532','9840230566','9840230775','9840230883','9840230918','9840230956','9840230958','9840231488','9840231590','9840231878','9840232080','9840232099','9840232322','9840232580','9840232934','9840232994','9840233090','9840233286','9840233450','9840233948','9840234252','9840234255','9840234265','9840234311','9840234381','9840234478','9840234501','9840234569','9840234657','9840235352','9840235565','9840236334','9840236507','9840236772','9840237105','9840237108','9840237184','9840237206','9840237386','9840238121','9840238537','9840238750','9840238986','9840239794','9840239997','9840240049','9840240431','9840240549','9840240560','9840240606','9840240959','9840241280','9840241496','9840242126','9840242223','9840242421','9840242456','9840242580','9840242741','9840242869','9840243004','9840243394','9840243424','9840243514','9840243598','9840243813','9840243916','9840244039','9840244361','9840244545','9840244643','9840244814','9840244910','9840244965','9840245529','9840245682','9840245939','9840246038','9840246275','9840246545','9840246623','9840246653','9840246797','9840247316','9840247778','9840248206','9840248468','9840248487','9840248579','9840248645','9840249021','9840249702','9840250161','9840250193','9840250256','9840250270','9840250450','9840250656','9840250801','9840251700','9840251898','9840251958','9840252380','9840252424','9840252486','9840252510','9840252553','9840252579','9840252600','9840252605','9840252649','9840252723','9840252754','9840253100','9840253307','9840253369','9840253388','9840253463','9840253632','9840253808','9840253841','9840253965','9840254753','9840255038','9840255359','9840255441','9840255541','9840255590','9840255981','9840256168','9840256185','9840256194','9840256369','9840257177','9840257618','9840257733','9840257758','9840257871','9840257909','9840258257','9840258468','9840258755','9840258816','9840258825','9840258880','9840259192','9840259411','9840259520','9840260069','9840260511','9840260514','9840260693','9840260881','9840260931','9840260955','9840261177','9840261183','9840261433','9840261484','9840261495','9840261503','9840261585','9840261706','9840262087','9840262187','9840262395','9840262414','9840262422','9840262640','9840262871','9840263002','9840263363','9840263557','9840263763','9840263955','9840263958','9840264056','9840264129','9840264342','9840264451','9840264479','9840264524','9840264549','9840264917','9840264996','9840265153','9840265262','9840265335','9840265684','9840265802','9840265897','9840265908','9840266046','9840266238','9840266314','9840266598','9840266778','9840267123','9840267155','9840267287','9840267311','9840267623','9840267628','9840268097','9840268285','9840268661','9840268738','9840269088','9840269325','9840269700','9840269791','9840269969','9840270174','9840270467','9840270709','9840270733','9840270842','9840270894','9840271054','9840271261','9840271649','9840271913','9840272063','9840272117','9840272363','9840272442','9840272577','9840272625','9840272813','9840273713','9840273918','9840274252','9840274287','9840274641','9840274665','9840274947','9840275192','9840275508','9840275708','9840275714','9840275820','9840275855','9840276007','9840276097','9840276276','9840276370','9840276757','9840276800','9840276813','9840277044','9840277327','9840277332','9840277407','9840277420','9840277503','9840277529','9840277551','9840277832','9840278420','9840278574','9840278575','9840278749','9840278770','9840278806','9840278968','9840279473','9840279474','9840279646','9840279858','9840280279','9840280337','9840280726','9840280872','9840281020','9840281097','9840281184','9840281338','9840282541','9840282985','9840283002','9840283177','9840283375','9840283532','9840283553','9840283606','9840284116','9840284355','9840284402','9840284496','9840284619','9840284622','9840284742','9840284858','9840284875','9840285070','9840285446','9840286004','9840286046','9840286179','9840286326','9840287085','9840287134','9840287504','9840287580','9840287914','9840288004','9840288249','9840288418','9840288759','9840288809','9840289095','9840289110','9840289217','9840289597','9840289928','9840290011','9840290165','9840290422','9840290720','9840290850','9840290906','9840290945','9840291389','9840291522','9840291538','9840291652','9840291662','9840291666','9840291787','9840292217','9840292220','9840292537','9840292608','9840292798','9840293427','9840293499','9840293662','9840293799','9840293978','9840294114','9840294473','9840294748','9840294847','9840294943','9840295400','9840295405','9840295667','9840296071','9840296516','9840296632','9840296765','9840297010','9840297247','9840297446','9840297658','9840298008','9840298394','9840298402','9840298403','9840298409','9840298673','9840298747','9840298795','9840298838','9840298906','9840298989','9840299071','9840299185','9840299230','9840299246','9840299336','9840299475','9840299591','9840299733','9840299771','9840299798','9840299886','9840300124','9840300188','9840300311','9840300437','9840300492','9840300499','9840300575','9840300655','9840300772','9840300846','9840300989','9840301124','9840301443','9840301603','9840301882','9840302089','9840302213','9840302220','9840302689','9840302803','9840303094','9840303147','9840303252','9840303325','9840303362','9840303492','9840303520','9840303611','9840303719','9840303727','9840303793','9840304097','9840304677','9840304703','9840304878','9840305016','9840305073','9840305326','9840305636','9840305726','9840305749','9840306546','9840306911','9840307264','9840307506','9840307648','9840307949','9840307987','9840307999','9840308637','9840309078','9840309123','9840309350','9840309398','9840310396','9840310547','9840310576','9840310770','9840311049','9840311142','9840311180','9840311340','9840311380','9840311389','9840311539','9840311865','9840311946','9840312057','9840312176','9840312198','9840312267','9840312524','9840312877','9840313021','9840313243','9840313349','9840313632','9840313794','9840314044','9840314507','9840314636','9840314733','9840315298','9840315316','9840315506','9840315670','9840315721','9840315877','9840316184','9840316360','9840316502','9840316526','9840316661','9840316789','9840316991','9840317164','9840317496','9840317698','9840317832','9840317920','9840318237','9840318648','9840318684','9840318698','9840318814','9840319019','9840319812','9840320005','9840320023','9840320513','9840320565','9840320607','9840320903','9840321225','9840321571','9840321682','9840321868','9840321965','9840322032','9840322064','9840322132','9840322899','9840322920','9840322925','9840323023','9840323117','9840323123','9840323281','9840323658','9840324124','9840324182','9840324474','9840324518','9840324564','9840324797','9840325419','9840325442','9840325810','9840326002','9840326511','9840326516','9840326524','9840326634','9840326821','9840327067','9840327347','9840327402','9840327735','9840328396','9840328593','9840328600','9840328752','9840328819','9840328870','9840329120','9840329342','9840329478','9840329542','9840329566','9840329757','9840329859','9840330122','9840330292','9840330332','9840330422','9840330430','9840330511','9840330572','9840330918','9840331033','9840331250','9840331331','9840331572','9840331579','9840331603','9840331776','9840331934','9840332107','9840332191','9840332381','9840332577','9840332753','9840332772','9840332798','9840332810','9840332870','9840333231','9840333304','9840333420','9840333837','9840333853','9840333894','9840334063','9840334286','9840334332','9840334333','9840334521','9840334589','9840334701','9840334840','9840334942','9840335005','9840335057','9840335334','9840335597','9840335606','9840335952','9840336217','9840336242','9840336285','9840336466','9840336481','9840336547','9840336577','9840336613','9840336625','9840336708','9840336769','9840336968','9840337141','9840337418','9840337979','9840338164','9840338447','9840338459','9840338486','9840338720','9840338999','9840339187','9840339317','9840339388','9840339962','9840339965','9840339990','9840340138','9840340272','9840340277','9840340628','9840340630','9840340988','9840341100','9840341568','9840341593','9840341772','9840342074','9840342092','9840342511','9840343083','9840343305','9840343472','9840344237','9840344436','9840344562','9840344628','9840344778','9840344782','9840344934','9840345112','9840345134','9840345342','9840345377','9840345517','9840345643','9840346001','9840346075','9840346111','9840346808','9840346830','9840346868','9840347084','9840347185','9840347207','9840347264','9840347494','9840347892','9840348575','9840348603','9840348885','9840349303','9840349420','9840349431','9840349441','9840349455','9840349760','9840349855','9840350016','9840350103','9840350161','9840350699','9840350971','9840351061','9840351480','9840351526','9840351629','9840351987','9840352061','9840353208','9840353452','9840353558','9840353624','9840354005','9840354313','9840354372','9840354640','9840354700','9840354703','9840354809','9840355025','9840355385','9840355444','9840355447','9840355583','9840355886','9840356059','9840356162','9840356310','9840356345','9840356461','9840356511','9840356744','9840356762','9840356791','9840356918','9840356969','9840357002','9840357097','9840357138','9840357241','9840357272','9840357565','9840357566','9840357976','9840358141','9840358245','9840358357','9840358423','9840358444','9840358468','9840358632','9840358642','9840358727','9840359138','9840359735','9840359835','9840359890','9840359912','9840359949','9840359955','9840360123','9840360194','9840360282','9840360405','9840360770','9840360794','9840360933','9840361095','9840361251','9840361519','9840361737','9840361800','9840362295','9840362394','9840362406','9840362431','9840362491','9840362657','9840363181','9840363260','9840363437','9840363635','9840363686','9840363955','9840363960','9840364041','9840364462','9840364487','9840364567','9840364619','9840364732','9840364992','9840365193','9840365300','9840365349','9840365674','9840365726','9840365742','9840366001','9840366030','9840366064','9840366672','9840367248','9840367293','9840367444','9840367455','9840367698','9840367717','9840368004','9840368214','9840368389','9840368759','9840368844','9840369072','9840369155','9840369370','9840370054','9840370138','9840370165','9840370342','9840370934','9840371367','9840371369','9840371612','9840371747','9840372087','9840372282','9840372555','9840372633','9840372675','9840372709','9840372854','9840372964','9840373009','9840373594','9840373623','9840373759','9840374033','9840374639','9840374906','9840375217','9840375680','9840375757','9840375809','9840376067','9840376650','9840376986','9840377140','9840377246','9840377279','9840377704','9840377717','9840377758','9840377958','9840378554','9840379389','9840379505','9840379923','9840380073','9840380120','9840380189','9840380453','9840380460','9840380552','9840380707','9840380840','9840380903','9840381071','9840381251','9840381457','9840381606','9840381779','9840381823','9840382221','9840382332','9840382422','9840382686','9840382899','9840382936','9840382991','9840383151','9840383210','9840383362','9840383366','9840383443','9840383504','9840383907','9840383995','9840384090','9840384203','9840385006','9840385166','9840385375','9840385565','9840385595','9840385638','9840385845','9840386050','9840386208','9840386218','9840386570','9840386642','9840386716','9840387175','9840387197','9840387424','9840387703','9840387806','9840387866','9840387879','9840387998','9840388040','9840388078','9840388248','9840388355','9840388671','9840388772','9840388855','9840388926','9840389069','9840389335','9840389346','9840389369','9840389936','9840390019','9840390453','9840390550','9840391160','9840391214','9840391484','9840391978','9840392075','9840392531','9840392561','9840392621','9840392647','9840392749','9840392782','9840392819','9840393079','9840393116','9840393310','9840393343','9840393564','9840393616','9840393639','9840393653','9840393914','9840394489','9840394993','9840395092','9840395391','9840395655','9840396465','9840396683','9840396996','9840397218','9840397646','9840398073','9840398100','9840398103','9840398378','9840398395','9840398413','9840398533','9840399108','9840399537','9840399663','9840399870','9840399885','9840400020','9840400074','9840400083','9840400335','9840400411','9840400550','9840400674','9840400680','9840400712','9840400755','9840400808','9840401042','9840401044','9840401210','9840401313','9840401435','9840401458','9840401717','9840401719','9840401877','9840401980','9840401991','9840402032','9840402091','9840402099','9840402107','9840402347','9840402523','9840402640','9840402757','9840402874','9840402916','9840403008','9840403225','9840403743','9840403776','9840403796','9840404070','9840404072','9840404324','9840404487','9840404539','9840404742','9840404837','9840404880','9840405003','9840405158','9840405243','9840405245','9840405352','9840405503','9840405905','9840405935','9840406086','9840406149','9840406176','9840406537','9840406566','9840406647','9840406697','9840406838','9840406943','9840406965','9840407058','9840407333','9840407372','9840407383','9840407590','9840407612','9840407729','9840407804','9840408092','9840408450','9840408559','9840409498','9840409671','9840409672','9840409690','9840409702','9840409876','9840409972','9840410133','9840410538','9840410685','9840411093','9840411475','9840411735','9840411779','9840412201','9840412203','9840412287','9840412578','9840412620','9840412685','9840412697','9840412834','9840413319','9840413566','9840413567','9840413876','9840413972','9840414083','9840414611','9840414770','9840415062','9840415174','9840415202','9840415242','9840415387','9840415671','9840415752','9840416220','9840416262','9840416626','9840416841','9840416855','9840417451','9840417648','9840418660','9840419174','9840419303','9840419414','9840419496','9840420158','9840420286','9840420308','9840420535','9840420622','9840420707','9840420791','9840421375','9840421522','9840421733','9840421737','9840421868','9840422408','9840422744','9840423242','9840423322','9840423446','9840423484','9840423584','9840423624','9840423701','9840424400','9840424755','9840424935','9840425329','9840425338','9840425516','9840425545','9840425579','9840425636','9840425785','9840425812','9840426058','9840426161','9840426182','9840426296','9840426473','9840427534','9840427587','9840427860','9840428287','9840428409','9840428536','9840428607','9840429063','9840429104','9840429214','9840429336','9840429414','9840429479','9840429546','9840430179','9840430341','9840430401','9840430551','9840430609','9840430666','9840430949','9840431194','9840431531','9840431744','9840432169','9840432662','9840433106','9840433118','9840433881','9840434037','9840434115','9840434415','9840434505','9840434669','9840434853','9840434981','9840434996','9840435542','9840435795','9840436013','9840436067','9840436379','9840436416','9840436589','9840436883','9840436952','9840437201','9840437674','9840437678','9840437743','9840437933','9840437975','9840438062','9840438334','9840438652','9840439065','9840439112','9840439139','9840439351','9840439920','9840440001','9840440010','9840440044','9840440150','9840440307','9840440460','9840440464','9840440740','9840441025','9840441113','9840441324','9840441389','9840441435','9840441449','9840441487','9840441533','9840441954','9840442238','9840442315','9840442383','9840442466','9840443112','9840443174','9840443359','9840443453','9840443711','9840443807','9840444286','9840444428','9840444445','9840444653','9840444931','9840444950','9840445327','9840445412','9840445761','9840445762','9840446222','9840446704','9840447457','9840447661','9840447865','9840447869','9840448487','9840449126','9840449223','9840449349','9840449476','9840449500','9840449666','9840449749','9840449780','9840449888','9840449954','9840449963','9840449970','9840450103','9840450108','9840450194','9840450296','9840450531','9840450555','9840450696','9840450819','9840450865','9840450891','9840451019','9840451044','9840451049','9840451199','9840451953','9840452034','9840452198','9840452482','9840452534','9840452559','9840453047','9840453052','9840453148','9840453248','9840453389','9840453574','9840453776','9840454022','9840454037','9840454071','9840454125','9840454732','9840454743','9840454747','9840454755','9840454858','9840455117','9840455412','9840455455','9840455465','9840455547','9840455777','9840455778','9840455889','9840456027','9840456143','9840456722','9840457242','9840457279','9840457321','9840457697','9840457751','9840457979','9840458360','9840458455','9840458597','9840458857','9840459233','9840459333','9840459506','9840459955','9840460008','9840460107','9840460339','9840460430','9840460447','9840460700','9840460759','9840460959','9840461044','9840461325','9840461707','9840462294','9840462387','9840462735','9840463489','9840463572','9840463644','9840464240','9840464336','9840464464','9840464602','9840464891','9840465013','9840465048','9840465064','9840465099','9840465181','9840465210','9840465445','9840465455','9840465491','9840465831','9840466016','9840466190','9840466352','9840466696','9840466792','9840467213','9840467508','9840467530','9840467581','9840467588','9840467636','9840467776','9840467818','9840467963','9840468497','9840468931','9840469222','9840469398','9840469532','9840469627','9840469652','9840469675','9840469811','9840469898','9840470070','9840470244','9840470483','9840470595','9840470972','9840471017','9840471449','9840472099','9840472140','9840472250','9840472349','9840472403','9840472686','9840472692','9840472844','9840472938','9840473160','9840473285','9840473619','9840474341','9840474343','9840474406','9840474843','9840475011','9840475135','9840475223','9840475335','9840475558','9840477334','9840477557','9840477696','9840477706','9840477738','9840477778','9840477788','9840478056','9840478129','9840478159','9840478347','9840478507','9840478760','9840478772','9840478959','9840478960','9840479348','9840479444','9840479766','9840479792','9840479793','9840479864','9840479884','9840480087','9840480407','9840480965','9840481605','9840482044','9840482072','9840482472','9840482568','9840482621','9840482697','9840482707','9840482751','9840482792','9840482837','9840482963','9840483210','9840483280','9840483304','9840483361','9840483833','9840483883','9840483946','9840484118','9840484137','9840485219','9840485862','9840486136','9840486171','9840486181','9840487054','9840487525','9840487728','9840487779','9840487861','9840487871','9840488504','9840488524','9840488666','9840488955','9840488966','9840489298','9840489341','9840489602','9840489803','9840489912','9840490178','9840490630','9840490785','9840491037','9840491267','9840491393','9840491434','9840491604','9840491939','9840491950','9840492004','9840492265','9840492332','9840492511','9840492790','9840492982','9840493183','9840493534','9840493616','9840493688','9840493921','9840493993','9840494808','9840494922','9840495336','9840495510','9840495667','9840495688','9840495817','9840495915','9840496157','9840496209','9840496279','9840496296','9840496468','9840496573','9840496831','9840496969','9840497148','9840497647','9840498170','9840498250','9840498265','9840498269','9840498300','9840498505','9840499025','9840499036','9840499116','9840499237','9840499246','9840499311','9840499432','9840499442','9840499935','9840500032','9840500209','9840500503','9840500515','9840500635','9840500639','9840500719','9840500730','9840500881','9840500915','9840500952','9840501229','9840501284','9840501620','9840501713','9840501921','9840502034','9840502112','9840502734','9840502813','9840502833','9840502985','9840503025','9840503103','9840503253','9840503375','9840503581','9840503943','9840503956','9840504036','9840504054','9840504080','9840504590','9840504606','9840504826','9840505302','9840505311','9840505356','9840505591','9840505711','9840505951','9840506171','9840506400','9840506557','9840506883','9840506955','9840507008','9840507386','9840507439','9840507604','9840507723','9840507800','9840507890','9840508092','9840508313','9840508491','9840508515','9840508620','9840509338','9840509780','9840510067','9840510162','9840510223','9840510702','9840510738','9840510748','9840510837','9840511182','9840511265','9840511315','9840511341','9840511381','9840511398','9840511495','9840511503','9840511555','9840512159','9840512182','9840512184','9840512346','9840512892','9840512896','9840512955','9840513153','9840513200','9840513201','9840513319','9840513584','9840513972','9840514003','9840514051','9840514073','9840514160','9840514290','9840514425','9840514511','9840514611','9840515134','9840515166','9840515338','9840515384','9840515511','9840515536','9840515605','9840515793','9840516660','9840516822','9840517481','9840518118','9840518208','9840518234','9840518448','9840518521','9840518593','9840518797','9840519293','9840519492','9840519912','9840520229','9840520275','9840520338','9840520382','9840520599','9840520638','9840520995','9840521652','9840522116','9840522144','9840522182','9840522382','9840522666','9840522922','9840523013','9840523656','9840524052','9840524057','9840524300','9840524687','9840524729','9840524751','9840524754','9840525005','9840525048','9840525374','9840525671','9840525672','9840525980','9840526027','9840526099','9840526155','9840526181','9840526516','9840527175','9840527727','9840527901','9840528201','9840528542','9840528699','9840528784','9840529021','9840530298','9840530750','9840530894','9840531007','9840531110','9840531380','9840531876','9840532018','9840532476','9840532856','9840533004','9840533072','9840533218','9840533377','9840533682','9840533733','9840533741','9840533944','9840534108','9840534348','9840534497','9840534964','9840535031','9840535181','9840535202','9840535317','9840535489','9840535574','9840535885','9840536091','9840536376','9840536442','9840537031','9840537163','9840537300','9840537445','9840537564','9840537613','9840537769','9840538037','9840538082','9840538169','9840538515','9840538542','9840538566','9840538663','9840538807','9840538907','9840538963','9840539053','9840539628','9840539895','9840540231','9840540301','9840540473','9840540499','9840540655','9840541257','9840541481','9840541494','9840541518','9840541557','9840541775','9840542096','9840542207','9840542291','9840542733','9840542774','9840542952','9840543178','9840543644','9840544006','9840544100','9840544399','9840544431','9840544453','9840544471','9840544540','9840544736','9840544923','9840545019','9840545127','9840545306','9840545366','9840545458','9840545545','9840545547','9840545602','9840545606','9840545645','9840545667','9840545745','9840545840','9840545844','9840545953','9840545966','9840546105','9840546205','9840546681','9840546932','9840547122','9840547203','9840547271','9840547420','9840547585','9840548018','9840548025','9840548416','9840548458','9840548607','9840549289','9840549388','9840549635','9840549718','9840549742','9840549856','9840549869','9840550059','9840550247','9840550800','9840550936','9840550966','9840551370','9840551655','9840551737','9840552063','9840552245','9840552262','9840552620','9840552660','9840552669','9840552742','9840552855','9840552952','9840552964','9840553025','9840553553','9840553643','9840553701','9840553902','9840553904','9840553947','9840554047','9840554076','9840554416','9840554451','9840554932','9840555017','9840555316','9840555537','9840555596','9840555667','9840555716','9840555732','9840555778','9840556524','9840556544','9840556553','9840556589','9840556663','9840556788','9840556817','9840557008','9840557036','9840557054','9840557067','9840557139','9840557272','9840557306','9840557326','9840557395','9840557470','9840557777','9840557820','9840558090','9840558094','9840558125','9840558269','9840558458','9840558607','9840558807','9840558814','9840558886','9840559006','9840559081','9840559126','9840559546','9840559724','9840560138','9840560187','9840560509','9840560601','9840560717','9840560723','9840560881','9840560945','9840561140','9840561297','9840561575','9840561756','9840561811','9840561871','9840562051','9840562692','9840562947','9840563664','9840563934','9840564026','9840564064','9840564846','9840565010','9840565025','9840565029','9840565255','9840565363','9840565537','9840565556','9840565684','9840566141','9840566231','9840566238','9840566242','9840566345','9840566552','9840566564','9840566835','9840566882','9840567334','9840567439','9840567677','9840567750','9840567797','9840567930','9840568039','9840568160','9840568240','9840568297','9840568338','9840568385','9840568408','9840568574','9840568648','9840568935','9840568994','9840569038','9840569056','9840569969','9840570263','9840570333','9840570397','9840570407','9840570411','9840570635','9840570636','9840570692','9840570812','9840571022','9840571152','9840571289','9840571415','9840571534','9840571970','9840572152','9840572177','9840572304','9840572338','9840572536','9840572544','9840572553','9840572965','9840572979','9840573387','9840573648','9840574584','9840574790','9840574881','9840574954','9840575013','9840575589','9840575805','9840576004','9840576117','9840576126','9840576950','9840576962','9840577288','9840577317','9840577478','9840577583','9840577597','9840577771','9840577799','9840577881','9840577956','9840577988','9840578022','9840578301','9840578605','9840579840','9840580001','9840580241','9840580435','9840580515','9840580590','9840580985','9840581206','9840581239','9840581414','9840581893','9840581967','9840582550','9840582635','9840582961','9840583064','9840583240','9840583319','9840583489','9840583955','9840584411','9840584614','9840584704','9840584726','9840584899','9840584937','9840585486','9840585566','9840585875','9840586499','9840586656','9840586837','9840586929','9840586977','9840587187','9840587229','9840587285','9840587396','9840587652','9840588189','9840588321','9840588427','9840588481','9840588501','9840588630','9840588653','9840588657','9840588753','9840588865','9840588908','9840589055','9840589231','9840589238','9840589405','9840590090','9840590332','9840590349','9840590724','9840590928','9840591113','9840591120','9840591173','9840591279','9840591390','9840591492','9840591497','9840591550','9840591668','9840591794','9840592120','9840592212','9840592225','9840592355','9840592525','9840592806','9840592868','9840593224','9840593511','9840594432','9840594452','9840594549','9840594563','9840594593','9840594637','9840594969','9840595010','9840595054','9840595315','9840595523','9840596019','9840596360','9840596413','9840596428','9840596564','9840597078','9840597114','9840597198','9840597273','9840597390','9840597527','9840598039','9840598066','9840598145','9840598444','9840598575','9840598587','9840598723','9840598988','9840599107','9840599110','9840599698','9840599827','9840599859','9840600174','9840600228','9840600321','9840600330','9840600557','9840600630','9840600728','9840601477','9840601672','9840601788','9840601818','9840601913','9840602303','9840602472','9840602562','9840602680','9840602686','9840602740','9840602766','9840603200','9840603245','9840603435','9840603454','9840603575','9840603586','9840603638','9840604057','9840604214','9840604372','9840604488','9840604518','9840604723','9840604901','9840605234','9840605336','9840605519','9840605542','9840605812','9840606012','9840606067','9840606422','9840606502','9840606557','9840606598','9840606989','9840607171','9840607346','9840607492','9840607508','9840608212','9840608380','9840608556','9840608776','9840608866','9840608999','9840609210','9840609494','9840609650','9840610201','9840610218','9840610502','9840610819','9840610974','9840611170','9840611320','9840611607','9840611655','9840611963','9840611975','9840612064','9840612208','9840612398','9840612536','9840612740','9840613193','9840613500','9840614261','9840614277','9840614325','9840614582','9840614735','9840614843','9840614860','9840615038','9840615182','9840615663','9840615700','9840615704','9840616043','9840616060','9840616156','9840616176','9840616204','9840616275','9840616485','9840617020','9840617962','9840617972','9840618001','9840618016','9840618363','9840618476','9840618588','9840618750','9840618845','9840619078','9840619122','9840619500','9840619546','9840619642','9840620043','9840620464','9840620494','9840620622','9840620648','9840620836','9840621561','9840621572','9840621732','9840621904','9840622009','9840622177','9840622211','9840622261','9840622311','9840622338','9840622589','9840622685','9840622779','9840622978','9840623388','9840623973','9840624110','9840624692','9840625153','9840625237','9840626001','9840626042','9840626082','9840626374','9840626619','9840626659','9840627201','9840627229','9840627334','9840627859','9840627902','9840627947','9840628688','9840629013','9840629998','9840630212','9840630463','9840630976','9840631183','9840631607','9840633044','9840633165','9840633318','9840633438','9840633730','9840633757','9840634042','9840634397','9840634642','9840634655','9840634765','9840635077','9840635234','9840635324','9840635526','9840635671','9840636051','9840636140','9840636214','9840636261','9840636296','9840636315','9840636547','9840636653','9840636804','9840637039','9840637308','9840637337','9840637633','9840637654','9840637900','9840638307','9840638763','9840638891','9840639097','9840639497','9840639644','9840639963','9840640068','9840640421','9840640598','9840640611','9840640673','9840640691','9840640860','9840642020','9840642903','9840643079','9840643442','9840643661','9840644161','9840644436','9840644555','9840644819','9840644867','9840645075','9840645253','9840645303','9840645339','9840645444','9840645561','9840645571','9840646098','9840646308','9840646562','9840646998','9840647096','9840647353','9840647434','9840647479','9840648249','9840648867','9840648930','9840648956','9840649536','9840649669','9840649687','9840649882','9840649989','9840650113','9840650346','9840650494','9840650857','9840650924','9840651198','9840651503','9840651514','9840651529','9840651615','9840651717','9840651744','9840652053','9840652231','9840652346','9840652802','9840653008','9840653119','9840653627','9840653663','9840654008','9840654154','9840654334','9840654643','9840654671','9840654701','9840655229','9840655326','9840655418','9840655570','9840655601','9840655644','9840655668','9840655814','9840656658','9840656666','9840656728','9840656885','9840656923','9840657035','9840657592','9840657627','9840657878','9840658315','9840658381','9840658452','9840658552','9840658653','9840658698','9840658787','9840658808','9840658909','9840658982','9840658986','9840658987','9840659119','9840659232','9840659501','9840659551','9840660074','9840660144','9840660173','9840660274','9840660329','9840660767','9840660854','9840661066','9840661163','9840661282','9840661756','9840662031','9840662135','9840662477','9840662701','9840663107','9840663660','9840663700','9840663943','9840664005','9840664076','9840664745','9840665188','9840665590','9840665955','9840666090','9840666176','9840666216','9840666512','9840666775','9840666810','9840666840','9840667010','9840667014','9840667371','9840667415','9840667830','9840668470','9840669036','9840669744','9840669882','9840669907','9840670090','9840670205','9840670323','9840670442','9840670631','9840670696','9840671218','9840671271','9840671505','9840671991','9840672117','9840672176','9840672288','9840672480','9840672679','9840672887','9840673176','9840673324','9840673341','9840673696','9840673817','9840674111','9840674200','9840674242','9840674655','9840675065','9840675156','9840675689','9840676269','9840676271','9840676367','9840676417','9840676542','9840676555','9840676641','9840676657','9840676746','9840677030','9840677235','9840677316','9840677328','9840677492','9840677688','9840678038','9840678065','9840678288','9840678490','9840678499','9840678829','9840678933','9840679004','9840679091','9840679595','9840679666','9840679774','9840679903','9840679966','9840680209','9840680265','9840680343','9840680349','9840680396','9840680867','9840681045','9840681131','9840681481','9840682051','9840682443','9840682554','9840682595','9840682859','9840683098','9840683166','9840683173','9840683189','9840683427','9840684232','9840684390','9840685082','9840685111','9840685114','9840685256','9840685411','9840685862','9840686227','9840686382','9840686795','9840686843','9840686963','9840687049','9840687204','9840687214','9840687306','9840687312','9840687373','9840687424','9840687621','9840688042','9840688052','9840688799','9840688808','9840688879','9840689126','9840689333','9840689667','9840689692','9840689993','9840690066','9840690239','9840690515','9840690551','9840690563','9840690631','9840690636','9840690826','9840690995','9840691332','9840691537','9840691548','9840691609','9840691671','9840692052','9840692441','9840692964','9840693046','9840693457','9840693489','9840693600','9840693639','9840693863','9840694096','9840694430','9840694618','9840694674','9840694722','9840694939','9840695446','9840695580','9840695590','9840695757','9840695929','9840696059','9840696075','9840696284','9840696396','9840696727','9840696939','9840697070','9840697130','9840697177','9840697365','9840697461','9840697739','9840697799','9840698181','9840698234','9840698495','9840698704','9840699802','9840699986','9840700065','9840700146','9840700170','9840700559','9840700774','9840700834','9840700936','9840700996','9840701047','9840701193','9840701212','9840701323','9840701543','9840701566','9840701581','9840701627','9840701764','9840701826','9840701913','9840702239','9840702404','9840702907','9840703064','9840703165','9840703179','9840703201','9840703643','9840703732','9840703782','9840703958','9840704024','9840704486','9840704539','9840704855','9840704866','9840704992','9840705402','9840705466','9840705478','9840705736','9840705948','9840705978','9840706051','9840706086','9840706255','9840706303','9840706350','9840707195','9840707250','9840707265','9840707454','9840707596','9840707927','9840708183','9840708343','9840708354','9840708396','9840708468','9840708536','9840708556','9840708586','9840708621','9840708655','9840708817','9840709012','9840709145','9840709360','9840709623','9840709667','9840709668','9840709753','9840709784','9840709988','9840710075','9840710149','9840710321','9840710336','9840711117','9840711156','9840711187','9840711400','9840711502','9840711533','9840711737','9840711836','9840711949','9840712089','9840712102','9840712240','9840712307','9840712949','9840713110','9840713292','9840713311','9840713501','9840713575','9840714034','9840714096','9840714405','9840714551','9840714642','9840714821','9840715017','9840715223','9840715264','9840715305','9840715347','9840715479','9840715538','9840715565','9840715617','9840715681','9840716179','9840716271','9840716760','9840716953','9840717174','9840717294','9840717404','9840717432','9840717490','9840717882','9840718014','9840718117','9840718140','9840718328','9840718606','9840718819','9840719013','9840719093','9840719132','9840719300','9840719351','9840719375','9840719462','9840719484','9840719880','9840719990','9840719999','9840720131','9840720266','9840720288','9840720885','9840721004','9840721180','9840721184','9840721678','9840721819','9840721994','9840722089','9840722212','9840722456','9840722624','9840722666','9840722740','9840722805','9840722942','9840723006','9840723182','9840723223','9840723313','9840723351','9840723379','9840723516','9840723600','9840723712','9840723823','9840723931','9840723956','9840724184','9840724414','9840724554','9840724563','9840724610','9840724871','9840725205','9840725625','9840726480','9840726700','9840726815','9840726828','9840726843','9840727162','9840727314','9840727551','9840727580','9840727763','9840727898','9840728437','9840728464','9840728806','9840728811','9840728933','9840729060','9840729259','9840729290','9840729580','9840729666','9840729995','9840730122','9840730399','9840730456','9840730732','9840731032','9840731119','9840731129','9840731250','9840731447','9840731752','9840731764','9840731766','9840731919','9840731973','9840732577','9840732610','9840732631','9840732770','9840733123','9840733141','9840733930','9840734015','9840734542','9840734616','9840734802','9840734806','9840734840','9840734946','9840734947','9840735251','9840735295','9840735412','9840735691','9840736776','9840737035','9840737268','9840737744','9840738006','9840738073','9840738105','9840738177','9840738182','9840738270','9840738466','9840738765','9840738825','9840738937','9840738956','9840739040','9840739179','9840739586','9840739720','9840739858','9840740076','9840740243','9840740255','9840740404','9840740408','9840740450','9840740482','9840740526','9840740672','9840740794','9840740975','9840741047','9840741075','9840741253','9840741464','9840741502','9840741744','9840741843','9840742179','9840742182','9840742256','9840742737','9840742854','9840742957','9840743037','9840743396','9840743429','9840743672','9840744039','9840744164','9840744249','9840744474','9840744501','9840744691','9840744697','9840744742','9840744769','9840744811','9840744817','9840744992','9840745214','9840745993','9840746094','9840746203','9840746455','9840747403','9840747754','9840747814','9840748323','9840748479','9840748959','9840749028','9840749084','9840749641','9840750094','9840750311','9840750518','9840750632','9840750737','9840750740','9840751343','9840751365','9840751526','9840751664','9840751931','9840752626','9840752722','9840752767','9840753021','9840753027','9840753040','9840753108','9840753135','9840753244','9840753415','9840753503','9840753536','9840753939','9840753959','9840754134','9840754182','9840754552','9840754657','9840754961','9840755051','9840755104','9840755358','9840755632','9840755774','9840755853','9840755925','9840756595','9840756611','9840756804','9840756946','9840757236','9840757573','9840757610','9840757715','9840757756','9840758269','9840758553','9840758554','9840758575','9840758870','9840759209','9840759517','9840759676','9840759953','9840759977','9840760068','9840760087','9840760460','9840760471','9840760576','9840760622','9840760682','9840760774','9840761073','9840761221','9840761319','9840761390','9840761438','9840761623','9840761663','9840762373','9840762688','9840763003','9840763148','9840764172','9840764334','9840764374','9840764728','9840764760','9840764761','9840764791','9840764856','9840764920','9840765078','9840765084','9840765166','9840765179','9840765260','9840765465','9840765852','9840766117','9840766264','9840766475','9840766662','9840766792','9840767224','9840767264','9840767332','9840767384','9840767512','9840767591','9840767800','9840767990','9840768024','9840768265','9840768456','9840768608','9840768646','9840768677','9840768693','9840769208','9840769601','9840769888','9840770033','9840770263','9840770309','9840770419','9840770512','9840770609','9840770623','9840770886','9840770892','9840770953','9840771108','9840771390','9840771437','9840771551','9840771570','9840771679','9840771897','9840772005','9840772323','9840772455','9840772501','9840772633','9840772789','9840772831','9840772995','9840773053','9840773302','9840773438','9840773470','9840773531','9840773839','9840774038','9840774077','9840774211','9840774430','9840774797','9840775169','9840775349','9840775373','9840775597','9840775704','9840775763','9840775823','9840775911','9840775977','9840776255','9840776379','9840776473','9840776540','9840776984','9840777335','9840777367','9840777537','9840777589','9840777728','9840777812','9840777866','9840777906','9840778225','9840778573','9840778677','9840778788','9840778852','9840779433','9840779649','9840779877','9840779973','9840780101','9840780174','9840780187','9840780603','9840780882','9840780932','9840781415','9840781633','9840781842','9840781946','9840782247','9840782318','9840782529','9840782762','9840783293','9840783416','9840783433','9840783638','9840783974','9840784694','9840784857','9840785316','9840785349','9840785546','9840785659','9840785955','9840786126','9840786127','9840786306','9840786428','9840786515','9840786712','9840786806','9840787003','9840787090','9840787210','9840787486','9840787870','9840788410','9840788455','9840788522','9840788607','9840788915','9840788931','9840789149','9840789533','9840789551','9840789818','9840789843','9840789853','9840790001','9840790024','9840790092','9840790329','9840790504','9840790521','9840790804','9840790843','9840790903','9840791723','9840791854','9840791918','9840792217','9840792287','9840792540','9840792730','9840792787','9840792953','9840793365','9840793534','9840793667','9840794108','9840794454','9840794484','9840794689','9840794711','9840794956','9840795406','9840795499','9840795519','9840795759','9840795760','9840795795','9840796496','9840796543','9840796556','9840796586','9840796995','9840797155','9840797193','9840797375','9840797376','9840797449','9840797780','9840798203','9840798401','9840798823','9840799003','9840799406','9840799417','9840799571','9840799973','9840799975','9840800653','9840800692','9840800880','9840801089','9840801191','9840801386','9840801409','9840801477','9840801542','9840801646','9840801649','9840801825','9840802176','9840802404','9840802580','9840802939','9840803474','9840803823','9840803994','9840804670','9840804679','9840804810','9840804839','9840805304','9840805693','9840805852','9840806146','9840806170','9840806563','9840806702','9840806727','9840806816','9840806851','9840807002','9840807095','9840807665','9840807700','9840807930','9840808009','9840808054','9840808071','9840808158','9840808184','9840808220','9840808500','9840808702','9840808979','9840809335','9840809945','9840810082','9840810265','9840810509','9840810550','9840810707','9840810898','9840811034','9840811081','9840811109','9840811128','9840811314','9840811345','9840811362','9840811454','9840811584','9840811595','9840811632','9840812088','9840812121','9840812170','9840812178','9840812229','9840812316','9840812324','9840812372','9840812526','9840812590','9840812872','9840813136','9840813137','9840813201','9840813205','9840813319','9840813491','9840813672','9840813706','9840813778','9840814242','9840814247','9840814333','9840814457','9840814623','9840814947','9840815266','9840815339','9840815451','9840815524','9840815576','9840815630','9840815837','9840815895','9840815920','9840815989','9840816014','9840816836','9840816860','9840816977','9840817166','9840817224','9840817333','9840817766','9840817888','9840818070','9840818125','9840818257','9840818431','9840818816','9840818905','9840819158','9840819196','9840819457','9840819542','9840819581','9840819934','9840820580','9840820998','9840821064','9840821085','9840821330','9840821400','9840821626','9840822014','9840822122','9840822191','9840822302','9840822359','9840822442','9840822620','9840823063','9840823379','9840823640','9840823788','9840823898','9840824065','9840824089','9840824173','9840824232','9840824250','9840824366','9840824525','9840824635','9840824646','9840824796','9840824882','9840825171','9840825316','9840825569','9840826217','9840826218','9840826792','9840827284','9840828032','9840828214','9840828922','9840829255','9840829696','9840829700','9840829718','9840830071','9840830191','9840830368','9840830839','9840830940','9840831098','9840831149','9840831228','9840831355','9840831503','9840831597','9840831693','9840832121','9840832183','9840832219','9840832224','9840832376','9840832425','9840832456','9840832469','9840832741','9840832914','9840833072','9840833229','9840833279','9840833338','9840833550','9840833559','9840833886','9840834042','9840834149','9840834241','9840834479','9840834498','9840834637','9840834681','9840834753','9840835115','9840835235','9840835398','9840835681','9840836034','9840836061','9840836592','9840836605','9840836608','9840836736','9840837073','9840837077','9840837144','9840837185','9840837224','9840837883','9840837938','9840837996','9840838005','9840838016','9840838179','9840838245','9840838250','9840838462','9840838515','9840838705','9840839028','9840839157','9840839334','9840839386','9840839419','9840839627','9840839750','9840839769','9840839928','9840840071','9840840136','9840840243','9840840271','9840840572','9840840739','9840840855','9840840861','9840841007','9840841701','9840841884','9840841944','9840842007','9840842116','9840842134','9840842152','9840842179','9840842410','9840842420','9840842477','9840842539','9840842780','9840842811','9840843039','9840843184','9840843221','9840843236','9840843696','9840844137','9840844158','9840844265','9840844395','9840844409','9840844480','9840844495','9840844537','9840844557','9840844626','9840844764','9840844815','9840844901','9840844921','9840844942','9840845066','9840845074','9840845090','9840845373','9840845602','9840845646','9840845762','9840846034','9840846525','9840846569','9840846657','9840846750','9840846835','9840847085','9840847433','9840847586','9840847624','9840847749','9840847834','9840847860','9840847866','9840848338','9840848629','9840849294','9840849357','9840850312','9840850348','9840850622','9840850643','9840850698','9840851655','9840851749','9840851888','9840851902','9840851972','9840852205','9840852709','9840852977','9840853046','9840853072','9840854223','9840855057','9840855234','9840855372','9840855457','9840855571','9840855688','9840856070','9840856340','9840856413','9840856531','9840856553','9840856576','9840856707','9840856876','9840857788','9840857910','9840858074','9840858241','9840858376','9840858432','9840858557','9840858568','9840858712','9840858984','9840858989','9840859027','9840859254','9840859331','9840859543','9840859590','9840859709','9840859945','9840860026','9840860481','9840860507','9840860566','9840860619','9840860712','9840860920','9840861030','9840861142','9840861383','9840861486','9840861602','9840861833','9840861840','9840861923','9840861933','9840862047','9840862087','9840862124','9840862308','9840862324','9840862625','9840862648','9840863689','9840863693','9840864127','9840864142','9840864185','9840864248','9840864647','9840864777','9840864848','9840864904','9840864918','9840865150','9840865358','9840865530','9840865799','9840865892','9840865952','9840866122','9840866152','9840866543','9840866567','9840866658','9840867052','9840867067','9840867187','9840867480','9840867683','9840867755','9840867839','9840867880','9840867932','9840868073','9840868077','9840868192','9840868222','9840869005','9840869065','9840869209','9840869514','9840869617','9840869896','9840869946','9840870033','9840870110','9840870183','9840870355','9840870456','9840870458','9840870484','9840870558','9840870597','9840870698','9840870709','9840870775','9840870871','9840871617','9840871668','9840872156','9840872319','9840872388','9840872520','9840872997','9840873361','9840873375','9840873391','9840873462','9840873713','9840874070','9840874119','9840874348','9840874418','9840874682','9840874971','9840875029','9840875200','9840875620','9840875676','9840875929','9840876066','9840876311','9840876512','9840876675','9840876745','9840876980','9840877565','9840877566','9840877658','9840877708','9840878019','9840878732','9840878816','9840878929','9840879483','9840879949','9840879953','9840880025','9840880121','9840880164','9840880275','9840880320','9840880462','9840880611','9840880679','9840880898','9840880930','9840880989','9840881012','9840881219','9840881278','9840881299','9840881551','9840881577','9840881714','9840882259','9840882281','9840882386','9840882400','9840882534','9840882585','9840882593','9840882944','9840883122','9840883138','9840883153','9840883322','9840883326','9840883397','9840883658','9840884050','9840884490','9840884502','9840884524','9840884796','9840885240','9840885258','9840885453','9840885481','9840885677','9840886021','9840886120','9840886180','9840886186','9840886253','9840886283','9840886566','9840886633','9840886699','9840886756','9840887204','9840887557','9840887892','9840888011','9840888149','9840888157','9840888421','9840888425','9840889211','9840889328','9840889443','9840889567','9840889591','9840889999','9840890704','9840890977','9840891232','9840891301','9840891687','9840891710','9840891743','9840891944','9840892097','9840892194','9840892199','9840892228','9840892270','9840892441','9840892516','9840892750','9840892858','9840893268','9840894316','9840894340','9840894554','9840894763','9840895088','9840895226','9840895265','9840895565','9840895640','9840895650','9840895978','9840896454','9840896485','9840896589','9840896781','9840897092','9840897141','9840897244','9840897313','9840897505','9840897987','9840898337','9840898691','9840898946','9840899267','9840899455','9840899609','9840899683','9840899708','9840899981','9840900880','9840900990','9840901414','9840902795','9840902871','9840902872','9840902874','9840902876','9840902914','9840902916','9840903047','9840903084','9840903346','9840903433','9840903442','9840903884','9840904172','9840904223','9840904366','9840904408','9840905136','9840905180','9840905519','9840905581','9840905719','9840905931','9840906038','9840906176','9840906350','9840906999','9840907161','9840907278','9840907311','9840907493','9840907572','9840907750','9840908129','9840908353','9840908735','9840908809','9840908924','9840909106','9840909297','9840909338','9840910020','9840910106','9840910426','9840910444','9840910448','9840910765','9840910936','9840910950','9840910983','9840911135','9840911175','9840911268','9840911414','9840911470','9840911535','9840911722','9840911886','9840911919','9840912082','9840912119','9840912130','9840912173','9840912511','9840912591','9840912640','9840912833','9840913304','9840913360','9840913791','9840913992','9840914367','9840914544','9840914556','9840914608','9840914916','9840915150','9840915153','9840915226','9840915242','9840915289','9840915305','9840915353','9840915517','9840915665','9840915715','9840915828','9840915900','9840915937','9840915982','9840916323','9840916755','9840916989','9840917104','9840917265','9840917693','9840917980','9840918084','9840918106','9840918148','9840918217','9840918676','9840918795','9840918848','9840918884','9840919126','9840919206','9840919371','9840919379','9840919402','9840920058','9840920143','9840920268','9840920658','9840920680','9840920695','9840920970','9840921577','9840921643','9840922107','9840922218','9840922292','9840922489','9840922547','9840922562','9840922652','9840922672','9840922709','9840922821','9840922825','9840922951','9840923160','9840923185','9840923425','9840923489','9840924052','9840924357','9840924512','9840924561','9840924757','9840925388','9840925468','9840925649','9840925687','9840925974','9840926066','9840926259','9840926375','9840926385','9840926467','9840926625','9840926906','9840926923','9840926963','9840926996','9840927183','9840927465','9840927579','9840927624','9840928309','9840928384','9840928440','9840928592','9840929108','9840929195','9840929364','9840929566','9840929582','9840929693','9840929988','9840930007','9840930484','9840930496','9840930502','9840930514','9840930532','9840930555','9840930678','9840930717','9840930794','9840930904','9840930919','9840930951','9840930982','9840931091','9840931111','9840931357','9840932069','9840932174','9840932352','9840932390','9840932454','9840932633','9840932867','9840933006','9840933089','9840933202','9840933767','9840933868','9840934108','9840934163','9840934527','9840934947','9840935111','9840935155','9840935558','9840935868','9840935957','9840936195','9840936332','9840936520','9840936784','9840936813','9840937123','9840937132','9840937398','9840937483','9840937610','9840938222','9840938296','9840938313','9840938549','9840938555','9840938696','9840938774','9840938793','9840939912','9840940259','9840941050','9840941133','9840941261','9840941313','9840941345','9840941416','9840941598','9840941787','9840941892','9840941932','9840942396','9840942415','9840942494','9840942519','9840942567','9840942596','9840942598','9840942726','9840942956','9840943213','9840943232','9840943380','9840943432','9840943534','9840944363','9840944510','9840944661','9840944816','9840944952','9840945145','9840945372','9840945450','9840945498','9840945538','9840945946','9840946130','9840946141','9840946257','9840946447','9840946765','9840947281','9840947423','9840947550','9840947626','9840948284','9840948337','9840948494','9840948777','9840949409','9840949568','9840949815','9840949893','9840949938','9840949964','9840949980','9840950052','9840950117','9840950686','9840950718','9840950960','9840951090','9840951108','9840951442','9840951733','9840951956','9840952235','9840952244','9840952484','9840952557','9840952642','9840952693','9840952877','9840952959','9840953715','9840953920','9840954161','9840954415','9840954460','9840954654','9840954875','9840955129','9840955336','9840955578','9840955747','9840955849','9840956120','9840956132','9840956181','9840956291','9840956350','9840956491','9840957467','9840958303','9840958387','9840958393','9840958492','9840958598','9840959196','9840959582','9840959697','9840959774','9840959850','9840959998','9840960039','9840960069','9840960342','9840960468','9840960525','9840960620','9840960659','9840960669','9840960926','9840960935','9840960936','9840961113','9840961331','9840961396','9840961499','9840961516','9840961617','9840961830','9840961947','9840962286','9840962619','9840962715','9840962754','9840963336','9840963409','9840963500','9840963553','9840963700','9840963883','9840964145','9840964425','9840964448','9840964553','9840964921','9840964993','9840965058','9840965293','9840965524','9840965903','9840965949','9840966135','9840966144','9840966229','9840966560','9840966562','9840966614','9840967081','9840967200','9840967233','9840967235','9840967246','9840967497','9840967535','9840967571','9840967666','9840967897','9840968670','9840968683','9840969057','9840969445','9840969459','9840969502','9840969698','9840969789','9840969854','9840970034','9840970069','9840970072','9840970097','9840970243','9840970384','9840970385','9840970393','9840970394','9840970692','9840970719','9840970737','9840970895','9840970956','9840970962','9840970963','9840971001','9840971022','9840971582','9840971702','9840971986','9840972099','9840972164','9840972378','9840972702','9840972878','9840973229','9840973377','9840973668','9840974587','9840974712','9840975020','9840975448','9840975850','9840976305','9840976639','9840976934','9840977005','9840977041','9840977139','9840977153','9840977222','9840977405','9840977888','9840977939','9840978062','9840978422','9840978569','9840978600','9840979099','9840979448','9840979850','9840979896','9840979943','9840980145','9840980856','9840981224','9840981267','9840981415','9840982030','9840982103','9840982225','9840982634','9840982795','9840983097','9840983263','9840983468','9840983475','9840983798','9840984493','9840984824','9840985149','9840985189','9840985487','9840985538','9840985602','9840985729','9840986196','9840986422','9840986465','9840986503','9840986594','9840986732','9840986806','9840986984','9840987006','9840987074','9840987538','9840987824','9840987841','9840988061','9840988131','9840988428','9840988598','9840989284','9840989546','9840990024','9840990489','9840990533','9840990572','9840990777','9840990802','9840990879','9840990942','9840991060','9840991574','9840991578','9840991796','9840991873','9840992224','9840992250','9840992312','9840992375','9840992453','9840992804','9840993299','9840993439','9840993447','9840993696','9840994054','9840994249','9840994445','9840994667','9840994721','9840995254','9840995677','9840995938','9840996005','9840996078','9840996163','9840996196','9840996626','9840996648','9840996703','9840996727','9840996808','9840996908','9840997040','9840997091','9840997181','9840997202','9840997234','9840997300','9840997457','9840997553','9840997653','9840997903','9840997954','9840998708','9840998725','9840998744','9840998949','9840998969','9840999045','9840999052','9840999556','9840999779','9841001173','9841001342','9841001482','9841001551','9841001737','9841001917','9841001981','9841001992','9841002017','9841002246','9841002832','9841002870','9841002877','9841002921','9841002950','9841003028','9841003176','9841003210','9841003243','9841003276','9841003388','9841004110','9841004235','9841004240','9841004421','9841004595','9841004678','9841005161','9841005183','9841005197','9841005225','9841005483','9841005541','9841005559','9841005799','9841005890','9841006121','9841006481','9841006767','9841007533','9841007799','9841008429','9841008598','9841008603','9841008621','9841008723','9841008750','9841008800','9841008803','9841009134','9841009363','9841009809','9841009888','9841010186','9841010377','9841010398','9841010508','9841010821','9841010933','9841010967','9841010979','9841010983','9841011121','9841011156','9841011205','9841012056','9841012097','9841012434','9841012463','9841012515','9841012612','9841012857','9841012991','9841013191','9841013233','9841013361','9841013659','9841013686','9841013721','9841014321','9841014804','9841014839','9841014842','9841015576','9841015791','9841016123','9841016757','9841017273','9841017775','9841018002','9841018584','9841019032','9841019520','9841019746','9841019765','9841019935','9841020636','9841020757','9841020838','9841021450','9841021662','9841021698','9841021736','9841022258','9841022716','9841023137','9841023275','9841023434','9841023451','9841023632','9841023901','9841024210','9841024377','9841024407','9841024433','9841024467','9841025394','9841025623','9841026030','9841026117','9841026198','9841026294','9841026363','9841026415','9841026496','9841026577','9841026850','9841027171','9841027735','9841028006','9841028008','9841028178','9841028294','9841028634','9841028893','9841029132','9841029558','9841029924','9841029944','9841030100','9841030270','9841030331','9841030510','9841030520','9841030772','9841030855','9841031037','9841031060','9841031267','9841031300','9841031552','9841032020','9841032278','9841032405','9841032530','9841032662','9841032693','9841032762','9841032826','9841032874','9841032928','9841033129','9841033403','9841033412','9841033581','9841033774','9841033798','9841033846','9841033950','9841034322','9841034488','9841034547','9841035123','9841035456','9841035636','9841035640','9841035656','9841035990','9841036068','9841036169','9841036172','9841036260','9841036312','9841036536','9841036778','9841036925','9841037019','9841037061','9841037892','9841038180','9841038378','9841038859','9841039377','9841039701','9841040066','9841040440','9841040452','9841040773','9841040810','9841040969','9841041011','9841041087','9841041184','9841041514','9841041666','9841041889','9841041961','9841042059','9841042279','9841042592','9841043656','9841044034','9841044044','9841044663','9841044683','9841044688','9841044697','9841044764','9841045220','9841045284','9841045286','9841045428','9841046009','9841046016','9841046290','9841046466','9841046678','9841049100','9841049125','9841050043','9841050290','9841050738','9841050750','9841051144','9841051332','9841051968','9841052019','9841052093','9841052222','9841052732','9841053010','9841053137','9841053543','9841053654','9841053924','9841054040','9841054492','9841054550','9841055649','9841055671','9841055974','9841056023','9841056229','9841056406','9841056428','9841057394','9841057523','9841057542','9841057755','9841057962','9841058336','9841058579','9841058618','9841058654','9841058679','9841058861','9841059132','9841059347','9841059811','9841059879','9841060294','9841060805','9841060894','9841062109','9841062174','9841062526','9841062632','9841062658','9841062822','9841063691','9841064376','9841064993','9841065108','9841065135','9841065515','9841066324','9841066818','9841066967','9841067904','9841068437','9841068815','9841068820','9841068832','9841069166','9841069220','9841069337','9841069970','9841070005','9841070173','9841070178','9841070347','9841070350','9841070592','9841070702','9841070803','9841070956','9841070996','9841071104','9841071180','9841071204','9841071303','9841071377','9841071509','9841071561','9841072326','9841072406','9841073331','9841073413','9841073530','9841073690','9841073812','9841073934','9841074007','9841074020','9841074149','9841074276','9841074363','9841074673','9841074754','9841074927','9841075022','9841075169','9841075321','9841075330','9841075678','9841076975','9841077003','9841077230','9841077272','9841077273','9841077300','9841077547','9841077802','9841078307','9841078324','9841078783','9841078793','9841079005','9841079090','9841079156','9841079505','9841079793','9841080060','9841080491','9841080588','9841080988','9841081095','9841081216','9841081270','9841081741','9841081862','9841081872','9841081888','9841082305','9841082413','9841082457','9841083111','9841083372','9841083651','9841084083','9841085299','9841085422','9841085506','9841086361','9841086786','9841087005','9841087624','9841087973','9841088027','9841088476','9841088598','9841088664','9841088781','9841089247','9841089346','9841090040','9841090916','9841091390','9841092000','9841093343','9841093839','9841094493','9841094543','9841094739','9841095560','9841095595','9841096288','9841097257','9841097868','9841097993','9841098423','9841098514','9841098663','9841099492','9841099788','9841099959','9841101101','9841101441','9841101818','9841101983','9841102123','9841102355','9841103316','9841103611','9841103813','9841103890','9841104255','9841104444','9841104523','9841104842','9841105887','9841106169','9841106399','9841106677','9841107418','9841107593','9841108312','9841108958','9841108973','9841109738','9841110200','9841110467','9841110560','9841110581','9841111075','9841111434','9841111782','9841112100','9841112143','9841112229','9841112238','9841112364','9841112803','9841113276','9841114228','9841114639','9841114823','9841114860','9841115062','9841115120','9841115504','9841115574','9841117219','9841117383','9841117516','9841117625','9841117688','9841117857','9841118852','9841119054','9841119185','9841119790','9841119836','9841119895','9841120096','9841120230','9841120412','9841121222','9841121642','9841121665','9841122228','9841122454','9841122504','9841122525','9841123379','9841123416','9841123750','9841123845','9841123878','9841123892','9841124231','9841124340','9841124354','9841124718','9841124853','9841125268','9841125350','9841125501','9841125755','9841125944','9841126731','9841126774','9841126830','9841127224','9841127362','9841128084','9841128175','9841128515','9841128671','9841129713','9841129720','9841130295','9841130367','9841130463','9841130963','9841131682','9841132678','9841132771','9841133055','9841133139','9841133296','9841133472','9841133923','9841133933','9841133990','9841134391','9841134483','9841134579','9841135007','9841135363','9841135364','9841135501','9841136388','9841136405','9841136630','9841136744','9841137148','9841137273','9841137343','9841137382','9841137538','9841137618','9841137700','9841138015','9841138084','9841139010','9841139523','9841140289','9841140498','9841141178','9841141238','9841141677','9841141881','9841142439','9841142464','9841144776','9841144900','9841145227','9841145299','9841146150','9841146449','9841146922','9841147200','9841147628','9841147762','9841148333','9841148484','9841148936','9841149000','9841149008','9841149484','9841149619','9841149722','9841150146','9841150665','9841151272','9841151441','9841152195','9841152211','9841152986','9841153190','9841154195','9841154465','9841154924','9841155209','9841155922','9841156054','9841156432','9841157487','9841157865','9841158163','9841158175','9841158653','9841158889','9841158966','9841159009','9841159893','9841160360','9841160745','9841161159','9841161682','9841162689','9841162727','9841163111','9841163227','9841163333','9841163502','9841163554','9841164929','9841166052','9841166151','9841166299','9841166452','9841166610','9841166797','9841167117','9841167147','9841167570','9841167723','9841167894','9841168016','9841168301','9841168409','9841168481','9841168771','9841169060','9841169140','9841170165','9841170248','9841170375','9841171816','9841172099','9841172530','9841173603','9841173780','9841174386','9841174451','9841175256','9841175399','9841175569','9841177551','9841177827','9841178714','9841179343','9841180401','9841180602','9841180714','9841181558','9841181775','9841182202','9841182818','9841184048','9841184233','9841184564','9841184921','9841185009','9841185151','9841185474','9841186060','9841186411','9841186843','9841187454','9841187705','9841188190','9841188369','9841188432','9841188682','9841189014','9841189752','9841189811','9841189999','9841190135','9841190579','9841190587','9841190961','9841191156','9841191670','9841192114','9841193227','9841193393','9841193828','9841194127','9841194660','9841196960','9841197019','9841198327','9841198478','9841199203','9841199305','9841199994','9841200138','9841200226','9841201345','9841201930','9841201984','9841202267','9841202775','9841204120','9841205454','9841205456','9841205819','9841206062','9841206644','9841206891','9841207581','9841207686','9841207697','9841208063','9841208630','9841208719','9841209331','9841209360','9841210845','9841211198','9841211381','9841211498','9841211530','9841211609','9841212382','9841212751','9841213012','9841213040','9841213210','9841213526','9841213724','9841214440','9841214525','9841214567','9841214678','9841214799','9841215300','9841215312','9841215368','9841215925','9841215937','9841216086','9841216503','9841216628','9841217749','9841218232','9841218241','9841218273','9841218660','9841218684','9841218784','9841219521','9841219894','9841220613','9841221636','9841221901','9841222176','9841222385','9841222630','9841222721','9841222785','9841222794','9841223110','9841223430','9841223552','9841223833','9841224091','9841224584','9841225515','9841225539','9841226029','9841226137','9841226328','9841226550','9841227036','9841227214','9841227857','9841228085','9841228117','9841229202','9841229873','9841230255','9841230332','9841231343','9841231587','9841231632','9841232256','9841232300','9841233120','9841233230','9841233313','9841233435','9841233534','9841233535','9841233564','9841233794','9841233966','9841234035','9841234517','9841234931','9841234950','9841234977','9841235078','9841235370','9841235511','9841235640','9841235749','9841235781','9841235975','9841236277','9841236769','9841237668','9841237964','9841238714','9841239014','9841239828','9841240194','9841240438','9841240499','9841240717','9841240823','9841241372','9841241480','9841241693','9841241960','9841242123','9841243243','9841243346','9841243616','9841243699','9841244288','9841244350','9841244479','9841244920','9841245183','9841245373','9841245434','9841245723','9841245833','9841246111','9841246362','9841246368','9841246603','9841247112','9841247327','9841248259','9841248780','9841248828','9841249496','9841249618','9841249985','9841250197','9841250339','9841250400','9841250639','9841250797','9841250836','9841251920','9841252025','9841252523','9841252703','9841252797','9841252913','9841253378','9841254557','9841254716','9841254900','9841255205','9841255291','9841255750','9841256409','9841257240','9841257872','9841257883','9841258155','9841258336','9841258567','9841258933','9841259345','9841259529','9841259552','9841260109','9841260114','9841260230','9841260690','9841260767','9841261083','9841261093','9841261543','9841261811','9841262342','9841262624','9841263131','9841264318','9841264614','9841264619','9841264623','9841265212','9841265252','9841265425','9841266007','9841266048','9841266081','9841266082','9841266240','9841266340','9841266456','9841266534','9841266625','9841266674','9841266996','9841267829','9841267979','9841268326','9841268787','9841269293','9841269986','9841270523','9841270627','9841270656','9841270765','9841270829','9841270873','9841270942','9841271591','9841272036','9841272166','9841272429','9841272689','9841273066','9841274002','9841274401','9841274626','9841274743','9841275574','9841275719','9841276086','9841276124','9841277329','9841277346','9841277831','9841277994','9841278060','9841278378','9841278561','9841279058','9841279323','9841279339','9841279631','9841279644','9841279817','9841280198','9841280480','9841280640','9841280767','9841280874','9841281073','9841281205','9841281294','9841281581','9841281693','9841281697','9841281833','9841281837','9841281838','9841282025','9841282189','9841282378','9841282812','9841283212','9841283224','9841283464','9841285544','9841285802','9841286402','9841286465','9841287371','9841287435','9841287933','9841288000','9841288443','9841288505','9841288715','9841288885','9841289525','9841289570','9841289591','9841290506','9841290615','9841290632','9841290771','9841290996','9841291210','9841291671','9841291677','9841291786','9841291876','9841291972','9841292659','9841292935','9841293141','9841293311','9841293395','9841293494','9841293531','9841293578','9841293737','9841294498','9841294910','9841295970','9841296021','9841296447','9841296657','9841297588','9841297995','9841298090','9841298989','9841299875','9841300142','9841300473','9841300565','9841300746','9841301424','9841301514','9841302165','9841302416','9841302545','9841302901','9841303314','9841303529','9841303650','9841303690','9841304315','9841304446','9841304495','9841305208','9841305267','9841305688','9841305772','9841306000','9841306132','9841306497','9841306777','9841307193','9841307426','9841308210','9841308572','9841308726','9841309480','9841309956','9841310149','9841310170','9841310891','9841311814','9841311865','9841312029','9841312119','9841312268','9841312388','9841312611','9841312626','9841312802','9841313002','9841313177','9841313375','9841313397','9841313585','9841314184','9841315051','9841315200','9841315224','9841315235','9841315553','9841315556','9841316093','9841316524','9841317114','9841317617','9841317675','9841318173','9841318644','9841318785','9841318816','9841319174','9841319319','9841319345','9841319999','9841320037','9841320100','9841320316','9841320351','9841320966','9841321213','9841321240','9841321256','9841321413','9841321684','9841322017','9841322281','9841322378','9841322911','9841323032','9841323202','9841323245','9841323532','9841323553','9841323678','9841323911','9841324181','9841324899','9841325036','9841325731','9841325779','9841326247','9841326588','9841326649','9841327229','9841327409','9841327581','9841327643','9841328035','9841328280','9841328895','9841328953','9841329049','9841329587','9841329934','9841329937','9841330192','9841330553','9841331212','9841331643','9841331755','9841332010','9841332260','9841332373','9841332485','9841333055','9841333418','9841333541','9841333717','9841333788','9841333814','9841333883','9841335020','9841335047','9841335155','9841335218','9841335353','9841335808','9841336054','9841336060','9841336609','9841336616','9841337003','9841337089','9841337757','9841339710','9841340112','9841340829','9841341344','9841341364','9841341812','9841342115','9841342293','9841342896','9841342899','9841343232','9841343553','9841343674','9841345211','9841345849','9841346111','9841346897','9841347437','9841348828','9841349461','9841349500','9841349510','9841349639','9841349892','9841350864','9841351327','9841351355','9841351403','9841353128','9841353572','9841353853','9841353950','9841354014','9841354277','9841354598','9841354833','9841354908','9841355050','9841355543','9841355559','9841355563','9841355573','9841355646','9841355692','9841356268','9841356458','9841356776','9841357118','9841358102','9841358119','9841358254','9841358269','9841358318','9841358874','9841359179','9841359193','9841359429','9841359440','9841359919','9841359933','9841360344','9841361521','9841361665','9841362690','9841363583','9841363894','9841364066','9841364458','9841364700','9841365245','9841365804','9841366114','9841366326','9841366466','9841366563','9841366610','9841366691','9841367232','9841367292','9841367333','9841367676','9841368164','9841368305','9841369298','9841369373','9841370544','9841370848','9841371109','9841371868','9841372174','9841372250','9841372294','9841372639','9841373289','9841373668','9841373708','9841373787','9841373800','9841374773','9841375175','9841375434','9841375756','9841375991','9841376881','9841377131','9841377270','9841377577','9841377753','9841377821','9841378463','9841378715','9841378862','9841379070','9841380025','9841380108','9841380344','9841381017','9841381022','9841381520','9841382157','9841383658','9841383898','9841384333','9841384354','9841384413','9841384476','9841384799','9841384805','9841385334','9841386304','9841386319','9841386596','9841386801','9841387106','9841387304','9841387347','9841387939','9841388048','9841388199','9841388238','9841388650','9841388702','9841390253','9841390277','9841390380','9841390593','9841391116','9841391323','9841391561','9841391640','9841391722','9841392257','9841392433','9841392558','9841393380','9841394369','9841394842','9841395139','9841395323','9841395599','9841395875','9841395876','9841396639','9841396936','9841397570','9841397665','9841398239','9841398291','9841398805','9841398899','9841398960','9841399137','9841399659','9841399669','9841399834','9841400178','9841400185','9841400647','9841400959','9841401232','9841401611','9841401645','9841401725','9841401787','9841401791','9841401829','9841402165','9841402177','9841402401','9841402750','9841402973','9841403689','9841403923','9841404014','9841404310','9841404326','9841404466','9841404494','9841404503','9841404549','9841404875','9841404978','9841404992','9841404993','9841405531','9841405803','9841405842','9841405880','9841406030','9841407035','9841407220','9841407332','9841407379','9841407841','9841407879','9841408060','9841408184','9841408281','9841408539','9841408691','9841408716','9841408839','9841408867','9841409559','9841409874','9841409922','9841410079','9841410107','9841410246','9841410424','9841411100','9841411216','9841411288','9841411585','9841411788','9841412022','9841412248','9841412360','9841412405','9841412455','9841412640','9841412807','9841412829','9841412842','9841412883','9841414000','9841414032','9841414258','9841414336','9841414626','9841414687','9841415244','9841415386','9841415708','9841416095','9841416111','9841417117','9841417138','9841417406','9841417411','9841417953','9841418519','9841418664','9841418700','9841419446','9841419472','9841419774','9841420025','9841420046','9841420332','9841420530','9841420779','9841421028','9841421073','9841421114','9841421335','9841421897','9841422049','9841422070','9841422840','9841422961','9841423665','9841423711','9841424063','9841424684','9841424785','9841424861','9841425566','9841425585','9841425588','9841425934','9841426141','9841427117','9841427553','9841427770','9841428035','9841428401','9841428800','9841429537','9841429657','9841429687','9841429988','9841430441','9841431231','9841431281','9841431345','9841431445','9841431470','9841431607','9841431802','9841431882','9841432008','9841432326','9841432348','9841432538','9841433249','9841433305','9841433309','9841433442','9841433701','9841433825','9841434117','9841434440','9841434861','9841434956','9841435309','9841435458','9841436098','9841436303','9841436494','9841436561','9841436690','9841437066','9841437071','9841437094','9841437407','9841437908','9841438429','9841439077','9841439139','9841439379','9841439527','9841439877','9841440025','9841440545','9841440595','9841441149','9841441444','9841441466','9841442011','9841442298','9841442382','9841442402','9841442544','9841442826','9841442881','9841443039','9841443151','9841443457','9841444330','9841444337','9841444355','9841444425','9841444430','9841444515','9841444603','9841444637','9841445507','9841445520','9841445656','9841445803','9841445835','9841446205','9841446684','9841446777','9841446837','9841446869','9841446887','9841446940','9841447505','9841448155','9841448225','9841449000','9841449181','9841449687','9841451170','9841451186','9841451333','9841451733','9841452624','9841452733','9841452929','9841453885','9841454021','9841454281','9841454284','9841455135','9841455423','9841455441','9841455477','9841455598','9841455611','9841456255','9841456312','9841456323','9841456545','9841456729','9841456730','9841457883','9841457895','9841458300','9841459013','9841459662','9841459673','9841460653','9841460939','9841461324','9841461935','9841462277','9841463218','9841463349','9841464264','9841466430','9841466653','9841467339','9841469240','9841470032','9841470298','9841471040','9841471734','9841472785','9841472948','9841473736','9841473842','9841473899','9841474138','9841474888','9841475429','9841475685','9841475835','9841475967','9841476108','9841477622','9841477737','9841478579','9841478668','9841479150','9841479531','9841479734','9841479812','9841479925','9841481592','9841482050','9841482108','9841482182','9841482482','9841483577','9841483738','9841485432','9841485639','9841485644','9841486393','9841486808','9841487190','9841487232','9841487289','9841487532','9841488258','9841488774','9841488849','9841488987','9841489779','9841490679','9841490934','9841491677','9841491751','9841491786','9841491855','9841492311','9841492325','9841493144','9841493428','9841493791','9841493950','9841494387','9841494490','9841494569','9841495000','9841495243','9841495947','9841496135','9841496473','9841496764','9841498085','9841498776','9841499450','9841499676','9841499816','9841499992','9841503129','9841503292','9841503500','9841503814','9841504265','9841504314','9841504397','9841504445','9841504850','9841505814','9841507220','9841507399','9841507670','9841508047','9841508301','9841509040','9841509118','9841509284','9841510113','9841510451','9841510575','9841510855','9841511040','9841511358','9841511735','9841511873','9841511984','9841512288','9841512825','9841512892','9841513125','9841513240','9841513331','9841513335','9841513734','9841514036','9841515187','9841515262','9841515310','9841515357','9841515480','9841515988','9841517770','9841518285','9841518819','9841519505','9841519611','9841520115','9841520494','9841520963','9841521111','9841521323','9841521478','9841521680','9841521775','9841521926','9841522025','9841522050','9841522475','9841522485','9841522802','9841523223','9841523987','9841524341','9841525310','9841525856','9841525860','9841526289','9841526647','9841526917','9841527015','9841527063','9841527610','9841527673','9841528217','9841528343','9841528425','9841529368','9841529412','9841529465','9841529797','9841529916','9841529922','9841529965','9841530023','9841531514','9841533140','9841533205','9841533328','9841533544','9841533590','9841534702','9841535451','9841535529','9841535690','9841535751','9841536538','9841536794','9841537802','9841538001','9841538054','9841538274','9841538414','9841539327','9841540022','9841540025','9841541542','9841541588','9841541613','9841541700','9841541797','9841541916','9841542940','9841542993','9841543056','9841543298','9841543720','9841543993','9841544155','9841544416','9841544545','9841544793','9841544888','9841544974','9841544981','9841546466','9841546837','9841547110','9841547384','9841548092','9841548099','9841548420','9841548596','9841549028','9841549393','9841549452','9841549511','9841550052','9841550323','9841550355','9841551123','9841551414','9841551874','9841552372','9841552382','9841552484','9841552515','9841553283','9841554369','9841554814','9841554922','9841555115','9841555226','9841555263','9841555332','9841555777','9841555862','9841556020','9841556443','9841556887','9841556948','9841557107','9841557724','9841557840','9841558032','9841558422','9841558586','9841559221','9841559338','9841559376','9841559580','9841559775','9841560330','9841561146','9841561162','9841561196','9841561245','9841561333','9841561366','9841561419','9841561444','9841563024','9841564601','9841565668','9841565714','9841565760','9841566007','9841566096','9841566115','9841566488','9841566687','9841566745','9841567001','9841567791','9841568143','9841568324','9841568690','9841568799','9841568894','9841570468','9841571484','9841571574','9841571715','9841572176','9841572264','9841572733','9841573111','9841573166','9841573599','9841573740','9841574536','9841575574','9841575656','9841575725','9841576307','9841576346','9841576516','9841576518','9841576770','9841577577','9841578121','9841578425','9841579834','9841580288','9841581101','9841581184','9841581435','9841582121','9841582417','9841582675','9841582800','9841583039','9841583554','9841583574','9841583807','9841584062','9841584292','9841584651','9841585087','9841585101','9841585170','9841585552','9841585888','9841586072','9841586795','9841586929','9841587674','9841588299','9841589487','9841589750','9841590110','9841590508','9841590812','9841591000','9841591190','9841591558','9841591638','9841591904','9841592488','9841592499','9841593022','9841593203','9841593351','9841593481','9841593650','9841593699','9841593949','9841594310','9841594772','9841594939','9841595597','9841596322','9841596339','9841596663','9841596670','9841598338','9841598560','9841598986','9841599130','9841600352','9841600631','9841600644','9841600881','9841601188','9841601503','9841601846','9841601951','9841602876','9841603312','9841604440','9841605058','9841605115','9841605345','9841605406','9841605719','9841605809','9841606027','9841606124','9841606690','9841606835','9841606989','9841607243','9841607364','9841607869','9841608416','9841608603','9841609500','9841609837','9841610038','9841610333','9841610423','9841610612','9841610768','9841611185','9841611740','9841612485','9841612929','9841613067','9841613171','9841613306','9841613442','9841613683','9841613714','9841613850','9841613929','9841614127','9841614406','9841614489','9841614556','9841615750','9841615897','9841616011','9841616164','9841616168','9841616217','9841616470','9841616514','9841616610','9841616964','9841617968','9841617979','9841618048','9841618100','9841618332','9841619544','9841619939','9841620000','9841620490','9841620588','9841620759','9841621087','9841621142','9841621608','9841621746','9841621830','9841622199','9841622314','9841622574','9841622680','9841622888','9841622968','9841622995','9841623460','9841623538','9841623843','9841624010','9841624380','9841624500','9841624828','9841625245','9841625879','9841625972','9841626836','9841626907','9841628021','9841628058','9841628368','9841628762','9841629252','9841629323','9841629403','9841629609','9841629901','9841630086','9841630779','9841631322','9841631603','9841631622','9841632170','9841632420','9841633176','9841633252','9841633272','9841633317','9841633324','9841633959','9841634060','9841634144','9841634406','9841634747','9841635453','9841635510','9841636105','9841636188','9841636327','9841637675','9841638045','9841638510','9841638876','9841639665','9841639877','9841639972','9841640210','9841640335','9841641179','9841641265','9841641460','9841641485','9841642022','9841642215','9841642506','9841642780','9841643250','9841643319','9841643654','9841643805','9841644220','9841644610','9841645909','9841646020','9841646079','9841646363','9841646656','9841647343','9841647429','9841648023','9841648234','9841648296','9841648365','9841648480','9841648586','9841648665','9841648759','9841649431','9841650965','9841651514','9841651568','9841651909','9841652622','9841652718','9841653315','9841653725','9841654203','9841654522','9841654931','9841655315','9841655367','9841655679','9841655942','9841656261','9841656354','9841656555','9841657778','9841658191','9841659767','9841660054','9841660123','9841660695','9841660991','9841661099','9841661112','9841661248','9841662121','9841662224','9841662431','9841662902','9841663319','9841663397','9841663553','9841663637','9841663658','9841663929','9841664244','9841664435','9841664895','9841665434','9841666247','9841666394','9841666491','9841667441','9841667733','9841668477','9841668484','9841668548','9841668708','9841668972','9841669391','9841669842','9841669961','9841669977','9841670052','9841670347','9841670472','9841670669','9841671516','9841672012','9841672032','9841672197','9841672255','9841672725','9841672741','9841672780','9841672969','9841673238','9841673550','9841673734','9841673972','9841674476','9841674477','9841674576','9841674622','9841675158','9841675345','9841676116','9841676321','9841676682','9841676723','9841676997','9841677122','9841677844','9841678006','9841679810','9841680480','9841680777','9841680995','9841682231','9841682659','9841682777','9841683066','9841683468','9841684108','9841684416','9841685105','9841685108','9841686817','9841686847','9841687472','9841687679','9841687918','9841688192','9841688263','9841688776','9841688824','9841688881','9841689786','9841690980','9841691296','9841691787','9841692082','9841692455','9841692631','9841695833','9841696563','9841696796','9841697005','9841697366','9841697502','9841697690','9841698280','9841698338','9841698586','9841699057','9841699136','9841699378','9841699647','9841700312','9841700585','9841700645','9841701051','9841701052','9841701088','9841701100','9841701380','9841701668','9841703078','9841703132','9841703959','9841703992','9841705458','9841706563','9841706727','9841706900','9841707378','9841707640','9841707893','9841708274','9841708310','9841709704','9841710250','9841710354','9841710459','9841710622','9841710683','9841711104','9841711194','9841711298','9841711381','9841711533','9841711823','9841712340','9841712343','9841712433','9841712727','9841713078','9841714485','9841714847','9841715066','9841716216','9841716769','9841716801','9841719556','9841719626','9841719778','9841719948','9841720113','9841720202','9841720300','9841720627','9841720783','9841720829','9841722664','9841723034','9841723323','9841723361','9841724043','9841724177','9841724178','9841724966','9841725425','9841725908','9841726044','9841726057','9841726125','9841726257','9841727047','9841727312','9841727784','9841728578','9841728759','9841728955','9841729342','9841729588','9841730058','9841730094','9841730326','9841731303','9841731913','9841733702','9841733775','9841734110','9841734775','9841735128','9841735705','9841736381','9841736663','9841736666','9841736814','9841736815','9841736860','9841737003','9841737077','9841737233','9841737498','9841737768','9841737875','9841737897','9841739387','9841739416','9841739599','9841740377','9841740450','9841740655','9841741227','9841741317','9841742825','9841743268','9841743482','9841744654','9841744719','9841744731','9841744904','9841745301','9841745598','9841746296','9841746347','9841746903','9841746980','9841747021','9841747166','9841748311','9841748503','9841748585','9841748968','9841750710','9841750969','9841751093','9841751226','9841751313','9841751792','9841751839','9841752102','9841752126','9841752176','9841752194','9841752228','9841753567','9841753849','9841754400','9841754696','9841755645','9841755884','9841755937','9841756036','9841756467','9841756825','9841757212','9841757332','9841757633','9841757819','9841758115','9841759076','9841759162','9841759469','9841760029','9841760228','9841760504','9841761104','9841761710','9841761756','9841762979','9841763136','9841763167','9841763588','9841765242','9841765430','9841765663','9841765678','9841765924','9841766445','9841766586','9841766618','9841766664','9841766669','9841766768','9841766930','9841767795','9841768062','9841768302','9841768497','9841768725','9841768775','9841769575','9841769622','9841769649','9841770010','9841770345','9841770406','9841770956','9841771240','9841773383','9841773550','9841773643','9841774554','9841775551','9841775659','9841775988','9841776110','9841776553','9841777225','9841777756','9841778079','9841778199','9841778272','9841778526','9841778842','9841778943','9841779779','9841780017','9841781475','9841782003','9841782149','9841783074','9841783865','9841784061','9841784253','9841784830','9841785093','9841785174','9841785857','9841787212','9841787445','9841788031','9841788187','9841788191','9841788231','9841788343','9841788825','9841789846','9841790526','9841791457','9841791533','9841792066','9841792369','9841792386','9841793060','9841793425','9841793760','9841794055','9841795060','9841795890','9841796385','9841797384','9841797668','9841798442','9841798510','9841798686','9841798733','9841798875','9841799029','9841799636','9841799902','9841800244','9841801564','9841802413','9841802460','9841802506','9841803421','9841803774','9841803903','9841804023','9841804317','9841804481','9841804597','9841804919','9841804975','9841806809','9841807087','9841807444','9841807956','9841808265','9841808466','9841809512','9841809940','9841811013','9841811161','9841811842','9841812220','9841812443','9841812925','9841813331','9841813526','9841813616','9841814286','9841814575','9841814588','9841815224','9841815228','9841815534','9841815646','9841816725','9841817047','9841817440','9841817712','9841817744','9841817883','9841818018','9841818150','9841818179','9841818816','9841819006','9841819311','9841819585','9841819644','9841819796','9841820129','9841820240','9841820301','9841820620','9841820655','9841821527','9841821909','9841822063','9841822435','9841822448','9841823305','9841823876','9841824109','9841824589','9841824953','9841825117','9841825123','9841825125','9841825455','9841826027','9841826936','9841826972','9841827042','9841827984','9841828167','9841828350','9841829129','9841829641','9841829790','9841829886','9841830045','9841830710','9841830805','9841831652','9841831810','9841834518','9841834876','9841835730','9841836305','9841836627','9841838342','9841838524','9841838601','9841839019','9841839107','9841839696','9841839966','9841841085','9841843356','9841844404','9841844423','9841845235','9841845375','9841845411','9841845587','9841846986','9841847084','9841849492','9841849710','9841849770','9841850044','9841850809','9841851841','9841853312','9841854691','9841855138','9841855203','9841855502','9841857007','9841858885','9841859138','9841859857','9841861526','9841861956','9841863587','9841863993','9841864150','9841864844','9841865346','9841865371','9841865584','9841865627','9841868680','9841868915','9841869417','9841870458','9841871369','9841873108','9841874885','9841874939','9841875351','9841875430','9841876727','9841877014','9841877339','9841877529','9841878237','9841878375','9841878738','9841879653','9841879731','9841879799','9841880197','9841880967','9841881265','9841881691','9841882734','9841884067','9841884143','9841884194','9841884766','9841885129','9841885967','9841886275','9841887168','9841887355','9841888315','9841888905','9841890098','9841890474','9841891013','9841891668','9841891743','9841891808','9841892329','9841896121','9841896540','9841897141','9841897380','9841897837','9841898411','9841898498','9841899307','9841901968','9841902034','9841903320','9841903360','9841904073','9841904188','9841905054','9841905956','9841906112','9841906574','9841907554','9841908577','9841908919','9841909121','9841909188','9841909232','9841909357','9841909573','9841909955','9841909999','9841910725','9841910849','9841910901','9841910975','9841911442','9841911496','9841912016','9841912151','9841913530','9841913640','9841913700','9841913772','9841914055','9841915257','9841915541','9841916354','9841916800','9841917779','9841918414','9841918772','9841918913','9841920513','9841924225','9841925511','9841925846','9841926814','9841927057','9841927358','9841928641','9841928989','9841929190','9841929498','9841929774','9841930724','9841931199','9841931777','9841932610','9841933311','9841933623','9841933861','9841934268','9841935359','9841935688','9841937312','9841937572','9841937764','9841938666','9841938685','9841938815','9841939332','9841940311','9841941493','9841941841','9841942042','9841942645','9841943433','9841944130','9841944222','9841946218','9841947822','9841948281','9841948887','9841950752','9841951420','9841951465','9841951999','9841952153','9841952207','9841952366','9841953299','9841954838','9841955030','9841955552','9841955836','9841955986','9841955999','9841956344','9841956990','9841957442','9841959414','9841960099','9841960606','9841961392','9841961424','9841961895','9841962080','9841962585','9841962981','9841963083','9841963284','9841963377','9841963801','9841964100','9841964723','9841964777','9841965530','9841965566','9841965626','9841965652','9841968405','9841968582','9841968632','9841968886','9841969383','9841969809','9841969962','9841970580','9841970655','9841970944','9841971440','9841971538','9841971613','9841971811','9841972006','9841972040','9841972674','9841973254','9841973464','9841973468','9841973788','9841974471','9841975004','9841975711','9841976306','9841978189','9841978911','9841979297','9841979447','9841979749','9841980212','9841980694','9841980949','9841981009','9841981114','9841981184','9841981515','9841981874','9841982111','9841983097','9841983349','9841983789','9841983893','9841983896','9841984013','9841984126','9841984155','9841984313','9841984455','9841984940','9841985929','9841986161','9841986541','9841986874','9841988050','9841988111','9841988156','9841988182','9841989438','9841989538','9841989563','9841990983','9841991072','9841992233','9841994377','9841994599','9841994978','9841995006','9841995331','9841995363','9841995756','9841996014','9841996253','9841996693','9841996810','9841998687','9841999449','9841999969','9842001980','9842002079','9842002266','9842004943','9842005480','9842006713','9842007609','9842007722','9842007842','9842008383','9842008884','9842010194','9842012001','9842012590','9842013372','9842013737','9842015208','9842016224','9842018470','9842020372','9842021076','9842022077','9842022539','9842024326','9842026354','9842028432','9842031897','9842032267','9842032732','9842033098','9842033894','9842033996','9842034340','9842036453','9842037376','9842040220','9842043929','9842044567','9842044849','9842050141','9842050941','9842051182','9842051474','9842052113','9842053532','9842054926','9842055057','9842055548','9842057321','9842058551','9842058768','9842063406','9842064062','9842064109','9842064810','9842065856','9842070746','9842072775','9842073687','9842075559','9842077127','9842077709','9842079723','9842080575','9842080999','9842081312','9842081819','9842082683','9842082707','9842085518','9842085958','9842086260','9842087883','9842088000','9842088302','9842088557','9842090335','9842090422','9842092510','9842094443','9842094559','9842095152','9842095805','9842096428','9842099086','9842102242','9842103613','9842103676','9842104163','9842105642','9842107400','9842108020','9842108764','9842110384','9842111880','9842112338','9842113825','9842114178','9842114441','9842118518','9842119036','9842120025','9842121261','9842122778','9842122865','9842123197','9842124322','9842125585','9842127772','9842127788','9842128289','9842129428','9842130020','9842131391','9842132974','9842133247','9842134001','9842134994','9842136091','9842137149','9842137182','9842138263','9842139560','9842139939','9842139992','9842140056','9842140468','9842140870','9842142151','9842142727','9842143106','9842144367','9842144492','9842144855','9842145249','9842146521','9842147249','9842148527','9842148643','9842149408','9842149696','9842150046','9842150694','9842150695','9842152977','9842153376','9842153503','9842154485','9842157457','9842157658','9842157671','9842158080','9842158663','9842158760','9842158862','9842159421','9842159555','9842160030','9842161406','9842161715','9842161831','9842162642','9842163335','9842163874','9842164529','9842166133','9842167282','9842169512','9842171278','9842171330','9842171365','9842171571','9842174393','9842175251','9842176022','9842177953','9842181177','9842181212','9842181421','9842181524','9842182415','9842182994','9842183381','9842183591','9842183811','9842186276','9842189000','9842189234','9842191437','9842191443','9842192884','9842194296','9842194574','9842196003','9842196525','9842201090','9842201100','9842201166','9842202019','9842202433','9842203001','9842204206','9842204463','9842204500','9842204976','9842205304','9842205511','9842205662','9842206000','9842207073','9842207079','9842207493','9842208383','9842209763','9842210837','9842211225','9842211393','9842212243','9842212371','9842212528','9842216151','9842216152','9842217517','9842217620','9842217803','9842218893','9842218898','9842219122','9842219952','9842220433','9842220898','9842221115','9842221763','9842222395','9842222678','9842223246','9842225853','9842225856','9842225990','9842226300','9842226658','9842227067','9842227700','9842228003','9842228576','9842229833','9842230226','9842230308','9842230737','9842231174','9842231285','9842232313','9842232536','9842232783','9842233355','9842234425','9842234689','9842235364','9842238256','9842240501','9842241523','9842241798','9842242261','9842242795','9842243209','9842243343','9842243389','9842243412','9842244067','9842244430','9842244882','9842244923','9842245018','9842245514','9842245666','9842246129','9842247007','9842247029','9842249203','9842249496','9842251517','9842252536','9842254534','9842255025','9842255544','9842255600','9842255668','9842256100','9842257222','9842259150','9842259898','9842261765','9842261797','9842262174','9842262526','9842262578','9842263023','9842263931','9842264760','9842265080','9842265150','9842265195','9842266222','9842266273','9842266629','9842266992','9842267634','9842270162','9842270373','9842270500','9842271155','9842271212','9842271561','9842271793','9842272263','9842273046','9842273090','9842273357','9842273887','9842276421','9842276554','9842276788','9842277389','9842277767','9842277995','9842279868','9842279958','9842280906','9842281825','9842282074','9842282499','9842282880','9842283566','9842284432','9842286153','9842286673','9842287763','9842287870','9842289247','9842289877','9842290107','9842290902','9842290919','9842291000','9842291989','9842292056','9842292543','9842292666','9842292775','9842295644','9842296813','9842298509','9842299187','9842299497','9842299647','9842299891','9842301221','9842301235','9842301464','9842301487','9842301495','9842301709','9842301713','9842301803','9842304124','9842304717','9842304879','9842305412','9842306745','9842306810','9842310026','9842310050','9842310052','9842310638','9842311163','9842311433','9842312137','9842313715','9842315368','9842316666','9842317079','9842317152','9842317188','9842317221','9842317730','9842319394','9842321454','9842322692','9842324368','9842326516','9842329602','9842330693','9842330807','9842331882','9842332489','9842332833','9842333232','9842333362','9842335116','9842335511','9842336765','9842336962','9842339392','9842340615','9842340640','9842340912','9842341004','9842341412','9842341472','9842343524','9842344110','9842344255','9842344990','9842345442','9842345651','9842347475','9842349332','9842350606','9842351247','9842352123','9842353312','9842354441','9842355263','9842355501','9842355834','9842357722','9842358000','9842358492','9842359335','9842362453','9842363523','9842364503','9842365001','9842365530','9842366667','9842367193','9842367891','9842368548','9842368714','9842371416','9842373318','9842373340','9842374074','9842374169','9842375060','9842375231','9842376193','9842376653','9842377796','9842380370','9842380921','9842383689','9842385918','9842388088','9842392060','9842393455','9842396285','9842399900','9842403478','9842403709','9842404170','9842405588','9842406238','9842407007','9842407008','9842407770','9842408019','9842408584','9842410179','9842410680','9842410813','9842411477','9842413273','9842413339','9842413663','9842413999','9842416026','9842416326','9842417100','9842419196','9842419491','9842421455','9842421969','9842422223','9842422499','9842423233','9842424382','9842424832','9842425205','9842425624','9842430000','9842430400','9842431461','9842431466','9842431612','9842433231','9842433869','9842434341','9842434472','9842435040','9842435069','9842435806','9842436507','9842437226','9842438000','9842440726','9842441096','9842441631','9842443222','9842444143','9842444899','9842448895','9842449027','9842450342','9842450519','9842450710','9842451567','9842451575','9842452340','9842452699','9842453052','9842454464','9842454506','9842455207','9842455396','9842457144','9842458035','9842458754','9842459465','9842460000','9842460343','9842461788','9842462255','9842462513','9842462993','9842463453','9842464466','9842465613','9842465815','9842467276','9842469222','9842469440','9842469789','9842474750','9842475491','9842477393','9842477588','9842478509','9842478966','9842480986','9842481394','9842482318','9842482364','9842482696','9842482705','9842482720','9842482740','9842483038','9842485405','9842487030','9842488593','9842488751','9842490975','9842493166','9842493881','9842494418','9842495786','9842496777','9842497460','9842498298','9842498829','9842499180','9842499292','9842499455','9842501133','9842503054','9842503063','9842506211','9842507236','9842507770','9842508135','9842509013','9842509952','9842510468','9842511478','9842512773','9842514242','9842515146','9842515672','9842517655','9842520008','9842520609','9842520926','9842521387','9842524050','9842524624','9842525148','9842525825','9842526299','9842526632','9842528722','9842529280','9842531134','9842533183','9842534455','9842537117','9842537340','9842540855','9842542513','9842543291','9842544225','9842544411','9842544955','9842550601','9842550699','9842551995','9842553005','9842556029','9842556380','9842557050','9842558940','9842559240','9842559539','9842559800','9842564349','9842565552','9842566244','9842567041','9842569531','9842571665','9842578511','9842579491','9842582886','9842587557','9842587584','9842588857','9842588949','9842590088','9842590673','9842592123','9842592429','9842594116','9842596060','9842598375','9842599308','9842601111','9842602058','9842609895','9842610557','9842617288','9842618084','9842618433','9842619173','9842620630','9842621215','9842622272','9842623217','9842625620','9842629209','9842629626','9842632291','9842632311','9842639680','9842642558','9842643676','9842645151','9842647622','9842647850','9842649277','9842649509','9842650421','9842650817','9842651016','9842653203','9842657135','9842657664','9842657666','9842661771','9842661960','9842662903','9842663229','9842664565','9842667887','9842668010','9842668713','9842670369','9842670710','9842673768','9842674082','9842677763','9842677817','9842680513','9842681656','9842684002','9842685779','9842686661','9842687702','9842688008','9842688835','9842693414','9842694293','9842696727','9842696925','9842697770','9842697900','9842701550','9842702135','9842710000','9842711005','9842711055','9842713680','9842714056','9842714065','9842714122','9842715556','9842715598','9842716260','9842716500','9842717027','9842717799','9842718101','9842719523','9842719769','9842722020','9842723001','9842723100','9842723803','9842725213','9842726185','9842726422','9842726693','9842726769','9842727668','9842728027','9842728289','9842728654','9842729390','9842729898','9842730786','9842731595','9842731989','9842732479','9842733047','9842733325','9842733418','9842733449','9842733609','9842735588','9842735757','9842736000','9842736032','9842737703','9842738342','9842738386','9842739990','9842740110','9842742006','9842743601','9842744264','9842744646','9842744923','9842745358','9842745579','9842746621','9842747980','9842748964','9842749125','9842750117','9842750163','9842750716','9842752156','9842752322','9842752680','9842752946','9842753028','9842754854','9842756330','9842756750','9842757102','9842759027','9842760065','9842761918','9842762316','9842762375','9842763535','9842764418','9842765945','9842767206','9842770342','9842771031','9842771555','9842772626','9842772892','9842774245','9842774756','9842776568','9842776633','9842777551','9842778277','9842779764','9842781031','9842781308','9842782787','9842782806','9842783143','9842784266','9842785705','9842786272','9842786540','9842787190','9842788067','9842788922','9842789129','9842790466','9842792020','9842792177','9842793038','9842793222','9842794687','9842795414','9842798108','9842799299','9842801044','9842801199','9842804373','9842809558','9842809789','9842809927','9842810790','9842811418','9842811555','9842812204','9842812593','9842813232','9842815870','9842820768','9842821319','9842822448','9842830796','9842832643','9842832774','9842834298','9842838238','9842838923','9842839339','9842840088','9842840708','9842841298','9842844297','9842853506','9842853797','9842854000','9842854070','9842855828','9842858502','9842859842','9842860377','9842863281','9842866000','9842867343','9842867938','9842867950','9842870605','9842871052','9842872919','9842876176','9842876267','9842877302','9842880829','9842880909','9842881733','9842885405','9842885523','9842886869','9842887493','9842892302','9842892797','9842896257','9842896279','9842896419','9842897742','9842901165','9842904398','9842905999','9842908154','9842910077','9842910141','9842913249','9842916181','9842919112','9842919549','9842919617','9842920055','9842921047','9842921818','9842923299','9842923689','9842925270','9842925776','9842926540','9842930506','9842931836','9842931892','9842932221','9842933035','9842933078','9842935789','9842936611','9842937559','9842938435','9842938538','9842943322','9842943687','9842943970','9842946307','9842947097','9842950078','9842950426','9842951234','9842951828','9842951936','9842952688','9842954242','9842955855','9842960263','9842961462','9842966662','9842966695','9842968525','9842970468','9842971690','9842973837','9842974696','9842975054','9842975376','9842977112','9842981020','9842981516','9842983023','9842983465','9842984720','9842985533','9842986262','9842986604','9842987102','9842987786','9842988566','9842988807','9842989198','9842989879','9842989911','9842993090','9842994000','9842994569','9842996540','9842996960','9843005241','9843005463','9843005578','9843006085','9843006092','9843006237','9843006315','9843006319','9843006322','9843006335','9843006339','9843006381','9843006465','9843006526','9843006840','9843006914','9843006924','9843006934','9843006951','9843007424','9843008397','9843008470','9843009528','9843009663','9843010328','9843010345','9843011213','9843011241','9843011880','9843012390','9843012462','9843013307','9843013550','9843013641','9843013930','9843014117','9843014195','9843014242','9843014358','9843014392','9843015145','9843015234','9843015951','9843016332','9843016632','9843016783','9843017026','9843017681','9843018465','9843019108','9843019477','9843020138','9843021712','9843023018','9843023209','9843023451','9843023878','9843024044','9843024063','9843026441','9843026567','9843026602','9843026834','9843026886','9843027270','9843027537','9843027704','9843027728','9843028790','9843029069','9843029648','9843030333','9843031127','9843031439','9843031669','9843033916','9843034802','9843035031','9843035072','9843035295','9843035368','9843037899','9843038200','9843038323','9843039025','9843039844','9843040515','9843040575','9843040781','9843040829','9843040898','9843042365','9843043938','9843044270','9843044417','9843044481','9843044691','9843044737','9843045356','9843047678','9843048867','9843050887','9843050946','9843051314','9843052244','9843052589','9843055082','9843055174','9843055509','9843056006','9843057454','9843057730','9843058567','9843058786','9843059358','9843059625','9843060055','9843061878','9843061907','9843062365','9843063636','9843063658','9843065053','9843065533','9843065779','9843066383','9843066499','9843068681','9843068827','9843070726','9843070926','9843073447','9843074334','9843075074','9843075805','9843076382','9843076415','9843077575','9843077774','9843078790','9843078957','9843080753','9843083054','9843085449','9843086460','9843086642','9843087226','9843088288','9843089526','9843090258','9843094904','9843095571','9843095954','9843096628','9843096960','9843098353','9843098512','9843098804','9843099040','9843099903','9843107774','9843111639','9843112125','9843112578','9843112607','9843114299','9843116363','9843116696','9843119112','9843120219','9843121596','9843122000','9843122746','9843122811','9843123680','9843124844','9843125170','9843126544','9843126931','9843128373','9843129523','9843129546','9843129697','9843129771','9843131168','9843131775','9843131791','9843131909','9843132317','9843133233','9843133568','9843133719','9843136063','9843137283','9843138838','9843139599','9843140480','9843141141','9843141168','9843142709','9843143767','9843144405','9843145679','9843145849','9843146307','9843147847','9843151081','9843151904','9843153173','9843153738','9843153932','9843155591','9843155777','9843156131','9843156776','9843157178','9843158058','9843158108','9843158161','9843158840','9843161117','9843163300','9843163592','9843165405','9843165420','9843165876','9843166061','9843167145','9843168852','9843169610','9843169852','9843170515','9843171155','9843171625','9843172088','9843172949','9843174055','9843174735','9843175615','9843175777','9843176342','9843176571','9843176601','9843177071','9843177133','9843177169','9843179237','9843180000','9843180446','9843180672','9843180971','9843182885','9843185350','9843185504','9843185627','9843187767','9843188946','9843193281','9843194411','9843195849','9843196061','9843197633','9843198320','9843198770','9843199597','9843199922','9843205283','9843206813','9843206932','9843207860','9843210369','9843211379','9843212414','9843213726','9843215536','9843219176','9843220774','9843221795','9843222144','9843222604','9843224733','9843226794','9843230031','9843231403','9843232131','9843232666','9843232923','9843233305','9843233544','9843234277','9843234606','9843236467','9843242886','9843243703','9843245570','9843246655','9843249140','9843249798','9843249921','9843250006','9843250094','9843251931','9843252089','9843252562','9843252801','9843253488','9843253505','9843254517','9843254527','9843254734','9843258475','9843259009','9843259149','9843259476','9843260618','9843262248','9843264663','9843268372','9843268585','9843270942','9843271028','9843271421','9843272154','9843273586','9843274819','9843275956','9843276690','9843278561','9843282402','9843284470','9843285849','9843288188','9843288799','9843291697','9843295954','9843296626','9843299789','9843305231','9843309352','9843310475','9843313436','9843313512','9843314343','9843314980','9843315615','9843316500','9843316777','9843317677','9843317943','9843320987','9843322097','9843322210','9843322668','9843322902','9843323877','9843325726','9843326035','9843327127','9843330692','9843330787','9843331186','9843331199','9843332285','9843333153','9843333267','9843333345','9843333598','9843333806','9843333950','9843334515','9843337742','9843341662','9843342831','9843344136','9843345461','9843346081','9843347781','9843347906','9843348356','9843349699','9843350356','9843351234','9843354787','9843354923','9843355363','9843355574','9843355877','9843356305','9843360230','9843361043','9843361610','9843366933','9843368389','9843368434','9843370411','9843370513','9843372022','9843372981','9843374488','9843374577','9843375030','9843375447','9843376027','9843376637','9843376884','9843377016','9843377120','9843378930','9843380333','9843380633','9843381020','9843383032','9843383549','9843383970','9843387097','9843388288','9843390804','9843390997','9843395080','9843396900','9843397313','9843397314','9843397834','9843398927','9843399226','9843399949','9843406590','9843407761','9843411989','9843413438','9843414253','9843416585','9843416946','9843417703','9843418668','9843422187','9843424567','9843425838','9843425973','9843426202','9843428500','9843429817','9843430099','9843430344','9843430940','9843432900','9843433605','9843434569','9843434726','9843434761','9843434966','9843435889','9843437849','9843438723','9843438870','9843439600','9843440022','9843440499','9843440616','9843440722','9843442195','9843445858','9843445877','9843450050','9843452535','9843454448','9843454689','9843454856','9843456641','9843458536','9843458608','9843461761','9843462389','9843464007','9843468081','9843468262','9843472526','9843473336','9843473737','9843474222','9843475000','9843475587','9843477722','9843479059','9843480535','9843482822','9843488565','9843489206','9843491022','9843491186','9843493299','9843496957','9843497798','9843498100','9843501350','9843502915','9843506009','9843506032','9843509455','9843511055','9843511323','9843515717','9843517430','9843517699','9843519018','9843519895','9843519946','9843520041','9843521581','9843522031','9843523708','9843524050','9843525627','9843528555','9843529717','9843530276','9843531088','9843531097','9843531433','9843535439','9843536094','9843536375','9843540749','9843542412','9843542425','9843544414','9843548000','9843549890','9843551048','9843553640','9843554183','9843555908','9843561470','9843562483','9843566686','9843567860','9843568380','9843569321','9843570926','9843571334','9843572870','9843575460','9843575535','9843575997','9843579499','9843579734','9843580170','9843580240','9843580677','9843580899','9843584886','9843586559','9843586866','9843588099','9843588799','9843591001','9843594476','9843597080','9843597585','9843599887','9843601367','9843602524','9843603717','9843605054','9843605729','9843607102','9843608080','9843609129','9843613865','9843614688','9843615011','9843615252','9843618766','9843621078','9843622393','9843626422','9843626458','9843628505','9843628873','9843630111','9843632793','9843633333','9843633428','9843633449','9843633834','9843639968','9843640559','9843641119','9843642458','9843642949','9843643533','9843644366','9843646004','9843646412','9843646567','9843648282','9843650055','9843651000','9843651787','9843654465','9843655123','9843655660','9843657801','9843659053','9843660097','9843661021','9843662350','9843662471','9843663341','9843663348','9843663349','9843666600','9843667317','9843668166','9843668868','9843672008','9843673650','9843674416','9843674777','9843675353','9843676885','9843677024','9843680070','9843680520','9843681666','9843682417','9843683290','9843693466','9843698171','9843698506','9843698646','9843699555','9843699866','9843700643','9843700749','9843700806','9843702020','9843702570','9843702679','9843703566','9843703757','9843703773','9843703912','9843704838','9843707355','9843708856','9843709922','9843710423','9843711073','9843711644','9843713068','9843713134','9843714362','9843714371','9843715006','9843716200','9843717035','9843722001','9843722405','9843723247','9843723769','9843726700','9843727270','9843727286','9843727487','9843727566','9843727993','9843729224','9843731187','9843731240','9843731572','9843732844','9843733052','9843735208','9843735439','9843736442','9843737698','9843738730','9843741247','9843743052','9843743434','9843743732','9843743767','9843743780','9843744356','9843744367','9843746114','9843749130','9843750303','9843750650','9843754580','9843758089','9843762006','9843762102','9843766806','9843766886','9843768297','9843770042','9843770603','9843771340','9843773455','9843774096','9843777264','9843777631','9843778076','9843779976','9843781561','9843781850','9843782870','9843787552','9843787789','9843790744','9843793674','9843796609','9843797778','9843799346','9843800450','9843801018','9843801925','9843803159','9843804415','9843805085','9843805676','9843808642','9843808870','9843809490','9843811201','9843813387','9843817527','9843818181','9843818358','9843820992','9843821888','9843822049','9843822316','9843825260','9843826306','9843826393','9843826826','9843828480','9843829393','9843831963','9843834632','9843836555','9843837303','9843837793','9843844797','9843848008','9843848291','9843849516','9843849712','9843851502','9843852001','9843852254','9843853046','9843855447','9843858583','9843860606','9843860789','9843861562','9843863433','9843866422','9843871587','9843871836','9843872329','9843875582','9843876654','9843880115','9843881100','9843882151','9843882822','9843885897','9843886000','9843887079','9843887639','9843888338','9843888778','9843898106','9843898426','9843907666','9843909722','9843911369','9843911434','9843913435','9843915660','9843917181','9843920870','9843922257','9843923455','9843923779','9843927770','9843929050','9843930005','9843931383','9843931696','9843932244','9843933737','9843934611','9843935434','9843935815','9843938015','9843939574','9843943379','9843945666','9843945911','9843947416','9843949259','9843952642','9843954456','9843956009','9843958240','9843963157','9843966712','9843966865','9843969710','9843973537','9843977782','9843979171','9843980577','9843981163','9843981389','9843983469','9843984040','9843984334','9843984336','9843984422','9843985604','9843988448','9843989089','9843990266','9843991133','9843991234','9843992566','9843992703','9843994703','9843994899','9843996775','9843999299','9843999989','9844011921','9844035792','9844058006','9844067120','9844099123','9844150915','9844320494','9844325057','9844403899','9844410967','9844445064','9844464579','9844503673','9844519949','9844577688','9844619472','9844627191','9844629213','9844630370','9844636846','9844638410','9844640459','9844708281','9844742348','9844746623','9844787665','9844791151','9844847855','9844908592','9844924426','9844966307','9845007890','9845011959','9845024872','9845057557','9845063351','9845090139','9845128009','9845153546','9845166265','9845173951','9845200255','9845206613','9845211201','9845233609','9845235102','9845239395','9845283913','9845284023','9845315103','9845327507','9845329196','9845331927','9845333877','9845404303','9845444527','9845451082','9845455990','9845502341','9845538355','9845556915','9845575153','9845599993','9845620765','9845634344','9845655124','9845660166','9845679426','9845682712','9845688205','9845692851','9845709561','9845729310','9845729452','9845731623','9845746688','9845749439','9845769419','9845790735','9845809466','9845812737','9845813141','9845834868','9845853244','9845856462','9845869432','9845874400','9845879799','9845895082','9845904081','9845915076','9845938131','9845984328','9845999530','9846005026','9846005662','9846057059','9846093734','9846113862','9846157414','9846163550','9846174550','9846465612','9846467215','9846633501','9846671668','9846759776','9846764907','9846767445','9846822084','9846833625','9846855575','9846993966','9847029696','9847057250','9847092939','9847139305','9847152518','9847170390','9847222548','9847299299','9847316179','9847753643','9847768554','9847963659','9848012391','9848103993','9848104134','9848154174','9848173230','9848208158','9848223667','9848225666','9848317471','9848332030','9848396960','9848408601','9848432125','9848497272','9848511522','9848513913','9848519058','9848524720','9848525244','9848590278','9848607800','9848641736','9848669890','9848671555','9848717135','9848735051','9848752888','9848771816','9848806180','9848832404','9848865512','9848878284','9848888802','9848891778','9848893595','9848906327','9848925310','9848945032','9848948850','9848977143','9849002894','9849022309','9849043061','9849071999','9849074579','9849076563','9849100137','9849103332','9849135564','9849140998','9849174869','9849187289','9849189229','9849210911','9849214567','9849232227','9849238128','9849253442','9849279720','9849317567','9849332167','9849342928','9849352228','9849355412','9849356121','9849376021','9849376677','9849390101','9849492101','9849495334','9849497063','9849497408','9849509099','9849543737','9849547877','9849553878','9849564012','9849616006','9849616946','9849624279','9849635678','9849656376','9849658333','9849673339','9849673907','9849675533','9849695931','9849697791','9849708365','9849718009','9849746060','9849791926','9849824751','9849832494','9849832917','9849843854','9849870355','9849898057','9849900893','9849940820','9849944697','9849966302','9849969907','9849982224','9849983812','9850009018','9850117155','9850270069','9850294669','9850504307','9850700900','9850897029','9850983012','9852801083','9853046815','9853177107','9853333263','9853354624','9853843972','9854256340','9859767713','9860005178','9860025974','9860084068','9860186630','9860205848','9860222465','9860316601','9860324580','9860387369','9860390478','9860393188','9860494936','9860500646','9860529620','9860727577','9860788438','9860793816','9860833366','9860869294','9861134535','9861226167','9861367475','9861474882','9861565795','9861795409','9862021206','9862487595','9862638970','9864033141','9864049542','9865001222','9865002020','9865004180','9865005471','9865007190','9865008228','9865008800','9865008838','9865009068','9865010042','9865011056','9865011992','9865012285','9865012766','9865014607','9865015029','9865015050','9865016544','9865016909','9865017203','9865018015','9865018060','9865018889','9865019291','9865020666','9865027717','9865032026','9865037991','9865040965','9865042703','9865044352','9865047567','9865048855','9865050369','9865052075','9865052886','9865053080','9865060832','9865061120','9865061711','9865066757','9865071197','9865071231','9865071493','9865075175','9865076776','9865077317','9865077404','9865077587','9865078603','9865079481','9865083766','9865086915','9865088100','9865089474','9865090821','9865091543','9865095000','9865101106','9865102095','9865102699','9865102999','9865105265','9865107550','9865107975','9865111677','9865112252','9865112255','9865114084','9865114378','9865117138','9865117336','9865117356','9865118872','9865126501','9865126606','9865126772','9865126875','9865131041','9865131231','9865133066','9865133648','9865134847','9865135178','9865135424','9865135552','9865136689','9865137377','9865138286','9865138646','9865140092','9865144717','9865149013','9865149155','9865150065','9865151127','9865153224','9865153530','9865153583','9865155299','9865155549','9865156491','9865156498','9865156591','9865158337','9865158704','9865162063','9865163234','9865163997','9865164051','9865165556','9865166536','9865167627','9865169267','9865169822','9865172753','9865177105','9865177351','9865177770','9865179522','9865182049','9865182882','9865184844','9865186886','9865188831','9865189645','9865189962','9865194353','9865195969','9865196405','9865198584','9865199280','9865201117','9865203192','9865203283','9865205238','9865208989','9865210064','9865210583','9865220774','9865221232','9865221938','9865224250','9865225505','9865226677','9865227495','9865230028','9865230265','9865231288','9865231983','9865232045','9865233229','9865233916','9865234602','9865237453','9865238072','9865240136','9865241319','9865243265','9865244339','9865245633','9865246798','9865246850','9865252257','9865255540','9865256492','9865257719','9865263830','9865264682','9865267833','9865271702','9865271764','9865272100','9865273093','9865276342','9865276658','9865277699','9865277711','9865277886','9865280288','9865280802','9865287302','9865290593','9865294369','9865295933','9865297332','9865297999','9865298833','9865299111','9865299829','9865302629','9865303127','9865309909','9865311127','9865313020','9865318185','9865318522','9865318776','9865324509','9865333045','9865333337','9865333489','9865334040','9865345226','9865346811','9865347051','9865350733','9865358994','9865361065','9865362072','9865366667','9865367790','9865368296','9865373272','9865374878','9865377233','9865378719','9865382204','9865383235','9865397102','9865398383','9865398974','9865399993','9865401072','9865401314','9865401913','9865401990','9865401992','9865402255','9865404128','9865405745','9865406516','9865408083','9865409205','9865410909','9865413434','9865418353','9865420104','9865425294','9865426259','9865428117','9865431631','9865431735','9865433746','9865433923','9865435139','9865435346','9865435888','9865438376','9865439777','9865443350','9865450250','9865451244','9865452452','9865453709','9865454562','9865454810','9865457442','9865458883','9865460495','9865460798','9865461627','9865462455','9865465103','9865465479','9865466833','9865470003','9865470025','9865470798','9865471144','9865472125','9865472825','9865475600','9865475627','9865477044','9865484794','9865487376','9865491136','9865492429','9865495543','9865495772','9865496888','9865502223','9865502484','9865505310','9865506655','9865511055','9865514498','9865515526','9865518730','9865521297','9865522211','9865524183','9865524436','9865525022','9865528630','9865531219','9865531505','9865532791','9865533530','9865534501','9865538676','9865544257','9865545068','9865545511','9865545611','9865545819','9865550079','9865552010','9865554313','9865555023','9865555074','9865555155','9865557769','9865557821','9865557885','9865559808','9865562691','9865563458','9865563600','9865567812','9865573388','9865574687','9865574923','9865577718','9865579852','9865584205','9865588730','9865588791','9865590019','9865590953','9865598845','9865602560','9865607718','9865608097','9865608456','9865611399','9865612879','9865615650','9865615940','9865618792','9865623139','9865625812','9865626629','9865630774','9865631432','9865633243','9865633483','9865635804','9865636198','9865638858','9865639009','9865639602','9865639855','9865639959','9865640100','9865640266','9865641151','9865643255','9865644403','9865650820','9865651061','9865653542','9865654212','9865654216','9865656502','9865656519','9865657780','9865657879','9865660557','9865660701','9865662229','9865662283','9865666004','9865666641','9865666717','9865667548','9865670677','9865671083','9865672358','9865673508','9865674601','9865676333','9865677440','9865678565','9865678797','9865679028','9865679999','9865682272','9865685400','9865692098','9865695683','9865696263','9865699977','9865702122','9865702475','9865703832','9865706320','9865707111','9865707516','9865709001','9865711153','9865712058','9865712887','9865717463','9865719015','9865720350','9865720683','9865723033','9865724195','9865726105','9865726657','9865728031','9865728268','9865732478','9865733023','9865736549','9865737447','9865740105','9865740160','9865740605','9865742411','9865745596','9865746079','9865747340','9865749107','9865750001','9865754268','9865758745','9865760080','9865763179','9865763923','9865765162','9865766632','9865768688','9865769342','9865772467','9865773200','9865773766','9865778000','9865778119','9865779041','9865780616','9865780828','9865780890','9865783003','9865783338','9865784713','9865785316','9865786767','9865787127','9865788299','9865789002','9865797979','9865799340','9865799423','9865803046','9865805211','9865806132','9865807060','9865807342','9865807985','9865809058','9865810325','9865815581','9865815613','9865825215','9865831667','9865831872','9865835654','9865839031','9865842809','9865844110','9865848370','9865848625','9865849969','9865854762','9865854877','9865855833','9865856502','9865860984','9865865985','9865866414','9865869862','9865871187','9865873027','9865873867','9865878009','9865878967','9865879133','9865880007','9865880260','9865880540','9865881985','9865887304','9865887328','9865887903','9865888474','9865889018','9865889878','9865890448','9865891234','9865893266','9865894141','9865894789','9865895658','9865897066','9865899343','9865904000','9865906035','9865911002','9865911444','9865912636','9865918741','9865920860','9865922602','9865922922','9865924379','9865927748','9865929993','9865931243','9865934786','9865935237','9865935557','9865937892','9865942054','9865942896','9865943899','9865944076','9865951628','9865954141','9865955758','9865957775','9865960986','9865964779','9865964824','9865965500','9865965646','9865967487','9865970154','9865970340','9865972797','9865975404','9865975844','9865978129','9865981912','9865982426','9865985539','9865985926','9865986989','9865987577','9865988377','9865988670','9865988924','9865989413','9865989698','9865998878','9865999951','9866029052','9866069411','9866108191','9866146660','9866172014','9866177460','9866187367','9866189306','9866194345','9866197374','9866243024','9866250099','9866252731','9866286595','9866307162','9866327949','9866347821','9866384060','9866392460','9866410690','9866415009','9866421657','9866437595','9866447074','9866448489','9866451653','9866465330','9866472365','9866513270','9866550603','9866557147','9866557941','9866558287','9866573537','9866591361','9866593007','9866608908','9866609000','9866613849','9866623248','9866630085','9866640353','9866642344','9866660397','9866688778','9866693300','9866695432','9866711977','9866728510','9866732992','9866750242','9866864789','9866894447','9866895061','9866895626','9866934691','9866948299','9866962900','9867003648','9867431764','9867433611','9867488800','9867680591','9867698589','9867710546','9867797046','9867811185','9867818827','9867844707','9868123686','9869026085','9869057717','9869141555','9869250342','9869275141','9869829953','9870228740','9870436568','9870562323','9870998707','9871095630','9871173874','9871231393','9871255504','9871288559','9871314059','9871355766','9871371381','9871393524','9871401154','9871423598','9871436273','9871574215','9871595003','9871617574','9871682874','9871892814','9871896836','9871934519','9871941433','9871989342','9872389678','9872813081','9872828469','9873010338','9873077250','9873130175','9873138566','9873140281','9873185053','9873337391','9873468352','9873572024','9873583736','9873598355','9873629596','9873641488','9873688166','9873698253','9873709459','9873765282','9873776030','9873860427','9873933363','9873972605','9874114572','9874118768','9874146664','9874231506','9874284124','9874288270','9874297849','9874310101','9874353497','9874431731','9874443845','9874444387','9874462704','9874546965','9874592440','9874646131','9874649431','9874661788','9874671116','9874793823','9874793919','9874804890','9874859991','9874925588','9874950159','9874959866','9874959991','9874966780','9874989005','9874989900','9875324119','9875720885','9876996149','9877755497','9878424604','9879020426','9879690847','9880010140','9880017017','9880031297','9880048786','9880103090','9880109338','9880114577','9880116127','9880156557','9880200832','9880217972','9880236011','9880241356','9880292292','9880293293','9880301838','9880312295','9880313300','9880332512','9880336932','9880341911','9880360346','9880368877','9880420761','9880426622','9880483328','9880487734','9880488355','9880536434','9880548270','9880549565','9880550885','9880578822','9880582291','9880634335','9880653686','9880664031','9880675174','9880683762','9880713113','9880713470','9880726733','9880728067','9880735557','9880743283','9880748336','9880754284','9880757295','9880791682','9880804624','9880816586','9880818279','9880844002','9880925094','9880927342','9880928538','9880929064','9880936272','9880953571','9880966829','9880969649','9880974584','9880983630','9880988662','9880995783','9881026415','9881032146','9881282353','9881709502','9881741746','9882731848','9883069435','9883125171','9883180740','9883185600','9883354222','9883408992','9883475847','9883552800','9883601825','9883613374','9883667243','9883751551','9883801392','9884000068','9884000205','9884000265','9884000323','9884000575','9884000593','9884000630','9884000665','9884000681','9884000753','9884000821','9884000884','9884001020','9884001093','9884001221','9884001441','9884001712','9884001744','9884001762','9884001787','9884001888','9884001971','9884002105','9884002225','9884002465','9884002530','9884002547','9884002703','9884002828','9884002866','9884003155','9884003180','9884003329','9884003679','9884003883','9884004372','9884004377','9884004396','9884004416','9884004434','9884004530','9884004676','9884004681','9884006006','9884006049','9884006158','9884006492','9884006530','9884006585','9884006612','9884006930','9884008017','9884008227','9884008264','9884008284','9884008515','9884008991','9884009068','9884009100','9884009139','9884009346','9884009500','9884009609','9884009685','9884009847','9884009998','9884010085','9884010170','9884010201','9884010203','9884010239','9884010337','9884010375','9884010419','9884010520','9884010556','9884010849','9884011104','9884011318','9884011425','9884011494','9884011637','9884011722','9884011731','9884012101','9884012221','9884012415','9884012479','9884012587','9884012854','9884013121','9884013222','9884013319','9884013331','9884013629','9884013650','9884013805','9884013869','9884013958','9884014030','9884014424','9884014647','9884014711','9884015165','9884015174','9884015350','9884015532','9884015549','9884015646','9884015834','9884016427','9884016563','9884016640','9884016681','9884017249','9884017305','9884017333','9884017406','9884017722','9884017770','9884017946','9884018104','9884018445','9884018558','9884018605','9884018612','9884018672','9884018675','9884019234','9884019618','9884019624','9884020040','9884020070','9884020208','9884020261','9884020451','9884020549','9884020616','9884020664','9884020798','9884020924','9884021126','9884021201','9884021251','9884021288','9884021372','9884021411','9884021457','9884021707','9884022117','9884022212','9884022238','9884022383','9884022463','9884022493','9884022522','9884022610','9884022631','9884022666','9884022700','9884022773','9884023017','9884023115','9884023131','9884023153','9884023200','9884023469','9884023490','9884023559','9884023900','9884023932','9884024042','9884024125','9884024159','9884024180','9884024293','9884024343','9884024364','9884024379','9884024423','9884024577','9884024600','9884024634','9884024718','9884024720','9884024734','9884024766','9884024790','9884024803','9884024822','9884024868','9884025056','9884025220','9884025367','9884025585','9884025634','9884025700','9884025840','9884026280','9884026392','9884026568','9884026579','9884026777','9884026990','9884027131','9884027426','9884027652','9884028170','9884028218','9884028319','9884028329','9884028565','9884028592','9884028675','9884029553','9884029707','9884029710','9884029976','9884030060','9884030221','9884030228','9884030338','9884030339','9884030341','9884030356','9884030361','9884030516','9884030673','9884031058','9884031316','9884031693','9884031815','9884032936','9884033039','9884033134','9884033286','9884033287','9884033311','9884033320','9884033416','9884033555','9884033770','9884033824','9884033995','9884034024','9884034276','9884034682','9884034707','9884034725','9884034727','9884034853','9884034892','9884035064','9884035137','9884035350','9884035501','9884035952','9884036003','9884036085','9884036143','9884036260','9884036467','9884036916','9884037335','9884037855','9884038037','9884038258','9884038835','9884038899','9884039138','9884039235','9884039401','9884039645','9884039655','9884039710','9884039765','9884039898','9884039936','9884040229','9884040489','9884040550','9884040615','9884040710','9884040795','9884040797','9884040818','9884041035','9884041048','9884041082','9884041188','9884041953','9884041981','9884041994','9884042005','9884042108','9884042129','9884042152','9884042213','9884042324','9884042450','9884042646','9884042739','9884042862','9884042930','9884042944','9884043265','9884043268','9884043411','9884043609','9884043707','9884043800','9884044146','9884044303','9884044446','9884044546','9884044670','9884044718','9884044754','9884044868','9884044877','9884044991','9884045036','9884045118','9884045218','9884045366','9884045405','9884045409','9884045576','9884045608','9884045611','9884045633','9884046051','9884046135','9884046211','9884046239','9884046547','9884046644','9884046886','9884047049','9884047131','9884047413','9884047476','9884047786','9884047868','9884047990','9884048499','9884048543','9884048667','9884048808','9884048832','9884048848','9884048886','9884048924','9884049198','9884049242','9884049450','9884049576','9884049954','9884050011','9884050052','9884050121','9884050157','9884050484','9884050536','9884050589','9884051125','9884051181','9884051500','9884051554','9884051558','9884051825','9884051833','9884051959','9884052003','9884052209','9884052335','9884052376','9884052528','9884052765','9884052871','9884052877','9884053005','9884053311','9884053674','9884053889','9884054599','9884054638','9884054640','9884054771','9884054864','9884054906','9884054934','9884055073','9884055200','9884055363','9884055452','9884055507','9884055858','9884056335','9884056386','9884056401','9884056595','9884056781','9884056789','9884056890','9884057157','9884057293','9884057324','9884057420','9884057474','9884057552','9884057567','9884057736','9884057745','9884058072','9884058529','9884058638','9884058658','9884058676','9884058922','9884059007','9884059273','9884059558','9884060021','9884060194','9884060210','9884060358','9884060384','9884060407','9884060483','9884060512','9884060773','9884060822','9884060934','9884061310','9884061339','9884061603','9884061750','9884061925','9884061962','9884062244','9884062343','9884062425','9884062480','9884062550','9884062595','9884062829','9884062848','9884062922','9884063483','9884063632','9884063711','9884063855','9884064428','9884064574','9884064777','9884065010','9884065128','9884065271','9884065488','9884065847','9884065980','9884066061','9884066075','9884066499','9884066507','9884066545','9884066602','9884066646','9884066859','9884066877','9884067019','9884067068','9884067126','9884067179','9884067401','9884067616','9884067711','9884067815','9884067828','9884068050','9884068060','9884068155','9884068236','9884068343','9884068601','9884068706','9884068797','9884068840','9884068841','9884068872','9884068923','9884069006','9884069069','9884069322','9884069331','9884069664','9884070054','9884070232','9884070320','9884070361','9884070380','9884070457','9884070480','9884070618','9884070858','9884071247','9884071422','9884071435','9884071522','9884072002','9884072169','9884072221','9884072267','9884072704','9884072900','9884072981','9884073487','9884073500','9884073791','9884074002','9884074050','9884074356','9884074448','9884074483','9884074642','9884074713','9884075275','9884075307','9884075328','9884075407','9884075575','9884075705','9884075715','9884075726','9884075835','9884075956','9884076070','9884076191','9884076308','9884076319','9884076677','9884076787','9884076833','9884076861','9884076874','9884077136','9884077334','9884077347','9884077466','9884077653','9884077736','9884077778','9884077883','9884077887','9884078124','9884078367','9884078474','9884078683','9884078736','9884078878','9884078995','9884078996','9884079127','9884079829','9884080044','9884080388','9884080472','9884080664','9884080710','9884080724','9884080905','9884080924','9884081014','9884081082','9884081325','9884081399','9884081550','9884081584','9884081712','9884082001','9884082018','9884082037','9884082083','9884082092','9884082143','9884082231','9884082271','9884082400','9884082510','9884082589','9884082600','9884082638','9884082829','9884082888','9884083147','9884083184','9884083219','9884083345','9884083633','9884083823','9884083828','9884083933','9884084065','9884084711','9884085243','9884085251','9884085484','9884085656','9884085687','9884085712','9884085847','9884085861','9884085889','9884085963','9884086026','9884086109','9884086466','9884086501','9884086676','9884086855','9884086877','9884086923','9884087350','9884087433','9884087494','9884087495','9884087589','9884087868','9884088118','9884088128','9884088531','9884088550','9884088577','9884088588','9884088646','9884088758','9884088766','9884088772','9884088799','9884088860','9884089190','9884089688','9884089750','9884089884','9884089899','9884090099','9884090191','9884090270','9884090933','9884091616','9884091760','9884091779','9884091809','9884091872','9884092020','9884092064','9884092206','9884092226','9884093302','9884093519','9884093677','9884093784','9884093824','9884093986','9884094090','9884094110','9884094548','9884094742','9884094757','9884094783','9884094944','9884095447','9884095656','9884095767','9884095944','9884095996','9884096555','9884096604','9884096612','9884096634','9884096721','9884097046','9884097061','9884097103','9884097119','9884097146','9884097148','9884097277','9884097309','9884097429','9884097534','9884097670','9884097974','9884098110','9884098157','9884098166','9884098287','9884098363','9884098373','9884098416','9884098505','9884098602','9884098803','9884098843','9884098855','9884099040','9884099175','9884099199','9884099815','9884099850','9884099853','9884099937','9884099948','9884100046','9884100204','9884100240','9884100359','9884100398','9884100493','9884100748','9884100822','9884101061','9884101104','9884101212','9884101575','9884102171','9884102271','9884102533','9884102949','9884103201','9884103261','9884103266','9884103447','9884103804','9884103980','9884104103','9884104241','9884104261','9884104500','9884104643','9884105690','9884105787','9884105996','9884106264','9884106435','9884106464','9884106605','9884106707','9884107101','9884107193','9884107322','9884107409','9884107474','9884107477','9884107668','9884107725','9884107863','9884107879','9884108577','9884109416','9884109450','9884109779','9884110054','9884110110','9884110287','9884110347','9884110451','9884110467','9884110471','9884110510','9884110684','9884110777','9884110802','9884110905','9884110943','9884111051','9884111102','9884111241','9884111281','9884111479','9884111607','9884111721','9884111860','9884112013','9884112100','9884112244','9884112263','9884112387','9884112786','9884112908','9884113606','9884113616','9884113751','9884114144','9884114508','9884114597','9884114621','9884114835','9884115128','9884115132','9884115421','9884115424','9884115997','9884116235','9884116297','9884116491','9884116977','9884117539','9884117540','9884117706','9884118178','9884119102','9884119181','9884119619','9884119755','9884119777','9884119999','9884120222','9884120994','9884121289','9884121576','9884121646','9884121730','9884121840','9884122070','9884122216','9884122365','9884122389','9884122413','9884122608','9884122893','9884122954','9884123018','9884123151','9884123346','9884123404','9884123492','9884123589','9884123636','9884123833','9884124293','9884124373','9884124404','9884124426','9884124743','9884124823','9884124981','9884124998','9884125520','9884125564','9884125663','9884125777','9884125890','9884126264','9884126374','9884126557','9884126612','9884126634','9884126970','9884127225','9884127832','9884128127','9884128207','9884128244','9884128910','9884128948','9884129124','9884129452','9884130009','9884130582','9884130960','9884131144','9884132206','9884132371','9884132582','9884132781','9884132910','9884133100','9884133250','9884133292','9884133439','9884133557','9884133974','9884134361','9884134437','9884135451','9884136048','9884136053','9884136235','9884136269','9884136312','9884136675','9884136887','9884138215','9884139050','9884139082','9884139115','9884139179','9884139389','9884139598','9884139720','9884140909','9884141048','9884141276','9884141400','9884141443','9884141825','9884142010','9884142100','9884142735','9884142795','9884142922','9884142924','9884142930','9884142973','9884143078','9884143262','9884143847','9884143994','9884144040','9884144390','9884144434','9884144469','9884144494','9884145074','9884145275','9884145308','9884145615','9884145710','9884146862','9884146943','9884146966','9884147017','9884147862','9884148003','9884148042','9884148137','9884148375','9884148815','9884148844','9884148872','9884148904','9884148980','9884149143','9884149567','9884150004','9884150332','9884151503','9884151529','9884151551','9884151924','9884152223','9884152939','9884153020','9884153544','9884153747','9884153751','9884153855','9884154244','9884154252','9884154281','9884154415','9884154476','9884154488','9884154535','9884154578','9884154616','9884154728','9884154730','9884154923','9884155322','9884155653','9884155765','9884155809','9884156166','9884156486','9884156564','9884156565','9884157005','9884157068','9884157225','9884157369','9884157789','9884158195','9884158425','9884158710','9884158926','9884159378','9884159526','9884159788','9884159802','9884160276','9884161011','9884161076','9884161414','9884161541','9884161933','9884162159','9884162359','9884162554','9884163228','9884163926','9884163985','9884164092','9884164802','9884164821','9884165072','9884166196','9884166495','9884166644','9884166695','9884167227','9884167268','9884167550','9884167651','9884167772','9884167857','9884168347','9884168711','9884168715','9884168740','9884169292','9884169457','9884169712','9884169918','9884170597','9884170618','9884170751','9884170888','9884170889','9884170923','9884171073','9884171208','9884171230','9884171447','9884171491','9884171525','9884171672','9884171732','9884171921','9884172000','9884172293','9884172411','9884172865','9884172931','9884173037','9884173066','9884173127','9884173239','9884173432','9884173633','9884173757','9884173847','9884174338','9884174436','9884174732','9884174876','9884175142','9884175299','9884175619','9884175770','9884176357','9884176360','9884176835','9884176929','9884176938','9884177244','9884177370','9884177678','9884177704','9884177911','9884178075','9884178767','9884178861','9884178914','9884178961','9884179015','9884179255','9884179939','9884180010','9884180288','9884180630','9884180759','9884181166','9884181222','9884181280','9884181339','9884181406','9884181536','9884181637','9884181653','9884182111','9884182632','9884182795','9884182923','9884183454','9884183554','9884183939','9884184036','9884184193','9884184266','9884184314','9884184360','9884184565','9884184792','9884184878','9884185417','9884185422','9884185779','9884186444','9884186499','9884186817','9884186976','9884187036','9884187385','9884187849','9884188341','9884188559','9884188612','9884188733','9884189865','9884190059','9884190503','9884190555','9884190590','9884191217','9884191508','9884191917','9884192314','9884192654','9884193215','9884193784','9884193799','9884193944','9884194182','9884194477','9884194658','9884194809','9884194928','9884195183','9884195291','9884195456','9884195746','9884196363','9884196397','9884196533','9884196972','9884197262','9884197297','9884197343','9884197507','9884197987','9884198235','9884198362','9884198618','9884198661','9884199494','9884199864','9884199952','9884200032','9884200658','9884201053','9884201183','9884201884','9884202149','9884203090','9884203117','9884203760','9884203863','9884203899','9884203908','9884203909','9884204186','9884204307','9884204310','9884204329','9884204385','9884204879','9884206332','9884206356','9884206960','9884207222','9884207336','9884207369','9884207561','9884207661','9884207807','9884207902','9884207995','9884208192','9884208884','9884209405','9884209586','9884210052','9884210208','9884210505','9884211192','9884211497','9884211510','9884211812','9884211977','9884212038','9884212174','9884212253','9884212564','9884213141','9884213144','9884213212','9884213215','9884213287','9884213529','9884213706','9884213886','9884214021','9884214198','9884214435','9884214531','9884214912','9884215000','9884215090','9884215668','9884215968','9884216245','9884216660','9884217036','9884217528','9884217977','9884218085','9884218209','9884219071','9884219253','9884219421','9884219622','9884219704','9884220140','9884220500','9884220670','9884220711','9884221056','9884221100','9884221351','9884221441','9884221450','9884221644','9884221671','9884221676','9884222113','9884222172','9884222244','9884222255','9884222260','9884222294','9884222335','9884222515','9884222582','9884222800','9884223118','9884223156','9884223318','9884224114','9884224331','9884224345','9884224466','9884224928','9884225132','9884225337','9884225347','9884225390','9884225462','9884225697','9884226458','9884227207','9884227727','9884227924','9884228562','9884228728','9884228822','9884228824','9884228918','9884229382','9884229696','9884229904','9884229921','9884229922','9884229930','9884231094','9884231358','9884231453','9884232152','9884232216','9884232330','9884232402','9884232430','9884232434','9884233139','9884233147','9884233381','9884233660','9884233933','9884234066','9884234276','9884234282','9884234587','9884234591','9884234596','9884234603','9884234811','9884235215','9884235592','9884236322','9884236422','9884236542','9884236598','9884237033','9884237045','9884237683','9884237767','9884237860','9884237865','9884238175','9884238248','9884238694','9884238770','9884239005','9884239196','9884239353','9884239354','9884239823','9884240188','9884240207','9884240209','9884240260','9884240340','9884240747','9884240884','9884241121','9884241548','9884241587','9884242296','9884242396','9884242521','9884242528','9884242895','9884243022','9884243389','9884243393','9884243681','9884244113','9884244388','9884244423','9884244474','9884244889','9884245184','9884245196','9884245235','9884245549','9884245576','9884246056','9884246169','9884246235','9884246549','9884246749','9884247101','9884247369','9884247711','9884247824','9884247846','9884247888','9884247893','9884248187','9884248391','9884248404','9884248410','9884248433','9884249427','9884249475','9884249543','9884249817','9884250011','9884250123','9884250210','9884250498','9884250750','9884250932','9884251112','9884251430','9884251715','9884251897','9884251986','9884251999','9884252545','9884252669','9884252754','9884252939','9884254129','9884254301','9884254460','9884254581','9884254771','9884254793','9884254998','9884255313','9884255583','9884255641','9884256064','9884256559','9884256996','9884257304','9884257357','9884257619','9884257801','9884257847','9884257938','9884258226','9884258236','9884258447','9884258498','9884258948','9884259132','9884259172','9884259332','9884259373','9884259445','9884259591','9884259725','9884259865','9884260631','9884261021','9884261121','9884261872','9884262364','9884262500','9884262548','9884262603','9884262612','9884262616','9884262711','9884263600','9884263775','9884263836','9884263987','9884264432','9884264898','9884265156','9884265321','9884265519','9884265851','9884266553','9884266565','9884266582','9884266804','9884266877','9884266939','9884266987','9884267484','9884267702','9884267953','9884268164','9884268384','9884268555','9884268680','9884269061','9884269192','9884269523','9884269683','9884269737','9884269832','9884269833','9884270023','9884270077','9884270209','9884270368','9884270824','9884271007','9884271043','9884271471','9884271708','9884271828','9884272110','9884272796','9884273195','9884273377','9884273386','9884273510','9884273600','9884273630','9884273719','9884273854','9884273997','9884274272','9884274426','9884274475','9884274727','9884275231','9884275521','9884275707','9884275740','9884275755','9884275926','9884275939','9884276021','9884276327','9884276434','9884276684','9884276761','9884277048','9884277077','9884277167','9884277682','9884277951','9884278325','9884278434','9884278702','9884278768','9884279345','9884279525','9884279719','9884280123','9884280761','9884281021','9884281061','9884281129','9884281139','9884281548','9884281723','9884282004','9884282432','9884282459','9884282525','9884282801','9884283282','9884283288','9884283429','9884283747','9884283801','9884283912','9884284141','9884284145','9884284176','9884284241','9884284447','9884284750','9884285001','9884285266','9884285797','9884285915','9884286848','9884288134','9884288238','9884288427','9884288463','9884288824','9884288844','9884288867','9884289161','9884289417','9884289449','9884289468','9884289866','9884290181','9884290521','9884290690','9884290700','9884290928','9884290952','9884291155','9884291962','9884292245','9884292272','9884292472','9884292934','9884292989','9884293322','9884293339','9884293792','9884293869','9884293949','9884294057','9884294214','9884294495','9884294595','9884295566','9884295592','9884295686','9884296100','9884296348','9884296366','9884297070','9884297248','9884297595','9884297723','9884297745','9884297765','9884297778','9884297807','9884297897','9884298175','9884298338','9884298638','9884298854','9884298915','9884299124','9884299318','9884299333','9884299525','9884299610','9884299713','9884299753','9884299988','9884300137','9884300403','9884302211','9884302244','9884302265','9884302417','9884302422','9884302436','9884302522','9884302617','9884302712','9884303303','9884303371','9884303424','9884303721','9884303794','9884304045','9884304062','9884304090','9884304330','9884304909','9884304936','9884304942','9884305028','9884305559','9884305600','9884306074','9884306090','9884306216','9884306510','9884306611','9884307005','9884307079','9884307331','9884307476','9884307807','9884307840','9884307873','9884308248','9884308343','9884308554','9884308733','9884309289','9884309452','9884309552','9884310368','9884310800','9884311229','9884311340','9884311384','9884311740','9884311770','9884312090','9884312117','9884312232','9884312383','9884312521','9884312580','9884312733','9884313061','9884313280','9884313936','9884314497','9884314741','9884314829','9884315031','9884315163','9884315249','9884315332','9884315441','9884315545','9884315882','9884315989','9884316264','9884316342','9884317157','9884317222','9884317244','9884317377','9884318060','9884318131','9884318191','9884318570','9884318681','9884319114','9884319369','9884319536','9884319620','9884319810','9884320411','9884320482','9884320513','9884321211','9884321227','9884321670','9884321827','9884322100','9884322110','9884322223','9884322247','9884322336','9884322400','9884322750','9884322944','9884323139','9884323275','9884323444','9884323538','9884323617','9884323832','9884324262','9884324531','9884324709','9884325206','9884325880','9884325930','9884326070','9884326546','9884326632','9884327034','9884327494','9884327600','9884327676','9884327721','9884327786','9884328137','9884328285','9884328546','9884328719','9884329125','9884329138','9884329334','9884329889','9884329917','9884330093','9884330352','9884330507','9884330616','9884330789','9884330830','9884331174','9884331262','9884331289','9884331422','9884331699','9884331810','9884332261','9884332265','9884332707','9884332710','9884332929','9884333039','9884333055','9884333140','9884333352','9884333361','9884333519','9884333730','9884334455','9884334458','9884334576','9884334678','9884334737','9884334857','9884334990','9884335063','9884335068','9884335373','9884335409','9884335448','9884335750','9884335757','9884335811','9884336008','9884336092','9884336366','9884336815','9884336824','9884336871','9884336912','9884337068','9884337661','9884337797','9884337877','9884338018','9884338200','9884338352','9884338416','9884338519','9884338575','9884338784','9884338818','9884338873','9884338979','9884339715','9884339798','9884339831','9884339982','9884340121','9884340490','9884341078','9884341089','9884341201','9884341350','9884341500','9884341653','9884341667','9884342057','9884342067','9884342124','9884342337','9884342395','9884342611','9884342916','9884343100','9884343139','9884343458','9884343662','9884343760','9884344040','9884344047','9884344224','9884344236','9884344496','9884344529','9884344633','9884344887','9884345170','9884345226','9884345231','9884345258','9884345804','9884346030','9884346369','9884346410','9884346981','9884347220','9884347446','9884347677','9884347840','9884348015','9884348334','9884348365','9884348530','9884348896','9884348924','9884349005','9884349093','9884349403','9884349442','9884349776','9884349817','9884350252','9884350301','9884351232','9884351364','9884351408','9884351477','9884351594','9884352221','9884352322','9884353148','9884353531','9884354089','9884354415','9884354497','9884354935','9884354961','9884355088','9884355385','9884355466','9884355545','9884355575','9884355585','9884355959','9884355975','9884356111','9884356550','9884356851','9884356873','9884356979','9884357074','9884357146','9884357443','9884357571','9884357622','9884357837','9884357992','9884358111','9884358125','9884358128','9884358312','9884358664','9884359004','9884359242','9884359524','9884360027','9884360206','9884360869','9884361122','9884361131','9884361533','9884361862','9884362266','9884362273','9884362538','9884362564','9884362630','9884362692','9884363210','9884363555','9884363562','9884363609','9884363738','9884363836','9884363876','9884363896','9884363984','9884364055','9884364131','9884364438','9884365042','9884365074','9884365266','9884365437','9884365771','9884365958','9884366018','9884366467','9884366746','9884367269','9884367380','9884367567','9884367690','9884367778','9884367890','9884368099','9884368171','9884368774','9884368807','9884369216','9884369229','9884369444','9884369464','9884369639','9884370394','9884370611','9884370695','9884370851','9884370896','9884370922','9884371672','9884371722','9884371975','9884372257','9884372375','9884372438','9884372558','9884372726','9884373045','9884373100','9884373327','9884373393','9884373847','9884373986','9884374565','9884374818','9884374900','9884375028','9884375577','9884375612','9884375929','9884376362','9884376696','9884376732','9884376752','9884376889','9884377074','9884377177','9884377245','9884377344','9884377414','9884377820','9884377891','9884378009','9884378130','9884378442','9884378696','9884378770','9884378837','9884379560','9884379791','9884380043','9884380217','9884380239','9884380260','9884380279','9884380426','9884380586','9884380617','9884380752','9884381787','9884381871','9884382255','9884382959','9884383097','9884383323','9884383605','9884383736','9884384197','9884384707','9884385370','9884385786','9884385901','9884386625','9884386654','9884386906','9884387007','9884387040','9884387047','9884387248','9884387299','9884387378','9884387423','9884387533','9884387590','9884387604','9884387712','9884387924','9884388086','9884388213','9884388344','9884388353','9884388723','9884388821','9884389158','9884389220','9884389979','9884390095','9884390484','9884390859','9884391130','9884391428','9884391506','9884391840','9884391913','9884391920','9884392178','9884392234','9884392247','9884392506','9884392659','9884392743','9884392915','9884392947','9884393013','9884393131','9884393270','9884393393','9884393418','9884393631','9884393666','9884393913','9884394004','9884394456','9884394547','9884394669','9884394877','9884394899','9884394997','9884395399','9884395466','9884395688','9884395893','9884395940','9884396294','9884396341','9884396694','9884397325','9884397429','9884397853','9884398069','9884398570','9884398823','9884398848','9884398868','9884398899','9884399724','9884399881','9884399921','9884400054','9884400569','9884400681','9884400744','9884400841','9884400880','9884401016','9884401025','9884401068','9884401089','9884401208','9884401344','9884401415','9884401490','9884401640','9884401648','9884401651','9884401861','9884401905','9884402351','9884402468','9884402530','9884402729','9884402828','9884403133','9884403234','9884403303','9884403567','9884403623','9884404015','9884404049','9884404067','9884404115','9884404157','9884404269','9884404326','9884404333','9884404449','9884404490','9884404496','9884404556','9884404604','9884404606','9884404678','9884404698','9884404814','9884406813','9884407373','9884408177','9884408265','9884408402','9884408413','9884408617','9884408678','9884408768','9884408784','9884408923','9884409122','9884409171','9884409361','9884409607','9884409796','9884409797','9884410123','9884410870','9884410908','9884410998','9884411148','9884411205','9884411258','9884411495','9884411532','9884411575','9884411611','9884411688','9884411701','9884411743','9884411810','9884412060','9884412093','9884412101','9884412336','9884412558','9884412566','9884412567','9884412788','9884412789','9884412791','9884412860','9884413045','9884413123','9884413328','9884413820','9884413960','9884414135','9884414233','9884414261','9884414605','9884414767','9884414813','9884414818','9884414995','9884415106','9884415163','9884415411','9884415493','9884415756','9884415890','9884415957','9884416217','9884416308','9884416611','9884417002','9884417071','9884417718','9884418159','9884418418','9884418459','9884418622','9884418855','9884418874','9884420321','9884420515','9884420595','9884420722','9884420756','9884420775','9884420990','9884421338','9884421607','9884422206','9884422244','9884422416','9884422452','9884422581','9884422681','9884422783','9884422991','9884423352','9884423359','9884423492','9884423505','9884423715','9884423856','9884423866','9884423884','9884423895','9884423945','9884424104','9884424131','9884424456','9884424461','9884424495','9884424680','9884424978','9884425049','9884425268','9884425453','9884425470','9884425485','9884425501','9884425657','9884425713','9884425932','9884426332','9884426620','9884426662','9884426664','9884426725','9884427077','9884427081','9884427095','9884427572','9884427636','9884428090','9884428117','9884428234','9884428322','9884428534','9884428548','9884428663','9884428811','9884428842','9884428872','9884428943','9884429130','9884429158','9884429165','9884429201','9884429209','9884429470','9884429584','9884429701','9884429743','9884429893','9884430052','9884430271','9884430306','9884430462','9884430520','9884430525','9884430683','9884430767','9884430805','9884431052','9884431077','9884431209','9884431291','9884431366','9884431412','9884431470','9884431475','9884431480','9884431643','9884431776','9884432164','9884432166','9884432314','9884432339','9884432373','9884432397','9884432401','9884432461','9884432468','9884433117','9884433298','9884433339','9884433550','9884433598','9884433631','9884433762','9884433907','9884434077','9884434252','9884434350','9884434384','9884434521','9884434740','9884435060','9884435550','9884435637','9884435720','9884435767','9884435962','9884436158','9884436269','9884436323','9884436540','9884436596','9884436920','9884437077','9884437320','9884437414','9884437702','9884437888','9884437963','9884438289','9884438368','9884438695','9884438714','9884438823','9884438838','9884438954','9884439089','9884439389','9884439444','9884439515','9884439538','9884439596','9884439892','9884439958','9884440014','9884440019','9884440036','9884440146','9884440246','9884440255','9884440449','9884440611','9884440831','9884440852','9884440868','9884441088','9884441177','9884441276','9884441362','9884441409','9884441426','9884441484','9884441503','9884441505','9884441614','9884441715','9884441758','9884442011','9884442021','9884442154','9884442278','9884442281','9884442310','9884442389','9884442446','9884442473','9884442627','9884442708','9884442883','9884442908','9884443211','9884443218','9884443353','9884443486','9884443975','9884444123','9884444163','9884444173','9884444182','9884444223','9884444227','9884444342','9884444350','9884444368','9884444402','9884444476','9884444738','9884444933','9884444960','9884444995','9884445012','9884445123','9884445187','9884445225','9884445307','9884445370','9884445456','9884445570','9884445610','9884445736','9884445894','9884446213','9884446221','9884446331','9884446360','9884446462','9884446491','9884446530','9884446635','9884447222','9884447488','9884447514','9884447636','9884447748','9884447789','9884447823','9884447954','9884448245','9884448438','9884448612','9884448814','9884448834','9884448890','9884449025','9884449096','9884449113','9884449197','9884449452','9884449464','9884449680','9884449901','9884450039','9884450064','9884450082','9884450102','9884450234','9884450545','9884450918','9884451468','9884451549','9884451894','9884452212','9884452517','9884452711','9884452798','9884452999','9884453494','9884453632','9884453685','9884453733','9884453833','9884453951','9884454121','9884454185','9884454231','9884454260','9884454381','9884454544','9884454805','9884454994','9884455163','9884455398','9884455429','9884455611','9884455674','9884455834','9884455954','9884456023','9884456184','9884456357','9884456616','9884456706','9884456739','9884456956','9884457057','9884457273','9884457411','9884457527','9884457628','9884457795','9884457796','9884457829','9884457888','9884458018','9884458037','9884458040','9884458345','9884458397','9884458560','9884458660','9884458718','9884458899','9884459611','9884459812','9884460013','9884460060','9884460116','9884460222','9884460226','9884460264','9884460290','9884460342','9884460360','9884460437','9884460525','9884460974','9884461099','9884461147','9884461454','9884461528','9884461856','9884462015','9884462110','9884462169','9884462365','9884462452','9884462585','9884462616','9884462938','9884462979','9884462996','9884463232','9884463263','9884463289','9884463626','9884464287','9884464345','9884464564','9884464579','9884464662','9884464750','9884464975','9884465100','9884465223','9884465226','9884465265','9884465417','9884465476','9884465539','9884465914','9884466063','9884466159','9884466422','9884466537','9884466685','9884466733','9884466811','9884466841','9884466868','9884466924','9884466946','9884467069','9884467762','9884467886','9884467988','9884468083','9884468123','9884468246','9884468258','9884468277','9884468386','9884468480','9884468711','9884469123','9884469343','9884469481','9884469608','9884469812','9884469864','9884469966','9884469998','9884470130','9884470308','9884470454','9884470510','9884470722','9884470768','9884471118','9884471334','9884471640','9884471674','9884471784','9884471835','9884471909','9884471923','9884472074','9884472211','9884472278','9884472341','9884472464','9884472549','9884472583','9884472615','9884472700','9884472777','9884473120','9884473186','9884473384','9884473599','9884473629','9884473714','9884473753','9884473888','9884474015','9884474098','9884474266','9884474355','9884474462','9884474684','9884474736','9884474764','9884475265','9884475753','9884476262','9884476285','9884476550','9884476755','9884476940','9884477030','9884477099','9884477187','9884477304','9884477314','9884477631','9884477700','9884477882','9884477894','9884478001','9884478396','9884478428','9884478531','9884478584','9884478660','9884478760','9884478818','9884478981','9884478987','9884479031','9884480021','9884480489','9884480550','9884480690','9884480702','9884480711','9884480782','9884481004','9884481308','9884481391','9884481478','9884481503','9884481673','9884481674','9884481870','9884482014','9884482153','9884482335','9884482339','9884482533','9884482985','9884483816','9884483962','9884483972','9884484008','9884484114','9884484201','9884484208','9884484391','9884484397','9884484432','9884484454','9884484553','9884484841','9884485021','9884485133','9884485382','9884485593','9884485615','9884485899','9884486566','9884487475','9884487704','9884487757','9884487870','9884487904','9884487998','9884488043','9884488164','9884488326','9884488347','9884488404','9884488470','9884488579','9884488641','9884488660','9884488703','9884488855','9884488898','9884488980','9884489065','9884489419','9884489463','9884489482','9884489552','9884489619','9884490042','9884490227','9884490599','9884490647','9884490815','9884490924','9884490974','9884491119','9884491241','9884491668','9884491716','9884491736','9884491761','9884492183','9884492277','9884492343','9884492416','9884492570','9884492578','9884492627','9884492633','9884492782','9884492991','9884493055','9884493138','9884493237','9884493286','9884493344','9884493366','9884493399','9884493838','9884494008','9884494031','9884494069','9884494415','9884494511','9884494557','9884494696','9884494753','9884494931','9884494957','9884494960','9884495318','9884495441','9884495508','9884495541','9884495568','9884495977','9884496007','9884496388','9884496567','9884496568','9884496768','9884496863','9884496926','9884496942','9884497133','9884497274','9884497292','9884497449','9884497708','9884497770','9884497775','9884497881','9884497890','9884498159','9884498212','9884498243','9884498248','9884498367','9884498962','9884498999','9884499106','9884499165','9884499169','9884499198','9884499285','9884499429','9884499463','9884499484','9884499522','9884499623','9884499791','9884499799','9884499918','9884499963','9884500054','9884500555','9884500746','9884500772','9884500915','9884500984','9884501031','9884501178','9884501209','9884501816','9884502181','9884502278','9884502299','9884502727','9884502749','9884503166','9884503301','9884503511','9884504000','9884504134','9884504209','9884504398','9884504534','9884504687','9884504780','9884504811','9884504850','9884506338','9884506474','9884506610','9884507058','9884507215','9884507234','9884508054','9884508108','9884508641','9884509025','9884509099','9884509289','9884509876','9884509902','9884510048','9884510189','9884510605','9884511218','9884511303','9884511610','9884511926','9884511977','9884512136','9884512360','9884512454','9884512502','9884513142','9884513213','9884513461','9884513653','9884513713','9884513729','9884514176','9884514349','9884514596','9884514664','9884515065','9884515541','9884515652','9884515945','9884516001','9884516103','9884516188','9884516427','9884516458','9884516478','9884516720','9884516721','9884517177','9884517287','9884517612','9884518352','9884518945','9884519555','9884519753','9884519829','9884520235','9884520277','9884520363','9884520514','9884520553','9884521413','9884521494','9884522210','9884522312','9884522378','9884522495','9884522956','9884523199','9884523270','9884523573','9884523886','9884524102','9884524265','9884524546','9884524588','9884525028','9884525285','9884525287','9884525463','9884525516','9884525625','9884525719','9884525791','9884526018','9884526268','9884526325','9884527204','9884528645','9884528658','9884528726','9884529397','9884529413','9884530273','9884530527','9884530530','9884530538','9884530625','9884531311','9884531364','9884531374','9884531410','9884532021','9884532111','9884532315','9884533161','9884533188','9884533220','9884533650','9884534097','9884534222','9884535175','9884535412','9884535786','9884536216','9884536354','9884536441','9884536533','9884536837','9884537105','9884537599','9884537973','9884538259','9884538696','9884539065','9884539274','9884539277','9884539615','9884539888','9884540082','9884540100','9884540291','9884540367','9884540551','9884540842','9884540964','9884541114','9884541421','9884541530','9884541933','9884542044','9884542046','9884542373','9884542465','9884542742','9884543124','9884543244','9884543340','9884543409','9884543525','9884543729','9884544088','9884544287','9884544650','9884544653','9884544939','9884545015','9884545086','9884545456','9884545641','9884545751','9884545789','9884546129','9884546701','9884546886','9884547234','9884547342','9884547471','9884547564','9884547696','9884547800','9884547872','9884548355','9884548678','9884548748','9884548902','9884549123','9884550099','9884550337','9884550550','9884550578','9884550911','9884550987','9884551400','9884551738','9884551822','9884551900','9884552003','9884552079','9884552389','9884552522','9884552537','9884552541','9884552564','9884552747','9884552764','9884552853','9884553589','9884553966','9884554055','9884554059','9884554327','9884554411','9884554413','9884554905','9884555323','9884555331','9884555620','9884555691','9884555788','9884555888','9884556001','9884556056','9884556097','9884556128','9884556133','9884556143','9884556340','9884556404','9884556581','9884556604','9884556638','9884556693','9884556731','9884556792','9884557050','9884557170','9884557228','9884557248','9884557424','9884557872','9884557893','9884558449','9884558456','9884558522','9884558601','9884559308','9884559314','9884559552','9884559557','9884559737','9884559906','9884559977','9884560213','9884560284','9884560329','9884560501','9884560811','9884561144','9884561713','9884561948','9884562259','9884562364','9884562404','9884562502','9884562873','9884563002','9884563450','9884563678','9884563959','9884564408','9884564485','9884564639','9884565074','9884565246','9884565328','9884565526','9884565595','9884565866','9884566197','9884566449','9884566740','9884566789','9884566882','9884567244','9884567302','9884567456','9884567659','9884567698','9884567815','9884568299','9884568343','9884568428','9884568508','9884568525','9884568783','9884569087','9884569191','9884569196','9884569347','9884569469','9884569647','9884570001','9884570131','9884570669','9884570924','9884571042','9884571116','9884571789','9884571795','9884572099','9884573115','9884573552','9884573575','9884573625','9884573627','9884573717','9884574393','9884574474','9884574683','9884574880','9884575629','9884576439','9884576531','9884576755','9884576785','9884576897','9884577616','9884577738','9884577768','9884578640','9884578686','9884579693','9884579894','9884580036','9884580994','9884581004','9884581080','9884581859','9884581895','9884581916','9884582052','9884582415','9884582526','9884583731','9884583753','9884583939','9884584139','9884584577','9884584580','9884584844','9884585121','9884585550','9884586258','9884586866','9884586876','9884587507','9884587520','9884587653','9884587773','9884588351','9884588431','9884588526','9884588727','9884588797','9884589109','9884590018','9884590384','9884590440','9884590621','9884591567','9884591636','9884591670','9884592133','9884592523','9884592630','9884593143','9884593437','9884594080','9884594344','9884594441','9884594453','9884594545','9884594561','9884594795','9884595235','9884595465','9884595609','9884595702','9884595713','9884596301','9884596339','9884596397','9884596503','9884596595','9884596754','9884596858','9884597033','9884597314','9884597798','9884597929','9884598057','9884598189','9884598382','9884598558','9884598803','9884598884','9884599233','9884599241','9884599249','9884599460','9884599647','9884600023','9884600219','9884600228','9884600238','9884600268','9884600283','9884600524','9884600558','9884600781','9884600805','9884601027','9884601310','9884601321','9884601566','9884601571','9884602034','9884602100','9884602108','9884602410','9884602425','9884602737','9884602892','9884603010','9884603027','9884603276','9884603319','9884603554','9884603640','9884604197','9884604228','9884604320','9884604656','9884604668','9884604977','9884606053','9884606476','9884606480','9884606555','9884606563','9884606577','9884606611','9884606797','9884606800','9884606829','9884607085','9884607455','9884607534','9884607721','9884607860','9884607991','9884608110','9884608159','9884608172','9884608281','9884608333','9884608344','9884608366','9884608373','9884608686','9884608705','9884608877','9884608938','9884609001','9884609180','9884609580','9884609888','9884610288','9884610520','9884610583','9884611006','9884611068','9884611587','9884611756','9884612062','9884612535','9884612591','9884612621','9884612840','9884613373','9884613418','9884613466','9884613500','9884613529','9884613899','9884613913','9884614134','9884614160','9884614415','9884614582','9884614991','9884615109','9884615412','9884615557','9884615644','9884615733','9884615758','9884615858','9884616132','9884616134','9884616437','9884616511','9884616532','9884616615','9884616850','9884617170','9884617234','9884617334','9884617445','9884617705','9884617774','9884617795','9884618090','9884618121','9884618240','9884618330','9884618407','9884618603','9884618628','9884618836','9884618884','9884618950','9884619036','9884619119','9884619206','9884619219','9884619323','9884619355','9884619511','9884620206','9884620207','9884620209','9884620293','9884620518','9884620655','9884620803','9884621100','9884621123','9884621241','9884621246','9884621312','9884621886','9884622000','9884622274','9884622277','9884622507','9884622555','9884622584','9884622748','9884622774','9884622858','9884622900','9884623228','9884623639','9884623829','9884624201','9884624202','9884624210','9884624229','9884624246','9884624435','9884625471','9884625775','9884625900','9884626192','9884626474','9884626612','9884626773','9884626781','9884626959','9884627046','9884627327','9884627335','9884627817','9884628138','9884628150','9884628211','9884628381','9884628706','9884629061','9884629262','9884629285','9884629852','9884630052','9884630241','9884631161','9884631433','9884631572','9884631661','9884631886','9884632325','9884632552','9884632587','9884633343','9884633411','9884633632','9884633814','9884634005','9884634014','9884634059','9884634329','9884634346','9884634512','9884635386','9884635856','9884636535','9884637464','9884637869','9884638330','9884638846','9884639513','9884640009','9884640232','9884640731','9884641686','9884641933','9884642117','9884642175','9884642321','9884642322','9884642450','9884642663','9884642914','9884642994','9884643108','9884643822','9884643936','9884644015','9884644112','9884644347','9884644354','9884644408','9884644456','9884644458','9884644494','9884644555','9884644800','9884644882','9884645987','9884646305','9884646710','9884646717','9884646776','9884647366','9884648278','9884648436','9884648899','9884649203','9884649330','9884649753','9884649988','9884650648','9884650875','9884650897','9884650943','9884651029','9884651450','9884651473','9884651510','9884651992','9884652117','9884652206','9884652220','9884652224','9884652376','9884652397','9884652804','9884652924','9884653008','9884653266','9884653367','9884653533','9884653600','9884653855','9884654107','9884654354','9884654544','9884654660','9884654828','9884655276','9884655292','9884655332','9884655562','9884655603','9884655923','9884656456','9884656863','9884657383','9884658384','9884658506','9884658891','9884658962','9884659079','9884659209','9884659420','9884660064','9884660225','9884660254','9884660754','9884660816','9884660867','9884661481','9884662264','9884662360','9884662478','9884662866','9884662946','9884663051','9884663403','9884663471','9884663515','9884663598','9884663623','9884663966','9884664242','9884664272','9884664319','9884664462','9884664509','9884664510','9884664525','9884664700','9884664772','9884664821','9884664838','9884664953','9884665295','9884665347','9884665530','9884665540','9884665655','9884665758','9884665990','9884666013','9884666116','9884666171','9884666398','9884666439','9884666709','9884666749','9884666808','9884667070','9884667210','9884667657','9884667672','9884667794','9884667848','9884667976','9884668191','9884668262','9884668292','9884668602','9884668810','9884668819','9884668820','9884668895','9884668926','9884669008','9884669209','9884669399','9884669469','9884669718','9884669781','9884669924','9884671008','9884671150','9884671336','9884671667','9884671781','9884671851','9884671873','9884671888','9884672290','9884672645','9884672729','9884673409','9884673442','9884673544','9884673570','9884673776','9884674034','9884674122','9884674169','9884674334','9884674686','9884674792','9884675010','9884675512','9884675566','9884676032','9884676165','9884676487','9884676566','9884676692','9884676743','9884677676','9884677700','9884677708','9884677711','9884677758','9884677808','9884677882','9884678252','9884678345','9884678350','9884678402','9884678456','9884678458','9884679006','9884679565','9884679965','9884679984','9884680271','9884680535','9884680545','9884680606','9884680707','9884680777','9884681286','9884681630','9884682442','9884682581','9884683142','9884683348','9884683433','9884683783','9884683903','9884684195','9884684487','9884684570','9884685011','9884685182','9884685293','9884685657','9884685700','9884685809','9884685851','9884685881','9884685907','9884686828','9884686840','9884686853','9884686917','9884686940','9884687083','9884687229','9884687694','9884688068','9884688329','9884688556','9884688634','9884689795','9884690085','9884690348','9884690729','9884690880','9884690936','9884691497','9884691556','9884691985','9884692003','9884692153','9884693369','9884693547','9884693640','9884694475','9884694478','9884694644','9884694849','9884695106','9884695447','9884695544','9884695653','9884696009','9884696143','9884696370','9884696644','9884696766','9884696887','9884698055','9884698563','9884698686','9884698962','9884699204','9884699316','9884699632','9884699646','9884699679','9884699963','9884699987','9884700055','9884700170','9884700365','9884700402','9884700611','9884700625','9884700829','9884700878','9884700904','9884701081','9884701220','9884701258','9884701292','9884701319','9884701518','9884701581','9884701625','9884701626','9884701810','9884701870','9884702024','9884702102','9884702360','9884702408','9884702501','9884702553','9884702554','9884702629','9884703228','9884703229','9884703315','9884703336','9884703650','9884704272','9884704860','9884706060','9884706101','9884706542','9884706580','9884706828','9884707123','9884707175','9884707202','9884707307','9884707319','9884707383','9884707881','9884707990','9884708090','9884708166','9884708516','9884708976','9884709011','9884709208','9884709283','9884709922','9884710018','9884710020','9884710022','9884710031','9884710064','9884710142','9884710308','9884710496','9884710534','9884710608','9884710787','9884711000','9884711007','9884711039','9884711241','9884711337','9884711368','9884711511','9884711588','9884711661','9884711667','9884711688','9884711776','9884711821','9884711926','9884712700','9884712747','9884712767','9884713206','9884713322','9884713881','9884714334','9884714520','9884714567','9884714587','9884714882','9884714954','9884714979','9884715214','9884715594','9884715608','9884715728','9884716072','9884716166','9884716212','9884716717','9884716778','9884716881','9884716919','9884717277','9884717727','9884717848','9884717902','9884717939','9884717981','9884717986','9884718269','9884718401','9884718486','9884718722','9884718954','9884718989','9884719022','9884719106','9884719294','9884719404','9884720057','9884720092','9884720115','9884720430','9884720500','9884720582','9884721312','9884721508','9884721602','9884721691','9884721774','9884721888','9884722073','9884722462','9884722517','9884723030','9884723114','9884723209','9884723900','9884723936','9884723977','9884724525','9884724690','9884724720','9884724730','9884725223','9884725725','9884725956','9884726517','9884726535','9884726881','9884726921','9884727130','9884727299','9884727448','9884727859','9884728855','9884729239','9884729272','9884729414','9884729679','9884729904','9884730143','9884730344','9884730355','9884730391','9884730719','9884731117','9884731293','9884731794','9884732181','9884732311','9884732913','9884733017','9884733326','9884733466','9884733606','9884733775','9884733968','9884734550','9884734587','9884734643','9884735016','9884735186','9884735586','9884735700','9884736044','9884736222','9884736254','9884736468','9884737000','9884737107','9884737328','9884737445','9884737842','9884737979','9884738321','9884738386','9884738658','9884739065','9884739378','9884739897','9884739909','9884740205','9884740759','9884741284','9884741386','9884741424','9884741460','9884743477','9884744225','9884744464','9884744988','9884745120','9884745684','9884745705','9884746171','9884746655','9884746777','9884747023','9884747175','9884747581','9884747759','9884747872','9884747887','9884747903','9884747919','9884748007','9884748117','9884748221','9884748396','9884748699','9884748787','9884748808','9884749159','9884749269','9884749797','9884749821','9884749956','9884750309','9884750360','9884750403','9884750407','9884750546','9884750753','9884750996','9884750999','9884751152','9884751972','9884751982','9884753364','9884753458','9884753803','9884754122','9884755550','9884755796','9884756037','9884756064','9884756711','9884757055','9884757073','9884757214','9884757333','9884757623','9884757705','9884757745','9884758453','9884758457','9884758500','9884758688','9884759267','9884759752','9884760525','9884760555','9884761333','9884761532','9884761546','9884761796','9884762211','9884762516','9884762657','9884764242','9884764275','9884764342','9884764801','9884765451','9884765458','9884765630','9884765915','9884766422','9884766549','9884767080','9884767278','9884767587','9884767636','9884767959','9884768445','9884768868','9884770128','9884770177','9884770247','9884770811','9884771235','9884771357','9884771768','9884772247','9884772633','9884772757','9884773105','9884773277','9884773498','9884773627','9884774230','9884774248','9884774475','9884774668','9884774889','9884775220','9884775358','9884775499','9884775652','9884775937','9884776701','9884776956','9884777007','9884777364','9884777474','9884777488','9884777598','9884777620','9884777884','9884777904','9884777994','9884778110','9884778591','9884778955','9884779114','9884779573','9884779578','9884780083','9884780174','9884780217','9884780358','9884780532','9884781232','9884781716','9884783216','9884783468','9884783976','9884784676','9884785119','9884785151','9884785330','9884785387','9884785499','9884785547','9884785583','9884787277','9884787861','9884788387','9884788549','9884788801','9884788842','9884788856','9884789045','9884789521','9884790088','9884790345','9884790707','9884791562','9884791647','9884791866','9884791987','9884792223','9884792981','9884793266','9884794065','9884794361','9884794393','9884794941','9884795899','9884797318','9884797970','9884798008','9884798368','9884798523','9884798836','9884799534','9884800015','9884800044','9884800061','9884800564','9884800712','9884800742','9884800754','9884800789','9884800830','9884800964','9884801020','9884801049','9884801117','9884801143','9884801182','9884801220','9884801453','9884801454','9884801601','9884801718','9884801818','9884801901','9884802461','9884802546','9884802663','9884802730','9884802735','9884802804','9884803326','9884803365','9884803381','9884803421','9884803452','9884803578','9884803745','9884803804','9884803881','9884803948','9884804049','9884804132','9884804248','9884804296','9884804322','9884804454','9884804807','9884804945','9884806084','9884806132','9884806133','9884806150','9884806228','9884806621','9884806664','9884806899','9884806900','9884806951','9884807345','9884807430','9884807614','9884807667','9884807807','9884807916','9884808125','9884808789','9884808838','9884809007','9884809055','9884809056','9884809230','9884809414','9884809478','9884809685','9884809949','9884810135','9884810200','9884810233','9884810331','9884811206','9884811266','9884811324','9884811359','9884811376','9884811422','9884811490','9884811541','9884811707','9884811765','9884812005','9884812070','9884812085','9884812307','9884812367','9884813039','9884813317','9884813384','9884814211','9884814462','9884814471','9884814569','9884814683','9884814726','9884814840','9884814921','9884815003','9884815051','9884815276','9884815721','9884815836','9884816164','9884816491','9884816522','9884816584','9884816598','9884816764','9884816872','9884816880','9884817040','9884817101','9884817272','9884817331','9884817451','9884817613','9884817816','9884818008','9884818103','9884818105','9884818122','9884818131','9884818431','9884818738','9884818772','9884818783','9884818821','9884818909','9884819169','9884819211','9884819573','9884820024','9884820088','9884820307','9884820675','9884820689','9884821002','9884821105','9884821221','9884821223','9884821233','9884821244','9884821299','9884821313','9884821378','9884821399','9884821655','9884822158','9884822330','9884822426','9884822430','9884822454','9884822508','9884822681','9884822812','9884822832','9884822955','9884822980','9884823254','9884823349','9884823383','9884823498','9884823616','9884823755','9884824154','9884824187','9884824314','9884824569','9884824777','9884824806','9884824953','9884825363','9884825658','9884825967','9884826499','9884826762','9884827095','9884827111','9884827520','9884827585','9884827595','9884827610','9884827667','9884827991','9884828190','9884828550','9884828748','9884828891','9884828893','9884829198','9884829233','9884829943','9884830080','9884830084','9884830118','9884830203','9884830212','9884830245','9884830768','9884831059','9884831296','9884832078','9884832335','9884832489','9884833058','9884833134','9884833234','9884833377','9884833404','9884833747','9884833848','9884833897','9884834082','9884834146','9884834437','9884834595','9884834602','9884834831','9884835171','9884835277','9884835424','9884835553','9884836223','9884836324','9884836785','9884836833','9884836965','9884837056','9884837157','9884837778','9884837833','9884837884','9884838181','9884838293','9884838431','9884838485','9884838518','9884838557','9884838924','9884838998','9884839009','9884839081','9884839229','9884839695','9884839943','9884840087','9884840108','9884840235','9884840456','9884840457','9884840691','9884840825','9884840827','9884841117','9884841122','9884841207','9884841322','9884841388','9884841546','9884842010','9884842020','9884842123','9884842165','9884842536','9884842845','9884842890','9884843253','9884843303','9884843343','9884843735','9884843932','9884843953','9884844062','9884844124','9884844280','9884844326','9884844414','9884844441','9884844592','9884844644','9884844748','9884844939','9884844949','9884845275','9884845479','9884845588','9884846028','9884846161','9884846454','9884846482','9884846667','9884846689','9884846811','9884846829','9884846834','9884847054','9884847291','9884847378','9884847460','9884847537','9884847555','9884847635','9884847882','9884847945','9884847956','9884848022','9884848729','9884848899','9884848997','9884849082','9884849334','9884849358','9884849435','9884849533','9884849609','9884849769','9884849817','9884849836','9884850320','9884850505','9884850664','9884850711','9884850990','9884851066','9884851158','9884851251','9884851347','9884851545','9884851546','9884851606','9884851888','9884852104','9884852309','9884852522','9884852670','9884852997','9884853017','9884853180','9884853433','9884853434','9884853522','9884853686','9884853842','9884854340','9884854587','9884854779','9884854837','9884855011','9884855133','9884855325','9884855476','9884855533','9884855611','9884856168','9884856353','9884856439','9884856675','9884856711','9884856862','9884856969','9884857011','9884857300','9884857314','9884858186','9884858199','9884858364','9884858465','9884858737','9884858848','9884858949','9884858999','9884859332','9884859461','9884859466','9884859530','9884859573','9884859577','9884859992','9884860063','9884860183','9884860304','9884860368','9884860699','9884860842','9884861001','9884861617','9884861747','9884862630','9884862887','9884863331','9884863416','9884863565','9884864041','9884864338','9884864789','9884865080','9884865671','9884866121','9884866416','9884866508','9884866591','9884866677','9884866700','9884867467','9884867748','9884868027','9884868247','9884868297','9884868677','9884868802','9884868819','9884868996','9884869055','9884869178','9884869179','9884869271','9884869376','9884869390','9884869662','9884869674','9884869698','9884869767','9884870013','9884870388','9884870803','9884871041','9884871167','9884871353','9884871580','9884871846','9884871868','9884871990','9884872036','9884872062','9884872204','9884872266','9884872851','9884872888','9884872987','9884873058','9884873315','9884873340','9884873665','9884873668','9884875048','9884875278','9884875287','9884875473','9884875726','9884875954','9884876041','9884876288','9884876362','9884876470','9884877100','9884877206','9884877317','9884877383','9884877397','9884877676','9884877737','9884877788','9884877789','9884877801','9884877927','9884878076','9884878078','9884878315','9884878803','9884878866','9884879000','9884879249','9884880060','9884880077','9884880093','9884880103','9884880158','9884880646','9884880649','9884880841','9884881008','9884881371','9884881737','9884881744','9884881991','9884882070','9884882108','9884882206','9884882316','9884882767','9884882828','9884882839','9884883046','9884883061','9884883211','9884883345','9884883503','9884883549','9884883642','9884883774','9884883852','9884884083','9884884101','9884884268','9884884542','9884884707','9884884726','9884884733','9884885169','9884885183','9884885354','9884885445','9884885508','9884885575','9884885767','9884885881','9884885953','9884886109','9884886397','9884886600','9884886608','9884887149','9884887332','9884887480','9884887694','9884887728','9884887759','9884887831','9884887846','9884887847','9884888064','9884888145','9884888406','9884888464','9884888504','9884888748','9884888885','9884889562','9884889718','9884889962','9884890329','9884890363','9884890508','9884890603','9884890700','9884890707','9884890824','9884890831','9884890944','9884890946','9884891056','9884891109','9884891251','9884891656','9884891913','9884892007','9884892008','9884892238','9884892285','9884892328','9884892459','9884892695','9884892721','9884893082','9884893345','9884893700','9884894422','9884894425','9884894545','9884894824','9884894825','9884894841','9884894870','9884894909','9884895092','9884895192','9884895553','9884895569','9884895589','9884895840','9884896123','9884896425','9884896469','9884896564','9884896633','9884896929','9884897189','9884897466','9884897598','9884897639','9884897934','9884898188','9884898192','9884898198','9884898336','9884898403','9884899030','9884899101','9884899190','9884899379','9884899473','9884899519','9884899676','9884899797','9884900171','9884900211','9884900412','9884900511','9884900530','9884900667','9884900700','9884900959','9884901278','9884901366','9884901444','9884901615','9884902302','9884902410','9884902655','9884903017','9884903266','9884903347','9884903855','9884903933','9884904062','9884904646','9884906100','9884906615','9884907007','9884907164','9884907228','9884907444','9884907568','9884908085','9884908100','9884908173','9884908419','9884908454','9884908701','9884908768','9884909040','9884909224','9884909548','9884909877','9884909945','9884910003','9884910012','9884910016','9884910167','9884910188','9884910654','9884911018','9884911194','9884911253','9884911565','9884911738','9884911783','9884911833','9884912009','9884912340','9884912447','9884913044','9884913101','9884913482','9884913578','9884913582','9884913730','9884913822','9884913999','9884914163','9884914732','9884914946','9884914987','9884915116','9884915389','9884915507','9884915786','9884916007','9884916179','9884916321','9884916623','9884916673','9884916677','9884916836','9884917589','9884917751','9884917885','9884917922','9884917996','9884918024','9884918066','9884918428','9884919103','9884919527','9884919920','9884920009','9884920015','9884920021','9884920366','9884920492','9884921080','9884921288','9884921490','9884922300','9884922719','9884922733','9884922940','9884923023','9884923217','9884923313','9884923324','9884923436','9884924027','9884924496','9884924629','9884924756','9884924811','9884924993','9884925249','9884925871','9884926082','9884926221','9884926537','9884926848','9884927173','9884927223','9884927282','9884927946','9884928874','9884929126','9884929197','9884929274','9884929283','9884929441','9884929804','9884930009','9884930097','9884930491','9884930926','9884931061','9884931103','9884931133','9884931351','9884931572','9884931737','9884931821','9884932019','9884932090','9884932170','9884932368','9884932565','9884932699','9884932976','9884933019','9884933049','9884933641','9884934124','9884934198','9884934240','9884934301','9884934342','9884934359','9884934564','9884934749','9884935426','9884935525','9884935796','9884936041','9884936559','9884936569','9884936664','9884936669','9884936897','9884937350','9884937363','9884937731','9884938089','9884938201','9884938470','9884938640','9884939053','9884939109','9884939415','9884939424','9884939437','9884939490','9884939518','9884940005','9884940022','9884940117','9884940141','9884940484','9884940562','9884940715','9884940860','9884940881','9884941395','9884941447','9884941539','9884941986','9884941999','9884942459','9884942502','9884942888','9884943163','9884943412','9884943581','9884943631','9884943793','9884943839','9884944081','9884944540','9884944668','9884945233','9884945261','9884945490','9884945561','9884946001','9884946237','9884946422','9884946484','9884946516','9884946803','9884947402','9884947427','9884947560','9884947980','9884948045','9884948075','9884948094','9884948190','9884948349','9884948525','9884948648','9884948923','9884948936','9884949068','9884949149','9884949257','9884949543','9884949547','9884949601','9884949663','9884949880','9884950333','9884951107','9884951108','9884951178','9884951397','9884952028','9884952350','9884952449','9884953014','9884953297','9884953364','9884953375','9884953437','9884953516','9884953962','9884954119','9884954194','9884954341','9884954549','9884954656','9884954711','9884954858','9884955041','9884955216','9884955228','9884955575','9884955720','9884956019','9884956272','9884957197','9884957375','9884957752','9884957973','9884958574','9884958732','9884958987','9884959029','9884959225','9884959250','9884959421','9884959462','9884959538','9884959621','9884959666','9884959884','9884960235','9884960441','9884960915','9884961626','9884961861','9884961984','9884962066','9884962430','9884962722','9884963203','9884963420','9884963683','9884964096','9884964214','9884964219','9884964242','9884964668','9884964774','9884964846','9884965435','9884965500','9884965580','9884966144','9884966232','9884966571','9884966984','9884967013','9884967170','9884967263','9884967544','9884967750','9884967931','9884967992','9884968086','9884968180','9884968245','9884968295','9884968673','9884968687','9884968840','9884968946','9884968969','9884969045','9884969123','9884969715','9884969821','9884969950','9884970070','9884970198','9884970432','9884970773','9884970776','9884972236','9884972744','9884972802','9884972932','9884973057','9884973614','9884973683','9884973924','9884974109','9884974430','9884974794','9884975566','9884975718','9884976032','9884976334','9884976409','9884977092','9884977160','9884977704','9884977748','9884978795','9884978809','9884979272','9884979463','9884979558','9884979717','9884979735','9884979994','9884980280','9884980546','9884981138','9884981181','9884981364','9884981447','9884981702','9884981870','9884981990','9884982029','9884982279','9884982484','9884982749','9884982782','9884983013','9884984396','9884985602','9884985652','9884985821','9884985845','9884985854','9884985869','9884985888','9884985908','9884986355','9884986668','9884987168','9884987192','9884987372','9884987398','9884987479','9884987505','9884987570','9884987658','9884987892','9884988048','9884988304','9884988367','9884988467','9884988517','9884988749','9884988776','9884988977','9884989142','9884989370','9884989777','9884990026','9884990483','9884990645','9884990690','9884990718','9884990837','9884990855','9884990940','9884991113','9884991190','9884991313','9884991366','9884991376','9884991656','9884991767','9884991935','9884992115','9884992266','9884992864','9884992871','9884993023','9884993037','9884993292','9884993320','9884993380','9884993526','9884993535','9884994059','9884994145','9884994214','9884994542','9884994857','9884994876','9884994882','9884994883','9884995066','9884995089','9884995167','9884995219','9884995242','9884995246','9884995431','9884995524','9884995741','9884996453','9884996620','9884996699','9884997130','9884997200','9884997315','9884997466','9884997542','9884997676','9884997738','9884997920','9884998076','9884998329','9884998438','9884998814','9884998831','9884998938','9884999109','9884999268','9884999429','9884999458','9884999487','9884999684','9884999771','9885018856','9885025190','9885027266','9885040434','9885061481','9885067597','9885071122','9885089363','9885100802','9885106572','9885127678','9885178546','9885186575','9885252771','9885295629','9885326719','9885335412','9885338816','9885353360','9885382149','9885388958','9885394933','9885395716','9885402266','9885403842','9885408060','9885413291','9885420385','9885437203','9885443143','9885467272','9885472277','9885474723','9885502504','9885510137','9885512545','9885519163','9885536259','9885539899','9885545677','9885548540','9885551439','9885556408','9885569222','9885578729','9885584348','9885587461','9885608110','9885609902','9885625432','9885646495','9885731517','9885732317','9885764388','9885771523','9885777895','9885778867','9885787557','9885794749','9885801104','9885835874','9885842459','9885851328','9885875864','9885876510','9885878182','9885891062','9885971357','9885985210','9885989522','9886001482','9886014123','9886018580','9886018798','9886020955','9886021007','9886021155','9886021250','9886022229','9886023099','9886028374','9886037465','9886051550','9886051985','9886054029','9886055604','9886057054','9886062121','9886066009','9886071947','9886077155','9886091914','9886097849','9886098670','9886118483','9886122474','9886123233','9886126788','9886132765','9886135351','9886143240','9886153707','9886155244','9886156719','9886160599','9886163442','9886168187','9886183836','9886184446','9886208212','9886210338','9886213286','9886220921','9886225678','9886228267','9886236321','9886245319','9886251712','9886255515','9886282925','9886282941','9886284735','9886288334','9886296914','9886300414','9886300539','9886304228','9886305081','9886306412','9886311051','9886315363','9886331399','9886334019','9886337543','9886349024','9886356719','9886377288','9886395962','9886400087','9886406758','9886421637','9886422518','9886424889','9886429833','9886442000','9886444380','9886448816','9886456635','9886458542','9886462626','9886475574','9886476095','9886477717','9886481141','9886486830','9886489189','9886507655','9886522272','9886530204','9886535513','9886538701','9886549977','9886555098','9886555194','9886559274','9886560707','9886565103','9886566676','9886569088','9886580595','9886582058','9886589350','9886597288','9886598080','9886600648','9886605264','9886611197','9886616164','9886618948','9886623738','9886630010','9886631199','9886634581','9886646446','9886647787','9886652330','9886657000','9886667048','9886667716','9886672813','9886675610','9886692228','9886692483','9886694567','9886703397','9886707601','9886710122','9886710770','9886711150','9886712228','9886714113','9886721254','9886724657','9886738385','9886738589','9886741014','9886743176','9886748941','9886763900','9886765516','9886786002','9886788822','9886790283','9886797980','9886801578','9886808365','9886808908','9886811945','9886816261','9886826072','9886830535','9886836461','9886838091','9886840018','9886842345','9886848111','9886848331','9886855715','9886869994','9886881530','9886881868','9886892530','9886895318','9886897610','9886901901','9886943998','9886944463','9886952780','9886959630','9886964820','9886970933','9886977834','9886985585','9886986868','9886987967','9886988778','9887151311','9887585641','9888289009','9888430042','9888466999','9888690978','9888892662','9890070875','9890106732','9890143839','9890192324','9890260119','9890414579','9890422183','9890432220','9890490868','9890683530','9890699449','9890702268','9890740862','9890786499','9890867604','9890982050','9891005845','9891014125','9891106602','9891114554','9891131497','9891620710','9891684906','9891718752','9891749430','9891792003','9891816036','9891899912','9892086517','9892138469','9892203791','9892224729','9892240118','9892264554','9892333676','9892354194','9892426342','9892477388','9892558504','9892581775','9892665738','9892691938','9892879155','9892883732','9892905641','9892977297','9893119629','9893307411','9893504849','9893920556','9894006032','9894007210','9894007400','9894008516','9894008730','9894008886','9894010109','9894010116','9894010146','9894010617','9894010878','9894010927','9894010970','9894010998','9894011288','9894011701','9894012225','9894013223','9894013502','9894014143','9894014469','9894014730','9894014817','9894015253','9894015266','9894015560','9894016400','9894016632','9894016679','9894017180','9894017408','9894017739','9894018606','9894018845','9894019875','9894020169','9894021214','9894021653','9894022338','9894022373','9894023625','9894023668','9894024115','9894024609','9894024727','9894024817','9894025853','9894026913','9894027339','9894027658','9894028286','9894028363','9894029190','9894029236','9894029246','9894029288','9894029765','9894030107','9894030208','9894030562','9894031190','9894031741','9894032123','9894032470','9894032871','9894033043','9894033131','9894033879','9894034514','9894035678','9894035961','9894037457','9894038098','9894038259','9894038888','9894039386','9894040220','9894040657','9894040771','9894041001','9894041144','9894043259','9894043368','9894043586','9894044099','9894044531','9894044844','9894045049','9894045520','9894047042','9894047236','9894047407','9894048397','9894048625','9894048970','9894049549','9894049677','9894049965','9894050171','9894050680','9894050848','9894052034','9894052479','9894052530','9894053434','9894053442','9894054105','9894054586','9894054787','9894054835','9894054844','9894055038','9894055276','9894055577','9894055954','9894056558','9894056603','9894056775','9894056783','9894057171','9894057284','9894057411','9894058059','9894058460','9894058661','9894059497','9894059597','9894060210','9894060450','9894060963','9894061191','9894061909','9894062561','9894062646','9894062651','9894063288','9894064929','9894065027','9894065030','9894065980','9894066165','9894066282','9894066373','9894066516','9894066535','9894066830','9894067105','9894067291','9894067910','9894068410','9894068680','9894069166','9894069244','9894069299','9894070009','9894070567','9894070862','9894070959','9894072819','9894072830','9894073260','9894073613','9894073925','9894074216','9894074226','9894074369','9894074375','9894074662','9894075526','9894075846','9894075881','9894075939','9894076145','9894076151','9894076338','9894076434','9894076556','9894076569','9894076676','9894077829','9894077978','9894079020','9894080903','9894080975','9894082608','9894082761','9894082855','9894083199','9894083357','9894083432','9894083812','9894083933','9894084017','9894084311','9894084646','9894085281','9894085414','9894085453','9894085816','9894085890','9894086460','9894086555','9894087190','9894087287','9894087736','9894088119','9894088379','9894088604','9894088747','9894088807','9894088877','9894088956','9894089061','9894089170','9894089695','9894090559','9894090727','9894090847','9894091456','9894091983','9894092315','9894092341','9894092626','9894092939','9894093768','9894095349','9894095945','9894096268','9894096789','9894096798','9894097000','9894097764','9894098084','9894098197','9894098931','9894098946','9894099008','9894099155','9894099159','9894099682','9894099706','9894100016','9894100425','9894100466','9894101202','9894102119','9894102711','9894103193','9894103625','9894103771','9894104082','9894104520','9894105553','9894106012','9894106723','9894106823','9894106897','9894107095','9894107608','9894107676','9894107883','9894107890','9894108758','9894109022','9894109039','9894109729','9894109914','9894109955','9894110183','9894110475','9894111040','9894111176','9894111177','9894112299','9894113026','9894113975','9894114125','9894114513','9894114650','9894114827','9894114848','9894115150','9894115432','9894116129','9894116662','9894117153','9894117161','9894117632','9894118211','9894118533','9894118572','9894119048','9894120237','9894120320','9894121104','9894121777','9894122319','9894122551','9894122588','9894123004','9894123153','9894123376','9894123615','9894123816','9894124078','9894124853','9894124988','9894125170','9894125181','9894125929','9894128275','9894128498','9894128577','9894129262','9894129757','9894130054','9894130491','9894131657','9894132037','9894133308','9894133549','9894133906','9894134154','9894135453','9894135578','9894135648','9894136232','9894136638','9894137100','9894137170','9894137897','9894138738','9894138880','9894139297','9894140914','9894141046','9894141084','9894141247','9894141384','9894141969','9894142545','9894142721','9894143142','9894143343','9894143403','9894143504','9894143542','9894143683','9894143813','9894143816','9894144119','9894144871','9894145022','9894145533','9894145936','9894146046','9894146308','9894146322','9894146829','9894147902','9894147958','9894148537','9894148592','9894148797','9894151225','9894152342','9894152377','9894152572','9894152938','9894153147','9894153527','9894153541','9894154695','9894155526','9894155699','9894155975','9894156034','9894156149','9894157196','9894157223','9894157542','9894157585','9894158040','9894158074','9894158218','9894158496','9894158851','9894160061','9894160663','9894160782','9894160961','9894161122','9894162232','9894162285','9894162335','9894162367','9894162489','9894162663','9894163290','9894163621','9894164852','9894165838','9894166069','9894166839','9894166877','9894167273','9894167454','9894167761','9894168169','9894169316','9894170040','9894170216','9894171133','9894171586','9894171614','9894172606','9894173710','9894173795','9894174124','9894174439','9894175795','9894176114','9894176506','9894177222','9894177491','9894178421','9894178455','9894178731','9894179229','9894179433','9894179472','9894180704','9894180839','9894180878','9894181566','9894181676','9894182731','9894182777','9894183214','9894183806','9894183883','9894184802','9894185581','9894185703','9894186563','9894187766','9894187864','9894188252','9894188453','9894188602','9894188645','9894188892','9894189659','9894190230','9894191365','9894191592','9894192672','9894193363','9894193402','9894193406','9894193537','9894194362','9894195043','9894195192','9894195664','9894195908','9894196633','9894196650','9894196661','9894197983','9894198088','9894198257','9894199015','9894199017','9894199306','9894199605','9894199807','9894199996','9894200126','9894200721','9894201099','9894201962','9894203232','9894203559','9894204051','9894204862','9894205257','9894206041','9894206630','9894206744','9894207034','9894207499','9894209492','9894210070','9894210955','9894211188','9894211851','9894211971','9894212591','9894212923','9894213415','9894214243','9894215463','9894215879','9894216003','9894216723','9894217172','9894217744','9894218520','9894218817','9894218990','9894219082','9894219420','9894219805','9894220054','9894220452','9894220818','9894221004','9894221912','9894222271','9894223098','9894223454','9894223486','9894223535','9894223939','9894224090','9894224095','9894224314','9894225008','9894225109','9894225309','9894225466','9894225473','9894227284','9894228826','9894229939','9894230000','9894230056','9894230615','9894230733','9894230786','9894230813','9894231073','9894231081','9894231626','9894231647','9894231700','9894232699','9894232780','9894232832','9894232872','9894233295','9894233638','9894233722','9894233957','9894234154','9894234687','9894235453','9894235664','9894236519','9894236846','9894237264','9894237376','9894238323','9894240490','9894240740','9894240948','9894241104','9894241151','9894241346','9894242286','9894243238','9894244305','9894244400','9894244644','9894244851','9894245345','9894245601','9894245765','9894246630','9894246937','9894247613','9894247888','9894248118','9894248214','9894248404','9894249289','9894249727','9894250103','9894250150','9894250433','9894251172','9894251711','9894252526','9894252533','9894252645','9894252851','9894252962','9894254144','9894254326','9894254482','9894254809','9894254983','9894255573','9894255668','9894256640','9894257626','9894258130','9894258861','9894260302','9894262164','9894262211','9894262611','9894262760','9894263312','9894264904','9894265625','9894265988','9894265989','9894266265','9894266555','9894266787','9894266818','9894266955','9894267514','9894269023','9894269034','9894269282','9894269542','9894269861','9894270366','9894270757','9894270912','9894272615','9894272903','9894273546','9894273581','9894274135','9894276381','9894276518','9894276862','9894276923','9894277012','9894277102','9894277599','9894277634','9894278891','9894279040','9894279183','9894279525','9894280523','9894280889','9894281153','9894281195','9894281229','9894282165','9894282686','9894282913','9894282950','9894283183','9894283266','9894283373','9894283441','9894283906','9894284060','9894285412','9894285554','9894286146','9894286289','9894286468','9894287292','9894287515','9894287581','9894287622','9894288752','9894289151','9894289569','9894290333','9894291132','9894291885','9894292149','9894292664','9894292722','9894292861','9894292987','9894293124','9894293228','9894293575','9894293821','9894293893','9894293952','9894294282','9894294699','9894295958','9894296150','9894296953','9894297237','9894297542','9894298587','9894299293','9894299330','9894299571','9894299892','9894300298','9894300309','9894300503','9894300892','9894302251','9894302603','9894302666','9894302946','9894302975','9894304400','9894304842','9894305106','9894305266','9894305652','9894306021','9894306563','9894307032','9894307407','9894307424','9894307554','9894308108','9894308157','9894308849','9894309167','9894309490','9894309532','9894309712','9894309890','9894310209','9894310342','9894311015','9894311114','9894311604','9894311886','9894312845','9894313157','9894313389','9894313731','9894315855','9894316677','9894316830','9894317079','9894317212','9894317305','9894318933','9894319691','9894319798','9894320088','9894320302','9894321094','9894322003','9894322415','9894322525','9894322665','9894323233','9894323352','9894323823','9894324547','9894326681','9894327004','9894327395','9894327645','9894327789','9894328266','9894328381','9894328538','9894329595','9894330010','9894330894','9894330900','9894331123','9894331484','9894331588','9894332469','9894332500','9894332504','9894332749','9894333800','9894334036','9894334238','9894334274','9894334468','9894335212','9894335660','9894335661','9894336309','9894336353','9894337587','9894337635','9894337824','9894339256','9894339419','9894340879','9894341010','9894341115','9894341380','9894342043','9894342287','9894342345','9894343488','9894343934','9894344518','9894348460','9894348840','9894349226','9894349977','9894351096','9894351472','9894352020','9894353354','9894353633','9894353795','9894354025','9894354605','9894355134','9894355390','9894355509','9894355526','9894355754','9894356001','9894356064','9894356424','9894356770','9894356822','9894357381','9894357486','9894358088','9894358806','9894359395','9894360433','9894361388','9894361516','9894361525','9894362331','9894365009','9894365724','9894366456','9894366693','9894367023','9894367787','9894368384','9894369339','9894369732','9894369833','9894370087','9894370555','9894371068','9894371598','9894372270','9894372957','9894373288','9894373709','9894375086','9894375140','9894376245','9894376446','9894376465','9894376589','9894376822','9894379236','9894379754','9894379972','9894381719','9894382910','9894383004','9894383813','9894384652','9894384817','9894387307','9894387694','9894388684','9894390133','9894392103','9894394107','9894395384','9894396332','9894397009','9894397095','9894397109','9894398751','9894398921','9894399297','9894399328','9894399439','9894399454','9894400101','9894400719','9894400996','9894401430','9894401889','9894402627','9894404366','9894405098','9894405354','9894405677','9894405816','9894405822','9894406443','9894406883','9894407162','9894408239','9894408676','9894409410','9894410119','9894410145','9894410176','9894410818','9894411015','9894411095','9894411100','9894411133','9894411500','9894411772','9894413263','9894413807','9894415590','9894415975','9894416206','9894416676','9894416930','9894418123','9894418178','9894418309','9894418359','9894418609','9894419444','9894420099','9894420664','9894420801','9894421951','9894422307','9894422447','9894422663','9894423252','9894424268','9894424652','9894424727','9894425482','9894425573','9894426098','9894426469','9894426606','9894426780','9894427063','9894427158','9894427390','9894428265','9894428644','9894429025','9894429937','9894430045','9894430119','9894430345','9894430878','9894431267','9894431344','9894431387','9894431408','9894431641','9894431834','9894432633','9894433011','9894433155','9894434627','9894435606','9894436338','9894436384','9894436614','9894436717','9894437271','9894437514','9894437703','9894438042','9894438374','9894439599','9894439761','9894440431','9894441522','9894441664','9894442217','9894442884','9894443200','9894443236','9894443281','9894443317','9894443408','9894443716','9894443888','9894444109','9894444365','9894444430','9894444605','9894444648','9894445156','9894445276','9894445578','9894445731','9894445743','9894446002','9894446256','9894446661','9894447300','9894447313','9894447392','9894449106','9894449123','9894449148','9894449222','9894449502','9894450079','9894450290','9894450596','9894453947','9894454581','9894454873','9894455166','9894456025','9894456323','9894456418','9894456468','9894456916','9894456959','9894457002','9894457237','9894457758','9894458870','9894459966','9894459995','9894460240','9894460635','9894461060','9894461121','9894461234','9894462549','9894463099','9894463262','9894463606','9894464623','9894464743','9894464943','9894465480','9894465501','9894465773','9894465945','9894465984','9894466300','9894466311','9894466381','9894466977','9894467007','9894467021','9894467538','9894467790','9894467839','9894468222','9894468819','9894469089','9894469193','9894469601','9894470520','9894470751','9894472204','9894472579','9894472892','9894473604','9894473633','9894473755','9894473931','9894475133','9894475502','9894476748','9894477108','9894478849','9894478851','9894479498','9894480287','9894480809','9894481085','9894481668','9894481833','9894482399','9894482549','9894483383','9894484649','9894486461','9894486969','9894487296','9894487913','9894488330','9894490132','9894490240','9894490276','9894490608','9894491987','9894493394','9894493560','9894493818','9894495592','9894495594','9894496690','9894496693','9894497649','9894497901','9894498170','9894498369','9894498699','9894498718','9894498844','9894499906','9894500445','9894500862','9894501186','9894501439','9894503311','9894503338','9894503776','9894504043','9894504947','9894505222','9894505380','9894505553','9894505567','9894505657','9894506132','9894507252','9894507778','9894508486','9894510099','9894510602','9894511145','9894511193','9894511341','9894511357','9894512305','9894512490','9894512505','9894512510','9894514329','9894514919','9894515075','9894515151','9894515790','9894516583','9894517246','9894517794','9894517795','9894518052','9894519124','9894519273','9894520020','9894522188','9894523213','9894523424','9894523640','9894524112','9894524230','9894524240','9894524835','9894525286','9894526136','9894526222','9894526786','9894526810','9894527534','9894528204','9894528500','9894528566','9894529457','9894529518','9894529627','9894529747','9894529787','9894530335','9894530991','9894531109','9894531919','9894532123','9894532326','9894532335','9894532557','9894533813','9894533890','9894534552','9894535082','9894535798','9894536035','9894536600','9894537567','9894538007','9894538061','9894538331','9894538439','9894539395','9894539409','9894539437','9894539509','9894539838','9894540250','9894540605','9894540633','9894540711','9894540874','9894542652','9894542828','9894542933','9894543455','9894543722','9894543868','9894544402','9894544584','9894544615','9894544699','9894546484','9894546732','9894546925','9894548046','9894548786','9894549239','9894549900','9894550501','9894550579','9894550667','9894550820','9894550827','9894550959','9894551188','9894551600','9894552205','9894552395','9894552552','9894553922','9894554660','9894554703','9894555185','9894555746','9894556114','9894556499','9894556595','9894556600','9894556950','9894557038','9894557666','9894557674','9894559123','9894559433','9894559712','9894560177','9894560184','9894560533','9894560575','9894560894','9894561721','9894562181','9894562259','9894562912','9894564480','9894564563','9894564811','9894564977','9894564982','9894565395','9894565977','9894566405','9894566799','9894567106','9894567141','9894567156','9894567171','9894568056','9894568068','9894569559','9894569902','9894569996','9894570727','9894571127','9894571251','9894571430','9894572401','9894572727','9894573093','9894573746','9894575250','9894575560','9894576482','9894576707','9894576752','9894577177','9894578257','9894578589','9894578885','9894579678','9894580037','9894580041','9894580336','9894580683','9894580892','9894580958','9894581292','9894582716','9894583210','9894583631','9894583774','9894584016','9894584099','9894584402','9894584546','9894584554','9894585583','9894585826','9894587833','9894588444','9894589596','9894591047','9894591234','9894591708','9894592532','9894592894','9894593343','9894594186','9894594272','9894594499','9894595811','9894595900','9894595938','9894596090','9894596293','9894596364','9894596685','9894596834','9894597372','9894597434','9894597811','9894597987','9894598228','9894598653','9894598801','9894599910','9894600088','9894600288','9894600876','9894601341','9894602303','9894602922','9894604444','9894605094','9894605170','9894606183','9894606278','9894607070','9894607390','9894607391','9894608303','9894609144','9894609313','9894609399','9894610654','9894610681','9894610707','9894610866','9894610935','9894611017','9894611157','9894611344','9894611587','9894612081','9894612240','9894612652','9894612658','9894613141','9894613643','9894613907','9894614011','9894614180','9894614186','9894614231','9894615472','9894615956','9894615998','9894616115','9894617850','9894617917','9894618386','9894618952','9894619156','9894619191','9894619697','9894619750','9894620188','9894621001','9894621217','9894622284','9894622889','9894623276','9894623467','9894624240','9894624349','9894624582','9894624684','9894624860','9894624924','9894625527','9894625553','9894626424','9894626492','9894626625','9894626868','9894627064','9894627069','9894627564','9894627759','9894627879','9894628773','9894630486','9894631102','9894631499','9894631950','9894632127','9894632432','9894632678','9894632833','9894633128','9894633216','9894633374','9894633533','9894633612','9894634222','9894634356','9894634599','9894634930','9894636082','9894637056','9894637379','9894638199','9894638964','9894639336','9894639819','9894640000','9894640030','9894640128','9894640804','9894641998','9894642004','9894643688','9894643798','9894644730','9894644824','9894644991','9894644998','9894645203','9894645511','9894645626','9894646584','9894646920','9894646986','9894648609','9894649065','9894649143','9894649253','9894649296','9894649416','9894649622','9894649691','9894650041','9894651224','9894651876','9894651881','9894653554','9894653706','9894654366','9894654999','9894655625','9894656482','9894656504','9894656622','9894659358','9894659902','9894660178','9894660437','9894660974','9894661683','9894662033','9894662240','9894662899','9894663001','9894665539','9894665587','9894665627','9894666090','9894666604','9894666847','9894666897','9894667251','9894667368','9894667884','9894668033','9894668060','9894669159','9894669697','9894670018','9894670703','9894670899','9894671694','9894671984','9894672352','9894672601','9894672860','9894672875','9894674234','9894674478','9894674633','9894675081','9894675554','9894675644','9894675653','9894676103','9894676864','9894677002','9894677070','9894677317','9894677505','9894677720','9894677751','9894678495','9894680148','9894680937','9894680941','9894681345','9894682603','9894682864','9894684007','9894684158','9894684184','9894684621','9894684804','9894684976','9894686556','9894686667','9894687476','9894687789','9894688216','9894688557','9894688656','9894689002','9894689291','9894690444','9894690614','9894691121','9894691316','9894691631','9894691757','9894693666','9894693668','9894694241','9894694762','9894695970','9894696136','9894696144','9894696525','9894696706','9894696981','9894697035','9894697652','9894698071','9894698623','9894698770','9894699588','9894699606','9894699607','9894700509','9894700933','9894701020','9894701944','9894702376','9894702424','9894703350','9894703535','9894704598','9894704797','9894705267','9894705318','9894705708','9894705733','9894705757','9894707766','9894707799','9894707940','9894708189','9894710018','9894711844','9894711862','9894711990','9894712181','9894712228','9894713935','9894714120','9894715384','9894715557','9894715624','9894715822','9894715862','9894715906','9894715988','9894717071','9894717558','9894718213','9894718512','9894718765','9894718771','9894719427','9894720102','9894720348','9894720407','9894720412','9894720446','9894721416','9894722005','9894722393','9894723624','9894723976','9894724981','9894725366','9894725407','9894725703','9894726179','9894726588','9894726680','9894727519','9894727694','9894727900','9894728439','9894729403','9894730120','9894730364','9894730488','9894731566','9894731591','9894732480','9894733118','9894734096','9894734840','9894734887','9894735354','9894735755','9894736236','9894736367','9894737392','9894737743','9894738584','9894739123','9894739125','9894739922','9894740136','9894740567','9894741360','9894741866','9894742530','9894742624','9894742959','9894744100','9894744380','9894745614','9894745661','9894745679','9894745777','9894746121','9894746220','9894746354','9894746564','9894747113','9894747282','9894747580','9894747882','9894748586','9894748693','9894749380','9894749419','9894750027','9894750120','9894750230','9894750276','9894750329','9894750517','9894750751','9894753693','9894753902','9894754272','9894755040','9894755505','9894757605','9894757752','9894757860','9894758331','9894758385','9894758447','9894758724','9894758873','9894760325','9894760669','9894761348','9894761676','9894761715','9894762102','9894762287','9894762434','9894762538','9894763798','9894764240','9894765299','9894765345','9894765556','9894765613','9894766335','9894766443','9894766677','9894767947','9894768487','9894768663','9894768911','9894769432','9894769594','9894770037','9894770770','9894770807','9894771313','9894771590','9894771943','9894772010','9894772209','9894772433','9894772641','9894772851','9894773568','9894773722','9894774594','9894775018','9894775157','9894775344','9894775636','9894775981','9894776154','9894776170','9894776361','9894776735','9894777354','9894779909','9894779945','9894780070','9894780334','9894780559','9894781152','9894781925','9894782952','9894783710','9894784342','9894784808','9894784975','9894785042','9894785361','9894785814','9894785950','9894786038','9894786269','9894786731','9894788314','9894788382','9894788650','9894788801','9894789177','9894789220','9894789369','9894789440','9894790050','9894790715','9894791917','9894792226','9894794117','9894794875','9894795666','9894795688','9894795850','9894795855','9894797117','9894797248','9894797589','9894797981','9894798026','9894798237','9894798970','9894799499','9894799521','9894799966','9894800024','9894800286','9894800799','9894801327','9894801526','9894802176','9894802539','9894802984','9894803325','9894803474','9894804258','9894804930','9894805548','9894805960','9894806143','9894807449','9894807789','9894809541','9894809900','9894810307','9894811048','9894811717','9894811811','9894812857','9894812989','9894814101','9894814118','9894814162','9894814682','9894815515','9894815698','9894815916','9894816227','9894816313','9894817037','9894817392','9894817599','9894818385','9894818674','9894819102','9894819499','9894819643','9894819872','9894819948','9894820243','9894820330','9894820482','9894820921','9894821245','9894821345','9894822817','9894822853','9894822890','9894822933','9894823428','9894823529','9894823812','9894823985','9894824958','9894825030','9894825142','9894825482','9894825599','9894825707','9894826084','9894827880','9894828129','9894828938','9894828995','9894829250','9894829826','9894830658','9894831111','9894831366','9894831837','9894832180','9894832391','9894833350','9894833433','9894833434','9894833707','9894833883','9894835128','9894835339','9894838289','9894838657','9894839552','9894840850','9894843100','9894843612','9894843781','9894844551','9894844718','9894845475','9894846446','9894846935','9894846963','9894847321','9894847406','9894847526','9894848261','9894848668','9894848848','9894849091','9894849631','9894850460','9894851076','9894851306','9894852123','9894853287','9894853793','9894854327','9894854520','9894854903','9894855036','9894855207','9894855389','9894855493','9894855537','9894855635','9894856427','9894857990','9894859010','9894859600','9894860064','9894860221','9894860481','9894860547','9894860851','9894860867','9894861689','9894862042','9894862627','9894863513','9894864606','9894864999','9894865380','9894865668','9894865795','9894866183','9894866429','9894866450','9894866535','9894867224','9894867293','9894867588','9894868619','9894871426','9894871997','9894872128','9894873421','9894874229','9894874747','9894876534','9894877684','9894877852','9894878346','9894878440','9894879619','9894879902','9894880096','9894880913','9894881349','9894882267','9894882277','9894884527','9894884542','9894885123','9894885563','9894886326','9894886870','9894887451','9894887684','9894888324','9894888514','9894889017','9894889189','9894889490','9894890403','9894890621','9894890920','9894891907','9894892007','9894892589','9894893098','9894894422','9894895737','9894895815','9894895836','9894896139','9894896678','9894896702','9894897466','9894897998','9894898209','9894899975','9894902507','9894903189','9894903467','9894905330','9894905526','9894906332','9894906651','9894907088','9894907229','9894908127','9894908331','9894909189','9894909491','9894909702','9894909751','9894909812','9894910282','9894910347','9894910407','9894910762','9894911080','9894911162','9894911840','9894912361','9894912504','9894912519','9894914158','9894914232','9894914382','9894914450','9894917088','9894917366','9894917512','9894917687','9894917978','9894918500','9894918628','9894919281','9894919578','9894920587','9894921285','9894922969','9894923401','9894923864','9894924614','9894924801','9894925169','9894925485','9894925521','9894925771','9894926056','9894927302','9894927343','9894927348','9894928456','9894928840','9894929021','9894929125','9894929183','9894929592','9894929677','9894929842','9894930081','9894932223','9894932256','9894932618','9894932699','9894932894','9894933045','9894933169','9894933530','9894934038','9894934374','9894935577','9894936152','9894937018','9894937340','9894938646','9894939536','9894939747','9894940380','9894941481','9894942456','9894942531','9894944292','9894946131','9894946778','9894946801','9894946830','9894947096','9894947399','9894947453','9894947666','9894947673','9894948006','9894948055','9894948322','9894948839','9894949029','9894949467','9894952089','9894952110','9894952474','9894952949','9894953021','9894953087','9894953395','9894954712','9894955125','9894955788','9894955987','9894956113','9894956425','9894956576','9894956868','9894957263','9894957680','9894957703','9894957757','9894957817','9894958061','9894958258','9894958478','9894958693','9894958824','9894959637','9894959761','9894959890','9894960109','9894960661','9894960744','9894960813','9894961855','9894961961','9894962143','9894963910','9894964290','9894964536','9894965126','9894965499','9894965540','9894966252','9894966899','9894967997','9894968448','9894968861','9894968889','9894970842','9894971053','9894971171','9894971650','9894972676','9894973535','9894974410','9894974621','9894974629','9894975421','9894975953','9894976058','9894976999','9894977389','9894977444','9894977891','9894978001','9894978043','9894978553','9894978709','9894978865','9894979665','9894980086','9894980706','9894981571','9894981647','9894982314','9894983174','9894983367','9894984038','9894985794','9894985814','9894985828','9894986001','9894986227','9894986879','9894988266','9894988505','9894989346','9894989720','9894989805','9894990356','9894992193','9894993200','9894993599','9894994312','9894994458','9894995034','9894995070','9894995121','9894995789','9894995884','9894996998','9894997288','9894997501','9894997666','9894998287','9894998826','9894999099','9894999255','9894999366','9894999921','9895006408','9895008792','9895013940','9895015069','9895015167','9895015989','9895026978','9895058046','9895106856','9895118806','9895123823','9895169700','9895184126','9895188060','9895243642','9895245816','9895268308','9895272620','9895321919','9895339221','9895354653','9895366122','9895382327','9895400055','9895403643','9895410632','9895425620','9895431603','9895463507','9895565934','9895579204','9895587907','9895594088','9895659141','9895692178','9895692795','9895699548','9895700811','9895701394','9895704075','9895751735','9895780142','9895799644','9895815246','9895835077','9895898696','9895942927','9895945158','9895975657','9895993112','9896089668','9897429755','9898077842','9898169213','9898284184','9898507392','9899010670','9899022771','9899062069','9899112565','9899149854','9899181987','9899201400','9899311035','9899345981','9899352562','9899479862','9899600704','9899604587','9899615634','9899765395','9899826837','9899827098','9899870052','9899914325','9899938544','9899944187','9899972743','9899984707','9899986951','9899994828','9900164980','9900319988','9900398539','9900499852','9901444498','9901499988','9901503981','9902984413','9902998000','9908798834','9908898860','9908986377','9909893186','9910220698','9910987082','9911185798','9912165984','9912899983','9916188981','9916239892','9916417981','9916639839','9916720986','9916949821','9916998359','9920569989','9920709867','9921520989','9923295198','9923569800','9926789821','9930052989','9930999872','9933235298','9933298334','9937846098','9940012984','9940012987','9940019800','9940019871','9940033598','9940035198','9940038798','9940039803','9940039836','9940039851','9940039866','9940039870','9940039885','9940050986','9940053983','9940057398','9940069805','9940079843','9940079986','9940080098','9940089850','9940094098','9940098614','9940098660','9940098844','9940107098','9940108987','9940111398','9940118398','9940135698','9940139819','9940146798','9940152498','9940179198','9940194298','9940194980','9940198255','9940198543','9940198637','9940198681','9940198863','9940198992','9940209813','9940230698','9940234698','9940253298','9940254798','9940258398','9940258698','9940270985','9940271598','9940279806','9940282982','9940297988','9940298980','9940299829','9940299852','9940319850','9940329985','9940339878','9940345398','9940379814','9940389298','9940394698','9940398112','9940398156','9940398222','9940399835','9940422985','9940429835','9940449877','9940459698','9940465981','9940468984','9940519854','9940533985','9940539867','9940545398','9940563098','9940569498','9940579989','9940589887','9940593098','9940598143','9940598279','9940598518','9940599858','9940614598','9940616987','9940629822','9940639835','9940639883','9940649098','9940651198','9940669866','9940698397','9940699808','9940702898','9940798878','9940798970','9940849892','9940856986','9940878998','9940896698','9940934981','9940939801','9940955984','9940955987','9940959823','9940967698','9940980076','9940980849','9940981222','9940981335','9940981491','9940982127','9940982856','9940983308','9940983622','9940983823','9940984755','9940985531','9940986878','9940986986','9940988401','9940989930','9940998181','9940998380','9940998535','9940999811','9941029859','9941075989','9941106986','9941119896','9941149842','9941173985','9941198001','9941210981','9941215984','9941251987','9941270298','9941308983','9941319885','9941361983','9941398915','9941403498','9941419989','9941445983','9941462988','9941488985','9941498026','9941498499','9941539818','9941559814','9941592985','9941616698','9941674984','9941684985','9941690598','9941692898','9941714498','9941727986','9941828998','9941872998','9941889831','9941891986','9941929857','9941939986','9941959698','9941981882','9941982823','9941982946','9941985753','9941987178','9941987621','9941987828','9941989598','9941998205','9941998999','9942035698','9942079598','9942098006','9942098804','9942129838','9942199887','9942398103','9942414987','9942489859','9942498844','9942798900','9942829838','9942898366','9942949851','9942987003','9943099998','9943119870','9943146898','9943279830','9943311798','9943349987','9943398774','9943598676','9943609832','9943615198','9943683898','9943714698','9943798486','9943828988','9943829988','9943898807','9943929987','9943980882','9943982055','9943985360','9943985449','9943987865','9943988611','9943989347','9943989644','9943998927','9944002982','9944019819','9944039981','9944109888','9944159847','9944161980','9944173983','9944176988','9944179852','9944198187','9944249841','9944293198','9944298951','9944319866','9944323983','9944379827','9944398284','9944427898','9944430098','9944436898','9944439816','9944456798','9944488598','9944490982','9944510980','9944510986','9944516598','9944538984','9944575398','9944576981','9944584998','9944624098','9944648998','9944689814','9944698211','9944698416','9944749859','9944759892','9944778984','9944797983','9944798516','9944803989','9944817198','9944848987','9944883798','9944909848','9944909983','9944944987','9944973986','9944980622','9944981815','9944982401','9944987461','9944987463','9944988071','9944988224','9944988295','9944988562','9944988606','9944989346','9944998580','9944998762','9944998884','9945406698','9945519800','9946322698','9948698998','9949495998','9949817174','9949844024','9949863631','9949881778','9949893201','9949918498','9951448980','9952000989','9952007985','9952010986','9952020983','9952029878','9952046698','9952059810','9952066898','9952069865','9952079839','9952087984','9952089813','9952089987','9952096198','9952098068','9952098282','9952141798','9952143698','9952156698','9952189868','9952189898','9952198281','9952199804','9952215598','9952219981','9952279845','9952285698','9952298136','9952298354','9952298650','9952298984','9952339883','9952349811','9952389818','9952389829','9952389875','9952393989','9952401986','9952459860','9952469098','9952483988','9952497985','9952549855','9952555980','9952597984','9952598089','9952598493','9952598600','9952604988','9952660598','9952669898','9952684498','9952720983','9952745598','9952759854','9952788986','9952798653','9952798928','9952862985','9952885998','9952892985','9952898370','9952898528','9952898771','9952904498','9952941986','9952949851','9952949988','9952959805','9952959839','9952962798','9952965980','9952969878','9952980440','9952980538','9952980600','9952981110','9952981185','9952981186','9952981188','9952981428','9952981625','9952981645','9952982275','9952982334','9952983089','9952983619','9952983672','9952983931','9952984338','9952984725','9952984804','9952984904','9952985857','9952985916','9952986170','9952986770','9952988274','9952988338','9952988559','9952988606','9952988799','9952989093','9952989791','9952989843','9952990982','9952998020','9952998177','9952998735','9952999806','9952999823','9952999884','9958082980','9958869801','9959199891','9959498347','9959647498','9959691987','9959824611','9959838567','9959849429','9959898998','9959999398','9959999844','9962009838','9962009880','9962009998','9962014989','9962024983','9962029498','9962048989','9962049813','9962049888','9962055987','9962058798','9962059831','9962069866','9962079811','9962079883','9962089854','9962096998','9962098038','9962098299','9962098395','9962098519','9962099815','9962102398','9962106989','9962111981','9962119880','9962121984','9962127989','9962139812','9962155098','9962156398','9962168998','9962179855','9962179998','9962198098','9962198111','9962198270','9962198333','9962198575','9962199881','9962209807','9962219851','9962226398','9962238298','9962240980','9962243498','9962254398','9962259818','9962259838','9962266598','9962269810','9962269998','9962272798','9962276989','9962298041','9962298054','9962298073','9962298084','9962298539','9962298664','9962298761','9962298825','9962298857','9962299698','9962308983','9962321986','9962323698','9962330980','9962349872','9962358398','9962360985','9962362980','9962389890','9962398433','9962398593','9962398735','9962405989','9962419820','9962429895','9962440398','9962457980','9962472988','9962510987','9962511986','9962519877','9962522987','9962526985','9962529829','9962563398','9962566984','9962570998','9962579988','9962581989','9962598358','9962598398','9962598456','9962598546','9962598744','9962599897','9962601987','9962663984','9962673986','9962697981','9962698897','9962698962','9962709865','9962725987','9962732984','9962741998','9962750698','9962789859','9962796986','9962798081','9962798189','9962798803','9962798823','9962839869','9962872988','9962877198','9962879839','9962879884','9962908980','9962911983','9962980225','9962980618','9962980733','9962980881','9962980977','9962980984','9962980987','9962981175','9962981244','9962981656','9962981971','9962982175','9962983432','9962983498','9962983890','9962983930','9962984619','9962984742','9962984780','9962984829','9962985578','9962985866','9962986047','9962986651','9962986710','9962987001','9962987074','9962987123','9962987238','9962987283','9962987662','9962987779','9962987997','9962988002','9962988030','9962988219','9962988263','9962988330','9962988448','9962988527','9962988690','9962988854','9962988878','9962988989','9962989289','9962989394','9962989494','9962989698','9962989847','9962989997','9962990984','9962992898','9962998232','9962998313','9962998367','9962998449','9962999848','9963490298','9963828498','9963898997','9963982192','9964309801','9964409845','9964479983','9965088798','9965151987','9965290798','9965298008','9965349812','9965398096','9965497298','9965625598','9965891988','9965981321','9965981614','9965987356','9966121298','9966209876','9966399803','9966554498','9966665298','9966698186','9966948998','9966989500','9967998222','9968343198','9970022986','9970985999','9971499884','9972398983','9975039803','9976192198','9976221986','9976438098','9976598644','9976898811','9976985664','9976988390','9976989290','9980006859','9980009705','9980009733','9980010940','9980024926','9980034076','9980038234','9980045324','9980054540','9980057447','9980068941','9980077400','9980085584','9980092662','9980099577','9980103612','9980132575','9980144432','9980156383','9980169949','9980198444','9980222559','9980230468','9980265003','9980298800','9980300644','9980344669','9980359846','9980431962','9980432457','9980432743','9980436158','9980442011','9980451919','9980478068','9980485485','9980500823','9980516123','9980521521','9980521807','9980543837','9980562005','9980573086','9980597017','9980616666','9980619676','9980623399','9980637149','9980677293','9980688113','9980700422','9980717153','9980720693','9980722089','9980722885','9980745200','9980755256','9980820472','9980835843','9980843331','9980859928','9980910464','9980923327','9980924924','9980949920','9980966111','9980977114','9980977309','9981034570','9981864666','9981994572','9983596000','9984087409','9984970333','9985019955','9985047559','9985050660','9985074714','9985090556','9985111173','9985119313','9985130425','9985143376','9985182177','9985195413','9985217702','9985232219','9985249949','9985256622','9985262828','9985277671','9985293145','9985295498','9985298003','9985298475','9985304064','9985306853','9985310110','9985355577','9985413505','9985417788','9985434343','9985440319','9985444489','9985460558','9985460828','9985461116','9985466442','9985471946','9985524781','9985537882','9985553802','9985556466','9985570033','9985572592','9985573336','9985593452','9985606119','9985613529','9985658000','9985663453','9985666155','9985679000','9985686137','9985703821','9985725168','9985742792','9985753629','9985753753','9985810850','9985812554','9985819871','9985822872','9985825905','9985851297','9985855060','9985892238','9985906876','9985920727','9985957879','9985961613','9985987181','9985988506','9986000770','9986004374','9986004852','9986007223','9986011277','9986013385','9986016860','9986020747','9986022066','9986027103','9986032567','9986034856','9986036150','9986038678','9986041278','9986041736','9986048689','9986059634','9986066695','9986068689','9986070453','9986079468','9986081620','9986100098','9986100899','9986101402','9986133019','9986137214','9986146000','9986146858','9986149496','9986160386','9986166674','9986169462','9986174040','9986180737','9986184989','9986186600','9986192759','9986212300','9986221721','9986230095','9986233391','9986244454','9986245986','9986255025','9986261024','9986261700','9986270268','9986272719','9986300502','9986302211','9986324357','9986333687','9986356647','9986357913','9986365168','9986372246','9986376444','9986377300','9986388533','9986388922','9986397325','9986403420','9986422177','9986425458','9986426563','9986431620','9986431817','9986436128','9986439490','9986440888','9986444024','9986444630','9986464684','9986466811','9986466921','9986467554','9986470827','9986477060','9986490145','9986502834','9986508201','9986526138','9986533939','9986535389','9986540075','9986577377','9986578819','9986580079','9986595095','9986608544','9986614149','9986614192','9986628555','9986630199','9986631098','9986643439','9986648869','9986652554','9986653455','9986655108','9986655596','9986661099','9986670237','9986671580','9986674676','9986677253','9986679900','9986682874','9986687024','9986698684','9986706892','9986709070','9986713275','9986713965','9986716868','9986720247','9986737935','9986740204','9986740339','9986744874','9986746716','9986747788','9986751514','9986758844','9986760684','9986776111','9986779407','9986781305','9986782644','9986801648','9986811670','9986812794','9986813521','9986818344','9986822029','9986832036','9986860069','9986866616','9986867701','9986875936','9986878711','9986883237','9986886788','9986889649','9986909220','9986911839','9986917673','9986925578','9986929288','9986936041','9986946354','9986956972','9986957157','9986968950','9986969256','9986970066','9986970934','9986979869','9986983705','9986985099','9986985156','9986985715','9986989680','9986994322','9986999022','9987002890','9987032722','9987036913','9987104443','9987104900','9987121582','9987171573','9987238278','9987241110','9987265544','9987274321','9987370871','9987406952','9987421122','9987623310','9987649007','9987707026','9987796186','9987799972','9987812733','9987818222','9987895614','9987927184','9987943204','9987987185','9988005852','9988044121','9988431363','9988441108','9988558986','9988559252','9988725257','9988799363','9989039803','9989044408','9989056541','9989097937','9989101148','9989104486','9989129361','9989139068','9989150460','9989157345','9989179131','9989196680','9989199198','9989206364','9989228939','9989300133','9989301367','9989311443','9989327996','9989335142','9989345422','9989365223','9989370460','9989432103','9989453703','9989463739','9989499669','9989514225','9989530195','9989541393','9989545566','9989572724','9989587784','9989644772','9989646435','9989671486','9989688615','9989693006','9989700990','9989701901','9989724384','9989735817','9989736663','9989754302','9989774288','9989777214','9989793550','9989804001','9989809665','9989823790','9989834776','9989835515','9989848502','9989852261','9989904232','9989913523','9989917891','9989919720','9989925109','9989941628','9989955092','9989957189','9989997244','9993598539','9994009824','9994016798','9994037983','9994071698','9994098822','9994115998','9994119826','9994130998','9994139897','9994159897','9994166698','9994198483','9994198693','9994208898','9994209888','9994268698','9994297989','9994298541','9994298819','9994299982','9994304898','9994369890','9994398369','9994398729','9994398925','9994409896','9994412986','9994429844','9994439892','9994477798','9994489816','9994496698','9994498122','9994498199','9994498238','9994503988','9994552988','9994581989','9994583998','9994598170','9994600987','9994661698','9994677981','9994684989','9994689865','9994729808','9994798183','9994799981','9994820998','9994840098','9994852098','9994863398','9994898431','9994898747','9994901398','9994911983','9994912980','9994933498','9994949826','9994951981','9994979869','9994981157','9994981362','9994981895','9994982399','9994982594','9994982965','9994983102','9994983205','9994983822','9994983901','9994984830','9994984989','9994985032','9994985800','9994986170','9994986816','9994987592','9994987665','9994987794','9994988899','9994989350','9994989933','9994998842','9995522983','9998100681','9998357247','9998844405','9999319983','9999798969','9999810014','9999845945','9999882865','9999989567');
select id,created,modified,peopledata,modifylog,dirty ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where id in (374559,448232,160986,254161,373698,446984,376198,411273,121266,445886,282374,393621,269632,376786,177148,225046,379199,429861,323272,444603,292768,445567,419898,422234,284863,424354,404472,244818,275573,419761,295686,385215,374521,448345,386852,251093,265786,402439,256896,382334,301203,280213,417597,369242,376019,278429,129375,424075,395057,279522,415448,407592,426429,298362,373453,255293,371543,368336,250323,384903,243685,126116,382111,206347,127674,372844,443325,403530,385361,269650,295297,242281,168464,367534,441146,445661,288110,300111,392153,295444,270661,415712,152764,142353,444048,408694,392429,443504,398340,159579,353033,251579,392174,414438,426684,419954,269865,233833,140676,447025,409809,398907,264579,245667,382501,272404,268440,324557,279499,264284,266346,396133,369167,412054,427705,259331,321410,157555,217536,413039,427854,379896,415977,382204,244819,255588,248152,241481,268222,266558,128731,300848,276340,323261,300282,364649,240927,255142,292370,408047,413837,302386,297105,387223,397995,425696,368335,168708,394247,413527,368162,169917,303838,254697,393492,394250,275199,401668,410130,422383,214997,442698,448700,322952,382108,283674,253187,418105,303768,296920,243700,137929,299484,146555,164038,289093,221503,420520,385456,427600,272638,278415,221807,414923,389030,426814,411985,196712,250466,245979,383432,420873,357438,273426,240675,176804,423468,239457,376947,242451,303619,267977,420108,389907,140897,417934,439766,439767,439768,445290,384720,424626,428363,379967,389617,349970,423044,125463,367883,380510,418075,250088,369238,268711,368919,142342,373523,258563,371280,138814,422605,396217,425980,422357,417799,421926,291616,440320,447898,284437,121851,379211,426735,418104,420326,424015,272689,349723,389009,270985,413170,246580,166532,412379,225705,425055,421681,228243,189903,150924,441681,447484,179156,284461,141750,393067,368565,416644,287188,368766,380130,398831,178774,286224,297950,250363,427265,226619,258955,255920,235165,421474,173564,368553,385092,263677,428056,429914,443710,439113,369501,441850,445956,369782,426103,385568,378338,428238,370765,303950,365422,445037,402516,381798,444359,428073,440478,440479,440480,321726,391630,215491,324435,248341,425371,393875,321603,444861,264496,351940,389422,276034,322198,251321,162301,421138,270248,413279,395272,409143,415472,359928,407685,271188,279327,139163,393721,255335,257448,445412,288856,385957,285653,246341,223364,363928,260740,235250,386718,269593,389159,401725,379076,321118,216128,390302,280800,413755,370204,291907,246791,445846,296447,399264,235761,278503,438050,446022,405184,384227,387656,351927,225840,254535,276554,294274,221375,420513,279989,249557,396325,382014,420647,218520,293944,391617,143325,416017,222205,398919,165585,323070,389584,406751,242612,448604,407242,272954,390689,290510,398710,239488,251688,227249,273129,406883,325047,226568,280936,411044,424597,372993,433610,360885,370621,385864,286784,206452,321344,413393,153937,271274,390989,248988,138813,383072,388499,283684,216620,413031,264049,268416,147490,425706,282753,426637,250496,284076,433378,283290,271251,363393,413378,414593,376049,417386,293816,120962,156779,277048,234648,278093,391930,250458,371438,246193,373649,300454,324437,385318,402105,423802,248909,370998,266215,246620,287707,380986,416139,361983,412667,241682,129222,366218,414491,397645,156647,322354,276511,178854,156358,291258,376293,215485,433125,293770,258651,190133,302857,264190,253027,284721,424318,296738,250936,444952,428342,134349,443102,255729,261103,245155,153947,406929,421750,268293,301120,298477,406574,433762,321809,276453,136855,423817,410491,134375,300155,412637,390318,291177,368932,413249,303816,257750,276006,408841,396304,382871,289199,352240,399503,322960,266196,423728,322963,444487,437768,299033,445434,257757,407054,422449,351496,378138,242955,413447,390654,160997,404193,415650,160108,219254,444499,437179,387322,288617,420352,264751,177162,304391,418822,321117,159734,240448,178524,268668,398264,358509,259812,433505,279825,251910,396334,249824,248511,428016,375482,276235,286244,425277,383310,387974,365380,357070,248588,407181,393074,410661,372430,443215,409237,436331,297253,226052,130469,448177,169862,443672,423538,419057,170941,415220,409010,383180,374952,287749,391295,159581,444031,399078,403706,299360,260133,256829,425532,211115,384792,382124,404570,383381,404217,266013,443757,223459,302559,278917,398487,393723,254497,283950,388351,384873,416903,246477,404221,297052,253724,282617,262751,426140,420703,441054,445375,252656,295731,221376,369422,263777,398723,428542,249726,255247,354196,395013,294079,423679,393217,368536,324196,426615,289996,246910,302584,389329,275598,295267,300892,274662,236841,279396,427308,162066,324353,165132,383927,378004,369682,271989,446403,364352,281831,393953,196834,368878,394067,399021,394116,231912,385590,444532,434946,436490,243616,255902,424810,279828,292041,373581,413481,164183,269246,262746,226500,414903,287230,245400,260492,416189,369808,268464,321741,267190,392681,279304,325704,278719,394817,246758,379711,291697,290479,255216,246961,381597,297704,433198,296629,383149,177118,158475,286250,405741,173558,425062,355490,424737,446679,392290,418278,260918,270650,273636,164166,323859,410573,284270,369545,376292,421605,375763,287278,393563,415268,135478,287387,421013,435031,174870,299076,403292,375238,416990,371092,398915,242540,444091,418139,426016,447441,236780,257035,262015,161702,296847,392167,300856,370544,374263,257209,394097,161747,425253,296599,242986,435145,358287,387058,411332,444613,395191,292392,176108,135418,386431,247721,395967,403528,291206,397628,385499,406730,392197,228079,244226,277550,281782,126703,376125,147889,388266,422968,278730,379908,302336,252835,388568,256048,261135,197744,423716,226038,288628,412415,249736,276376,400117,386552,247641,321869,420602,254315,246623,279188,447836,131431,448017,246236,378066,407352,413575,390028,133460,297539,165853,286518,421616,165852,300580,390022,418784,379714,294888,284966,371085,368725,273511,248489,416071,225166,421122,164559,443663,390540,413338,253044,393781,256712,286841,447312,391202,298699,386934,288324,228492,362159,394821,414791,265294,125164,283824,273806,274520,355157,395016,398521,297365,300714,382299,409059,421662,447885,405917,153750,237547,429176,162509,213958,392158,248941,426356,410871,278659,421673,374318,416742,237166,397877,378491,270521,321749,176467,397060,447154,215807,127467,393205,427642,216225,441271,447768,292295,379469,295695,412286,413979,390312,357228,247494,281659,238549,389318,261238,203072,362578,268086,275921,249261,420254,393734,244421,377698,387179,226964,166411,176929,244140,372922,301263,369832,379939,399384,390744,301214,398678,404502,323301,176408,410001,283102,390997,376956,298939,273385,249336,413829,385885,416902,401873,401182,390287,416089,418679,253671,393595,384408,223630,398403,274750,260639,395562,243220,421358,394962,281175,275054,411955,324279,396260,416794,277690,424013,393798,249211,385183,366132,423973,256313,416184,413256,297284,372908,135496,290265,380232,395268,382478,251733,423126,442074,447566,140959,426666,277015,413101,366676,277414,285483,379243,396182,198550,243582,366195,134943,324409,407624,209018,295618,417485,400175,275539,412305,321642,401049,446881,301154,196535,285622,260756,395168,260384,425542,386425,440814,440815,440816,440817,440818,445596,257388,398892,412346,271447,429334,389731,444410,381703,271840,325437,356213,387518,393881,292740,304777,265214,142351,279165,426650,273919,385266,412183,262102,428658,218780,419014,237739,390175,275704,396525,392039,409115,394450,360932,370572,130557,423420,416721,295324,174766,435324,324177,386503,120970,415962,256285,133257,255381,389200,413319,375185,410905,257822,154142,138132,413215,324682,448041,250410,420475,297870,423023,417954,392362,417254,303923,123166,287914,241565,256073,413985,232124,199662,253662,425814,268132,396461,392643,426639,448785,417525,222084,266738,385498,416110,291036,435702,422833,379687,130555,324360,433694,179553,386520,393379,417119,324699,286175,298802,376886,259917,289033,351130,120730,444742,246624,367058,399318,381121,399052,277156,287580,250068,295897,273184,395410,300716,163547,256330,384470,259002,429262,379747,250544,180067,263091,298732,367224,416393,259636,250384,393581,393422,291543,298599,365474,155161,225789,376243,381585,250854,407990,409404,139293,264369,287762,418186,427701,265949,244419,448413,388904,324216,222658,266218,282234,362647,444991,278116,282332,282083,385203,386465,381070,394691,262405,407618,422257,415955,417814,177064,250904,290601,291456,250102,144925,268778,399487,407822,299183,277160,382744,356694,288477,271528,275192,376142,259169,374877,378747,276361,363106,292719,297910,290652,371945,290483,413872,187745,236714,257348,422994,379133,414085,446016,167959,267625,297419,287991,291052,433102,292270,281549,262719,388304,188502,403255,235406,259896,275784,124815,393332,297379,248827,397931,244584,394136,411107,173179,288335,383466,397775,398695,416101,291576,398222,246139,396459,215896,300385,419298,258674,217139,245332,392273,195862,439299,445117,405027,278836,281588,362436,377964,359643,365125,135375,285838,261615,297189,381745,251353,425546,298997,392196,411946,289517,301722,322065,238735,364669,439065,446200,383419,383488,261952,249472,250515,415333,302522,395958,393148,444116,396877,398280,427781,275701,393487,246205,443906,438911,295964,324775,417410,254848,424478,365578,279450,290041,422194,261565,394174,391835,412814,421514,275055,212632,240202,204468,289259,204086,391241,401716,403107,323647,291427,377853,245770,287946,262685,217520,395441,266014,213962,382880,426941,418069,288034,390771,268414,167858,419925,394241,377715,273824,321712,272785,293807,403736,388937,382470,161159,244988,378992,385506,160110,396101,296169,405713,246878,429827,263015,290162,444551,436543,413425,419495,211862,401263,264705,159286,285209,369323,394984,253474,138393,295804,302412,125607,399412,123563,245824,425232,290841,126699,424414,410020,368742,419810,271312,364341,419396,240651,128314,262299,137921,385601,422314,394973,420013,260934,387178,443652,264208,396618,272116,420526,376088,414576,365494,419314,321874,408911,422076,371960,251071,421802,254498,146366,417375,247973,131485,260282,258753,407602,424197,395063,258622,359064,422375,428315,436275,446496,372747,371355,413431,280942,124544,231820,399043,282833,428527,303328,412685,383726,274695,128319,377083,428720,444030,378909,391953,254409,397984,420680,245683,169013,279348,248733,444304,428151,436209,403774,446668,138828,382999,363635,281351,278037,425188,366013,424293,414511,234170,265404,241063,443920,417237,289705,385145,261908,254149,448688,423627,174238,416620,295878,389279,289017,180074,289380,395146,169932,383294,386847,421505,417861,382109,170784,439702,447647,324029,393546,407230,368541,393976,262707,355035,409937,376752,280355,410819,393771,233170,413811,263168,187094,187087,275410,298242,298208,423109,434907,393860,299635,407913,408539,251178,177577,378065,296263,252090,320898,292467,273155,245169,297859,134353,277769,241710,389144,416662,293133,401074,441178,441179,446919,217202,380822,400784,423698,438796,446107,402466,126363,258004,364421,121936,196334,407571,391681,413706,167140,424475,282855,290027,270991,411945,429292,398101,380125,389490,244058,405641,168883,128727,266161,283596,243010,158471,165765,442252,447499,425395,277330,386730,396604,373118,426575,285352,391866,267791,374216,302696,303637,427310,187354,411141,324022,398896,322106,374898,324443,398584,219445,394729,429441,148823,425205,409171,303215,269129,445864,404702,448648,154401,425861,412142,379287,382588,435340,386266,406083,423237,425536,266573,282023,417195,293155,426278,390203,323115,426501,447603,269324,402236,301681,420810,425839,445607,394555,226282,373725,167574,263555,439777,446260,420705,380428,210963,408964,422769,246376,420948,393054,443826,276618,437172,445426,140113,380283,123797,164178,250811,270001,407465,370180,353865,258861,371328,299143,272680,397313,366337,200522,244303,254632,362152,356933,260074,248359,412923,247567,425146,304171,245284,243111,277592,239349,420588,264389,397880,137010,380710,394823,259966,298987,207057,395000,300083,418922,443107,439894,261220,297100,354515,293972,357623,413262,254933,296359,438922,446177,290419,284848,292173,386759,426671,283223,409490,362443,390685,248650,246063,179616,323879,406347,155054,323544,297944,136779,188306,216052,167867,253269,274058,245792,265732,126517,127072,378682,388210,225370,267975,255364,271815,253345,282483,395918,302885,292307,283392,289275,392116,281961,385779,280900,260425,410171,391827,397819,244201,138031,136522,399727,130519,274851,302417,433169,446885,413086,389844,413238,437567,445845,361598,438687,445096,408061,243311,288631,393083,373133,443468,441629,135660,196311,270319,248302,297962,425417,251991,444094,436301,380309,288622,136714,275834,391411,222147,176780,294116,256159,443459,401191,418324,252568,302334,357387,433679,294621,163372,278000,409288,408286,283742,138527,128945,278856,278716,189013,426517,424687,399574,169679,270624,380808,255333,402154,435345,433757,244383,402238,396748,251018,374622,392512,256784,300776,176327,188810,413833,429269,375349,435960,435961,435962,447192,290439,413340,249323,256898,436907,436908,448007,374583,429666,177627,137245,249606,445299,405518,281812,429454,440958,446303,375598,381404,408693,443197,436774,424914,289876,267257,267580,437547,448569,429679,441927,441928,441929,445915,157556,397458,279667,219260,400625,427067,438810,446054,427619,161979,294017,399179,121210,269988,150458,249917,368835,291566,439925,446208,322404,269202,393859,280528,393073,149480,396413,216761,389213,377063,394956,383948,267772,426867,429869,438416,445911,371924,417215,388838,324269,389236,443086,375616,235065,438242,447947,444293,283900,436256,125222,391932,388973,447988,391457,381760,241376,236601,401474,448293,361519,374101,359000,177622,398666,389212,446233,270890,378706,370251,178777,377719,445353,444594,434953,393373,243037,402572,144665,427155,400448,376027,323379,416746,385793,180098,285617,420159,447930,292659,388503,428879,436770,445151,153434,443730,242239,415498,415900,394819,261044,392265,423653,245780,440006,440007,445459,124805,280090,402081,375419,448632,444886,304729,438406,425671,425256,444240,437001,405177,392881,299515,180060,426806,419603,414897,438855,438856,438857,438858,446052,264411,169678,392020,437840,445833,376399,394386,444433,434934,436460,436461,259000,302782,403345,322457,265850,429784,428591,227115,442506,446760,402721,409028,125792,136265,421648,169317,444149,421295,394668,396985,444388,429169,425334,402907,133081,444019,391053,399216,227365,403324,396126,444024,436022,428838,422611,442609,447406,126702,324774,433313,429426,422827,404025,425421,399566,433751,395852,133080,414682,161251,444599,436290,402062,446939,151299,174003,396256,424642,448217,429581,248556,396218,381985,425043,394545,447151,394796,445595,417421,256202,288597,385761,392243,442896,448334,426360,392212,427617,384919,233180,257252,435379,297066,289552,166486,445904,143845,446958,290364,394556,444187,261800,364054,159281,426959,294071,275438,389684,415860,426787,433187,426686,365625,441766,448373,406696,392391,297868,416636,302484,251662,390526,285459,425947,362613,228867,178346,389878,380747,385846,429752,389909,445004,253158,128027,121653,390830,423887,433747,394047,284257,389211,268539,124024,416242,268141,373381,390792,243583,200483,286858,269101,395189,257144,124680,377748,414717,425821,438055,445084,419385,396444,124798,425731,435323,298159,378728,324175,369600,281663,425548,325390,420107,424107,378982,246521,151307,121209,380248,273477,435292,393405,416984,392768,299972,368768,186937,412568,262516,390148,381830,303589,211608,444553,438925,264258,295208,390262,406235,245002,261503,292533,421565,392166,232193,415197,300961,375258,423866,438211,448379,384899,256255,442990,296047,258986,426132,245734,282520,408276,389116,304045,301206,298984,396494,244035,421009,393146,325737,380280,415067,422498,444845,397994,422976,409094,178859,212511,414698,243759,232203,394537,427071,395672,266674,301927,396797,383998,393636,394818,367165,195155,289158,351430,368710,447101,281569,299351,301248,390890,443569,392347,433787,288907,391604,407187,395693,395758,391514,395686,253695,392669,420011,417584,446290,404219,365893,223020,321951,245025,284645,170008,434905,393952,406937,278293,399159,165782,428995,287659,401294,438979,438980,447698,400633,378681,229322,274959,373630,259514,261747,396049,369219,402494,406632,303886,429036,397846,281982,244022,275694,297225,410835,412937,371427,362530,302113,411257,144589,242494,252916,398868,129183,289446,286105,408825,383107,423841,421341,275162,252206,424413,426321,260168,249694,261804,275513,283702,254068,391994,256236,257598,369908,321331,423875,426320,410597,283806,265252,162308,166863,258765,361441,404565,416116,418569,290159,252851,406372,291178,248256,407444,202779,413523,279985,270377,159013,393343,352523,420160,258329,394486,301126,232389,150582,267128,435028,355423,392447,417209,141320,249620,282736,204092,395917,397426,297907,401115,441323,446876,209263,264793,204611,363162,414119,396857,270073,266325,385883,429880,293667,303020,396176,373758,123801,402518,372679,157570,397288,279227,276587,368871,385077,385370,412865,269472,276317,298660,127510,303308,393425,396277,392016,139957,173760,415476,389041,395022,415559,251709,298067,375488,270070,408207,412642,382473,403490,417309,199521,259433,234413,411756,191143,389224,446313,379655,160582,393003,435385,387717,396048,401719,420988,391709,261456,418859,393089,438987,438988,445368,395287,399062,286813,424393,152548,417716,158337,276956,215660,439670,447206,379248,323285,422836,416807,218132,251057,380654,382517,447941,293996,297509,410539,286282,390976,383700,419199,257138,405998,248844,420020,278639,292483,377995,378872,258010,272443,293941,269806,390979,284281,435136,322485,203078,405617,237210,392099,204096,123748,378194,365304,405990,244827,279785,258037,165915,378920,263594,411364,406774,267947,286893,295025,281172,294094,401521,263782,351120,218216,389529,242689,379804,302650,323645,264533,401176,443375,396871,436488,297198,234208,402353,133945,373705,399510,412658,426268,275253,391555,429766,383340,256627,379719,424029,218455,260222,402754,179556,223728,281485,256765,376229,250044,401468,405712,363542,300925,440281,446334,410722,414125,404613,401988,300102,236628,405048,399504,402085,393924,398946,409000,424525,279936,440873,412795,395025,374902,416324,265427,295621,295646,390141,242806,257354,390706,264855,371706,262017,282421,420883,255663,397676,256307,299596,157800,404959,289917,229772,262644,255483,303290,408617,423232,420549,268888,382332,428377,377007,447610,397903,423491,370794,163156,416970,290426,212714,361529,418141,281512,445191,385965,395468,215625,358427,374653,384620,246455,284841,278787,386406,253896,247778,369862,423572,383852,285651,394033,295488,147690,424006,261581,392487,429479,418274,401061,271994,425070,414018,282161,262695,323920,424440,408068,377187,377510,385302,388461,199811,393329,290627,250348,383722,387183,397257,418217,417575,303667,416569,365918,418623,292830,357180,320911,297203,361100,354102,415759,289173,300648,260939,264225,257502,244895,252412,227514,412751,228306,420979,376014,398589,137621,393862,413763,417514,300833,162310,365043,245208,396083,429485,433400,292739,234963,437580,445271,293720,408661,243598,435348,280472,275142,288797,324061,185331,322831,255568,446061,300936,398587,245016,298220,397374,428711,417033,371927,391631,273613,422192,135087,426265,260397,393025,418106,272865,288767,420533,390073,417763,276732,278549,418256,323207,438169,445780,258002,422041,422134,218173,279661,304162,282658,405485,443364,298064,414577,264975,205828,386712,256278,264093,171207,267367,385890,443135,301356,249526,433408,417985,405996,376711,420185,399115,382012,429066,424604,387054,393645,280833,376978,263586,272182,146558,324486,391778,280495,277244,152194,292410,386069,390504,416784,290071,289524,400468,425825,301290,253608,443195,146215,410624,296824,134723,384002,401220,162213,291419,294425,429623,390684,286355,405646,383741,390806,151298,216058,297408,225258,297983,258681,362256,138402,392712,290058,268204,417297,292998,281327,272258,323581,423938,287412,253599,407959,387826,132672,300697,425431,166421,251123,415649,264056,373139,393963,371903,254094,292510,397743,390486,423326,387509,406982,277880,398279,245794,253176,420017,406117,377420,419476,418362,290005,278826,256753,391025,411097,368298,292269,231129,221913,222037,238474,377856,126531,388686,159241,280616,157392,247271,297973,284677,422693,279225,421783,180006,207547,150528,322014,383247,440996,446457,408643,425592,276593,420696,324846,279372,387169,238652,170942,376719,418801,375110,255480,187541,395112,209945,320943,369220,447401,263215,425705,192911,247687,271069,375526,392114,409595,292586,377010,170794,257455,378346,150535,389822,322417,369968,425375,385484,274345,422276,166098,394388,390443,382868,257993,437445,446492,412319,423589,369240,447334,152097,389099,417701,358160,417672,407653,394172,255526,420881,290092,419266,421241,419942,275558,224463,284377,155098,370761,407596,177581,359499,279373,393889,425058,388643,405753,369844,155092,294081,443856,290040,439097,289569,385575,370409,383311,424522,130371,191906,288708,437401,445410,227602,266956,300263,412254,389049,395564,413551,423638,439096,445257,253468,396406,298063,276867,207704,267757,420780,435349,296443,391032,393286,262797,267949,289419,268009,321480,281993,401005,362164,252405,408213,282759,266039,369357,382201,398638,259213,412304,260244,393606,393892,301452,416707,382502,260316,240972,262935,386280,394963,276798,250293,393909,440512,446424,161261,421990,301626,146213,293884,228675,244906,409848,398951,396798,395183,130918,120960,360865,407268,278514,446277,411247,272254,218503,248672,276357,408049,396538,412334,267785,417896,392722,246634,246450,418176,231798,390641,259124,396082,242875,383896,389925,273258,370469,406312,294394,414345,425408,262642,388543,257587,257031,385542,425818,300068,416942,417498,365811,434922,285710,177071,382019,299697,266667,144747,424328,373490,282889,126539,373179,277992,395391,247035,391995,373692,399293,384766,260719,267330,390711,395359,401223,252472,398512,216328,370316,402600,320840,433296,278647,288737,418578,240975,224750,277667,299727,424061,421562,386359,255572,297139,302275,369420,267226,376999,396200,255354,278035,415440,325326,424696,375514,393246,424656,373712,242203,390222,393132,152873,423689,322109,174257,222383,301289,299933,321343,389353,249574,399081,409825,302780,250669,130220,425744,253584,391477,356827,176010,384505,279172,254892,424482,418157,383158,396156,443582,397021,435816,403369,262885,273678,282484,427865,206992,395096,425758,299654,389901,178522,241725,376793,446723,268634,366341,405108,223182,298093,383237,425105,256012,382817,248041,288901,423135,408638,217521,433216,350346,324806,389018,440072,446206,154664,396940,264194,373700,423071,297632,273434,296214,249520,269814,378079,242473,402870,212251,396612,292744,386498,386333,429788,248531,393287,383142,422110,246050,402344,386942,243359,433420,406454,283292,282529,410508,368549,389972,380250,393633,391124,125799,205551,293579,220401,291021,286826,253116,287004,426621,167581,252276,243168,251470,414515,288390,270264,418542,287751,271182,284920,297676,208750,398927,419571,382573,253592,435200,387226,443630,422889,442271,248534,447437,266543,136625,134091,418357,393993,390217,261656,323249,390188,392845,362484,417558,277328,272819,252243,435206,199761,426801,427217,425052,231300,225253,379872,390194,279448,279657,152048,367053,258386,443862,423392,408083,369541,291773,161694,382972,426120,292513,382801,398411,415473,438481,447832,420008,243625,422946,174711,259003,214313,392873,252985,393536,376854,227522,320776,398168,350722,408685,417810,386298,161217,398602,385641,231166,248450,292549,405560,362655,446017,256965,198257,290431,271881,443562,288178,392065,427180,423333,413216,296683,271034,395699,277322,230867,361534,261587,303545,420587,377350,392871,298695,422545,434927,237552,275730,391905,387937,221758,296860,412350,375067,295279,371015,373935,423812,243227,424132,302189,146604,444097,395807,436186,281857,247170,156735,370940,198144,412682,258469,257935,393037,447818,256030,417868,394043,405259,422462,386467,211764,383841,374367,422227,398373,299816,236998,419966,321870,293501,405486,369364,411259,396274,392148,389068,382215,248257,387738,255550,366666,394848,390140,124551,258974,398701,411328,127627,444685,386356,417439,253087,229791,226169,240680,424469,422062,397761,258504,373084,421929,302914,235807,270429,366232,386507,414597,398898,266456,126522,248901,289104,380439,365421,441598,448428,273443,418688,247275,390479,379801,166537,275431,135482,226022,259642,392038,299791,372271,448778,292736,293727,282631,170947,265579,292441,274256,231866,257850,410550,325059,264994,280400,275858,394095,358683,393925,394344,162377,191853,416776,394954,239778,381088,257050,291978,250746,420916,243774,424035,418233,417720,126529,281250,421416,270574,322915,419535,415758,259533,421036,133190,385772,424345,417669,397248,280200,293592,289679,448101,413212,133248,290110,261303,384842,126385,259321,425959,138525,415888,407292,386657,393094,399206,353594,371356,294781,354508,350566,443747,398416,281980,396818,121935,134356,418703,394180,247943,215990,401841,277219,257487,322232,419051,370928,324847,445045,379097,283765,204910,371921,441606,446972,418540,192186,437943,445060,429147,441962,447470,235181,297086,143394,406664,290299,273660,391540,247301,300785,408418,151118,412105,270656,250783,163151,280548,413534,411218,385238,257636,138597,389057,389361,162032,151981,385448,441165,447353,395053,393362,142846,426774,160445,167142,247498,129764,427797,374625,240533,359910,179548,442047,446609,249709,265152,362539,197001,377921,133242,399454,405628,324095,427809,152754,227929,367293,382138,382672,440094,446249,377118,142408,367739,397230,396942,291716,424986,280537,288981,397838,380381,285281,300202,409912,421986,404950,396056,422965,394465,414060,398060,427177,443149,416796,368793,401181,123157,417286,416027,284728,427171,364519,427859,435453,435454,447147,294960,236316,444108,265721,397413,303252,246006,407375,381148,285519,388742,395940,262937,408774,416884,237327,154781,407176,358586,191493,396310,412215,245445,254035,423561,294367,447251,403155,322901,244282,253210,376556,435781,447274,324024,429457,369911,443031,300170,251217,444405,440571,440572,356664,282857,433202,406060,276452,413647,414567,277796,428568,428456,393369,202512,397344,401575,249331,433514,442176,447002,164671,272588,304698,417606,422330,390769,208250,288092,150527,251935,412046,422597,258342,291205,296936,420532,353058,297188,389088,390347,275228,137703,349739,368858,289546,285138,241524,395810,286852,411299,424011,264852,229191,354678,250966,397270,322571,367298,396188,419460,371173,270088,408526,394301,412433,438859,445674,416331,428864,269998,164836,421998,375420,447247,136776,413950,393737,268183,377150,444302,303990,135480,296708,141810,417884,409590,407136,426285,401523,222620,390237,408544,160944,273528,399706,395855,395108,167274,402668,282507,199987,429711,246370,376787,410855,274105,427175,195032,261516,428616,394600,409933,146938,189739,286261,423746,422435,418886,121275,160235,237444,304412,413922,260429,438722,445840,221861,393358,391944,140873,247438,167008,360724,300636,426887,162956,145529,409106,387770,398152,354963,420010,292613,286104,355503,143341,392171,273151,278187,281671,372044,223998,290186,412229,400945,411584,223234,445461,277374,248048,420030,236330,273846,242435,396738,265031,174004,410413,399311,230142,255389,415079,287981,293503,295841,208058,384451,294995,278361,397282,448774,248464,404687,435999,447281,389695,397186,401829,411691,300313,229743,388052,142340,126979,241878,266879,376547,392780,294297,290931,285507,368663,250784,394994,248541,322650,380015,368869,412615,263960,254949,359842,396090,393082,353166,262034,415598,281688,421500,396204,394320,298189,422323,423605,207682,445186,243282,384777,263199,270878,436501,448131,422315,389703,414854,438063,378895,370470,390306,243384,405920,418905,235354,257391,349716,370261,286627,281199,293903,272855,269878,443686,411802,285985,322927,416670,353699,378893,301652,391170,246881,407632,299969,369726,174439,400727,286946,254440,421407,297361,373844,286486,136257,419533,354601,433230,442587,448747,148365,127191,324166,444425,437178,246501,134346,288030,378891,427942,429863,438387,445635,324271,406989,288237,424490,302799,444092,436225,297788,402006,279483,255775,416758,240136,410570,375451,422587,373239,130445,422379,412955,409468,443313,437637,385527,425384,397698,252092,251906,442058,446638,262503,392097,419892,424205,419195,279179,143703,382283,438591,446183,153418,300629,427628,426984,373623,241021,377315,398206,225921,261997,433472,404233,428364,436826,448220,286155,283964,412572,402936,272850,448375,416557,368247,236333,278932,350727,235244,406941,167873,240719,268674,402441,260733,222610,290398,280371,227418,448720,413748,176970,440225,447788,148362,240203,393482,236794,246901,283749,429748,445799,401769,442042,375528,427971,376746,406043,395570,408618,376694,441803,446839,374860,410378,246657,447061,401258,426965,171684,429906,402267,190851,440084,440085,446358,366500,252503,407714,320833,444907,428411,224677,187514,427233,435214,374349,439345,446828,370472,404176,397020,425025,415877,409397,373265,442162,446689,399965,172354,242999,370590,355295,257837,257600,188635,287237,282489,248377,277008,177180,321460,402666,375037,433146,373238,294496,294455,206537,447670,376813,442450,448317,239010,162293,282224,232437,156010,374636,436827,256907,395748,176370,427951,383235,417747,423722,390473,207925,442462,446565,390692,374141,397393,172673,412300,289468,406339,388509,245836,377227,385922,399728,418055,372447,290844,263958,232126,301438,242404,448342,428767,375929,265775,404736,247672,274768,404374,417718,428909,443201,437244,277575,369575,401092,237728,448617,392590,258283,406875,278573,297347,237549,279078,427477,448307,423238,221278,247167,406252,324327,397301,444545,298839,387548,294077,392927,404380,424602,260917,297447,395163,379226,200528,296616,374522,200538,242731,382830,428497,261119,384707,392960,247008,433875,259218,275279,294315,382635,202500,377935,258255,284585,446770,292292,395731,429452,394439,417370,400122,378646,425625,280849,395164,270496,205390,241411,401968,416377,266547,392510,408809,295888,203328,233671,395803,416208,407656,420415,444255,390248,437108,433459,257961,402018,377339,418531,283173,394404,246632,219867,147724,288127,134931,444679,433166,122114,424600,379720,413884,255761,433376,303535,395456,428738,410994,406979,427830,247433,288153,297990,221272,436829,447219,406936,168171,278286,390686,295400,151053,270772,155978,402797,384042,123161,363194,324944,272913,397591,429249,392885,252625,396367,251431,440200,440201,447179,141004,403424,416209,254274,175973,392535,399232,413984,233334,287335,444475,406670,241158,444652,369020,270989,295070,427574,402739,400309,411087,427106,397494,351657,252773,429043,242421,393123,133084,448682,410913,399086,368863,251865,429051,371832,363351,384688,324948,293028,407164,298412,435988,448623,134736,246943,422185,281468,372410,288799,412178,425412,292207,421922,400139,383230,287001,444183,435965,380089,170737,376387,297591,321181,401967,426894,127718,161044,378599,407478,424222,448471,262073,395548,354243,372942,427447,271076,292917,442507,446556,373565,198433,371112,442807,447418,383909,364289,287837,435023,400426,399813,391524,140964,254781,373558,427780,426858,233316,138054,435827,447264,205791,205247,294724,423795,428972,425801,401531,292835,292599,389603,234881,401475,139217,444242,423976,396755,401132,243630,395660,136920,261968,444067,436158,436159,373716,370179,265750,232520,401291,191600,240811,356060,418974,153954,435256,290467,399523,438837,445654,294126,404436,418201,274187,443410,372193,440208,275779,422881,399163,152743,277460,290839,127599,375617,272374,210003,434952,384339,427220,298564,407350,267484,168707,231826,257635,379350,385053,351109,413995,398799,206456,436372,445034,392408,375572,374824,392656,433455,379769,172219,436685,445118,428518,386260,275275,447508,124279,294553,234320,371392,187546,324850,428053,392717,393746,262710,270986,440145,440147,447075,429171,246858,267614,417141,401509,154400,417548,424202,282972,429055,121351,375580,248724,379336,363184,223790,400485,420725,419035,367409,260928,368124,427792,421381,401611,425931,208072,401596,412524,246986,427040,254265,442762,447525,391895,425658,289461,433773,439039,439040,439041,446387,260293,398720,390580,242775,161628,424654,444186,427979,362156,265948,383425,401371,427192,429628,390702,418537,361593,399137,276305,126691,284610,256701,433530,434981,376670,446452,444624,434900,436293,436294,426862,301170,390013,391112,403553,241562,266762,212551,401343,173390,273121,389161,439037,439038,446191,382395,164738,435819,448234,296000,394514,278126,255615,429417,447297,273002,428950,127192,391286,423313,237443,379543,293202,424856,402564,428440,404822,404857,395625,151289,436649,448363,281841,448763,261624,425908,373445,131157,404211,270011,381170,402709,125965,325332,276873,291830,400571,383291,424763,428118,410912,403886,142803,413228,416787,380560,240672,405211,423669,391898,261992,130368,276360,405836,380490,321543,264270,200822,426305,433379,441462,441463,448277,210423,278038,195237,287460,220539,410662,405037,443454,402343,248879,375402,428349,177916,391960,433402,362144,273212,429635,267017,434940,211518,390953,434970,444634,372515,321978,444860,442692,427126,303888,325083,437545,445917,159232,428370,427638,396747,377561,281227,445055,280784,228608,406366,384000,395923,447125,280654,404537,411219,370981,301665,256581,403991,199831,440681,445673,381487,417877,296283,433550,371913,435184,406082,402843,289951,287442,135915,406994,399059,428367,394403,423267,387929,389954,388943,433191,441718,441719,446946,407406,252246,253003,302733,376759,417815,439258,446194,297475,390765,375668,426859,365574,365727,144376,402823,289720,254772,443499,439875,270476,402335,249249,406586,266407,290499,268905,427986,273331,397067,241846,395544,291631,247534,388992,294577,160444,176016,444463,397598,428159,205243,401335,396756,401124,397612,121347,427591,442884,448330,167964,443955,440494,448777,364268,433605,447028,415830,398176,413224,384602,155932,417051,179564,425064,396795,297160,274864,390054,425206,325523,445087,422904,222354,295640,199917,170927,377377,225623,423397,386906,220548,415414,284705,397087,444004,437291,406548,133937,379796,241198,389482,299476,367769,295050,320813,399803,378297,443687,439396,188884,168474,437648,445648,399954,435010,397739,135548,423036,294580,427353,443479,400797,441753,397329,412009,415964,425199,404480,436013,436014,436016,436017,446610,241509,324293,281901,303912,262901,376196,429230,401351,396536,429340,372126,446781,428067,267866,260299,285307,296248,395575,441895,446001,375101,401427,422067,409275,423399,422051,293326,224965,281016,427004,157560,251972,261937,428969,280571,261176,389696,445100,389391,283359,149940,235799,398281,419502,428791,402304,322196,261959,401544,439682,448296,243676,408386,427699,397629,283206,248554,365659,267822,292585,391290,420545,276319,402338,404210,398401,412591,203241,401703,165510,427931,443350,435772,435773,386656,258291,397377,404208,192415,255661,384554,392563,254789,402755,139630,397581,443971,438429,245797,268253,394391,153455,217078,444358,411989,256502,321850,436606,436607,436608,447602,381826,420348,440830,446450,427869,416890,242838,322807,398355,302654,286190,438122,448051,429589,162136,365005,296336,424334,272416,433193,235014,151596,441843,446584,364503,385964,230523,375644,401019,396575,145519,443458,373254,376460,429445,400994,401327,443065,440349,421224,292755,140216,392246,446660,429434,245413,292199,230401,148592,443801,440116,229508,398250,406957,152585,407900,400547,388172,409682,289672,381278,397055,390396,390412,368264,239355,419714,422801,391943,235366,389468,392407,442465,442466,446703,250996,397261,428086,403207,324765,262458,425391,367275,425026,292203,401192,446896,259377,426891,396901,373488,426817,142403,413098,429547,261283,134731,260582,425793,438251,445429,290471,298467,440585,422021,249640,155927,322884,159014,245823,421103,294899,282842,399651,444296,374563,436136,436137,408306,229773,385934,150584,285538,393652,266410,416299,197529,420918,408365,404175,275478,368899,387374,412016,400101,424932,397208,400343,372920,399465,366712,293564,407241,215496,176750,239430,416864,429315,401231,400836,133854,391246,427356,409580,133799,424339,355304,304145,416561,438964,438965,438966,448494,400980,300626,304831,394658,277744,374535,177066,287292,285285,446240,291183,396399,406197,231746,140209,427350,442003,448323,411993,241737,323092,374068,282677,271793,269778,209008,425935,442151,442152,442153,447362,254134,401683,352693,425285,298323,218558,397710,361778,416067,372088,180085,294271,163563,172278,403808,429629,391180,352374,278452,443515,442785,297334,288919,398187,281739,419523,357129,399122,304321,408438,412734,433424,392173,409649,394627,416856,416857,391125,261572,275416,447596,382693,284479,371748,128031,274523,399498,149921,204931,177911,444508,375853,289987,425934,400895,303273,429678,433849,413732,283258,381800,179545,388253,274006,138109,400385,398179,271643,381402,422664,153327,389436,265337,397828,372640,396487,233551,413011,261840,378745,259780,255655,423233,428213,299311,423024,220855,144704,429019,321456,156749,401241,440144,447105,323402,371899,393828,374963,251752,361358,419016,420007,402697,252990,200205,292555,227933,380843,296769,267206,144930,359292,443896,438474,390009,267294,380369,195244,434912,257628,242382,248327,421780,395736,263321,263323,401624,204030,235015,381432,399090,302669,377424,213299,376093,440366,446434,390951,423763,368234,295283,429325,423527,187014,417539,433269,442211,442212,442213,448641,277728,273320,168043,384335,394727,170338,427445,370722,265218,276675,251139,358010,283871,282210,179576,391085,296864,443552,427238,442007,152001,382464,252857,416811,399419,429482,264792,375535,442332,446626,420960,135357,380236,321719,429064,301539,443819,438495,438496,248290,285605,444401,436417,428968,385967,387552,365885,388832,211249,397415,424329,428018,135503,402765,294705,415135,404996,444069,436223,394884,161166,272965,402414,279443,152035,248787,401482,429260,445416,371394,421467,390170,157307,373243,276164,300113,372203,374916,143848,274826,408115,278025,247540,279324,440058,445146,429799,407798,436085,448590,154503,395914,265612,233553,250907,419526,178516,242777,443038,425074,393591,440670,445107,370430,374441,298181,378322,398322,422892,137855,400861,323206,401183,423654,209946,126545,429655,290975,252789,415355,282430,298632,410672,358168,408301,300884,440677,146612,280512,433767,425426,220849,389110,297513,408098,265498,162068,445064,369998,418926,405218,199261,440160,445219,417149,173580,280562,281173,423546,375299,424327,443523,403679,396631,325247,220874,416079,169990,355297,274841,376997,233941,406402,371864,250116,235668,406205,382178,437936,437937,448043,158385,286332,360977,401328,440381,440382,445922,266083,394488,133905,241284,276568,392805,425566,428023,411353,420882,440883,447394,407100,444612,435507,407338,269410,233886,297303,446830,230536,243871,393010,388873,420560,286263,425249,239278,245223,401484,260108,371472,401430,425001,419272,250534,426945,236331,286608,398567,127736,421702,375310,447865,289650,124498,247754,421789,414051,382968,395857,374154,443770,441708,379654,370927,246698,222520,234640,413824,423787,409757,288758,388899,247428,423118,426263,387975,401757,398966,248443,258370,429168,250111,385294,373258,217966,447252,416815,296088,419623,257383,425457,428381,364239,258825,289715,380362,150586,448125,368896,414118,372968,271043,171325,407300,390259,433181,433485,405879,447227,370699,324321,294823,418747,439129,439130,445620,413162,199692,134838,295518,438372,446112,287434,137631,406404,427666,250927,265403,264090,420484,248756,425656,152706,324637,448098,433540,447870,192717,413077,427916,443385,440021,405950,292905,425630,437356,447622,251276,260675,357122,439091,448523,202480,261544,435593,447129,443398,406630,263690,171321,427512,189122,435991,447601,444316,434971,274937,302338,412848,129525,273424,410459,271103,222208,299967,406250,247020,203322,304248,377594,398185,419107,372275,428438,446855,400165,443802,429465,405219,243054,413600,362491,384565,395021,321505,408221,444360,436302,355982,418964,390678,252814,179630,171686,444559,410657,436697,436698,264754,426017,400215,416379,435232,399207,250828,406903,407457,387803,241208,424776,401827,423628,395656,448327,245494,437142,437144,437145,445239,413892,241604,284824,388240,440774,445657,424813,427286,261020,443075,426903,425319,375071,423791,435211,293954,251568,322928,402025,266946,405992,410968,422622,232010,367864,423331,400279,240825,421810,447702,429208,136869,426096,403134,265053,261826,290065,277350,407638,288626,395101,266017,298061,400989,412077,239961,246813,400824,434925,418996,124601,276059,321564,424864,353402,374883,447467,391922,157422,141977,264539,376007,426641,269084,245089,177567,247884,389479,406974,429183,445883,392913,428997,289816,416558,258019,277311,290456,434908,443307,407333,271166,243407,220298,401198,426816,443345,424795,435566,427959,422717,427287,293076,443224,283751,438936,404278,365775,124802,289309,143240,418482,230376,258427,372224,295341,244210,401882,268408,413686,437812,445741,211415,396329,254114,249318,393208,389899,267304,396753,444142,389154,429049,223414,281716,254899,272730,400337,354660,293173,269589,140114,407381,404173,376881,299408,372837,407718,283329,406423,141802,353593,429178,396566,379832,401480,374513,440251,446190,197733,261717,409189,383191,370751,224671,294209,404332,237627,375418,433151,403547,262414,382670,394190,368915,401148,446894,426831,446371,261384,412725,272869,402028,413302,376436,297807,400359,356358,405534,279919,283145,391169,151990,133243,438842,446079,435188,402142,244097,398610,123598,252746,155386,287309,278767,423562,439247,447992,215805,406434,368240,131419,295364,231872,444429,390874,424123,413169,269153,291861,374257,299788,240586,293034,395898,147732,374795,240393,424720,423906,186078,370690,232130,401134,447342,401419,446846,248902,440501,448162,215626,283524,393674,398150,403513,427189,138605,433272,441735,448650,428714,280072,260380,440733,375605,368304,440916,447354,392584,392930,392929,436315,448124,153694,289869,420889,367985,287395,148782,398788,269486,261690,272085,423476,438900,448006,391918,157427,429720,441255,441256,448444,201319,138130,447404,163207,241709,281664,361993,427273,293390,274742,154459,267233,224375,267554,171950,373015,323238,273523,228827,177569,243204,254820,391023,401276,152535,262911,408488,323383,376201,323602,275379,295828,401154,417789,382122,197449,422975,157290,401734,422895,325178,411796,425804,402210,425693,172670,415256,278759,160665,167551,405999,289830,369333,244747,259719,408315,300894,400520,353385,321873,376736,324992,264571,369997,250134,429000,427402,427324,421021,304613,276898,427414,424544,267094,425133,428599,380594,392108,359613,162290,386109,386110,389192,443466,433645,441544,263917,441890,446938,427990,134078,413058,263490,420665,402710,429322,408349,284777,167290,426367,428641,429710,300997,170654,443189,389480,374353,156759,411898,321377,322935,324355,400149,394099,248681,271124,133233,271503,433280,270859,279918,355030,406644,149200,399214,400776,279487,297979,250883,416364,395196,408660,428191,402415,380234,437802,448528,304432,268065,402262,122226,374457,444141,424808,407637,270459,444194,427926,435854,398685,373929,404852,242291,384106,147930,420442,300379,380556,291828,256046,201849,293227,373257,412844,259732,397123,440018,447676,392809,427420,428796,279555,242667,420632,139216,439647,446838,322737,444363,255500,218813,292558,445613,386717,402732,163717,234886,291785,418668,445441,394771,266046,428681,429305,387121,428569,301073,370203,396271,409786,242784,444833,392706,362447,407410,376704,241204,418711,399879,418990,426961,433343,325159,124563,429276,252691,421863,441620,447332,258449,297458,257921,400106,291134,433713,394346,233595,400833,286365,376700,264790,220399,228899,439392,448331,419084,279414,197373,220474,139300,428403,423125,429604,427425,395208,403538,255370,264643,396134,435587,447230,172841,403656,265351,189376,269198,251695,433640,428937,374968,229949,394741,221625,419364,297292,150492,325126,149482,433362,377986,421428,409844,444045,427124,267894,403533,424536,396769,418760,365120,290726,414444,286159,353400,390760,423357,220336,401935,425749,402793,398052,190637,250762,427072,322825,269535,262082,392645,417937,281738,322493,159283,261743,416878,424818,254200,277817,418945,399276,273093,284882,252607,173193,399233,143905,428166,160924,381656,374602,203344,390497,281599,143348,422815,392847,371742,408999,275113,401767,281108,379966,408662,177089,291621,412041,433673,427685,410212,144928,291468,376428,402778,263311,405055,386884,247136,241254,420805,245869,411755,411745,296334,408484,395279,435318,428239,295121,300226,406182,294549,433620,261390,439203,446308,304394,373603,429477,397601,401705,268281,294598,408178,396183,205789,280169,395092,375836,427336,299870,298753,410824,429791,247452,433344,276036,402565,402795,279664,232429,428765,195040,407211,244779,141972,226027,194816,241412,405326,241305,245644,207658,133249,427184,415727,296549,357217,382609,286467,286185,393586,246936,291302,404821,355209,322088,251461,416610,433323,176925,164725,260915,140174,293735,350744,363077,286976,407988,400119,422004,387048,273346,251180,237504,399134,217256,234704,244934,428396,162506,395517,276707,133184,408265,424268,376018,443557,442173,442174,361603,414053,407438,433120,389053,240261,243489,390532,268908,412613,395198,323607,352058,400964,386627,371010,382439,411162,356363,398712,402045,381857,390505,389694,395425,437186,445436,264554,427222,399746,321102,372411,277477,188282,405200,385774,421294,384996,390603,404964,448204,157423,427758,133456,433511,399666,271285,152519,241335,410788,421934,301811,409741,420750,409781,267607,376041,358916,126492,369008,394670,141759,387553,324341,428420,127594,406601,277120,138598,256904,392490,269216,242440,121312,423839,424515,376060,253758,299227,219808,428647,173993,242982,404477,381567,427765,260394,393897,410383,400979,429753,232311,415204,177159,264480,416703,394290,411535,166340,238250,416912,429028,421967,270345,250070,406906,372744,441634,441635,448369,400441,440842,445950,389853,247779,428280,409043,245444,322656,231021,406437,281254,399587,428811,426851,298393,227869,262545,393501,440405,445415,416829,435407,400459,322676,394647,404697,395972,144501,373976,429464,402223,357970,439778,446293,394422,255850,389283,396855,289718,256495,371499,403611,396349,420028,138811,178588,398111,368399,146940,363073,261361,298878,324217,382969,287340,350932,438910,447649,269322,442556,446510,268124,266525,203960,228806,426493,409727,297782,427369,442328,446508,407544,161227,415040,381581,417659,374428,423560,227721,243521,299069,256207,166487,289172,404524,299310,223951,127889,244847,243067,444435,425438,436686,427538,425770,211476,410418,378115,259030,269251,167169,371247,418039,439962,439963,445320,379956,300045,298762,375563,390091,258083,390410,413313,396919,170002,131473,413222,448019,263342,402284,402496,266769,384388,401463,390892,444049,437423,443353,424782,400711,440942,446861,280409,394629,277434,407285,404228,275568,261228,262711,236666,168279,427063,405020,443545,433489,441841,383055,383056,263428,274552,280596,394759,359848,254048,171310,392222,276891,448722,427787,369049,267919,429601,417692,371496,303459,371404,415451,427073,372392,442364,447104,259578,390878,153317,444020,412227,324763,428332,287571,242584,302457,156726,395011,293160,215906,262936,396388,281075,374904,402161,428190,397531,278946,300888,422401,225314,384875,256374,388147,441287,448366,283760,269609,321720,134352,301302,374908,255942,221756,374274,214414,235313,248767,421740,240769,419127,435411,405039,435559,447033,145081,422374,128691,135490,295020,257618,153706,369856,399710,299216,392331,410603,220536,397646,271676,428161,417864,385842,134290,374193,198226,296210,392521,211417,371252,140658,398691,395653,365498,158244,391249,373621,362894,398985,161983,238052,384986,427825,415752,370301,250028,433876,413911,325656,417076,396035,133962,129519,357433,389481,273924,253571,370983,429460,404021,254103,403323,392646,365274,377207,206358,417913,403667,140154,447078,276043,161982,373041,408021,444338,372529,397421,299525,150452,270292,292061,272658,433501,408754,300390,269562,277823,375032,273344,389126,389372,140342,371029,375236,442923,442924,446646,221857,401353,271655,322719,387505,378377,413418,260455,381025,419077,160637,413264,174250,410138,284265,433534,392888,378484,239277,151998,394392,440927,447696,202949,378495,262183,425834,443078,270427,397423,362074,294215,403397,179771,246201,251980,270245,293322,296789,187006,389377,135672,436201,436202,448165,442674,448286,391429,140510,417025,133253,389720,403132,209016,222639,372661,281565,257818,381531,276573,411987,292701,446853,138098,428221,282719,390256,354085,422916,413040,421900,124604,376754,397409,397847,443030,438772,402548,257220,145433,273206,324134,418672,422513,380465,207895,442854,446756,393592,428597,356967,409650,409459,422932,285546,273848,420078,382774,384359,254485,361605,426810,232719,261948,371217,395813,378369,433644,292651,280826,258260,174248,243636,429357,222616,150927,260996,413978,414584,279749,400680,443483,391182,377425,271287,401649,409858,437066,437067,447607,322691,283602,294907,351358,435303,427303,145341,408028,245570,148585,390330,429524,284961,401571,322550,424463,399659,433646,434977,444233,436349,375581,446843,444307,410016,285062,250416,377513,278948,408894,271335,396445,399266,393873,394431,413913,175472,441999,446139,285638,445540,298921,321230,444777,263409,167159,435277,207614,191296,254861,123177,411284,397002,400856,423761,372521,368094,266446,419264,179999,240998,423748,280560,393451,429132,447546,427527,420722,443809,442337,302132,444604,397758,433284,423798,417779,391913,396831,395228,293027,424063,390843,428595,446918,286746,278097,271709,427066,245520,355291,446145,228940,391338,387228,395851,426864,278872,275756,289866,141065,274151,325403,325240,393525,360390,240954,391380,417561,378767,433715,429156,403063,276426,171988,175435,378226,424790,425125,398752,369397,230179,250505,250905,136908,429136,448508,174437,445078,428110,373975,283921,376519,396932,289201,291679,211986,143849,143901,142805,427463,427221,292242,367153,373256,394619,424725,433538,145327,411973,249062,325387,438365,445711,275134,353870,280534,304158,416341,270587,404060,130121,429702,441539,446126,402374,420902,250012,324828,264795,387772,277630,400090,443513,427316,442543,406556,243701,410042,324047,131481,409485,387382,304001,421330,425679,365044,425784,301557,244395,296571,444137,427954,440456,408406,152752,378112,285461,446634,274550,287164,254365,259951,403302,388139,300323,393531,429363,445547,376811,294194,240806,176753,425266,427143,276724,434967,387237,296023,240365,427322,391906,240682,443550,413078,419003,367301,166968,370125,410187,298704,444767,399296,406727,423824,259679,142971,387222,420966,254988,406626,415528,392274,429054,290078,444366,273074,437168,322472,438599,445677,401545,372453,395822,391949,253898,398172,259704,414599,246361,234792,394582,280226,252485,376244,174772,413889,238046,395109,428583,280636,259563,268690,436419,436420,448209,287813,373949,127127,399139,127504,128373,270898,210443,151063,303953,322368,323913,391021,428487,441086,446887,403322,441968,446705,416924,439663,443691,429288,440801,400723,266625,442086,445649,411462,445407,128309,134833,267217,444385,134354,275236,234075,397569,443779,438187,266087,374488,377676,401230,386521,362351,141824,406900,411729,281213,427709,294355,251107,401046,442707,446864,248895,386522,389402,266891,325163,278330,255289,248180,426074,406950,325506,246479,425515,299562,420840,397766,244953,392807,323605,239459,409997,303560,369586,272809,199678,196156,266366,397528,433262,416615,446168,420583,428567,299954,386304,412486,188609,391736,363169,414127,394269,411927,411631,379536,143392,404619,321467,416653,289548,403728,409475,403867,191560,135542,266478,293278,142767,443787,369258,402950,405655,325236,396131,428679,444449,436815,131475,246697,251063,437604,445740,274456,174427,200612,209948,443525,150332,243393,250340,391222,373150,391434,443976,437966,290255,397469,412826,180063,169319,303514,403269,256365,325365,262864,383949,290782,192291,409246,411710,253553,428916,433334,377212,414824,254884,409581,395323,401084,410074,416527,123036,420651,172483,133851,274258,448506,122968,406422,435732,435733,447139,160984,391214,403984,121928,239997,428532,371639,382083,379225,427272,242645,268268,240827,262277,409263,428224,428400,294078,402644,428063,245300,405186,427039,401264,190939,422035,393544,268202,375414,258855,413063,414218,321512,287806,321032,153704,260930,292578,372621,239631,292387,427775,260485,438172,445940,264586,291846,177508,398926,149146,441839,447411,394849,384341,215149,300958,193037,222794,448302,255570,395513,149171,397001,373552,410981,422910,410269,284306,292942,390740,408766,392133,224416,428987,445473,249024,277909,251551,426812,169919,121291,447478,248948,415867,391896,401489,126526,238462,442944,448318,295744,285785,296251,448752,290829,399709,389058,427822,374142,414455,428234,263939,415036,299749,273815,398619,398137,438081,445072,278577,389833,273264,372227,444078,246748,227770,391133,394653,258812,402538,415232,448033,253297,128034,295434,139930,160339,290437,444842,135086,247546,283450,444707,266535,137700,421344,426434,151466,265240,403883,428827,391114,216985,367437,401825,423775,387446,224365,278959,264810,417337,423440,293845,395028,390408,186608,147165,245990,142461,188607,415506,124022,149643,277412,407945,407675,411947,413528,241454,291429,386799,408223,416121,412335,201683,446563,364602,297844,239625,288033,433839,323079,248225,435251,243850,142974,185718,321425,423354,438204,445082,414329,392900,216591,123044,380694,241171,422957,289463,418202,433108,248849,381039,287432,129747,284400,254871,410936,301417,427466,442861,448227,288557,288814,390439,321717,444398,437447,360380,285413,264520,381752,390971,223189,293575,381171,423229,230302,277222,397650,426223,351350,417599,417283,237599,447541,271037,138134,390632,403832,429285,364297,251574,381944,213706,177986,283600,242857,277234,433154,427721,429486,122555,400154,441508,441509,445817,164739,248661,427411,288351,281019,388841,275481,303282,429439,420290,389772,397451,263795,283172,408933,372269,188066,169872,293131,426437,403890,246762,296235,393818,212720,142923,395394,255922,173175,390734,379875,379059,413455,124496,405670,389622,435395,292690,389497,277552,240248,235404,290507,300783,390935,428034,285496,374861,447135,407654,284790,302916,152871,404493,250662,438920,438921,445321,414898,283643,425181,422985,272787,143656,246710,126704,372052,442581,446559,402899,400301,302187,394880,256528,354695,406505,289968,392343,442146,442147,446916,160099,255143,241936,391223,398503,393827,323311,416160,322712,322635,427755,392101,398809,438736,448044,257416,373081,392683,263725,415453,266888,292149,443659,394299,440332,423785,268548,399893,373706,366426,257117,416828,411281,411467,266710,391653,392380,148834,378483,403231,167134,421187,295994,395550,285950,214327,142964,303113,425718,420858,175937,251073,398013,402581,223672,195125,426972,294233,273251,322478,445745,290408,252569,402707,263579,425986,285736,299732,349547,249553,417296,178200,321236,212386,389552,443236,283808,428059,158392,290640,233240,276232,139639,415096,233324,411437,405355,275962,280064,289963,392409,428281,375706,447034,304581,428875,443178,265654,191494,243571,246903,129385,395569,225393,173142,436218,436219,448114,400546,176807,423714,421482,279054,243138,265153,250925,419950,294900,368294,404013,249939,379044,208936,443281,424992,436265,436266,246141,371768,375239,291333,274631,287857,296062,399835,424712,409748,390376,373554,220528,414939,388585,402027,266776,301071,324920,378373,301545,421683,282750,279713,355999,384185,277869,263060,443897,437346,426943,259640,294033,392113,396610,446793,291797,137617,165800,401128,442534,446898,270381,443067,125226,273377,243562,144947,408709,418718,429792,264834,400457,402731,304590,433257,427161,351588,363952,425851,447368,145325,222974,404318,245423,429681,396391,296425,420356,393268,427403,288786,445196,280394,297430,402318,162379,265831,265513,278739,400709,426364,177818,407816,323129,396450,389743,444997,397999,256929,246658,405260,294860,293660,381970,169334,237440,392540,255883,213664,167131,407196,271086,144337,443358,436262,221502,149936,374432,396850,167288,257105,389967,391452,250380,300664,417325,409798,413728,293350,253643,396736,400540,411924,426414,403045,396372,235110,405756,244766,396993,277903,300971,278934,407436,197784,248633,407189,426863,436750,436751,436752,445347,136912,229780,231965,429387,251952,291321,421279,199413,138028,359525,437897,446020,397156,138803,398687,168463,429185,274321,251687,397580,375562,290008,295831,445968,211711,446805,270498,240882,364910,194955,166437,399446,168718,415125,293471,429141,269312,240735,372027,390787,390850,290046,398820,248343,414390,290111,414754,295174,292829,129377,438151,446106,322126,142347,216407,253251,424586,148595,387185,276147,390840,382090,389589,302661,384806,428401,436617,436618,448584,388442,412627,407753,388497,281665,292106,218511,322996,409577,242711,383870,443041,440872,381284,243695,435012,260711,289169,410441,263144,143381,422898,215302,427257,399547,258267,244426,350452,271554,401471,173387,446798,420938,401424,300473,293670,323432,280868,395067,251703,428386,392469,426981,165788,293779,373497,375445,420964,428121,435630,448637,419504,411693,269258,399494,296342,394735,321806,372658,138554,272511,414027,288315,241240,428941,392799,410298,421140,403542,442362,446754,351645,416954,235954,230457,435044,399327,245928,421459,402685,149005,243928,262588,323565,304398,233765,293893,373576,275129,262356,220062,285512,428103,396886,253577,262578,400741,273095,429909,425039,413095,429615,422621,296364,375507,396118,429845,387536,407791,372514,190943,441809,441810,441811,447690,135474,300308,276551,293241,398539,249252,374745,423876,234840,273303,153424,241661,125326,390710,363581,443775,441293,142982,279233,172265,445077,407318,444184,436548,236869,373648,146214,262394,400490,170013,126520,258330,429817,448566,218358,382254,249814,426865,227204,400255,373522,400170,141006,166410,286496,202257,375485,395788,261158,154451,419794,353040,448505,268260,428750,388850,398086,142335,387298,392857,293009,391037,270501,358920,446065,247273,269825,429291,395313,207907,442853,447050,287134,402090,420898,127675,290170,433382,158491,261654,372006,427334,137013,439069,445154,129485,378218,439075,439076,446161,277793,390341,420066,399339,416777,427611,241688,394045,283698,426266,296139,260614,394736,377830,323847,411116,274516,198039,378535,295960,415981,408105,406510,409233,410000,240489,301469,402483,446546,370323,372948,435479,448206,160673,299108,415538,429451,397342,405498,135487,253362,428723,251898,366834,416913,260636,372683,424729,444084,435883,212404,167285,205553,304565,401125,414250,246368,224007,419320,152872,448020,264591,392448,442512,446560,395735,379427,412808,402943,446636,405862,291743,280427,395681,231876,325456,140207,299921,412964,244605,323848,295616,320910,176332,169517,425730,258057,428764,429849,297814,448706,223420,262464,287823,370423,406649,295690,257476,383130,393597,254727,284142,413766,427297,142836,303122,415558,215145,428574,443482,395713,299903,368587,397647,388978,275066,235893,133801,264521,273525,391908,443068,437914,245057,303383,445452,282786,266058,241679,395604,407290,237738,429002,300405,244944,235896,384759,302421,403003,292183,143408,254869,287665,372613,394189,131803,248581,288412,384387,398967,372833,301718,357786,380435,124808,429361,401289,275973,323563,413685,163699,380306,398408,388586,303558,429258,439155,446269,255646,293971,394432,265795,121642,139157,290776,174778,295420,382442,366715,275344,399752,425176,253545,192898,402225,349527,381423,387278,285072,443376,435951,195059,443130,437615,437693,373659,397849,230962,397088,245483,406609,320856,253743,192060,402114,288440,368353,303286,281093,210429,262817,414154,324463,392069,416118,392786,291766,392743,398097,170333,228350,419286,245788,389996,321375,288432,161221,424364,252738,171720,374637,189120,247802,427435,226972,426679,441435,447333,205509,427730,260062,298275,177536,247795,193826,374358,231436,407095,427483,424157,394239,400104,423163,378552,371223,412172,152592,400854,141031,187259,393789,446326,124603,417993,135506,231539,371456,276718,287578,274040,409325,371455,356056,428007,404614,259058,263460,243842,222272,296122,388955,253906,429331,257123,422158,425476,235260,250729,406048,236528,433418,433305,171899,390945,433386,323245,276583,417552,205517,269871,260827,298068,149201,390610,271485,433233,398312,445747,251257,277985,258146,422865,406484,408979,249792,376389,323174,141011,435664,447200,443241,362601,439211,218427,240401,429140,379200,373330,295622,365115,426833,216691,423981,416689,439263,445524,402253,412976,373707,414457,209030,165515,216590,414672,395221,215649,390308,427564,390748,425027,250911,241603,391239,374715,390761,399892,396633,386519,387289,232054,197229,174814,374686,246090,382887,368023,369287,416359,253460,277129,250979,122236,406233,426910,178851,267650,123597,166967,382674,277420,203239,393330,140219,371351,241715,373354,371016,429116,274601,401714,196326,436485,448221,433625,320969,374319,393005,420238,289847,395518,294951,415239,420843,423116,228824,289602,321927,199983,404028,165513,176324,295656,253333,322222,436643,445336,424631,442784,446694,399712,244150,197857,258671,429541,426892,178353,279876,390987,271070,402136,227014,429407,405755,239484,259560,296748,425276,422969,379201,219384,427464,323535,390422,379537,444001,407408,437084,265724,444956,239141,395691,267728,403855,409712,149118,249721,384140,429776,442217,446650,252669,428289,369598,393524,167280,367011,395557,375040,407732,378374,394379,370033,261519,387501,445641,404588,394979,121282,426822,125385,143766,377386,253853,422208,378825,376799,446879,227647,440348,445662,190545,155997,321541,263962,376186,266794,413601,402247,441756,441757,447024,387648,223885,227829,288845,167974,259302,394579,219371,294691,165759,248727,401459,433906,375046,221155,274267,245490,144565,271922,220661,429360,440799,447789,375874,229510,219359,283426,415688,278899,443280,420989,377998,438246,445991,299528,401251,440167,446806,285379,212413,256555,445938,280316,435665,435666,435667,448631,303915,266996,140223,233785,433729,438197,438198,446062,407721,392587,375189,264051,370001,393648,374571,374572,374790,148208,134096,162135,415294,424910,232379,443379,294069,393984,282131,444898,146289,443548,392462,442371,390586,416430,130912,376622,429818,447223,427858,401252,358627,322480,447705,390316,374927,356342,398917,443026,438707,389170,126010,274844,392620,253100,423138,240556,357231,397681,192019,273436,377889,259193,364432,373829,321718,435230,402682,411277,256967,443751,435233,433339,303778,410177,150446,286007,391172,419739,392957,444474,240813,391646,389599,275309,400464,395023,252790,349541,383978,423633,394898,133198,423531,433110,293965,401791,447174,398231,384229,375515,433325,448669,255536,422894,401842,218175,429896,447459,408656,400975,167177,243686,404828,228541,399864,125177,400769,139987,295086,301852,225836,385791,131482,323042,425261,437016,437017,437018,448554,238543,378723,443153,423788,439159,324569,294110,245523,250295,243906,380948,256105,409859,444589,437068,437069,388835,288739,433103,433464,370325,392036,411634,141806,155976,373403,396088,389050,269554,324195,382154,390930,190941,350898,272626,373124,435895,435896,448580,394302,395353,410003,162139,253139,219132,438760,445822,252589,238059,176333,161643,217471,177886,423783,372992,266396,419838,364236,414056,372929,401244,440154,440155,446025,286357,297101,396201,215202,399779,136090,368478,269186,444647,276773,218831,256657,424774,161698,294127,433581,448357,145333,409461,422233,443610,425661,127119,386578,291875,440371,446180,261622,135301,151290,241882,142840,245374,433627,297060,420978,261528,323469,136870,393008,282839,266344,404435,410951,150008,447522,295152,392583,382053,386694,272932,417708,420655,278342,387051,390562,414857,399213,429646,247806,397659,154784,260368,287424,297136,405261,393509,322085,325021,284123,369770,384193,247392,393815,390719,392090,255071,387742,127719,422410,293933,228900,395102,265382,351142,398745,402205,267460,212477,375715,401859,393823,423508,381855,398254,400113,246927,273334,398221,165769,401177,295343,409316,436535,445156,149124,415492,399361,286363,240364,423337,136919,402022,441676,446953,364440,423046,421460,376761,142844,166927,147975,427419,221396,214253,397540,428125,250029,419507,149641,141807,252608,402157,302772,396208,442627,442628,442629,442630,442631,448325,289387,269621,402492,447021,252860,325233,264680,284938,375357,419006,415882,408509,242415,380776,428335,428600,376861,429277,287532,397651,134617,436207,436208,448548,388700,390181,443394,375661,435692,423880,394412,373195,446944,157424,379120,409273,286048,198462,414452,272290,324021,286031,391187,322648,436922,444998,401136,281224,399456,297603,272540,407613,227120,389742,406349,444586,428880,437530,290957,412069,402133,424730,442801,446674,429738,289021,265400,363266,419679,396086,373661,271260,284799,303982,398505,420962,427934,402444,398151,404422,380953,435252,167275,187958,440653,447792,392044,241362,236032,410315,362146,412322,444887,251310,440314,242194,277387,199877,384067,377143,254992,247962,413369,252278,421208,391812,392516,442496,442497,446956,160985,186582,126523,240269,413572,246213,426209,406277,165019,416812,366388,240379,149113,373592,280174,445642,363947,231914,390331,392642,155136,425653,160999,421993,409768,273315,321034,406581,415870,269849,372232,191269,205997,353916,424476,266047,424385,366253,363547,395387,394208,428245,364287,410628,284630,385363,286526,397876,258851,239168,402189,384238,399071,426794,441103,445587,371422,234651,301515,204168,448279,402676,392764,397003,397259,263535,402202,125958,295209,412563,429607,441691,441692,447684,237070,445112,371877,443877,284101,205899,444823,427096,399024,242816,444451,410248,436840,228001,442482,446729,244572,436286,436287,436288,448140,215673,399883,443023,273649,249204,374621,443463,441907,129745,401835,393117,374227,393314,400832,231673,227892,416814,401225,406336,169999,241390,424975,415719,245753,417003,288428,402034,370211,375636,195251,368126,444158,427935,435843,269450,371854,175919,377429,166900,386576,304842,411656,222148,413184,380859,251190,435372,410800,397978,373746,395024,428593,426852,410596,359017,433724,427083,395798,433413,439167,446986,373894,297301,429521,389931,130466,292637,320971,257266,384077,415669,219699,240608,261695,264131,153441,225699,392499,215753,409343,396768,287626,433301,384385,415926,446189,429659,396951,152741,211996,324994,392433,244701,364970,417776,251847,245941,444820,297420,303463,300172,298023,280854,123158,385417,417762,381851,408362,147601,442925,447113,400834,395495,428008,263751,353752,445047,421688,393345,236658,402333,442194,446499,299766,391920,400169,395834,413513,301928,243721,231988,410868,304362,304365,376076,441955,446557,323210,273788,386409,294753,417931,282509,259505,376342,415606,250973,415461,424491,275944,437411,445126,364112,429112,448422,413855,324074,370914,289179,417401,414750,258368,324770,437845,437846,445921,242674,284672,382397,423252,292116,429314,399113,140163,297371,412974,376467,374063,296419,448100,384251,417301,387094,435224,230677,255678,127738,446146,428751,242401,423514,258009,353134,445177,291195,284923,429008,427344,322608,394575,448269,246883,408704,411984,399694,384708,425304,247963,281517,403835,403111,265631,130393,397808,444490,438769,389692,371348,293819,404432,187565,447922,229987,389262,325526,371031,371111,374501,441521,447729,149210,441379,441380,446906,241989,405215,324035,389800,218585,381017,255676,403133,404417,272812,226959,231067,265140,360082,407777,266736,374478,221066,262372,131839,195270,174620,293386,297829,422794,391649,247875,415435,131467,379137,176607,444407,234945,292947,284181,426960,380903,153493,407568,423141,261865,287598,426372,429490,391987,273773,253878,392760,423160,188878,442164,442165,446569,413510,269015,445188,429552,165921,381672,172481,234705,372251,376468,374438,272629,294039,351008,423874,439148,439149,446167,382255,374354,445848,401185,379652,322828,278797,366233,392294,259841,428525,246723,398962,275883,427069,383494,244576,444761,437408,134829,266653,443558,402286,442101,400916,372811,279687,440906,440907,440908,447874,180066,396369,392326,303798,271668,396191,321802,371937,435952,435953,447065,244533,384420,294170,264973,445185,137710,157285,436585,436586,447981,408097,444339,400032,409645,373012,179767,398694,417622,268604,402135,233603,402563,442441,447010,401736,406597,270395,266971,397957,268663,246692,366668,429117,370329,433407,186621,127129,354917,178125,241572,147888,392314,391777,429699,135822,439680,446813,229781,400142,325736,372985,400976,239708,421363,136930,425782,277955,394500,444620,428946,437245,426878,445637,427393,373307,402270,290113,280476,445349,388183,301711,411351,226955,433722,213631,396816,254990,405837,188268,250233,279340,424231,372553,426920,187553,229778,421977,423225,414409,376048,280446,448332,122112,270186,300255,133466,401461,418014,383033,375151,390010,424769,291029,273071,153698,244667,235119,400414,433592,414938,443989,407424,140953,130394,397498,401787,447126,370747,239643,301466,420759,420753,375201,273362,265208,433539,404760,245069,414789,439021,448531,390544,248177,389821,402421,421390,435187,399546,404164,240818,403087,131144,424425,204222,280829,298274,444235,405566,435597,411261,232117,246475,292072,392839,300082,270509,443437,442656,396370,276417,218180,423459,399786,387928,433641,393247,241676,428552,403616,408277,427561,388445,237601,447737,257882,417461,433886,413578,401755,223423,220822,161231,380978,447643,413682,389527,255651,433109,443485,441408,429154,398693,379159,170860,404776,380929,399685,281080,287856,444573,437993,395079,371716,278158,400830,424920,410168,443858,178389,433881,380926,172356,257926,399228,289786,380922,276888,214437,266780,126020,439695,445222,419869,397045,392268,392698,242366,242709,280431,390235,396690,427560,442637,447166,402131,433580,393685,280706,168019,429295,401868,384713,224962,296966,448699,425024,227050,372480,320823,393030,354693,227592,393700,278300,236020,443027,440715,433249,232957,240987,439246,446215,412748,426061,281922,325452,406329,428252,444486,436076,372785,418781,260899,237915,371614,368454,251699,413631,227831,291984,254250,420303,257803,414375,203647,278304,386064,269541,271121,142545,276581,443131,228808,396628,373927,382435,414253,398688,128941,446738,287518,374685,429332,270197,322311,258810,405639,243925,425540,418952,321466,255799,392299,301954,439684,447086,247600,391684,447876,402606,235098,300182,281667,267189,205365,290913,208774,389299,223294,365765,372131,428146,209396,423984,400899,380238,429435,243484,276256,322724,286616,325416,443133,436951,140473,253137,406271,400186,435022,177067,301780,378214,130463,193060,124573,321027,393014,396619,303597,394040,413920,363849,268691,256543,374060,241124,388493,286812,445738,196328,407169,268692,397573,271616,423008,266827,356331,409593,418329,373286,393585,138131,125160,370371,442788,447464,325590,304053,262620,372422,374034,400886,395332,254329,429428,406995,227785,421847,276127,409574,353409,232067,389465,299840,395902,247096,226293,443266,436727,278988,428321,300669,407825,224531,414488,392292,407485,254630,412838,242460,291019,443430,442676,245352,350144,380947,268625,427468,446711,381748,395393,271176,374093,262195,411317,260285,390858,372059,284338,150932,376687,245076,410698,303014,396616,436346,436347,447592,406452,404694,374416,442552,446616,219933,148743,443141,440152,257116,433700,221691,418218,384380,304696,322714,172270,445098,279286,283829,420023,292793,287530,249982,138795,394586,428530,158239,192017,433513,443644,442175,403148,296924,167905,272902,278895,446731,428460,440099,446835,216625,137666,304737,286694,399017,384547,391877,230391,427326,219134,293293,422353,401105,277970,252882,281791,283194,402325,406683,425725,202022,250478,397793,413073,253924,281001,398867,398938,297185,381084,394697,246586,201634,374926,443498,439829,439830,429713,188758,411788,267505,443828,419081,440469,228155,325224,401867,372865,435642,448203,366294,219710,178936,427487,262110,414194,126379,165509,290275,392403,443059,441125,441126,441127,421132,411392,272389,429684,248426,293412,294503,389573,295348,392445,399790,403554,124814,195005,400303,440786,448418,298501,428095,299273,151460,433516,399684,124673,268593,382161,433727,401070,259234,385158,435221,353568,255963,433503,442100,447013,153362,406647,425746,397721,219393,409047,389023,409602,402827,433355,199897,273939,406114,444441,437336,402077,280207,282627,428346,420167,300159,248114,247284,221924,223439,416839,160946,152589,269187,177517,427410,442567,446718,392219,429139,292692,262419,444063,440159,426082,261677,288591,175482,441997,445823,300518,270530,398034,282604,413612,283176,423033,244113,433170,256595,382754,304679,427568,447149,125171,205785,392702,376641,384034,285394,444972,232960,301107,428163,292021,390972,131806,412217,271677,376459,427305,134714,404999,429046,447477,372717,325050,245658,278981,407595,274465,443273,246647,429111,445877,400479,324678,140503,394115,282769,143764,444259,424677,374677,441909,446959,390864,437242,445227,137862,426701,241869,406668,224092,165768,265011,164558,232139,300873,422371,141747,257215,263515,435614,417743,373801,369559,427542,402794,394520,244691,303829,404281,442735,442736,442737,446710,427329,443555,399868,256500,129757,408030,354744,297861,368448,267666,243775,144941,242211,133235,243072,440655,446439,427151,446538,301521,393124,169315,391207,392567,153432,443874,429715,406342,443407,436592,226684,352103,381456,394052,368719,294737,139617,401818,194993,192819,444729,441177,323382,252368,402141,195011,401938,401956,401943,444434,397042,436484,408500,400565,376011,376871,371315,256921,407423,262978,140956,389755,399187,444868,396706,417411,403989,261844,394593,442802,448249,264343,379861,290461,363980,372786,428195,444431,435821,398147,272399,246118,398334,427966,436081,447548,391073,410480,395531,238307,429308,399793,367412,401320,422150,137702,321144,293559,426432,391401,199979,295568,428795,373148,135427,429108,276525,153433,411872,323241,153359,423711,281486,281697,350716,394671,391229,215264,151108,407774,269427,361660,322471,251177,283734,270298,296754,286700,282207,443543,373174,382152,247935,387948,399963,441363,447611,134840,288852,444901,438862,433168,446979,395042,406804,429596,279091,413207,444799,384082,374091,364971,216053,384521,301675,406866,263368,428288,140122,374903,199421,429180,447878,255695,356413,374458,260633,221261,304093,422929,273113,247328,162372,365041,280580,425287,146937,442928,448721,375993,279970,443085,397486,381538,263857,243922,429309,440898,446356,392307,403009,125956,380378,127073,296863,202590,229533,437265,445446,429903,403813,443450,442915,128940,448712,262756,252190,444213,270329,372877,403707,415755,262757,425495,260894,248160,406789,175420,448132,282559,392263,365379,417902,147209,391663,389845,400280,399929,147914,365373,429563,403117,424212,426837,291467,216632,290885,425847,401135,422263,402078,389090,320948,225082,288160,245390,290877,229805,444681,437184,437185,185722,440543,440544,448576,220119,371442,435003,322187,419116,148781,208790,371932,401308,445495,426153,287551,297969,402780,368988,429617,424438,440807,446398,421324,442115,447310,396939,269376,222517,391456,293792,361257,376570,244107,393457,395308,295307,435852,448572,179517,371767,392944,403072,372481,372858,134132,435799,447628,427950,224717,400225,428468,439648,446820,322513,425794,424324,440439,445206,283148,426000,427563,298135,298137,403845,235314,290687,276785,374118,383418,433242,401394,253355,412446,372856,406238,377255,429048,198457,400134,444673,433279,277524,435294,372737,426807,401694,208886,156731,236026,445810,144173,399946,388320,249461,245233,409597,409598,380258,426791,443642,426683,241478,384926,148584,428848,427267,401348,246056,409500,296247,429219,443169,440177,235104,427440,390517,427656,273351,413835,383231,282686,138129,396424,271026,435899,447198,165846,402873,429089,297866,224758,279844,387227,428903,299219,281251,286481,444883,428742,439451,439452,423456,401138,441388,446849,427933,410142,373799,293086,427199,424921,427771,370463,375648,395572,428453,439865,446796,424020,393687,426655,443082,441793,165518,428047,143763,124610,413433,277022,265465,440252,445225,391389,121268,396184,244000,438118,445806,400082,272303,375828,380653,411857,375350,446547,372483,444068,436074,394535,389761,401557,419729,275006,405827,259849,371592,389628,395818,392233,400489,324098,240980,400300,216351,422943,233881,240594,282574,414616,373099,402038,395428,422719,428435,439714,446792,304506,265880,207692,447845,405823,429885,426754,399930,408436,444691,426994,401361,439324,439325,439346,439347,447468,392075,376036,149440,394980,259567,400299,440785,445795,409569,321994,246179,401260,446824,265034,433474,429746,371461,257518,435215,297828,378746,428227,433785,429891,302109,399922,420036,406918,242946,446405,285059,207841,271134,373009,435480,435481,447204,242045,376140,148213,417320,399881,422541,324548,371196,403953,375597,246412,383926,401040,127593,385122,409453,387125,394967,428120,169865,426861,292426,423317,276776,372716,376426,259678,444885,437675,398330,274123,291660,414212,232794,392744,285698,291926,441894,447509,291079,429671,406851,400311,199292,407523,417775,428478,174002,404932,130915,446091,422871,390456,241525,424817,435917,447153,378476,396507,151457,387900,378021,304296,372171,428385,436415,436416,448599,429195,427998,321152,417530,424378,136713,427961,297817,245527,442894,447122,137522,441547,448260,142509,292591,407309,443993,436546,234329,448186,375361,395821,400365,192315,396132,442621,447119,401494,399934,353114,405007,400707,233708,444516,150487,374466,429677,424768,404126,371205,303566,193041,435331,444386,405722,428561,373208,371733,375105,417667,321658,260659,239129,400988,365059,429184,176364,428464,188779,270301,394309,246691,429698,267013,262973,185720,402800,125606,399168,292073,402816,428448,428471,435329,257917,178858,392232,160982,271458,447042,223224,247800,400447,427323,446647,278973,273069,446503,404070,221759,370937,373521,389630,127717,227649,382061,195063,359314,428949,437632,437633,445235,370023,178114,186926,300177,244152,388853,424606,442295,447709,425396,400245,397142,215457,386686,295612,242166,444561,406803,437593,362908,433446,368316,426811,241387,122974,144991,218381,369006,231395,370964,248757,372222,372981,193980,443546,427376,442561,285874,122104,433308,415767,438333,446138,264756,433661,240560,399314,371170,294731,401905,178126,152524,370833,387095,423793,287516,209762,390514,324716,428908,379766,250099,420954,269385,402327,294607,323583,190037,433450,382363,301012,421685,418011,400666,241552,401756,238049,269850,282397,145506,287570,402280,267490,415972,265177,425460,261182,408269,429653,420444,265712,358993,427694,442837,446669,418969,443833,440214,440216,401409,293706,364515,392250,429594,401018,428061,448582,287541,130465,236151,217817,427299,403113,394474,406368,433292,297887,429548,441381,447440,250034,433714,236021,372657,173232,290474,437896,444990,427873,433208,222380,278427,236761,398365,429294,401623,428140,136861,408782,400563,405772,156718,258846,251736,427719,427219,292842,435400,444328,429853,437477,278465,247655,391200,445065,413159,400275,401605,375573,301873,428662,126378,286227,390215,403591,264430,442099,447031,286029,285047,391089,425837,372292,419683,400488,388911,385205,248558,246481,429847,436655,445105,356366,264052,270287,127732,429550,424343,395927,356352,424703,424224,287197,267879,176326,400121,377216,146222,433719,372160,228894,372216,226279,169520,427808,399703,424139,402049,349553,366937,426749,304297,231922,413544,255386,429497,422583,423957,402422,408333,403092,187508,425736,401848,389487,414402,386154,443961,413411,284847,281362,371747,402454,259447,403765,291335,230964,362766,159244,276885,386777,390615,422977,421409,421800,413849,278122,428147,130536,236873,124493,375375,175360,372660,179472,157797,401592,393120,408821,396314,285085,176606,416212,215414,362839,401032,238471,279712,416087,407722,406790,351500,411622,236978,423149,171726,400066,445862,363771,444880,428712,435522,174011,434986,394903,424625,176363,411649,408988,400844,446895,414864,419036,177161,406448,392952,266977,149425,149938,279745,289531,427906,436337,447196,241518,423243,435193,396469,261024,428496,187827,383035,263500,396874,130460,284057,412595,409573,297673,394908,440905,446409,427285,140340,396356,406882,125176,197279,138530,394563,448666,199298,427149,448733,298537,444953,433512,441525,446932,426588,397993,444757,252703,396438,149617,130457,153702,267164,400116,397268,443123,392371,405174,276068,187438,138128,142397,241435,137037,389217,418171,400604,442089,448684,367428,190961,171662,138097,400961,388983,229993,425011,302312,390463,380254,439658,447817,204301,227653,204510,411403,394987,444672,264763,435512,219367,220537,427911,289329,425652,422855,429240,439327,446172,417352,369921,414080,285176,401549,400250,401101,174849,429614,433306,428397,297536,429583,440716,447426,435264,324045,208380,124555,257996,170781,252140,447102,422236,257175,282536,395608,443529,442846,400639,375066,273408,399959,413417,288468,156648,209965,395199,407962,136996,390149,386711,373778,402405,402462,205787,282017,397556,400483,420942,420706,239136,427616,436251,448615,404674,428872,406654,405080,368176,297684,386473,142765,420887,352873,255059,425227,448200,401989,433365,256024,239773,298310,180108,448724,139125,395848,403353,144936,231662,174422,405625,234918,372755,402837,446693,130116,301436,240625,371803,366700,429751,447036,175932,391390,266703,424148,433380,177166,390255,259576,407213,299695,397164,272262,227868,390452,292866,294136,416639,385057,279369,255768,429783,375305,428319,296651,408756,399248,392600,321074,444935,322429,396971,263867,408731,428277,403238,276936,387613,146344,402897,397776,284825,395779,394752,225164,269321,212509,443497,194843,421915,406891,387463,321368,403244,385054,392621,404520,128734,302929,406956,436378,436379,436380,448089,295834,228813,144175,433121,211794,133892,323500,437272,437273,448143,378605,217459,423020,286985,175476,403760,295383,323041,220079,426028,423379,428476,416468,380199,373874,396094,427437,164726,300121,289742,429213,369930,400965,446950,398748,151604,126380,296226,401582,159233,372152,429353,218772,146552,428932,399681,447779,253266,323389,437269,448018,372274,261289,422724,268074,249717,277186,399268,427751,396470,272828,401926,402024,399730,258097,395329,375978,166395,385486,407425,148591,271754,396027,212875,261304,440069,447957,402256,447300,143334,415912,446188,401298,447824,399491,223603,445304,296704,433692,143882,402790,214647,427465,266175,394457,447145,443291,390634,437097,394414,129767,126983,297490,441299,448676,216630,273198,247509,177065,235391,401813,396431,415327,427514,298913,424911,407093,403944,426902,322767,269036,391692,421066,401534,412467,422890,443506,394421,439644,269225,288612,289186,443767,429649,442755,324849,375341,439390,448687,292232,300137,273213,257808,391204,372838,264501,249924,422784,225613,375154,207767,433478,359402,429070,380898,144748,401380,410447,400416,396022,136605,152626,138397,401420,231670,179995,303476,265360,303272,425948,376800,298460,240933,442941,442942,273414,448655,396679,236614,401630,275064,398300,321591,408522,370942,421359,385722,406173,383980,235682,142542,406157,147925,285098,230135,417340,439378,448480,179151,379887,264768,397093,408162,443347,436241,216369,159272,420726,299882,440433,448454,246378,395941,407371,269619,297426,303118,424641,447106,412078,270977,275033,254536,424989,401709,252577,435219,260449,415008,242758,229769,260830,404242,374565,436139,448616,252945,420976,395802,392675,270572,242523,250257,246140,412417,161752,399596,429128,401267,394699,149007,433173,281995,428983,138225,377089,170006,136966,416090,395889,268939,429067,218811,168879,400960,402083,246731,422830,275636,276641,139160,188058,395777,378116,321781,428365,223418,419079,180106,296273,268357,429408,429393,428885,233360,139619,289326,228898,255989,434915,402423,293526,407799,401368,281651,385072,434954,420844,373384,296166,388608,373785,426767,245071,429397,370084,410072,177528,424144,230081,263737,441441,441442,446462,375082,436615,447583,258189,297665,417911,159023,419090,399303,445447,428423,426649,243055,401418,378510,433487,441118,441119,446468,355318,429186,136262,198746,424618,443495,435448,290557,392996,444418,281787,358306,253007,400179,379674,244254,217602,418263,304443,123566,237832,417712,169376,187843,435911,447569,403584,402894,283313,122629,446121,443290,406871,380314,272625,402529,426918,228357,423954,161212,418320,398990,438229,445719,179566,253243,402288,243083,419429,254042,415670,262327,252548,404665,359229,437866,445996,424130,140673,260811,205683,355889,191893,372695,403329,407730,429742,423518,279461,233954,402173,282959,402772,401356,211053,401527,446788,124612,243441,279094,417652,293176,447408,174424,274509,241361,278952,275400,233501,300741,143897,395276,409889,265531,400873,397086,371460,153938,402117,216349,247065,138142,263105,351893,368477,443649,440917,440918,249659,288839,271596,370085,162008,250717,441201,441202,441203,447785,283793,402738,300881,406392,297678,269923,363976,134835,168880,276590,396203,420150,152744,406896,435249,400735,248513,444174,435500,320894,443343,407660,436651,372749,413986,357027,446149,361363,410804,226712,387825,394510,444383,428747,436684,285051,249671,409780,445278,402323,228619,273159,421421,365732,273900,362106,191113,325041,283477,413697,410821,397813,371702,199827,394641,257979,437949,447860,283330,177062,396888,436160,436161,446769,243607,143251,398573,399015,367525,391334,253794,373691,382463,433322,302377,414128,385778,268974,442956,392259,393713,245198,288445,373831,425045,441531,446890,235020,143353,385680,426667,143768,391054,150016,428592,385290,249320,272252,417759,412594,162959,390249,243239,394207,405763,401556,237597,403956,423035,392580,389406,429609,239517,256225,294848,246637,442875,446648,290396,241895,397517,392537,425694,372104,401390,236024,423410,392056,393658,212011,442832,442833,447532,366331,438308,444955,230612,270638,275618,139928,427908,443406,287630,427187,433266,417018,171499,280211,443553,159253,406858,141818,266919,427985,396148,295142,404751,403073,203844,435361,122354,400467,399686,272251,372926,293005,373639,394595,442803,442804,446521,293363,255530,242484,445849,292994,395761,399537,420758,402273,390697,444630,428388,297378,407069,429598,410224,151111,380866,444036,396448,279608,164050,159736,403730,393252,365648,297507,433601,157430,409090,370854,426293,403837,425845,374979,448478,247729,193666,321790,444944,427346,433660,401042,298110,321413,269859,403401,295575,375525,419048,229414,249965,429436,441058,277649,322887,366845,380245,406862,443382,436155,424500,407366,444219,390409,256182,359267,279891,166431,407167,250316,260296,376323,297019,147939,423912,242063,321281,434906,283038,227016,377916,409877,284067,402191,376720,376464,435780,447095,258642,161168,220876,443744,438452,382832,356067,232368,285235,365881,396023,127741,240150,386125,243847,428551,440943,446875,399764,275178,412056,397962,427827,439659,447146,402087,401123,442500,446943,428940,427458,270969,427987,423983,389754,294034,425722,407446,300680,155157,423249,228817,433149,441630,448268,396865,241658,447734,372180,174428,279076,378184,417169,196977,374433,398120,409396,384133,378335,385814,402296,384025,397559,425769,126018,443216,274622,289654,251961,436845,447713,295272,425212,412727,396383,288019,443903,249653,376826,442208,447058,325197,220922,442856,448737,222273,372976,295067,227101,439427,439428,445276,370501,392417,403946,392359,447296,240292,402098,441815,441816,441817,446996,237325,196324,253236,392826,264310,425500,443206,401957,406232,423867,267482,323609,413115,255835,405502,411389,428422,125608,375788,396972,374192,416951,428804,396501,292738,401024,262199,400684,394387,247087,365025,279444,192362,397456,429081,389456,215792,389939,423077,224196,382773,261830,152480,400981,423729,422852,264054,246718,408672,402281,167919,408274,412768,377278,361879,374108,373232,145516,278640,408369,406453,366289,242331,443599,402656,288903,438866,438867,438868,448546,419263,428575,152186,436112,447173,423958,174765,274127,218277,408541,411823,428611,420305,425612,261301,268101,401612,231671,301088,400772,209096,448199,268648,270701,292482,423696,293655,257026,279236,275448,401329,424612,160932,380082,392597,442195,442196,446753,172666,404024,442639,447117,372846,325074,246892,374512,249012,405097,403926,442346,447093,399573,443465,433240,442706,402839,416841,302711,282326,403361,377419,384924,239085,325325,246276,444053,436399,157287,418954,384960,384024,171332,227845,141819,403097,320821,297201,371593,388516,427547,413497,240647,216487,376936,443397,436883,353886,295584,401567,373596,410604,425399,270559,388402,427896,271221,138812,280614,444298,440358,321906,418195,224002,377919,402162,442067,446454,229813,199300,180088,381821,447840,402186,376757,402393,216756,296078,394518,323247,425962,400580,393740,429003,385151,416346,426986,419438,400713,242554,147731,227878,402208,248051,373615,165809,444730,428299,251092,148996,324191,274835,409647,231457,323749,300816,419537,294476,406441,416354,401429,448303,294408,406650,402626,402734,423873,391350,402080,166975,423967,394707,424514,421178,405881,407282,419423,445653,384614,402212,289852,284424,176383,264907,421002,161746,379764,394101,372972,250834,399919,420174,405963,251202,241894,400054,374840,152770,357796,406478,359264,144566,402470,324076,283132,428274,210305,396120,426885,447664,428093,358156,243284,413440,254577,423045,444781,391583,247478,390560,374409,144933,231197,283840,177163,267117,422075,268578,297677,422959,296192,443140,439947,439948,412915,389825,373853,440287,446077,402390,371881,429587,433363,400476,159976,286060,401243,443922,428657,439482,439483,443138,417338,439376,439377,302354,355405,218576,393608,416813,393588,418012,257097,402590,274538,322609,399513,433189,446512,395229,427507,242555,437807,448014,273107,125230,377917,135510,240232,264403,423145,394485,417330,416705,284271,149421,402535,447005,245676,385651,324939,286123,278631,296785,323943,373749,288637,282954,399902,402176,278052,126690,269985,222611,142977,267044,428010,403734,384954,400505,442779,446473,245081,370961,399920,299024,407648,125955,150003,262000,374375,401088,429224,134623,395582,373440,406139,397357,425343,300130,446262,372141,244768,135425,396629,324128,399937,424096,133067,194850,448472,364443,408131,399933,128481,376431,448191,394606,220045,283555,228681,302867,423065,393251,303951,140882,420729,291835,447203,141986,433196,416023,427460,296659,413242,427489,374684,367392,405175,282728,394724,417059,402276,396062,447245,429645,292484,282791,402181,398958,149129,128652,416923,415657,401692,446767,373727,423539,438594,446150,138133,410186,144938,397662,323282,433582,380151,226299,144934,243405,379541,288423,400316,413139,243667,374912,164163,177590,242175,291014,372273,395645,394427,396726,244896,370814,290842,176404,391418,385051,443049,441208,402277,240579,374357,427365,287414,127136,156655,394292,135664,384914,271626,433298,138049,444353,435829,391673,294847,256882,433267,402239,400984,204712,383496,136902,149192,321075,444905,437384,321821,404415,433499,371517,423921,247626,395253,196861,126117,433525,149486,399026,394008,241606,122101,388243,388295,145326,407198,174253,358907,411342,160983,209753,288444,403666,425977,424796,427872,421885,381846,121806,392411,413560,400132,243043,445427,206492,429151,191500,426751,295544,253255,400991,152546,429470,415258,391374,389397,402118,175493,393766,399341,129766,414019,257444,433224,446933,408093,447576,426947,427205,387782,149199,424761,405635,405087,289205,295248,297804,227058,408852,170645,361060,253156,179221,264538,375080,372519,414977,283697,392579,220471,425507,277726,405110,321441,278771,401079,226667,392922,232076,402673,414460,258685,286383,154494,126593,374917,406167,392616,235440,272210,368791,386844,267969,281185,295685,386820,413607,425981,406125,384331,358294,167913,204842,406186,401651,439416,448701,321088,419738,266586,262396,231138,404801,407470,292448,235302,369618,321228,269278,209253,279943,428088,286376,399983,401645,278383,376973,428683,426912,265793,376980,444931,436443,429862,303402,374262,284710,421427,365016,169923,392043,428384,429270,138373,413609,422803,400270,232381,404459,298563,428615,383083,180007,429578,260857,152751,382346,410045,433115,270239,246865,447455,427847,240361,296312,444651,425202,401196,226289,396366,444074,435876,216467,204756,247001,406923,388959,210235,395320,269069,372857,211137,190473,284983,247644,448159,281796,415986,429831,413960,325475,395543,211700,355995,237362,322124,286056,211760,235553,447560,262941,392514,410093,217297,419553,258006,172061,160436,428300,371227,152588,231980,428782,384078,416964,428436,439862,439863,439864,446842,391063,270645,413952,226440,385261,384743,443076,441204,441205,197197,400935,444227,401790,440710,228742,400187,241388,250589,382689,390117,392297,406796,262895,420557,423445,397737,199009,402431,277304,136528,408939,266052,290039,367400,374246,429725,444601,411061,437201,203352,356357,433248,293248,424894,402591,424131,216305,426192,238442,246833,249627,425811,196968,389748,445052,241586,219799,428052,200559,274700,169687,428559,212423,400076,397715,438729,445784,377356,384979,296693,295087,374626,433433,291358,352956,429289,277819,372827,218279,223019,225959,405309,121283,220525,413409,296978,363146,406582,413618,433312,444391,440589,390871,437391,445102,165917,428929,409470,177060,208048,445408,433217,422424,270087,288208,426707,303000,393107,220794,397294,247510,197294,404394,323852,121272,402534,378855,413620,406306,323031,403466,282565,409020,427379,402862,418021,420502,380501,426062,407202,433311,424577,284869,159024,261068,396915,303920,290634,139057,418713,272138,355507,405796,384378,406955,390863,391292,422878,277639,196400,443566,428991,411663,370926,379207,364661,410303,409826,176409,290522,297774,126012,200421,440019,445455,227399,300587,406987,384262,395251,391520,396692,408380,397515,248473,427424,401073,349445,293214,175925,396033,253551,401149,441415,446974,274012,399880,433496,131311,239734,409221,249798,283995,251069,395315,324401,443960,437654,394038,403257,256589,433500,424974,171334,166428,392456,404071,361439,417434,417228,254520,427077,293206,194926,295667,428098,448612,221860,435137,241708,389489,188890,442163,446649,396394,241377,403487,254059,409335,242635,266647,300871,364866,403202,442320,446568,323191,248953,405185,403529,231203,188892,426761,235851,395288,245551,400242,371810,427110,148000,237932,141003,138595,412946,253113,413416,121020,417041,440391,445272,444895,426996,374640,220925,375070,166489,406901,375534,269483,241032,416515,426897,443522,427318,377220,443225,163943,377617,261142,137669,421234,321147,279169,425816,403215,391931,297505,427276,142450,443194,442768,167001,442453,446550,165126,391022,423512,388570,403913,146294,322577,427478,243474,370997,447374,417757,404305,395540,384715,396225,368788,424786,402069,407716,400692,391233,264077,392614,167161,236567,384367,296939,405203,418970,386063,373605,303471,423315,363879,368216,443020,394638,403742,392208,245513,325324,433782,439135,446074,139106,286027,412744,271226,429150,267459,402861,402298,373508,436457,436458,448595,402528,352061,405930,448614,399677,427648,294352,371988,133948,293204,241913,391184,436784,445093,421622,266023,290631,278188,271033,387313,401632,398920,433157,296453,428323,234779,439916,445172,406618,389269,428068,392303,447461,146277,145521,396063,405843,257596,443985,323076,438797,401561,425085,443953,436519,436520,249233,292761,143342,425807,264379,401211,373569,424674,192036,392882,425281,373601,399567,445406,271684,201241,255630,444941,297410,135891,287554,428481,155140,374509,286879,413148,156750,395938,296882,370816,256877,416535,280909,242943,409096,239140,231879,444241,325241,266816,249077,201853,433178,409222,397482,297129,405420,446758,157573,296719,396921,427338,246683,243395,448057,252352,407936,415595,321378,399106,363444,272018,406953,357222,405488,151451,282665,301103,442700,446643,292662,298528,407919,284131,377881,151614,420936,263379,429542,407052,288576,429058,396398,405852,424785,435602,447130,412790,163383,448729,161230,286093,216579,141629,242843,447236,266268,401160,368937,298248,405507,423246,371730,408191,435609,435610,373782,266451,403812,226545,170647,389417,293915,427885,424260,241232,240424,401710,257905,267648,287787,392080,289133,400304,447479,398964,427941,368498,423693,448000,268228,283233,239840,271205,368167,390494,322431,293002,128036,301380,403804,251261,433695,444138,436870,425831,226566,407630,392911,393293,283731,444032,375765,141765,153050,413643,123035,226033,390561,293353,391504,393385,368500,380239,405171,153861,296404,151117,444609,406616,389071,291453,443145,283817,362652,195871,428366,400341,281117,324354,304224,371643,178113,425757,401218,370900,290073,206957,385787,409324,148582,216762,433621,429175,206896,373757,398341,126383,429737,424301,158253,275787,154892,247720,389086,416437,440412,440413,445036,408783,364140,407921,428536,284809,325366,300556,421404,407842,425341,377206,428480,397865,413116,201325,433232,393554,443441,427513,442930,399239,406412,407957,301492,249201,272373,236674,287763,406628,412168,240578,414317,257692,295915,416459,282587,429630,256651,381451,163199,445880,409022,405242,402815,209617,405089,379673,381643,421753,320854,371775,405075,352696,427130,408932,267686,365688,255499,391040,138600,378371,406792,368461,177202,247070,151365,266473,260867,400865,245981,154658,237049,408682,177912,417532,224201,283271,410468,351341,381286,251647,259438,386307,425210,423439,406013,377456,402337,366394,372496,417761,375442,446914,234168,443116,424188,440171,377272,288671,123979,143855,441484,447018,424784,403430,221868,262597,400593,390092,173997,171337,264762,428398,402149,325690,297071,427312,239092,266351,422800,251297,400762,222994,245465,321820,263971,421376,380002,192343,258225,257868,426259,425742,143390,323774,428814,421694,406886,321848,374261,411867,416754,273430,397200,389818,436195,444969,136915,281594,417899,284205,225918,288873,414072,277164,407106,250240,402245,236829,415423,404352,125762,402032,448653,275349,428467,397113,429124,372975,292745,192729,417803,368260,396111,412517,370909,386117,280823,323765,447894,398217,387972,241620,426745,152193,272781,424037,191362,375682,139590,323697,277666,280137,388150,395606,322371,424860,177908,381694,261296,268770,423937,386442,425447,357429,377159,259183,409236,424346,297592,396417,423635,373971,238050,149437,171909,175539,175541,401702,220478,426712,417122,177112,420926,362222,421880,425994,426942,321120,240620,440652,446407,388111,443808,440242,365593,357690,291217,444916,351102,438929,438930,427698,444124,435954,261217,392552,398547,386361,446402,400293,435282,155087,166864,382146,369910,389424,389958,148220,235399,443427,424874,436259,424562,441866,446502,216495,373128,277241,356035,424184,412900,269946,383086,394178,233640,444522,400421,325333,424066,440162,440163,446248,364154,421203,400171,351246,138095,402641,322212,421895,241406,384257,242652,428874,423697,375701,413341,371317,423364,423365,439013,445022,380762,421333,417109,201863,413610,368669,402649,442563,446592,323698,438700,448382,409270,130370,440288,446920,296067,260038,322215,403013,297004,297945,426796,440156,446338,214430,368664,235456,137397,365523,218355,423385,433098,254821,378106,362406,384738,355505,258445,279822,442056,447743,435523,206525,444119,396233,435817,262127,405237,428587,379245,170931,267766,429813,249335,425381,357644,418843,439414,439415,445471,392396,443629,441122,169182,274806,429884,297039,443967,436892,285549,232134,398096,259499,356462,391192,367990,429675,362040,371518,390372,435542,447180,425226,299239,165129,428976,354730,427770,398802,448025,433263,442215,446580,378707,257071,237500,128090,271236,433567,219355,440551,446369,433542,393309,381262,438506,446152,378729,392775,436210,448690,393664,401253,440169,448292,381261,168153,397909,226738,404553,372969,428943,212421,435231,433244,280141,424969,427166,267556,448586,433689,443983,438662,429004,424847,241210,230929,427928,435873,446816,269194,441313,447364,227262,435830,435831,403772,280673,433523,415615,392787,426625,387043,293563,368120,416985,382030,398464,437939,445899,239601,425423,423528,443486,394587,391055,428724,443349,435521,304410,426535,441183,447299,382127,397907,425239,422993,425333,256591,390872,425927,447912,224343,268126,250083,374614,350633,147976,198732,401688,418887,279436,410862,444665,437874,381998,440731,368168,441438,445803,277540,405769,442905,447191,174831,156359,280458,396061,253170,447886,364737,397770,446018,394089,426934,443039,440562,399925,412902,429806,428895,429326,426260,447677,325331,367913,367915,444590,406642,436360,433670,375137,199262,425240,391727,140156,373627,298918,153431,446028,373744,233488,373493,410192,228086,138048,139222,428441,426151,442376,442377,447416,304808,393711,443868,439082,379042,427975,423432,399602,433718,354093,375340,173371,371504,421861,405666,408458,423717,282115,288521,405170,403598,174425,374153,443728,153439,444018,396909,437183,154135,426161,426168,371743,295061,401339,300650,255005,241599,421973,441149,441150,445700,394205,202253,394656,373295,395887,415858,410278,423591,438422,446051,381806,416719,439307,445381,221873,375098,371792,427383,441976,441977,446667,281406,124768,442025,448708,425932,426458,383378,384653,395922,241504,322477,401579,296090,442379,446506,433409,392599,172281,415428,143844,411459,428181,444493,436121,426518,379905,403347,299623,220063,397922,428101,396121,428211,176017,413550,322312,250853,381030,429522,401610,420000,424658,429044,300423,264425,436130,435019,212785,262247,427436,428892,295315,365853,438414,447671,176019,368021,302206,424201,276155,285327,250566,381683,400014,441917,445820,414281,270724,374054,405555,420875,304528,410220,378277,379375,388714,253379,299705,165922,121015,426630,159949,413015,140896,402224,147216,426916,443969,440695,394728,408635,403884,397112,241042,367816,405245,398706,400024,294948,399485,135673,370682,370932,442532,447473,423427,165567,220431,147981,174773,283663,268709,389808,410321,227466,428082,435549,435550,435551,388504,377750,368737,444400,376261,279291,424609,436441,447228,141633,271592,263483,417918,439239,445071,423092,376739,291343,378135,394578,378868,424627,436103,446858,396163,378283,409231,399035,372930,409364,395407,422244,294650,386756,252137,302688,422273,401588,395921,168887,369973,417981,390277,424863,363239,400077,441459,447897,374604,123045,321444,433246,274648,149484,379584,297639,324713,239919,395663,391263,276229,368039,324687,159010,398108,304352,396572,370041,425014,436760,436761,447143,370168,424652,391985,134386,268935,324054,443003,438606,393805,324280,254361,228026,283495,405734,448170,423384,400643,444065,424954,437335,429205,149590,429874,441450,448518,424511,137025,439066,446266,397738,399140,443760,437724,444537,396574,207883,295588,409888,372923,393748,242510,246025,390599,376709,192700,433631,271690,285094,436206,448086,302155,443719,383109,401354,439218,439219,447444,433291,420472,235359,413112,435279,267870,220825,425289,426185,398869,257412,409348,410379,216703,150536,356408,241441,240898,416151,403348,429778,278407,203956,208608,223518,287941,293724,380572,297856,256441,275750,268095,283100,381074,240303,359939,397575,291591,406022,396377,322202,415572,429001,396568,124678,136765,231274,237321,441725,441726,447574,380100,393958,439393,448001,221493,413346,396166,425604,261746,269943,275261,261052,381916,125806,379352,396335,429204,256919,291899,297003,132681,240917,269664,375959,323113,235732,297715,195206,372218,303706,414335,371793,273672,350337,242550,251746,443790,291841,448622,149616,395668,235555,279546,398826,287680,357672,394673,424384,286839,296982,424004,291232,379224,255339,250743,146562,443792,407104,178094,428108,263652,297215,397144,410322,407102,122345,390219,350492,304339,274793,428776,152868,297768,429212,357547,394516,443320,440481,433900,422627,442610,447485,241140,425424,437355,445138,121009,435608,447072,284715,429546,429481,429627,433508,425864,415426,386173,440741,440742,445552,244237,392373,443549,442323,353405,446006,136602,401798,443419,416872,439783,445208,356073,438275,445253,428893,290749,444825,413111,222572,372641,368317,428293,443293,435835,261237,240454,138124,429911,426809,441357,447694,415157,426657,427757,143351,242159,264963,128043,368557,439926,447973,427084,448015,304649,435078,286210,133098,408938,428109,379100,439732,447642,424527,389867,389449,416630,373500,135132,445585,136533,167461,426163,284836,290105,426570,405061,121602,405680,295428,401172,358899,231172,376810,421959,122553,443185,440286,444447,425545,437173,417926,322048,252211,267156,197208,299116,438062,448757,217073,388282,149476,248538,170438,433572,368556,374579,209980,429686,398995,428272,436073,447290,385187,428884,396385,164731,435422,299031,445492,273330,374031,180100,121849,429832,423245,415943,439652,446192,295419,200808,416233,413912,243633,265303,249639,350807,380848,445281,361876,299463,280130,411773,418138,425622,398530,253917,426568,423731,440357,446176,379761,422984,415909,391513,414928,399849,320985,385573,231076,147595,142970,384007,200375,268514,172351,198230,433662,446531,391157,396415,289556,241933,440398,440399,446431,395098,413037,263375,443370,425034,384862,427976,365022,186170,418241,392774,421853,365458,411439,394065,423003,249490,411598,271217,390960,265634,395992,419511,221152,429839,444988,356072,170791,177117,222381,414231,355164,446186,265590,404972,283150,417231,251682,425637,407103,443285,428933,437368,422080,375074,297010,277334,279289,297895,388188,392316,427912,444198,436214,420456,376640,424579,442394,447220,386271,428788,436681,445217,276632,169502,377357,414726,427725,424815,424868,200379,294263,435099,424646,322355,263118,402258,388961,378425,178950,266470,396722,368778,137911,207039,129436,435321,368171,428038,435645,447276,368948,417635,396528,417780,270116,135892,412668,401929,445792,207889,428990,236836,386200,426375,162865,389364,415161,446059,383238,413464,433774,397014,366345,381326,392955,153302,216267,262849,393444,440011,447976,242937,405887,404461,290720,150530,296377,286843,389896,399061,322730,378488,322729,256926,359307,303192,390374,299307,218834,268609,390368,414415,218819,375224,225512,399833,134797,391543,444261,428429,175408,444153,159610,436182,436183,436184,390163,389571,428660,385991,444541,428846,382320,411629,147916,294832,426696,128937,442358,446577,217249,427351,351441,365652,136783,372620,433350,401280,364336,396266,392596,252902,324542,372855,423189,414772,428437,411862,408986,422751,408804,218696,443662,440359,440360,372622,426286,373573,229077,403372,218860,248855,439806,448285,212186,444872,436279,266764,243475,433544,440117,445699,415209,195461,444688,435001,438567,416007,405542,284193,201752,390393,225088,435832,433210,394712,137406,444256,234872,444200,435719,435720,428455,448683,403969,291860,357791,205877,177896,427018,258903,220476,122971,427088,440608,445009,304070,414602,282314,276622,425338,444555,437036,437037,387426,174653,428663,418148,289063,402070,428837,291979,386196,414381,255432,280245,391623,254616,254359,408423,429420,424388,273581,440960,440961,447386,295794,424485,240830,370640,389882,380511,426949,325206,437310,444957,382514,401670,375645,420406,323244,443233,438295,365580,443535,371753,442426,296180,428710,444394,437563,372125,415382,437887,437888,446144,393895,202056,378730,159609,444199,436234,391034,267957,298971,163975,321481,414348,407733,176466,288071,235692,281334,272006,379474,395451,271364,263873,263521,417806,215013,394690,250150,163970,396680,202046,392348,187432,413444,423441,429771,237084,374018,428886,270006,429333,185724,435339,298726,392784,366945,141344,229326,265354,424495,228448,367464,404658,401311,426508,265742,233300,428635,298051,429613,426500,396847,239371,429836,129759,200264,242713,249964,281834,267322,372217,437881,447207,398625,164591,437290,448095,399317,398792,404516,378324,428514,440261,446848,429458,351384,409599,245982,443763,426906,426631,177584,248401,429502,274348,137019,365251,138553,395804,121941,372096,372903,265878,386014,251197,433788,421130,204739,428309,429405,445164,299128,379586,291181,399098,248586,399591,419368,202044,323189,401802,211457,433192,427613,373456,187490,279423,396220,376962,442717,442718,448055,422437,372278,395703,295807,323471,357377,393920,434910,444539,437415,195219,403524,395238,322803,245630,296951,395856,416678,414151,297947,445209,254252,288910,350223,444571,423861,264785,322327,389120,376523,384404,270557,429837,442730,445048,378578,440454,447658,130530,287865,398478,404864,296255,380513,277095,243064,417973,420316,163051,403636,408554,424269,433763,406314,133140,420925,256858,220075,277280,300675,393016,277481,249507,149148,420329,243006,292058,399352,266241,275290,426585,271898,129760,391100,364166,390574,391383,409016,427963,408121,178518,321824,365531,435420,376167,278189,390126,252255,224615,397322,377171,443646,433565,442285,442286,442287,402430,178944,420080,429194,424962,444145,288741,408867,320851,233226,409876,263038,404743,394923,422416,399729,417758,152474,422100,375446,377816,371674,324625,415859,417112,272207,417402,410648,389759,358678,265753,409681,442369,442370,446530,128024,425763,369781,260862,426510,443771,441699,409419,426319,268104,271558,230252,241906,356665,274222,322874,419214,380376,380734,419787,379209,228712,252407,320848,356470,258636,371386,429431,238973,277143,120965,241923,378406,415377,296766,410114,386761,128988,124280,392808,258289,423265,428104,268862,406707,444610,406878,436249,137029,423578,302179,322728,148287,163969,368859,369108,442348,447476,304377,377121,436707,448032,273342,423767,122973,384258,412505,300002,249683,128923,386827,261305,448073,252434,274532,359951,284594,426888,294202,395858,271215,135976,373262,135955,410773,322324,436542,445316,261909,263396,323390,231280,399719,360074,396957,407679,428459,439679,446886,153755,428952,436544,445152,387544,235002,379594,217482,160431,425663,378564,433179,390201,244535,289354,284409,323883,261366,378286,418145,429257,414209,241330,212239,236266,393473,252389,448150,207537,283563,161164,424178,254493,176760,244234,392480,390362,399499,286506,429643,446082,286981,435226,236712,280860,398219,274852,272896,392986,300795,427506,159026,429242,261112,425214,322596,260170,255141,392351,382561,163997,148297,210408,387526,389848,380221,126705,390966,266317,271547,351609,386112,260360,276620,439839,446300,285880,150541,428254,442933,448610,321353,364330,260036,262135,443175,436394,408358,321337,219932,440612,440613,445341,390484,165849,137866,380165,377585,272397,263590,396019,259292,290955,391636,202058,128084,444674,435603,257554,426336,286882,433278,324575,353378,407042,424872,422925,249386,426884,163974,424849,365896,239137,398439,415417,429142,392460,407985,147994,396491,402102,419961,396489,398284,438493,448083,358404,142972,301949,437880,445280,443052,420366,433392,390389,427235,280976,301607,269649,424126,391561,359665,237202,166054,408802,293834,413555,375509,428823,389543,387570,237015,437958,445592,168722,394329,251876,417471,421865,402156,424077,413474,423355,403773,442848,442849,446632,427625,324852,323591,129434,399158,416885,352087,382553,373062,231665,434969,435510,448116,350327,142568,423592,267917,422305,386778,296060,141064,423632,395536,407419,427779,426901,246693,187255,396664,270692,395754,423805,281882,365487,396011,399218,388281,267660,249733,295199,258971,381912,378042,254213,428243,241415,421068,423458,285646,398144,385446,401155,433205,239820,427247,363894,407892,235778,393731,299413,445158,420496,126969,301732,411474,424987,295972,323240,380924,325516,363318,441596,447357,323856,259754,220052,427689,435884,447163,428844,407519,437687,448179,294451,263475,427191,426169,255625,130431,405250,259571,321133,406345,409384,321660,324723,443159,437436,408914,365779,441619,447433,296070,428691,403712,388797,240035,142839,256106,425063,383901,267127,405657,416452,364056,247361,208620,386610,405816,267077,386976,366169,373849,278815,417958,446275,422005,297386,439705,445577,448781,390939,422766,393418,399461,423694,402546,378812,245846,234959,423676,173372,393454,372142,280518,385410,240605,161704,230454,425432,247141,368552,443736,438699,135300,272100,390003,385157,383689,253733,297739,256506,395250,175431,159015,418160,427474,446644,422493,262237,300965,253789,402665,393866,270983,268343,396453,252093,304580,422782,149434,393340,274439,397149,364666,389828,159953,303495,371272,177184,210989,255804,228091,266320,196735,429093,427602,371685,320976,269229,300222,382368,389167,380844,443300,425510,436407,125333,395366,175481,245748,409064,288265,377855,408811,394117,402847,325655,373063,324057,278614,416626,322082,418881,425923,441343,447359,242677,426357,232810,433368,411779,299779,404017,395045,424074,399141,249139,414480,285454,304000,174421,365585,438650,438651,447850,434918,362489,428105,427632,247094,259401,365490,417384,173192,219354,227261,387096,368840,297278,366491,425053,215024,417983,283478,265198,185362,359411,385264,433608,174854,279968,409526,293309,277877,292993,393540,418065,425621,373209,262957,120726,365102,131874,370827,284919,380145,298071,398049,443742,437945,429287,401377,374633,153857,371008,399649,402678,409866,384300,441236,448439,267346,390753,233011,390887,427475,426962,164505,262194,247047,447082,277423,210239,409427,322272,260752,299308,295717,391556,392325,422849,422944,427417,285742,296554,284333,421221,140677,289165,426471,299160,446607,388525,195229,265761,304802,294057,404410,381137,424870,423001,398529,129749,390578,287547,239007,324460,372424,261165,397561,211433,406764,250856,399532,386232,421397,262923,178957,443445,442123,395613,168154,272340,278112,413959,126595,446737,293457,159274,146301,403022,382025,387127,422095,397935,246914,161023,429392,393152,401391,263057,374327,280361,271916,292324,322369,424052,426254,444352,376964,148361,300801,140869,242638,406827,416525,299154,399970,250764,436995,447283,295040,285014,382526,219399,162360,247413,440205,440207,447586,280551,393821,398520,407344,402632,191141,158236,448567,298131,150922,447520,246548,124607,427120,424159,415726,203428,225261,126716,274582,143335,197189,277973,123168,139960,445807,395384,247033,429226,435009,416391,173382,272181,415733,404543,254177,277946,405943,423263,427421,391674,446021,418722,284849,153451,286118,380144,293953,283894,163710,268075,289964,272723,281030,445901,277948,234452,262798,367873,396681,299094,373100,242254,142028,294541,417351,393341,414929,152632,274194,122230,356362,146607,236825,406531,324488,429505,217091,302695,277660,324376,398154,405622,444287,435493,435494,259775,369520,293566,296535,374673,279649,365679,418767,277982,377388,325292,141310,154018,394746,248837,403146,446675,204754,240797,156753,438012,446143,400195,400553,260656,156646,366003,391808,291481,394092,247057,263719,151974,279803,365320,389728,295885,322138,259159,121265,248636,213319,286722,410273,403548,398744,387926,299742,396900,412500,399091,401030,148986,392548,323708,424288,248874,416860,422317,267889,396350,396206,281897,171845,226983,393752,264590,427690,285170,400598,135133,396636,136927,375800,407593,373826,172266,417890,446241,413391,366535,287502,387281,392405,392467,286675,391467,412240,423606,304733,398210,324535,324403,398482,399391,438114,447852,375637,382165,379480,228241,408620,253373,125330,325330,276582,415401,258545,153429,406820,377960,220827,356662,294751,241980,263660,440463,446220,151516,401036,137857,442908,447083,368315,285494,418512,162005,187469,427729,420975,380482,397795,226597,299919,427842,258340,254539,388006,440241,447776,428253,294864,304810,282447,259959,291730,426574,287476,444996,275096,382259,381758,296035,292635,426029,414751,413671,324011,246308,280634,393440,301453,393968,406303,398350,259413,435341,353381,299813,252725,255487,364447,397203,439941,439942,439943,446268,323492,395188,391349,444686,437686,391409,443359,436150,436151,396745,416560,275485,421968,429200,440936,440937,447542,133181,398392,420853,383175,268456,260631,425616,293821,369101,378701,256284,382562,440025,440026,445300,292412,445312,368975,283238,402150,368656,423208,285734,276026,368309,392686,403428,257771,386760,422284,429215,438721,445910,299868,379260,413703,191463,226210,421525,362385,438574,438575,448538,207149,163721,139938,448432,381882,415722,364229,233781,424891,447208,202050,439718,446797,250369,263966,355882,389357,134102,424885,444364,428215,234019,426720,443756,283438,423254,378020,423671,438030,446495,143247,398205,413673,395950,391078,414956,261073,427100,425975,391265,444236,436537,353365,360596,131152,253625,368534,389273,370533,221927,265418,274889,364001,218183,377826,444288,425201,260960,428550,408114,423009,198738,304798,159730,417463,351336,392376,423547,273496,203541,399262,420432,423657,295130,435253,365299,237998,441239,447763,425565,267174,395667,365527,402892,448348,147167,259001,408623,163376,231111,166529,262977,444546,395893,398212,407528,444212,437784,234430,159956,216359,392484,261034,150578,353363,435255,415316,407877,325335,415055,413352,424177,238456,384060,406051,267670,321352,278384,247496,437455,445573,233724,196636,425313,389137,298254,323331,429492,145086,422123,176798,256407,366794,133191,136088,416831,251933,418247,249527,324053,400208,388182,288777,255595,376204,440100,448681,244980,295661,295071,246035,168023,414618,395125,406059,394713,123732,420364,269949,386943,191487,404388,376557,417087,415575,282336,407723,444783,413332,284546,285525,446239,267047,426572,227531,395507,259225,390153,221224,217133,386836,302281,398544,390895,142968,254214,440594,445760,233722,282476,423675,413556,299282,422490,433328,404143,176754,232795,381814,387109,393177,171652,424472,358568,261631,404936,249085,409842,299747,395734,302406,301461,398288,356193,323324,398605,426070,426008,426105,291060,421454,126118,149944,373575,176784,444044,435537,218359,322103,302744,371509,397204,297343,253034,395490,445359,323369,353357,411889,423301,444853,274049,146364,374697,216376,446778,387406,396548,397079,260255,325687,386129,399502,388827,130522,301792,257765,421423,165134,442604,445869,176771,280282,443853,440211,427544,380941,300524,418470,443685,439208,354127,414200,297227,376571,442881,446666,220341,388694,403637,424405,440988,447309,371188,242994,396523,361801,304211,392309,398929,260670,380688,383654,394904,404235,387405,276456,287830,297918,425097,423588,396164,363836,262262,398968,290556,398050,443954,437946,209498,205994,415422,428353,393803,427612,266060,404660,435877,447253,381458,399364,377697,370184,177980,424702,406835,325341,424458,240603,156729,393285,390211,218890,291880,376419,249976,279951,406491,406348,417178,302769,372681,302614,408524,433519,135970,397945,393090,425812,413616,419478,386941,440563,448452,427086,427680,249240,427234,447393,386424,395945,435377,412698,291649,172276,425123,396655,418520,283966,299516,389105,424714,302119,288398,303784,429283,400516,426715,369766,144378,253541,275126,207497,426194,134372,445230,402908,400897,165125,294085,387686,385942,426256,398550,350908,135956,381471,423552,435013,423107,423106,291983,419416,392564,263649,390938,373088,390425,445089,396914,382321,380340,366454,256494,281715,429801,297416,380981,377774,424583,427313,441828,446551,143343,378137,244069,279602,414338,444234,244057,437138,437139,399500,214237,390068,425330,409634,351435,254897,278453,392354,287881,263094,174619,407719,423659,295301,239826,439964,446264,250172,302529,391849,437641,437642,445409,299652,412216,396039,369601,393583,288719,304225,418440,242117,300832,254022,165773,243808,268742,383509,423754,378332,394798,228687,136933,249922,409996,325302,272986,282468,433145,414617,426099,289393,445770,397221,404788,277025,399306,243413,299943,383266,280451,252554,256507,163217,267529,246518,270184,281745,367046,243172,405572,390746,252242,292794,141026,382797,239288,422135,276363,286164,418412,412052,378253,142462,444910,442766,442767,242842,369468,381808,160592,389952,245129,397274,396278,413541,397444,245696,249360,370341,398294,396586,423239,243116,160118,418191,374431,363607,435208,147717,153425,278853,134729,406199,396934,166524,165508,428169,277250,409519,425254,262136,402958,442289,446515,198554,444619,296875,272720,390596,380117,375134,446826,410070,388718,426826,241401,236187,176335,427139,412982,295868,299129,369734,376192,401553,413818,415874,227049,268491,447795,424524,424839,424320,134357,242107,187099,282982,324556,373143,363999,375432,411595,397694,188444,421913,257640,377888,371664,421543,412576,356397,418007,429369,234909,380383,284590,139103,433674,200542,285726,428484,381355,322930,167863,280841,381623,288400,377801,240372,236707,407790,244499,296519,401093,235058,230245,373351,399404,373111,376370,398880,384382,204480,243952,298498,123807,216600,376400,407210,325073,255207,399734,447907,253105,418592,302950,405768,223318,239918,448406,208028,427508,398374,294594,243252,443590,437458,284327,197723,241449,377569,376504,269705,243766,440515,440516,447787,380386,405047,383627,366495,427182,422906,444231,401785,440554,268234,414809,425688,425400,273736,396358,377256,287756,156721,382476,423201,284392,402455,399420,218127,392545,428677,262959,175931,434976,241746,293088,393656,211328,121805,390007,229923,169926,382833,285750,380743,396214,124615,392434,405539,401869,290488,400870,444324,408189,436269,231816,270042,297835,253593,384432,240235,396096,369829,248595,406522,412501,168182,415607,293840,211211,243425,244520,381413,379096,402328,425349,253249,429233,325478,248785,194551,428699,436779,436780,448391,425817,243623,374590,423418,260064,373604,435599,447182,160447,404237,374825,180065,396376,160940,444082,395797,436177,436178,436179,436180,382537,279232,372839,443161,368179,135489,443170,438629,373016,427517,402020,441673,446982,245387,406438,300446,295889,322121,427168,412934,382667,422558,367939,286801,427479,392525,260014,246908,385432,429489,440756,440757,426295,283852,371019,402155,268922,444027,436917,244774,424142,440296,446448,398259,276418,250171,382160,429409,291267,361539,386080,150330,444026,436044,241647,394922,426646,433493,416446,260793,172277,290848,413605,395559,415512,254093,378220,373825,392575,262894,251417,392489,304445,206459,241571,392585,379802,258210,138127,445717,389989,443249,437399,127075,444331,269586,428469,321998,163223,429243,429674,427051,223791,401020,425446,269606,359358,169018,247523,295513,401585,369275,301527,447858,399332,429873,251169,427833,433797,392472,416382,202068,396716,422069,374613,425797,257876,244135,126493,389777,389904,386506,408712,186525,418483,226682,441041,441042,441043,447667,404982,403771,359816,286443,443302,396456,436513,292276,224012,377051,369648,196720,389928,371862,428331,365273,360166,290843,401321,123034,377700,264780,201524,371441,387369,267938,422144,427932,149119,295931,397901,427620,295983,179549,220619,398516,325221,273644,400326,379374,240273,244670,264786,219381,379573,120975,402319,324284,427164,284753,300521,399459,235726,428158,396757,374374,447501,373412,427118,403546,248490,206461,403235,442028,442029,448702,278496,279049,396579,149212,441378,446901,304273,448354,392267,287667,398628,444932,438263,438264,419420,372416,266927,407806,409738,258339,388264,228901,370952,442607,447403,405223,301889,197243,230080,293196,374504,363322,297812,446114,376788,264032,166342,397837,207045,223785,292531,146930,446783,435320,397411,433624,447003,376572,386533,236033,427813,261009,427702,393009,408775,292044,401122,232201,239598,386572,399918,402820,256747,433439,381051,369182,212885,296572,282218,411233,226551,382709,374503,155934,446522,130518,139218,439645,439646,448288,325377,419613,419403,252919,236041,413586,429263,445298,276566,444863,274949,298449,419308,374372,402015,286630,402831,427724,447176,277273,375928,442738,448231,285900,225743,446113,406244,150451,246643,417172,412584,215756,424540,392420,193258,293275,448313,141649,322503,290466,250479,391950,143864,252570,437715,445658,165348,422461,393503,440086,445470,401407,420633,426776,392057,367334,402211,414902,249589,403648,372933,443731,255273,448410,418288,429433,154134,403300,304574,371771,394698,400584,245330,268301,408996,265242,293165,434991,437136,437137,447589,180104,443365,401847,439410,439411,363432,401962,292532,142393,259519,292818,428374,404121,416282,429765,403949,295475,144171,426031,441730,441732,447760,423616,429256,413567,375122,400091,292643,399645,153332,376920,442014,446960,374881,427245,219370,399725,440106,447765,294791,242130,240901,402116,423603,392505,237297,272440,226995,196974,173586,371817,368794,441813,447335,392792,237506,267629,388968,175948,406480,419822,427641,396980,447255,427723,390682,256413,443620,144741,436106,448169,216716,253480,434945,399578,369065,425410,121277,441911,447519,220884,399605,374500,441520,447431,124602,241763,413480,378428,373548,421060,273674,241486,297649,265506,436863,448161,241961,278145,428642,323750,443905,298786,400811,424315,257824,433506,424709,435908,448579,395702,443284,425196,421065,433633,441055,441056,447766,407325,407178,400770,428509,236329,376809,377454,289207,237144,155389,428508,400081,441542,446094,301200,256273,153959,417453,269795,299692,391051,376896,443766,441040,264416,172842,448215,374475,143329,213529,402295,201877,230498,294975,228738,440304,440305,445550,374523,441860,445872,418289,392245,221675,376233,177900,428263,260186,428379,422143,433113,321079,416766,448484,382641,443591,400575,442049,428860,416076,194747,401372,423286,205534,287960,259400,426420,375873,297224,284733,372086,433664,419240,433155,392554,373449,128977,407003,190872,290030,373294,298900,233964,392557,384259,322932,391478,241170,234144,418649,241144,429005,440476,445815,362107,402688,292805,428173,396966,376689,419109,263387,399550,403803,399687,266922,385185,433090,287692,374064,375150,223235,298398,424919,158251,304028,276444,377752,428646,428028,150783,429741,298960,381510,425007,403828,264061,393045,409620,260041,197017,134083,402515,435117,277183,230995,374295,373893,295819,200479,374502,395234,270296,438937,445131,272620,403580,258638,435384,418210,410005,427138,284822,434936,400493,384026,193188,429750,208565,257924,265805,255253,424903,322175,369855,170929,429716,441613,445890,403776,251153,417212,128732,398641,396436,186276,402699,426870,393180,264002,377039,170631,424880,143847,429105,174811,271612,433243,263360,223640,401428,403986,414572,197447,393974,375467,208926,299277,152594,372938,261693,288924,292989,291405,266488,396490,242776,428498,441091,446889,407975,424981,443405,436035,370082,135470,407132,371978,258932,192399,204142,395670,355264,373920,365278,404729,289084,405449,261026,258896,256003,349781,161989,427639,403299,390125,274727,443329,425311,436243,436244,275265,401680,172487,429680,424394,381699,297001,446511,428613,410194,443909,437749,392264,245346,371769,240251,375434,283215,369431,293523,395224,279774,426606,435366,167894,383398,171775,274201,429515,178344,323586,254998,252328,399820,128740,271812,203082,383332,133071,262743,444098,435871,435872,272592,441121,445751,167909,428383,435735,447257,324952,414302,429499,443780,442070,413310,429652,441477,446131,397711,428716,445020,263287,427455,442914,447029,275100,366056,429094,390085,416905,379071,438690,448028,390342,259878,242252,193960,443970,427481,260497,286560,379269,444975,374291,447742,377448,244846,428189,380742,149000,408788,172482,296243,368947,252680,249669,444207,436740,433663,446892,381530,242476,411861,438431,447608,424820,389453,246787,422254,268271,365937,424200,143246,400596,281919,401902,440310,445331,229154,162014,225607,322699,385485,418092,415617,386800,406542,357095,415469,398201,265947,444327,427385,423474,151474,428985,406470,444500,299887,130367,274027,448475,293410,162520,236832,293958,283585,283244,274931,444909,437500,370443,442810,447689,233643,407148,371567,235903,205927,403605,244568,263172,382013,397193,395350,149193,225980,392820,371891,443354,397044,405287,354095,270858,248184,279940,401240,410791,410176,443303,437609,248070,165805,396735,141971,248001,247364,394703,401604,371594,246018,258792,147718,270795,428087,444375,408467,371226,426900,152482,370646,368672,443381,374113,437060,397171,266411,443788,438363,188814,442203,447507,429904,447528,417152,291463,406526,227110,186921,285769,419154,395872,285276,258429,236264,427924,263009,207829,413448,399173,135663,228768,443908,440274,394773,260032,248036,410710,127984,220292,293582,244459,425366,387983,352217,248320,400842,290796,412914,417317,387277,423758,393269,289626,323864,377661,394084,397814,253646,269718,400962,392690,297007,230016,290948,147598,425486,426409,323018,260358,427786,177898,427296,249569,423916,404259,444089,406362,436710,270485,413046,202026,411703,267019,442890,448337,389194,262827,408615,153745,241216,379034,418341,422844,390725,437127,437128,448368,396964,297783,423457,322101,264808,401279,362837,421834,443938,381754,325725,264158,444467,428410,286621,396411,285334,137705,284559,397178,440468,447780,392601,423224,353209,402556,268619,402029,259407,299893,435855,435856,448624,264318,423197,400393,196154,441883,447736,250611,189751,407903,380255,391716,437562,445781,392398,145075,448756,411076,427661,448594,429336,446352,203249,397664,195805,389158,287376,442179,442180,446566,416840,178930,396542,400080,443628,441541,391578,232808,386358,396928,144135,212607,289478,400123,285172,444277,435879,435880,275283,355900,396513,396677,393874,423506,411690,149154,404504,401186,446941,385362,401334,446098,149937,412710,287421,300937,245083,389172,397053,222676,435240,272544,428703,372881,283670,275301,444205,427978,435761,321142,403110,426877,322100,413587,273401,226666,398252,372712,428847,400533,407833,281590,227259,433204,433658,257068,321288,255553,417609,409902,400497,403240,324010,375042,446726,321766,159290,389288,276535,448408,256497,220526,440271,445893,402585,429772,422115,292005,441352,441353,441354,446404,394696,396731,443435,320970,422630,289389,429320,440860,447735,397016,425075,209724,196700,376963,131795,253106,239139,134930,443368,378710,415899,233710,300314,396192,409486,394632,296721,380488,424912,272455,262869,300542,268181,131143,123174,138593,355950,429119,418049,258619,394150,295266,323397,323175,422509,425057,249165,350014,408440,420935,403064,279323,378540,352157,413221,401907,397481,275072,156645,422316,302032,258947,436982,448121,393587,378603,394050,427179,403065,303568,396843,291122,401996,440400,446229,427673,442649,448233,413670,370471,242068,416497,187829,299144,282893,175422,405962,447289,375722,230458,399482,267069,271817,382022,284300,397613,397495,167871,224334,400905,428644,324343,396651,401222,146551,386580,134303,388143,280935,437255,445231,245595,391625,390757,399374,409792,366244,248618,397339,320899,443602,400240,441394,296077,236835,291114,426759,424226,392218,399985,178857,414735,370661,172057,428223,155143,396794,273975,380896,133844,422863,240244,252837,393409,433391,398165,270483,440894,445389,207827,297213,255987,395278,140908,216364,151601,250019,169318,429155,442281,446159,287105,247527,433502,424740,428554,429035,442757,447559,415700,385674,281006,239093,151292,157566,411638,254829,402561,400896,259422,303220,403975,220821,376146,149117,240792,138516,404758,387660,296533,286490,440508,447938,290868,365622,372255,197969,277606,373448,413712,390413,429359,131151,254470,383825,298046,147591,277938,406864,388078,392493,270018,378174,433880,351591,243984,372836,443901,298459,375560,426857,400494,270491,274366,421668,297481,395077,444369,396658,435487,281249,406934,401338,421062,375627,292020,398897,396559,256399,301345,443806,384604,422091,423133,157440,426363,290434,281872,428304,376143,428529,424949,297986,385127,220887,351410,231813,385929,399862,404977,130526,169327,243243,429878,392142,274450,375186,445838,269538,268457,392361,371947,387815,286756,392458,249973,441639,441640,447037,429651,150005,253831,404750,392287,429050,395178,173188,304007,161997,429412,402429,219002,386269,241357,371849,152489,244340,324246,290594,130111,137677,419023,243829,422540,324290,266843,267924,373578,288857,283666,416844,407923,403551,288837,258772,286817,189368,396357,199813,262403,413366,425006,272120,441824,445888,351587,248562,151050,270019,406458,295991,388571,292837,413722,424234,441036,445516,301770,413993,407127,379087,298640,396213,280293,357964,428667,280955,163551,405342,399652,180095,254626,406463,377197,376921,380720,413048,428585,258501,281123,248265,382216,438831,446084,294969,262804,418224,405559,435589,447172,288046,405986,285054,154506,232363,418167,392504,434929,222454,304054,424252,222268,425638,398718,426208,355529,267332,403515,352338,371719,297772,219252,210857,250851,388514,288955,394560,297135,395078,220409,244997,301189,276322,322951,413649,407342,138126,415243,433543,123236,250532,373263,426790,415437,407299,301081,365560,435026,427046,420622,260974,422264,425991,188027,264156,371595,427828,421765,372154,448772,286193,303624,292362,186659,262057,372138,380634,256624,428654,248132,433253,421534,367407,374827,273135,246191,407572,249882,323918,378188,151603,276997,153383,294657,398810,259418,398075,288497,325180,272712,301110,405208,278802,412317,391018,372204,253576,440008,445221,286478,285544,322219,299280,126977,134621,215986,408284,298863,391116,404558,123033,397724,443823,438730,234135,138609,394581,395435,291981,207891,373590,444315,395763,130748,427262,388902,221548,287618,269568,391695,215881,382333,298300,273560,300128,129763,444455,408748,437389,265256,243689,212206,393044,433630,448060,403085,321736,126528,427193,423814,190319,399556,433551,233823,239005,266797,226562,442786,448341,260647,433622,297482,427430,388203,279184,397744,368472,243712,424718,442761,446725,161171,391276,273070,388134,404808,447242,202569,280352,299168,302396,435343,365702,281894,241409,446063,427523,161736,420735,289773,448547,424168,426155,203819,405480,230053,394259,296976,427075,235719,373570,260319,408777,384438,221437,206489,263049,386468,442062,446444,396773,256215,273853,203982,289803,444533,436389,413463,322777,287595,443282,392089,297517,286953,289417,428513,201957,136261,429271,217257,424124,247616,394643,404051,392005,392399,446518,407690,269240,427345,292623,265102,291008,195239,447693,401562,440262,440263,440264,440265,446859,263598,195429,296374,269465,398213,393580,159021,262791,371542,142455,427152,268460,157426,281736,399330,417049,380046,402880,193181,284072,442189,447523,379535,300196,421024,393017,446276,153315,210945,252094,260290,277365,390213,444653,422578,231443,444815,425520,359274,285273,429196,291388,387221,226050,240507,399619,400682,446836,373129,323274,396462,413470,272052,211583,444734,438927,433223,442687,446837,390156,426829,253143,291780,446800,152538,444671,396944,372266,290715,428781,421859,374050,368576,240486,400432,447452,396222,404735,376624,395837,398511,136867,162137,391463,444262,438175,145511,268659,397312,403370,372604,373676,439319,439320,445616,384810,443831,429248,441174,445690,284646,156651,386163,404283,137687,365876,287256,409771,178379,426785,394924,423039,441720,447435,163220,389076,293292,418997,424833,423985,385677,246788,267680,284634,134937,424058,249725,402643,380546,255278,354235,370210,425815,411774,426777,320892,375483,226922,404819,435688,447538,381995,285571,404335,321111,408312,264296,263635,371168,153700,376750,399336,419140,419031,417990,402322,375469,295676,392006,388447,394377,418366,395816,304015,445279,415466,378375,249952,231198,265992,410667,150471,378943,153703,441454,447681,289898,434931,428443,160928,395603,405162,386979,404895,402321,251851,386299,284038,162525,286353,301455,412117,411971,386772,285794,428865,199985,278130,425002,125229,255457,172478,268995,417280,406239,411433,293486,229582,270975,399844,387987,294906,397375,401890,140165,408335,167287,264015,397763,412676,290632,285672,270610,256259,281368,290386,351151,282755,323827,400388,261971,231391,303292,441216,447771,296309,408244,301139,446491,299235,441400,445709,412871,270948,150455,276236,415203,388322,295447,403626,264027,429290,412222,412228,293024,287193,291117,354402,416706,415386,257015,405026,266487,373658,276536,292961,436217,448201,402052,420111,381167,323168,425511,413771,274847,192270,255510,354570,401064,256514,406236,137671,249588,400041,366483,363539,259162,390907,421490,279332,402677,397823,216342,297641,418903,141982,245163,283164,375796,404998,263542,197193,324756,230060,155936,355791,260511,425244,185662,125662,293192,278338,375713,376532,272390,133246,370855,269955,419812,302970,287300,374085,139620,380595,401000,403643,424559,375731,367909,398766,152463,282653,167564,294938,427898,191552,407149,399540,427672,205727,380059,413042,253481,260002,417455,416759,133938,380295,271281,370478,286281,428408,397209,231986,297527,417436,143324,446673,136970,248583,222859,416521,410612,274975,390807,298917,169873,325098,167119,407219,400484,216810,397873,429069,175427,376734,155937,397997,426289,428570,250850,428640,290628,398902,323110,177531,294533,127723,447826,242047,354194,287747,253192,402532,224919,372965,233961,372241,448663,390909,324248,415983,394015,362110,378246,386776,261995,275225,251842,433628,408527,415251,323400,322027,250272,215310,299745,253875,293653,413130,126532,401022,416224,383745,301003,124016,437456,445671,399422,412100,428507,405870,170331,427207,442269,446528,397297,223382,409833,378109,234633,441749,446978,325081,433383,217968,143337,435412,386846,262865,130925,145522,138150,282902,402577,385990,379799,373600,296861,398026,291676,297057,252624,277889,424543,241102,122620,392756,373131,417037,140967,413799,409652,402928,374508,402378,388064,252000,441965,448436,433336,276336,160671,445462,427693,402980,371642,169322,380825,324189,372290,298827,280333,440318,446461,174606,123800,402195,411640,428462,412791,414497,375639,277908,155139,400398,196614,257474,435299,363356,415443,292038,279795,237448,385856,424370,290684,243889,415883,187456,299338,246252,167019,178258,445630,295801,379021,406675,416838,250842,443861,243471,402092,279752,301070,376918,384613,221187,429367,303173,417190,439019,447974,393750,304824,407631,236824,321003,425611,404803,363546,295624,407488,256673,407270,416511,429730,403825,448773,266921,400938,427109,388129,392687,379011,276497,141812,396386,289307,437396,448134,166344,399428,174431,374768,442758,446743,230921,251801,175978,294695,295065,408210,169329,443390,436746,321846,407163,380172,321059,389610,224377,408137,365377,394458,231463,362117,252528,387652,285232,412245,265469,397032,219130,410599,414418,394784,402576,442514,446585,303133,265439,427261,420365,244848,323794,321285,129751,383182,287705,272220,401609,439170,446537,379657,391664,295724,390671,149204,433324,402575,443918,427025,438645,400115,440691,447732,273693,189372,121558,265414,375506,296575,404892,421199,324274,288836,218350,435260,271143,269188,239270,428516,370252,395737,389960,376919,447041,377611,402540,228300,242143,446298,386502,226971,270531,324773,385529,172068,422654,224556,415992,401569,155991,433237,406857,426282,322119,296286,157241,395530,403334,251846,428580,258853,150009,398426,287899,253788,264146,401316,261113,377476,290407,283890,385924,150493,426835,416554,205522,247959,440306,445579,279035,288849,417061,271741,279524,442877,446794,393644,180073,372623,444875,413581,438702,428222,374355,423411,398305,401297,127121,177897,446489,399822,155089,288118,428993,261655,371144,323545,242874,386132,446423,374505,141631,424995,397013,323090,243963,289908,368230,424099,226239,375498,383464,429052,250406,222978,293817,396634,143489,407664,187804,441474,445999,233820,427543,421496,396272,266596,274191,141008,155940,127161,440953,440954,440955,447928,325473,172271,445176,405776,261063,134379,407162,429842,196427,211105,264574,152631,249057,416660,206115,270123,424347,282775,395965,382748,245067,364664,369903,265905,324458,207607,417457,395397,292950,261575,179543,442090,446571,386903,408982,252438,249741,446714,412827,401039,255564,407088,170859,255701,402701,423710,392431,447004,292200,284320,148798,388711,402119,417920,439241,439242,445275,136768,247445,387897,384236,393782,428566,302760,446536,429255,440297,445241,279397,427589,367105,227532,399263,401822,372587,424675,147970,433186,394248,417183,399693,246289,237238,372307,390083,373335,197439,411812,283732,425376,428204,134081,155925,192021,402442,371663,254538,264297,397586,445920,384697,397054,387991,137565,373219,383393,285473,357211,403705,241402,427284,399837,238058,231061,364430,420362,412988,324190,248201,143339,442795,447066,426301,401358,427209,300378,258268,195354,387874,385992,417994,387606,291332,249473,412829,170017,351137,242398,443607,298992,400243,281642,392898,376103,288381,373671,442776,447483,389518,434916,433731,438440,438441,438442,445269,149197,446929,248550,366227,280511,386798,245545,279761,397860,401184,425675,287520,261701,257486,435315,244905,382105,402716,277555,298545,291433,396819,275327,281435,408958,403941,215224,244500,325283,281657,397046,395716,197077,379765,297077,402171,221461,300974,433756,395867,246984,406540,413561,427315,409478,280224,266963,209028,147688,248392,302025,253870,390796,297211,421296,375827,428560,426882,402989,303922,270955,444299,436446,236087,282978,372228,381281,407066,421471,441197,446459,248076,371501,448185,392486,295318,155082,448128,265000,429130,142015,282459,424858,388659,159572,373137,355705,297239,429805,423170,410478,382598,324349,279804,266337,321816,433310,390855,381411,420494,379996,429237,390359,411169,373233,298281,423803,236999,443982,402593,406671,375822,143861,247014,446432,245561,417310,241364,408379,267020,444072,235803,415515,413642,381853,438144,448516,387506,355488,420953,446429,395589,260506,276196,389022,391342,276057,196530,294933,300786,291112,424473,420618,279866,376804,259476,428521,362114,372714,141634,384228,405404,364607,296729,148212,263244,273332,235729,325706,160433,381817,417941,131422,287263,216569,429125,133860,323278,207901,273541,294834,423199,258553,442044,442045,446562,371199,429743,388986,359427,266598,433678,396052,444008,440805,383075,416809,433651,276004,406914,400137,395692,282013,428733,295408,429575,270560,429611,122106,412825,281237,288010,168885,297769,190657,424465,405195,157559,288813,428402,372759,282796,258092,391706,168710,263017,398077,399492,166100,131150,284582,402812,216464,167168,124558,262399,428549,228677,364540,292528,290226,321793,378372,382304,374506,373331,257366,366230,391224,390867,126373,417408,392704,269997,389478,417406,147661,242728,401345,362768,252556,288234,241099,416509,398117,273669,303547,408283,379189,201321,281777,352825,390165,395475,396784,233247,250526,375495,293785,211762,443428,439715,381459,291801,428505,389985,389370,293224,322356,325150,417550,271993,409946,223018,162302,175076,292043,406354,444009,436630,367957,390357,407399,298320,395411,397097,285491,129768,137073,439023,446251,412029,356355,122392,393872,390392,408086,239687,425112,255527,296321,399497,396549,374507,394968,413535,445972,265049,369319,321076,158338,421949,251142,267259,434950,397372,377480,244749,129524,140972,400623,320858,302787,423712,297758,419348,129758,428870,422296,282172,275141,214716,290168,433171,274129,259309,381669,378111,408005,221060,252975,402334,286362,149207,416824,399615,125960,125961,360578,395528,254515,216363,428257,436140,447240,145332,429307,246463,245344,281930,236039,143490,254850,275397,414581,406387,240911,400922,296961,427354,301141,225390,413427,270411,422721,426642,398689,362876,360122,261092,252027,324979,438024,447960,400218,200276,426685,393164,142980,229511,226197,402986,289806,324362,447920,138716,399221,325063,374373,294526,293927,254804,436487,447995,219813,376950,258912,394666,400863,428601,375714,411208,143488,447905,425120,427190,446541,260874,265062,427030,252341,289735,250957,247254,402227,197742,447447,415838,446153,211859,390888,261545,253859,403237,242219,322173,242033,216623,201011,376260,398699,166402,394408,443530,245047,442470,242131,257079,263307,303338,213808,141627,389804,429011,373386,206019,297892,418319,247854,296553,385816,124722,234374,253285,446818,378551,285842,251771,362227,397624,231139,401613,448739,420298,411234,279971,429517,300425,134719,247323,250835,374042,412407,298876,155324,369666,297018,443842,439915,444563,425233,436447,289978,297248,247463,321646,411813,406676,178583,398492,270263,293211,428573,423076,418340,443851,440065,403509,375895,149120,243290,160933,172222,419254,266740,277801,303643,324261,400226,408943,404680,271315,323234,285037,424095,404633,428230,236022,272157,362720,370601,243588,386706,402145,255134,424705,413941,304611,411532,258972,293545,243305,293980,408031,414423,398369,266422,438126,444949,402079,177904,178517,303071,402073,404842,385813,240576,218703,273029,392843,298830,148993,423525,254394,399924,269926,427203,405074,256732,242129,377799,410353,160945,234504,247034,289695,153358,406909,379805,412585,386542,396965,382102,448541,368543,379874,440532,446310,295961,257025,297272,272377,408888,233314,373593,325681,131141,401157,222277,394009,255896,446591,289775,425346,369463,380014,177152,426571,423167,393310,417326,160930,356172,297357,398615,124568,380621,433477,389368,169933,391624,294009,443396,436334,122626,401672,224361,302212,133189,386348,384997,374806,408834,227880,371462,405265,169017,300008,275363,376718,304533,427107,398091,299537,243597,221687,443000,438447,140167,377030,421609,412722,303468,376841,418860,289368,435495,435496,448145,424307,415853,378928,302993,273354,399331,448064,281503,294003,394866,422850,238746,134351,433667,244933,243650,374442,257265,291815,427321,376420,369124,321882,409439,376984,448048,407756,407320,359086,298880,281765,122666,245473,149123,323569,268031,325111,427610,409687,371038,405964,361857,250267,301148,443208,202608,231140,405263,398404,412843,425290,253448,366742,225679,275450,390197,320999,351132,281899,287006,147665,141748,214175,172853,295934,325296,235716,419436,397159,429251,417134,167137,390842,321178,411128,162140,408540,359365,433426,410939,325472,216352,365754,419516,237691,291969,426064,283213,266818,272705,382188,376795,142463,244573,405349,447983,120953,269360,383771,303390,281784,434913,419390,291164,304732,372221,399295,392317,359015,401116,281845,396273,124609,248746,235567,397859,423203,249742,243310,406562,401119,441421,446900,164036,391973,323861,444704,437164,444095,289750,437625,271932,272071,410889,251628,251650,391819,395232,264440,351417,235390,377553,215458,442290,448736,428539,245725,228673,246180,349879,122660,382337,300938,368926,415681,390564,283077,276377,389660,433342,415738,264711,272825,289475,369267,397835,256302,145328,402608,442231,446578,406541,373065,386931,292962,268757,379643,389609,289477,423306,293680,375716,257833,164216,413660,389663,373602,281128,406897,368930,127124,402504,151112,231058,426228,284455,444057,436879,407472,128989,391473,407073,383951,425134,407839,424453,295565,299770,124763,230631,433101,429030,324023,397755,354399,374635,448629,141021,298981,407322,424374,406429,390371,172832,263564,396576,426773,324297,443117,248440,373509,266323,408847,390795,372039,411506,380561,364070,385893,373241,142459,414102,429109,367642,394072,365698,382088,446141,251324,188567,414741,262851,396643,228626,422483,397052,325297,254582,286655,140670,396779,417660,403999,424655,435887,447201,393596,123980,282789,279666,281574,402297,321625,251671,252702,258003,366760,247964,417706,372665,239145,285601,389169,408961,284596,277466,253442,389971,174426,240076,189558,278900,428876,419097,264186,146934,391449,259626,402170,299181,323600,222549,425008,392737,151368,436162,446748,259016,412071,375104,427989,435585,435586,448677,362139,414920,274667,359528,201689,409541,122222,273353,242348,402416,243265,249000,402331,409411,396991,447152,323703,277009,407142,404372,391637,444329,428734,442696,218124,321277,422431,287902,206531,143340,414129,402599,293908,397934,250491,321696,417707,270220,426690,397420,380212,395233,389735,386654,372728,436079,284501,413661,427824,321333,400107,401625,368883,373807,447168,323424,376827,278545,405300,221855,435691,446771,419995,177426,395698,299433,367743,217460,278045,414178,416944,268157,421994,249329,401958,446000,281252,179563,389504,427094,400957,205700,295294,178544,281476,399560,389944,396024,375931,300691,403239,376814,442451,448710,146356,413583,151976,404968,367995,245896,283192,428201,253054,424638,397442,134697,391870,291057,371258,323035,443344,251548,288246,428715,205587,130533,429897,392328,283981,373586,402602,241578,394528,244197,235311,448197,394562,411377,237556,443974,425150,437115,437116,408674,426988,251429,375717,164846,447302,325048,369787,293169,172220,429129,446096,427439,282418,247773,438554,443735,243567,421806,281985,442508,448315,404297,281653,254609,389138,373867,427783,444076,435704,297270,410281,304175,298422,138113,295181,442684,447128,241861,260411,231893,274911,424557,383257,273673,405620,425773,424432,409320,361560,398239,411106,437331,448755,321424,379542,446070,396882,382217,406899,224922,373526,398181,423367,437893,445008,423835,212783,375871,292518,285901,137612,303841,400219,447730,277240,296430,283846,425521,224634,188905,155926,448258,267105,414619,388131,221256,417727,413765,447620,250960,321507,369729,427250,173187,285700,293147,246739,390712,245157,295657,244125,363991,223015,392640,396791,225619,402525,393334,278906,444712,280954,424794,324028,235469,433370,285270,422207,406067,299821,389525,353398,390474,445419,278958,404361,380083,271131,369129,266607,124560,363066,180000,435250,399987,239128,259300,287077,249446,281480,446544,325440,426087,404452,416821,249747,240758,407252,424402,377276,404732,137012,384722,155328,294058,391901,304258,368728,252062,444627,407221,436339,258218,405288,121566,357974,426034,374954,441298,446845,402362,230307,176748,444942,415337,363338,422680,400920,408820,255030,410022,284593,443429,424624,363537,410802,293438,395019,291589,293017,137404,447160,322358,448016,404065,359363,444512,323114,436773,241320,219444,376652,300265,320903,241131,420037,429469,194046,392705,399112,252225,265397,148799,265572,443839,419052,439984,142349,444844,266885,291717,244078,433333,286538,248790,403493,448726,268489,378183,388993,392831,251284,406116,157298,400200,278017,275769,250995,393708,415642,398941,376807,142959,396764,155149,324347,241542,436080,447263,203243,265149,297264,433569,260046,415314,407340,274198,384831,378985,395701,168895,135366,242127,427566,402339,235463,369747,241436,444900,323177,289724,274014,164037,148367,389471,286798,321488,418620,433207,159608,304670,324824,271323,395881,262077,402420,301942,216574,207821,401915,296175,389569,396708,403234,442026,442027,446741,145510,374498,395695,245389,251054,287788,217964,289756,174246,448396,373646,406411,255972,274800,388784,395932,363553,425166,257193,396421,235946,251510,261391,321570,429085,415835,395223,372158,260459,385504,140674,324192,241689,392814,403563,163213,376597,388709,278651,409547,448141,389107,433229,415933,421814,391335,134079,243920,388782,443230,438723,137250,408076,171316,433158,162373,444151,372960,436459,260262,156649,396674,427772,412960,383331,239126,251007,277314,298772,385445,383999,321381,270180,396054,377054,373824,446661,389531,141804,401269,440193,448670,433347,400619,414995,388492,408058,152763,197202,302687,443311,437453,391853,409571,428925,391590,282358,438620,448527,420638,412571,175402,388780,155989,446595,402129,222525,252462,437241,448097,426348,213686,211091,251312,402460,398188,422167,380949,164849,402650,218353,125767,189104,443986,277812,438631,291609,382392,393388,124497,269671,428083,389851,232161,377458,359181,256961,405210,435958,448207,201703,147214,443661,402121,441855,441856,269109,288233,161003,395144,290903,244132,376294,400399,441021,446133,301766,269679,141975,418192,276500,424538,263776,155929,242145,443834,285378,421102,244124,401923,422980,253378,389027,390803,177167,392342,231974,402527,429207,304662,419318,368733,406834,222641,416835,445490,241433,400888,428078,443447,435894,394508,424822,401318,440308,445588,187740,444764,437785,301119,408908,372682,441546,448668,394494,433643,266244,419380,239089,235985,218784,280415,427769,414207,439197,439198,445958,249499,395431,429007,448367,174652,265424,435008,415769,393183,375427,444876,408609,440487,269329,261682,126591,370152,258852,400887,446913,270979,401233,446931,174861,206980,287210,399396,289919,391141,268027,288437,419114,386044,364921,168560,230144,134921,374487,402571,402965,391372,401865,390879,291788,400503,228823,397425,207999,292771,428971,419382,143233,137016,242745,321977,289391,389905,376693,425583,409817,393324,402764,158487,290876,281602,406566,436215,436216,448195,290448,271432,375831,231748,372751,435900,447183,399625,398467,433093,442230,448645,299207,433585,154411,428357,190331,141742,147179,267832,376062,434914,403642,388148,415652,288887,383556,173234,265783,433283,247268,286446,414336,256400,299394,324555,162007,139109,296876,179632,268498,375193,396585,291770,416894,400702,286327,400346,429164,242682,443018,405599,301224,380577,154657,284428,162022,267457,446449,292727,400636,125213,288730,323996,303257,133455,440931,447341,248066,297156,216297,284734,429352,422974,427518,247093,275217,387198,445548,433137,135954,274513,322214,398053,258598,188932,391393,393541,237922,375569,167298,210983,381086,405828,294988,416222,280414,141020,406695,396364,392061,424189,409282,264113,244439,270451,443199,439200,364655,417784,290559,244513,296085,378930,397857,259529,406592,245615,410382,403331,271871,437804,446470,278870,321116,425645,275818,290061,268555,427539,373123,402278,264197,188494,427945,388510,297749,269914,321222,171653,436512,448578,212613,168222,363642,404594,396457,394909,262723,429692,400912,374532,242708,424089,394928,163553,294728,288564,277881,398045,178520,422867,253668,399493,299383,167002,394750,390568,268998,324766,413024,378567,433488,396493,196220,290329,175927,409583,389760,404877,210947,320994,415744,221616,365774,413290,291386,169316,230087,407952,261779,298427,260318,420087,267720,399401,399050,428907,392199,379906,249688,296365,290907,372003,279635,210307,295007,389873,402250,212005,420865,218767,374056,284655,376090,369004,292969,300345,370903,441605,448414,142406,424242,129526,382684,264818,393724,244826,220521,390309,438020,447965,321280,165208,427744,412755,222726,383704,289791,403574,424842,425593,417865,396567,253488,266591,437505,447997,164170,400216,289717,361808,357234,191562,264557,266375,365808,267315,135512,389215,159655,440833,446385,419783,435269,155920,396912,436398,448601,272735,292893,399344,282809,429202,372913,427275,399505,421213,281931,378449,438755,445026,299593,385148,427099,361572,288399,391191,206448,424216,286257,138809,406287,446477,388315,281830,425425,137020,267740,404790,229193,361146,380950,299838,407989,143380,428489,422743,373054,242438,370697,435311,407910,435220,376796,376237,256478,419262,219450,409060,151797,301581,392207,375297,274643,409821,443312,257745,357072,367923,266301,404793,402139,280383,289999,420464,151287,404517,421037,206144,251140,247293,443342,436568,293488,266221,266716,171906,444372,427176,428000,274356,441878,441879,446027,406933,302427,256813,288706,227950,142020,369121,142453,252921,147990,397347,423247,426675,446047,402050,156728,442830,322452,199513,402453,384543,433141,322870,270107,247127,242192,429282,411766,138120,403478,433669,324283,151610,206028,444616,436975,371985,392280,398387,300671,241766,403248,127626,444772,435647,394552,259720,444705,427000,438549,394602,201687,379000,444300,424789,435536,390778,420372,369831,260342,240315,428260,153364,409982,395882,291509,122107,402271,448247,413240,225469,387567,415953,189722,152532,241815,443111,163381,249131,217859,147920,408941,429104,266492,253564,399713,214544,429017,151609,375720,325383,444836,257159,403336,355058,260628,426775,276513,257253,429493,388350,417271,225041,296962,272348,255910,236035,237610,407238,364252,420782,429254,426065,416676,138555,226993,402840,295756,409756,421370,297229,383183,278220,400852,444924,323013,438390,193305,225096,428900,155939,414670,415308,295843,433515,381639,394574,446928,286311,298565,293584,435116,397489,398363,299548,421166,422467,269945,176926,402759,281533,396565,378185,247407,366489,295753,438067,445983,222987,227302,164048,280585,143242,390809,409087,178193,402048,322249,396337,377436,413655,256488,413261,418017,170633,138526,213998,369815,378016,376439,385959,392520,158400,402960,256355,360132,443128,438978,399238,277004,219661,259733,415313,258969,288182,220133,161215,289638,324993,428461,291961,400271,271579,412896,418555,417329,280535,301860,395874,324295,157246,412942,258586,294070,429114,197365,295310,407001,394274,303167,435430,260866,397602,352152,187221,396929,425911,364816,413594,405831,322726,423174,390044,276909,428931,427212,277611,142849,363888,280754,391310,237917,446243,277871,349510,288787,386311,424895,404910,398223,256945,418326,244796,287493,400893,446840,428902,411202,216412,385562,190335,266923,302507,300818,150601,405165,428185,228304,421557,297048,361478,272117,279678,142975,410451,363271,249348,141969,418786,367061,263735,371811,252493,447657,428202,414629,418242,387216,174607,194044,422568,374006,400379,147840,427592,279528,264372,418603,325621,395088,413521,398046,411778,372607,419415,402279,247831,283762,403438,383652,292925,287336,446036,155156,444557,426402,278272,444806,413049,424244,150925,429438,406447,426300,401214,399256,293760,389347,275898,407758,282907,379792,290649,370030,236093,259101,439335,439336,445491,276834,390929,253134,368842,427407,302409,427434,386133,406665,254599,297424,258616,389903,177420,391696,376763,435552,447094,237014,398806,298090,249623,420599,440605,447772,385416,289512,388388,384028,292097,229501,390676,424668,443425,423422,278417,386302,123740,294264,371110,428004,447540,349521,289563,238478,271906,148828,302991,395990,417291,323599,433584,380049,244694,269363,379322,299837,248398,147936,424223,321065,270421,386309,276700,179559,321747,349940,407315,411267,409332,400617,393623,138558,140111,408080,271314,364357,388244,407692,285990,287061,179313,397861,386050,402120,291525,240212,404347,248145,392652,388834,296508,242834,294766,428966,407346,128688,407682,433570,427216,321818,426325,397836,402785,271352,266614,259836,387503,286534,435394,426832,153387,448030,303702,428627,394276,218270,287835,252610,192714,276356,414545,271332,263348,410475,444600,437573,443715,382220,438590,281772,392501,389994,267271,258089,380374,417988,439802,445379,245359,141650,411359,325489,143234,251117,237727,219521,293812,222728,291646,405764,369577,429912,443616,200272,429468,299435,276385,422196,443793,441705,429565,165012,292463,356714,414792,351593,401162,402372,413666,209032,127988,136873,425850,445993,271605,408703,420893,394505,424262,236028,412199,407683,433180,393187,395349,302859,408708,425772,257183,268219,411827,406940,266367,362770,290104,298665,300775,269183,384332,393939,350893,299121,395850,407513,247172,262445,403102,269677,402178,394610,433182,420392,381936,152709,397817,130521,428871,361360,123042,300946,379089,325707,390333,299343,384076,390831,143886,391525,280326,325412,227015,288148,323118,384856,385528,421027,151993,433289,247690,194085,286917,244983,243378,133897,294187,275620,288753,399991,195044,414160,124281,273657,355074,387936,413309,173140,324663,258250,240894,243348,285568,142354,287311,367762,235355,393667,427024,261335,444113,436874,402355,396400,375728,435705,447045,322786,224958,158470,295221,381723,399111,288646,398444,438718,448046,300154,417002,230615,448717,388530,240388,163222,427801,220885,392446,401490,428923,443172,165799,402615,174444,291662,251799,399055,407220,146349,148991,405618,392586,375399,424950,392835,237069,438473,445964,232949,322810,385798,385799,368305,383420,433276,398933,395841,125208,304136,422385,232954,233945,406185,398445,322563,403710,420910,297033,297009,390097,395076,374573,165209,435201,381548,387372,189108,246170,201370,322572,426622,417693,145425,377922,289045,281586,128736,292791,255248,295632,411815,136910,408336,323897,415493,378899,284650,260988,301465,140161,392914,296954,259382,255121,368982,415836,223783,244104,382412,413173,420721,370813,261038,234331,269750,394449,302540,208942,323610,350333,267964,445028,163147,134369,374752,275292,222319,419903,296092,286776,407412,447719,256757,392933,399241,245385,320890,243782,143867,298898,367402,244301,363056,395861,254116,407972,282613,269745,426002,387915,289490,398822,284970,235688,251882,244577,443255,437151,405807,367946,271259,288162,366856,420021,419352,406485,280459,415614,446078,412973,389205,418874,393607,252371,390865,437287,437288,445352,364358,120723,386354,423108,246042,271464,402813,257707,393728,426909,250545,264182,392369,448656,123173,280454,277628,284049,290663,413931,426447,285935,426985,304300,371419,382129,443876,382540,410639,158252,429572,199660,302690,413954,404767,397260,398496,376783,380377,398982,392428,220429,429354,433850,325414,374671,397065,403787,268851,433527,398331,413710,371591,296040,391904,406132,277005,382886,253071,366853,402484,303959,426009,235909,279780,177153,435425,161986,446169,374526,425160,413428,298338,371829,151297,425553,421910,372828,268015,152534,408919,424569,369259,325230,283203,402159,408628,287067,264206,440527,254007,283393,257067,379635,439003,446119,393901,422106,256152,246987,400748,301362,446388,271923,410696,378107,165571,415857,435306,256785,396171,447218,141655,299531,261152,350473,286400,399455,375958,442844,442845,447030,409104,301726,267953,390688,246066,424357,384120,274285,395179,412893,381866,228497,143237,285594,249215,426233,352944,437996,446024,296764,274673,380000,128039,412075,415817,408085,362688,417323,162018,272031,395584,408959,397618,403281,253276,424708,242461,223802,269034,323805,383394,262788,267637,272652,437782,445392,371063,380292,274280,262879,272576,395478,325062,293229,428618,401068,356229,251216,235470,249398,303938,368659,226546,404153,435015,275276,416994,388865,276766,321828,418284,426218,246535,123049,395298,218046,297547,391635,206895,436385,448553,411463,255118,288141,427059,355712,370664,421193,124556,443399,436144,428775,300966,245485,294132,228270,226671,286865,271873,294752,289698,246528,421186,161693,366231,142390,391735,282203,281522,389454,243961,321852,389980,144672,397367,169062,412490,393289,275705,259009,399294,350919,448783,403338,371429,389263,291779,404296,391891,416413,324479,444502,437428,379653,323309,375787,282644,393572,320888,300278,279150,245045,423127,278555,259983,408279,271046,237663,397460,223563,266954,248367,443855,437613,384685,393364,425242,391212,249672,259113,266887,244364,409223,251450,234451,290292,137670,270796,413663,287585,380214,413746,285369,322765,443995,429032,442263,447516,295238,298991,422617,375093,426195,425737,150539,268133,229597,257468,249209,351002,384884,276995,274918,423278,389420,399524,301272,433293,377382,298453,398696,428430,439274,446801,321093,376511,375628,291486,297113,285411,296849,361953,304128,446535,232901,419538,139055,398528,420949,204951,222090,253525,233795,163706,389152,407844,303341,420230,279615,282327,408078,231405,444175,435904,435905,242650,264336,244822,260850,402592,402796,286455,266849,379581,380262,384377,165589,138087,283573,398572,395169,302308,284272,444698,436804,396478,169867,386048,421955,447367,390161,189913,245960,253098,258832,389635,172287,296872,412867,217537,391346,175935,241829,273036,237310,290810,325031,245003,443079,440946,421455,412276,163708,123171,120728,320909,248016,298862,244951,295058,278950,294374,411297,390199,248632,262381,256968,369505,407567,261186,415195,414822,271112,396232,422171,374493,273427,278940,394546,287844,165138,443748,442603,394083,406815,273170,258313,204495,352854,248111,392572,291140,273745,392047,142457,376513,397592,444480,396212,436120,242910,147638,233232,223639,229004,389976,164218,198539,254341,146282,393858,197173,389725,197609,433447,248366,402285,399165,424554,272650,409832,410293,429758,371728,366411,360503,246093,287215,433612,246588,297705,283447,162381,395661,298080,427777,418230,403415,393134,361581,396596,429795,246821,437646,445031,388470,202348,127629,216488,420971,429855,410437,405804,160669,125382,404408,281554,267464,325164,248915,240348,409951,397286,395432,394451,441173,446872,394220,384538,428603,273386,405269,382528,378110,285175,248697,276527,240564,293626,407783,375111,404369,324092,381393,290786,399527,300199,443179,349764,437611,413436,285513,123560,268842,429723,146931,434965,397728,245688,152711,429146,425360,235562,289384,257872,414363,135423,396608,151975,410002,376805,231822,251124,140116,197286,401990,120952,247370,215883,402760,254012,373418,412354,393870,189458,352856,408132,255690,198119,275675,401055,391353,132567,377608,390354,227199,425022,267187,139113,376092,216268,175475,398174,420877,162021,391384,408474,272248,392329,232378,358949,419725,288013,271291,417332,231796,282135,384488,400983,288642,258309,428686,408450,426706,270461,213016,416482,266981,322925,225970,396112,407619,408616,418625,266006,152520,215800,442945,404798,393154,353246,280853,401139,429625,276353,148999,442893,447017,242954,245556,429857,253312,396537,271399,299403,264987,260574,220488,165127,260932,163145,247812,422931,367048,300440,276351,367788,166928,406772,220443,304288,403189,446678,299451,225388,397449,376327,419135,293764,419055,241541,403526,442273,446730,367158,144929,140213,229201,208788,373405,375599,401175,394630,415284,433410,383361,448457,255325,293240,290336,391856,245533,139594,155097,278775,266671,443509,442620,370139,378328,428130,322280,409359,237363,163067,245396,424275,440709,448459,408535,374480,441859,445878,239803,234965,433457,405717,372470,435627,447081,391465,428264,166027,273699,426640,252979,209054,427412,241931,402597,425879,127123,271910,421155,441499,448449,374065,397104,396294,370086,376418,372743,413331,433247,442040,446553,428100,424838,401532,376715,424956,122344,418648,444874,325272,422982,249081,370295,427492,276365,420874,370599,358558,439846,439847,445507,444829,397578,438417,438418,428168,448238,203316,443171,437133,267278,259762,433654,198359,167125,398726,213329,378708,199083,428666,444088,241960,381024,179141,398059,351346,424580,402182,299320,423637,394145,412174,408166,399831,389673,421595,399449,167590,249445,272409,406879,247822,440353,440355,445248,394589,426177,433250,405388,428439,439717,446802,252205,429780,233490,440396,447982,197937,416911,374895,398800,433699,365497,400292,268520,321022,413314,429377,374538,423496,155085,419631,400461,294962,254560,299986,151611,268636,233635,176795,292774,381695,280539,243453,400105,189577,376801,385396,272914,358406,424998,415756,409091,426407,389864,386752,370130,441610,447454,425666,380655,438456,438457,438458,446128,121004,427870,362223,247249,170629,217591,283319,387938,385784,390639,358941,393213,395901,414058,178582,413716,438083,447864,272130,371345,386383,125603,442582,446722,369480,281454,426987,147173,295601,444755,397939,438839,424427,351488,410100,424552,442501,448751,390477,146941,427748,399509,444622,322444,438740,428123,389153,284026,368657,401431,240778,149110,236246,416418,161699,148203,371936,444025,424893,436691,242915,256901,267945,396584,399702,298028,376099,190039,172347,247647,261246,396571,383812,299460,147222,396149,411015,426605,402434,407107,407261,272659,424694,323536,424028,135307,324467,292347,266025,139955,443384,373211,436338,163377,176323,236525,424266,440728,440729,445725,157575,289518,422361,441410,447466,395865,265595,390663,292964,429559,224582,427370,433209,421639,398427,356307,388544,392238,371537,122655,423849,243535,382570,398407,296477,198566,393273,358903,415555,292047,286501,250929,253440,259906,250571,391967,299418,404866,287818,144742,392182,273397,390991,419971,422870,250890,323313,195217,165776,270717,236079,443240,427117,435679,298801,422381,428198,133240,322292,192329,225930,251494,139111,228207,163555,388356,245661,273011,421288,426284,364370,231205,425370,405855,252427,416948,192078,435791,448335,429223,439508,445496,220988,444055,395472,382298,426921,284402,244342,426330,322218,443222,436841,375845,230793,444453,299802,437765,437766,243430,195868,400697,375447,298557,377623,229336,425288,159952,224632,433732,258560,148224,428197,371268,217682,145503,142976,427274,442857,446516,392106,189586,387045,417972,234917,268205,299731,257659,377833,325340,423535,439729,446193,427244,409268,428785,437359,445003,134377,375667,406645,221505,406653,296569,186568,253030,204711,282149,404989,130470,420119,403566,396669,294554,389150,142894,423517,427782,428942,372973,155983,421307,428572,425529,424106,405233,172857,244636,247745,302908,185674,440309,445489,422759,242621,297108,229237,410231,324662,229505,261234,358417,250561,424629,270970,256843,368641,294491,372730,375894,396230,428470,147979,275695,303387,299703,404527,399064,422251,420640,264232,426976,219713,443516,408382,122353,442228,446620,289440,435241,391682,235003,353892,274209,277091,428809,210654,175545,250817,391523,304838,162831,297240,301595,420590,254298,270302,406624,236237,243090,216777,273936,266318,414380,379456,390628,424804,416400,167583,422805,285258,218364,323541,134712,273875,380878,273072,289382,163371,380959,413335,143248,255575,300157,411621,287847,280412,399642,273367,443453,402031,441747,419750,440043,445612,167577,437041,447288,252399,445932,276226,353890,284379,246458,400884,268175,282649,241893,391963,276289,285604,393867,396129,411792,422013,442318,442319,445801,380028,394313,269085,324991,291124,253383,288689,385022,186542,436877,448202,399447,252506,389643,295365,393960,170640,410713,399544,425418,400315,399488,408391,255612,234362,219848,206686,425368,413350,444218,405523,421045,188331,353352,123746,385319,204605,153796,167580,371213,321989,395271,392954,289108,292330,267235,349603,271253,419313,234574,396093,264875,440855,446427,404645,383685,389136,443837,439272,440344,446283,267241,153388,243723,294644,379518,413861,412598,261665,405168,293402,443540,442330,389493,380751,179304,416981,303605,417413,170787,439701,445384,268114,219670,404893,423084,209954,280743,139599,366935,386013,291381,418437,254843,169912,299545,393719,228242,300013,389124,434943,436882,448226,366518,423513,188870,300554,276045,379204,429372,403167,188574,227174,278336,392759,229241,417084,399117,372409,320850,424936,248659,390698,426104,244196,446060,301353,228382,199162,123175,223799,388723,293718,256314,247976,260227,372471,433754,446246,406690,132674,427594,242859,254673,177423,370742,203342,298367,390665,426917,392115,177623,300588,381563,151580,282110,448735,398313,390366,215670,321305,436731,448049,262296,240924,438935,446014,392349,424711,298860,300767,325052,147935,389016,443176,417072,440442,440443,440444,277900,403486,284998,295641,304839,125655,257052,125227,259697,409123,248012,428180,218680,424304,246800,444456,373877,437159,264251,142913,394719,127107,408182,323464,227515,195056,444878,437694,428664,372880,443527,442185,442186,383688,447940,380827,389259,392650,413166,231609,382809,396672,391092,362170,192455,264395,389580,185369,375476,444112,437277,445024,324760,392152,192436,145527,218675,395476,262907,416632,368970,301739,412930,442975,407243,416183,324059,380464,224462,164643,443608,389993,275717,427472,442635,442636,448235,298269,176756,427795,143907,411213,293713,149128,403708,174828,433393,295029,426014,301752,283678,148282,254193,272543,295989,408765,414308,365317,381410,444409,390944,437509,424904,268744,390604,289595,410109,426167,270882,256141,389624,410033,447714,279637,425106,281990,390489,292164,426166,423279,402887,429095,324127,414886,371637,399194,438380,445623,252838,258740,412337,282029,368743,407711,295790,285471,272015,429561,440934,447512,152487,301025,254544,388502,435351,412990,409170,385399,369263,398094,252727,425142,401126,206511,390212,204493,324344,135963,135414,427578,153946,364124,406768,356103,244155,428979,397298,325447,409381,404426,151301,152100,438508,438509,438510,438511,438512,438513,438514,445884,269081,242609,221404,282798,391470,260334,301291,324026,428308,394324,429622,429177,320810,352309,196397,176813,247140,250183,378317,422796,372691,437882,448551,148295,325577,389813,444047,436194,371240,382600,445236,139587,387468,279389,429362,419557,244281,390205,251232,218377,351885,403229,410619,398502,368921,395711,324887,425791,381692,404928,398479,273679,370793,413267,377376,296909,166102,123785,254286,374194,298578,239808,255477,395627,288192,214255,411768,253676,414716,438819,299279,423558,294910,368385,228035,321000,378809,412756,287141,251463,285035,440038,440039,447307,298620,370043,433288,427660,321819,288680,283137,283556,364412,390640,291156,390672,248349,290281,130112,299465,284997,391500,428375,433563,231867,242036,413337,410132,147886,398230,238251,427750,384344,411255,389157,398620,390570,264104,253326,402172,372316,391715,426172,197797,428415,259843,321026,392924,357794,391677,285997,149156,234119,290246,425650,427157,396195,212358,394498,255173,426635,270257,243554,274245,204609,242328,398089,438884,445716,424369,323193,235265,390980,444420,302933,262564,383030,398257,388690,414953,392752,137021,424915,365367,443743,369704,302439,325659,445097,400906,392923,223073,390767,295225,428735,396775,153355,407588,403930,423117,392772,301692,423584,129420,176100,255685,141067,386609,247305,299666,230774,417802,386886,325368,240226,275194,300436,399095,226041,259074,405704,429246,446235,414948,397759,444558,438378,427644,321727,193954,404605,406958,436381,448383,426899,234970,420136,281895,256319,323661,241778,267277,234322,445736,217850,140893,297503,400942,354125,440588,446261,351085,444617,426907,147900,142018,323726,380690,419233,416917,353504,396917,411074,368169,400264,371185,150477,157568,388734,397952,444505,391162,134281,383656,440536,446406,137394,391084,392641,427294,402033,291128,426725,271316,127633,380366,122644,280437,355522,262093,388935,244753,424534,407432,278643,232386,390098,153735,425312,262149,210219,412062,390379,423064,153952,136937,416627,242459,429672,298592,421137,282924,443442,221673,243512,134310,258263,428602,435025,420473,407274,358280,416292,392310,440973,445858,141823,406163,280598,387309,383658,261432,423394,287766,434964,303395,297442,283613,398109,425336,392829,128545,236564,424330,356266,373685,277230,397829,257335,131145,371486,433436,175553,392665,245597,419965,254251,373769,391179,204390,278897,414702,325525,225341,367075,373900,433261,290662,419993,409390,258457,128926,374731,371612,444483,406669,380705,240479,304608,398480,388798,408127,433614,294771,321919,407564,229714,246809,187190,244372,401542,394621,376839,446529,423111,409974,389586,270158,369812,376891,236085,433167,402953,446542,151047,178864,406797,325053,443338,399865,245695,397648,428689,369880,425783,416190,369072,275403,236263,401290,136517,408975,371109,426275,393452,397554,429160,322781,292868,247706,443966,438305,402056,398821,399042,375068,413374,413955,153326,351000,285664,133139,425701,263077,425544,154507,205518,297265,267255,389083,399307,261308,242037,229384,422520,215021,266287,378749,425767,396234,303831,362906,128028,244552,403259,426624,423974,255871,165580,253136,444492,435675,405272,400377,320997,290859,386850,385297,258122,290573,423520,281826,173392,263450,406266,301994,418343,289252,353228,155933,239908,384612,424367,421969,360514,142546,389545,413356,280908,281190,251611,354043,177086,240354,443219,439000,413223,384263,427525,409948,395038,443807,441045,265890,424780,389680,403274,402107,376333,271307,255350,295678,403990,433134,202317,410419,197531,390491,299671,425377,368302,360059,415907,412306,426872,271641,369939,266955,292251,446751,218692,391446,265401,386096,374584,418161,263350,272312,401265,383211,127155,388960,323214,286260,423462,389284,235596,378581,274870,267039,257584,425514,202129,392468,372210,148836,251292,301062,376275,142396,304560,398804,402014,292903,262934,288438,240316,130535,395051,423393,292085,395753,256013,393052,259774,390356,391785,278817,448034,225035,243777,379394,304658,375496,393494,361356,260568,140960,324950,180008,402459,390195,280804,151995,375880,424105,296144,287629,256925,281878,323853,426676,320853,406439,259822,424850,354386,399966,186497,391459,376063,322021,401053,247833,388799,322217,396530,325635,259106,242204,289570,433414,423240,146573,365183,404481,356203,416373,255715,435223,412494,134086,292302,297500,324576,393004,400345,176805,446749,273368,164514,405526,447579,378017,419570,286084,290852,174780,424012,378703,356461,382405,424983,395911,227383,370453,424567,147710,280350,408917,297845,419322,427727,387814,208748,368610,386789,392817,397135,412794,401355,275997,254827,426102,141974,321354,402586,401547,425016,378238,428830,444560,422727,392262,350325,412520,419521,372089,423622,167554,387973,279166,154137,405158,433476,381701,398864,391717,438356,445853,279486,276203,441800,446005,404805,139294,389256,379166,231109,279000,260920,397500,252012,437592,393059,259527,426413,402954,270636,138513,235775,152046,444723,401834,439394,402164,148484,250011,243825,379689,446162,400566,428380,389998,417636,324728,395186,254014,386788,300889,265503,254546,381273,286328,288203,304776,423226,381325,170747,273716,382404,148294,223584,143395,394110,440218,445411,243454,407876,365581,422042,428090,419624,414701,369348,409254,226195,396644,393035,425878,270495,372041,390857,443872,262514,284866,232037,258093,175536,272376,249351,300749,440507,391424,149928,236429,388087,388952,263995,325110,417728,280273,385605,443069,301572,414799,379212,193145,423648,257536,399101,391597,405616,418943,248557,380434,325738,445887,277044,275268,372276,256504,396983,444376,425321,269011,268346,251345,240683,381996,287816,376162,396252,429876,277064,253889,363571,438194,438195,447635,233638,267851,363519,397973,354103,424127,365572,264903,425035,441231,447884,281926,291739,291932,433708,164667,321271,395519,350608,419351,297440,376531,250234,402679,413188,255756,376017,353279,134129,260475,172289,390072,425107,400840,396836,433411,442268,446505,408983,394778,380509,233959,296494,368451,385589,377298,403108,266339,287252,288070,186695,151473,399434,394200,132565,277401,392779,264825,408443,269701,275090,392889,425979,385587,293212,261037,420707,418536,151304,425238,361139,290076,396804,233582,429744,396863,283592,221260,382017,424845,387140,419224,321575,185704,388964,233709,297170,288589,251327,398047,428766,423284,254254,421664,368380,165576,147711,400470,384400,424291,194649,144904,301294,411192,293536,386708,378285,324245,250328,389839,402542,272029,244355,399363,433717,393673,395890,167463,364901,429039,363878,425893,254621,402835,242341,253115,381619,393515,247439,407894,255269,189690,354517,399756,375633,385048,229192,385372,268733,254741,384599,369630,133894,369035,321073,288639,423838,418325,396292,214245,288395,388409,388733,447637,265361,443505,427511,413719,280283,295538,380609,397137,383837,415571,244964,389587,421126,152483,396308,374126,291166,270925,321403,392894,443488,403481,442033,429898,403386,377508,435862,435863,435864,448062,280939,248716,420201,429063,429619,391970,429453,427510,151107,242048,285271,243221,391506,288464,362868,394695,447726,120957,372738,428868,223366,382565,180068,425131,426466,369978,230909,269652,396727,396354,180082,271762,167332,408186,407348,428494,427406,424585,150585,367733,287812,275062,385449,384946,384947,374749,142512,375911,398749,237488,364861,411689,255139,258603,389881,381491,371527,425609,397665,403735,284381,414264,386648,297734,281962,286712,370226,379345,353763,282453,134796,384872,375776,393448,361874,136853,389616,391029,385676,407364,391780,402467,274264,433260,276134,161002,399040,285757,391834,253570,392311,440976,447549,386511,378990,241097,407380,393072,440114,446312,387834,148829,298718,274173,406269,443411,436056,393106,395864,277011,413168,391580,426923,301661,404927,419742,257027,275907,257649,377913,250152,402703,395364,444773,412958,407520,393076,159278,280385,124613,197957,269254,247989,396479,443827,417223,391976,266024,416783,421085,435409,380960,405684,174816,320936,408528,286597,290864,389596,351950,374711,398384,428748,276183,434992,425163,370695,420819,396130,391451,285422,325481,235147,447084,219899,141294,413580,438684,438685,438701,445730,290492,400637,163976,295468,407362,405821,179635,394165,287845,321391,190780,361182,415551,433703,301227,249571,429668,441738,447527,122100,401849,422082,369690,380113,436525,448008,259473,403793,384994,447294,289619,254339,415236,384974,403253,222479,392149,236934,245663,240590,166998,292377,428148,194997,409726,372157,294663,165017,273148,153353,251544,388001,284298,275503,135371,440904,300584,293783,178946,419108,215456,391101,264422,160341,218920,400296,435293,259099,189161,241852,423143,393374,424809,388781,128477,414764,264850,429777,381924,302360,275969,414099,257104,393973,250709,280083,421206,412662,277058,368319,386499,266279,388285,391002,394440,443717,417165,398975,406177,260217,429228,390058,296408,366637,425469,254492,244719,248224,396765,389187,321080,429344,247117,287352,265159,411470,392062,382339,257281,213089,411964,242091,265575,380003,446050,408968,375168,254734,256426,124506,188611,399252,359647,409637,426474,192354,428287,374407,393691,390585,407658,401159,403124,152529,411546,392971,295226,274112,428080,408242,260088,246678,229703,389444,437218,445136,428099,253992,392953,228947,395212,288094,425484,219397,250480,419098,379393,274982,428395,254477,151983,387977,387491,287026,258261,368396,259974,279335,446652,400214,427841,359622,408368,396806,256033,134080,399150,322509,422397,263087,393091,439017,447972,359967,261431,367120,416613,253860,380593,401486,224871,286673,152473,396069,148988,444122,396890,437515,284887,413179,384199,247826,377034,299316,223620,424277,427398,433228,247629,155382,409482,289854,278210,406716,267771,244915,296870,249414,291261,444003,397090,436545,404240,448695,251804,252271,301364,235145,391938,433212,414850,420553,379301,283962,364000,386885,374965,435643,448252,230771,370647,442262,445771,379596,321385,409542,153747,397797,274575,279719,385909,296294,217389,168440,268119,126578,398721,227410,396506,405912,405868,293491,393843,143401,413359,281343,384405,255699,398123,424615,407512,158390,426772,441447,446032,388679,279135,266354,410052,285530,394253,234593,417348,418240,435191,189349,292798,243810,296699,271915,290000,383485,301109,402152,286908,245580,272250,375757,415319,423604,266734,300138,204370,378314,173370,408048,147166,301563,391167,392474,424454,279243,438011,445439,409057,152583,366588,402552,422415,418538,395107,164735,435820,448245,370129,441773,441774,441775,447500,427516,447091,413996,302356,222636,248150,381755,180087,237483,419823,427596,442843,448714,392565,322418,444947,349746,303747,285799,393642,405239,277112,408455,423773,243039,207849,402436,211492,427784,398882,247491,394679,405240,413287,392740,435990,448308,246163,293815,396502,370318,417414,298519,277101,254763,127886,404487,143717,443042,398272,390547,217962,435815,447012,264801,395073,270834,153699,368797,389143,253997,393704,404564,443500,435461,380692,419528,134700,374789,405906,396147,273608,413197,238824,411854,144373,443306,274771,436397,392987,323649,429844,260403,421655,371662,204140,141988,263165,189581,398073,406824,393829,222029,179764,391592,444834,436889,408652,265044,444659,391810,433089,236570,325277,256790,403713,400495,122218,444269,267869,187963,140885,407823,264956,393643,324607,297121,376280,446581,394982,381776,321183,374921,394258,257443,143770,291424,415864,438261,448513,407275,298593,421691,280314,190008,412579,232546,153443,433428,241307,401173,243295,418339,370918,381529,253239,445986,399583,440962,446381,419989,410494,229427,392868,415546,289176,243381,368497,374356,142841,293069,433403,425252,398243,164040,442580,447521,148954,273930,383404,354782,128976,401713,411224,444654,437776,433652,391416,394854,433092,279318,402352,301191,428477,428584,446909,366010,292650,379122,130115,422786,260702,243817,321434,433159,441658,446912,246835,133853,289244,131414,411565,404269,413195,367941,442317,445526,125664,397304,371011,421774,241585,368450,423158,414606,393294,445092,287933,147172,216350,392491,390253,234004,253757,389015,234681,371917,428862,412070,418529,439104,447674,419455,285756,445689,349639,429234,261891,381918,389112,428700,324379,283004,407720,390832,445234,405801,155941,446539,221682,210343,270941,418839,381688,262846,403737,127982,391363,409389,428980,223307,247902,174615,405873,435796,447211,272240,377147,139973,278073,261975,390483,406775,398791,281025,134371,285141,424237,446393,391841,324132,376628,402230,270137,404610,281313,299153,231705,227212,398483,204192,246631,402226,397341,299191,275321,421851,370698,396556,440790,389373,420166,378348,439077,446228,408770,427790,256680,302922,380162,398513,237620,218616,323360,413016,425752,421541,244948,149927,298873,373334,298889,414905,199973,443028,441308,420517,233313,287702,426176,260337,136786,433270,144562,245581,298442,260312,253747,410650,300031,146229,125605,443518,292880,423378,390521,444683,438163,417110,392194,302573,200503,389554,423597,243038,435498,448148,381069,128928,423825,233491,295355,441235,448434,377379,442725,442726,448388,435378,123734,394753,390377,413183,250366,252590,382663,410643,396782,357002,179766,381825,438793,446089,382952,448495,254065,398770,254576,410903,422755,443002,441721,414907,257040,408421,372279,125502,240427,415701,426652,373454,291500,396360,291175,411708,397527,420835,249372,407024,398469,385298,233401,271809,426541,359534,303722,273248,412709,437788,437913,445576,140965,293377,299155,242662,426345,218360,422365,271696,425079,395249,322742,401860,423130,447428,217087,380824,274566,261550,385776,127135,280531,254972,423776,321309,410316,436976,445228,282636,276799,420763,402580,284900,322772,143347,191668,437689,445192,394828,222633,160589,381027,261730,388506,437466,445435,415305,250761,123729,396000,235626,148350,219352,390627,366237,389721,321282,374788,217547,272241,392410,226966,368887,256318,417354,384409,220047,301560,154777,426656,391552,423330,241492,409093,226105,369274,240199,269992,269028,247488,390726,271680,415351,299649,400148,289305,413167,349944,378684,251879,417456,397700,294409,216612,292626,286647,423405,447862,391915,387827,361179,128044,395915,300545,155155,433119,443182,386121,441242,448440,129432,322931,411913,399092,372750,253046,406214,394193,369881,415951,220435,294567,267193,371584,125653,415390,287732,288069,323960,134275,299318,226961,374495,395895,399457,408373,364792,395226,398906,303972,171155,283063,265349,446033,379498,394464,441281,446904,264488,417928,400718,426645,299114,384765,249838,231390,324289,161213,388133,300158,245136,124559,412469,395417,368943,376549,267363,444766,439952,408771,297667,284001,266838,253574,364654,417738,362713,420999,417090,268249,407736,194814,321993,263012,288360,187449,389477,421916,200536,415721,277620,392638,369482,133947,252973,381321,406732,141025,435662,447187,320918,390041,417092,246129,162387,437544,445382,245670,247277,302198,218595,279431,361704,299532,385017,394342,393394,433548,289655,133900,268527,414827,248140,415356,439125,446067,131322,280647,160992,292673,252052,270376,217267,281816,372784,354247,291950,201436,412268,127670,229611,280844,247149,249023,221752,178121,364038,288805,369898,234006,299421,175557,422645,443765,441643,420289,411837,389358,285165,370464,396911,429512,364245,282538,134097,302539,323078,444538,436356,415932,283984,426692,143880,422015,391312,296784,254637,287081,242945,424366,394304,251377,421040,176781,207819,397867,168466,245948,418856,138829,394532,391427,291707,376272,291553,391026,270791,275144,162365,271104,258584,361749,161039,411659,421456,231488,260535,274160,299860,397956,272272,280089,141643,378305,190963,322797,301767,412542,251425,131809,291236,286869,412173,352594,237082,376477,419855,178929,447752,422903,421890,245736,144557,419509,254948,286156,321334,243152,384971,294119,387229,243587,299100,298749,244119,247911,372912,425672,273393,397974,426780,364004,410226,134929,271751,423037,422955,421730,435390,244879,392721,392374,394155,392026,145752,374807,443438,442699,423947,252816,350178,365535,412531,390880,428801,143239,252313,444574,136274,370675,325442,400813,426932,234450,415237,412294,276414,373657,369996,297021,273296,368078,154772,278051,302407,412774,289553,210449,365295,230924,390629,443309,436895,291031,227601,426053,294564,353107,321616,154492,289335,443279,426980,237779,145750,148414,303121,282473,410318,399126,356705,394417,320857,392966,400319,129381,257746,300466,370691,239720,358267,256777,161032,381166,279206,426654,174006,294477,222866,163556,418967,146295,134087,204717,124025,400970,321826,135139,250255,403026,408480,215898,392109,154893,257238,400449,409531,421313,247838,239772,376738,400251,282746,391801,293934,375893,289315,391098,419274,290451,429654,445818,292458,141014,443360,402948,276397,254368,413388,409537,269808,443158,437994,428491,247578,299875,296655,268517,274945,252014,403740,267344,131802,377590,138390,189712,140507,387472,442954,396160,417951,392170,320779,413626,428803,286012,402521,295388,370702,394293,302811,242144,263245,367870,278141,412730,279763,227574,389340,389724,383486,440151,447926,393988,403012,297479,403371,275353,302323,247508,128359,296439,404180,143696,285003,421573,223295,384181,388851,271602,246520,268052,385478,268069,246417,403078,324091,444099,376710,436358,268827,261568,390326,269505,302085,238185,255268,418617,398327,295775,421056,303180,360509,397507,412664,245691,289395,407698,249421,282153,433335,422768,162380,368612,276949,402408,357155,369650,269211,297306,395756,397353,275320,423332,161208,378215,126017,324545,445372,418930,244384,408814,142464,413751,324747,278851,321448,403934,375982,257603,417999,398910,394617,401987,396931,404817,263560,442292,442294,448254,435000,433297,268187,380626,232108,282319,289268,390738,294680,404833,406577,426778,279520,435847,446755,403974,427807,286705,322034,385998,274629,150526,233230,242097,442073,446156,408442,406763,238249,389950,397110,417208,396837,321082,428633,288498,404427,446727,394244,246469,269634,278084,392711,395360,389574,388783,246633,204466,321202,437081,448166,407185,277847,250258,185345,419340,221416,262982,295963,363701,403000,388831,445232,406793,250156,273837,402642,392551,324034,376566,372074,447498,299264,299344,380496,397725,140863,395361,138119,268988,286429,149198,358122,443119,293589,143243,395721,255512,371581,413092,413814,402637,446488,289939,405099,147923,223797,220664,201310,389787,224620,388958,304519,409003,322564,394601,286831,259532,404666,320781,402106,229048,155083,391515,423618,278677,285316,272183,298349,133467,241833,241631,227891,396945,396981,144587,280253,196620,233943,371938,427307,446624,294174,322328,247903,415178,380779,422973,322151,214655,424999,417482,417156,374641,407566,443984,437964,437965,402437,398692,289092,251432,388610,401396,447448,219414,272979,391428,224372,413538,261427,372196,443570,283318,441870,382605,428022,225796,418313,287494,446642,415739,447639,406860,138230,260404,373841,321914,284047,264635,154778,395365,397644,263566,395657,152765,373112,411869,402639,160453,179569,398142,296254,136628,394986,217200,427952,419277,421252,390772,369193,269561,382302,429245,426073,393634,412779,388128,399403,259850,400799,243983,197715,441875,447402,301846,415270,392422,242231,421499,178509,395840,324019,384468,223300,280162,291274,400211,441964,446132,401236,388715,296749,380628,151515,385474,291701,404511,426768,445914,369677,245335,127887,381582,142798,423661,249618,299122,324839,240718,389563,443305,437300,283965,298890,423933,256754,387061,322104,237249,444527,417691,420049,389516,393857,254729,412022,219734,356007,387350,127884,152464,251185,383928,277450,238459,387687,382276,384710,250199,446007,301278,435405,368114,391019,380195,408557,375877,386649,353780,446178,323571,325338,427065,137698,424846,271512,391968,227917,416411,198875,275643,398409,258424,283745,384925,444222,401792,440777,440778,400281,395640,287880,424452,395817,419567,425180,354985,380414,135124,403310,219240,262011,390442,437626,437627,445328,419173,390136,243012,264024,259587,410040,421061,287758,424941,394607,158393,148429,285108,446599,420399,290738,406854,250485,245499,426366,166147,424680,322510,297827,320865,376820,444090,442471,166420,412956,409203,444478,427111,323066,213077,295749,245774,400959,152196,395646,420968,260084,321907,403955,272342,425474,255078,273785,385262,428970) and client in ('PM6OC','PM6OC_RC','null') limit 200;
insert into full_remark set call_id='1495350',fullremark='customer asking the some auto paymnet option told the details to the customer no requirements customer saved my number';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=62038274 and question IN(1319,1053,1056,1058,1322,1325,1326,2462,2515,2505,2498,1328,1329,1330,1059);
select id from records where mobile like '%8072916134' OR
altphone1 like '%8072916134' OR
altphone2 like '%8072916134' OR
altphone3 like '%8072916134' OR
altphone4 like '%8072916134' OR
altphone5 like '%8072916134' OR
altphone6 like '%8072916134' OR
altphone7 like '%8072916134' OR
altphone8 like '%8072916134' OR
altphone9 like '%8072916134' OR
altphone10 like '%8072916134' and client in ('PM15OC','PM15OC_RC','null');
insert into full_remark set call_id='1495370',fullremark='';
select distinct mobile from records;
select distinct clientinternalid from records;
# administrator command: Prepare;
# administrator command: Prepare;
insert into full_remark set call_id='1495361',fullremark='RINGING NO RESPONSE';
select distinct clientinternalid from records;
select id from records where mobile like '%9444734571' OR
altphone1 like '%9444734571' OR
altphone2 like '%9444734571' OR
altphone3 like '%9444734571' OR
altphone4 like '%9444734571' OR
altphone5 like '%9444734571' OR
altphone6 like '%9444734571' OR
altphone7 like '%9444734571' OR
altphone8 like '%9444734571' OR
altphone9 like '%9444734571' OR
altphone10 like '%9444734571' and client in ('PM26OC','PM26OC_RC','null');
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495368',fullremark='';
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM4OC' order by dialer_lastcall asc;
SELECT distinct question FROM questionaire_details WHERE cust_id=36778367 and question IN(1056,1026,1322,1325,1326,2462,2515,2505,2498,1328,1329,1330,1050);
insert into full_remark set call_id='1495284',fullremark='ContactedPurpose Introduction Out call made Informed about preferential rates of Loan offers and investment pitched';
select distinct clientinternalid from records;
select id from records where mobile like '%7824898593' OR
altphone1 like '%7824898593' OR
altphone2 like '%7824898593' OR
altphone3 like '%7824898593' OR
altphone4 like '%7824898593' OR
altphone5 like '%7824898593' OR
altphone6 like '%7824898593' OR
altphone7 like '%7824898593' OR
altphone8 like '%7824898593' OR
altphone9 like '%7824898593' OR
altphone10 like '%7824898593' and client in ('PM7OC','PM7OC_RC','null','PM18OC');
insert into full_remark set call_id='1495330',fullremark='customer came in incoming call and he want to change his cc into smart emi but he dont have that offer';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495377',fullremark='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:51:40', updated_at='2018-04-04 07:51:40', user_id='82238',cust_id='41471561',call_id='1495364',name='RAVI BANOTH',number='9663650335',question_time='2018-04-04 07-50-01',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see there is not much balance in you?re A/c , Compare to earlier ',followup1_response=' Yes',followup1_text='',followup2_question='is there any funds Requirement , So that I can help for getting the Loans for you .',followup2_response=' Yes',followup2_text='',followup3_question='No issue , Sir but I request you to bring the Balance to the A/C ',followup3_response=' Yes',followup3_text='',followup4_question='Sir I Would also like to tell you , We can extend Classic Prog Benefits to your Family Members also',followup4_response=' No',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:51:40', updated_at='2018-04-04 07:51:40', user_id='82238',cust_id='41471561',call_id='1495364',name='RAVI BANOTH',number='9663650335',question_time='2018-04-04 07-50-01',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='Sir, why don?t you register for smart pay
Explain beenfits of using smart pay (You will never miss you due date/ No late payment charges)',followup2_response=' Yes',followup2_text='',followup3_question='Ask for the reson',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:51:40', updated_at='2018-04-04 07:51:40', user_id='82238',cust_id='41471561',call_id='1495364',name='RAVI BANOTH',number='9663650335',question_time='2018-04-04 07-50-01',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='Sir, why don?t you register for smart pay
Explain beenfits of using smart pay (You will never miss you due date/ No late payment charges)',followup2_response=' Yes',followup2_text='',followup3_question='Explain the process to register for Bill pay via net banking',followup3_response=' Yes',followup3_text='',followup4_question='Ask customer to login to netbanking and guide for registration of bill pay',followup4_response=' OK',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495364',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495374',fullremark='';
select id from records where mobile like '%9444734571' OR
altphone1 like '%9444734571' OR
altphone2 like '%9444734571' OR
altphone3 like '%9444734571' OR
altphone4 like '%9444734571' OR
altphone5 like '%9444734571' OR
altphone6 like '%9444734571' OR
altphone7 like '%9444734571' OR
altphone8 like '%9444734571' OR
altphone9 like '%9444734571' OR
altphone10 like '%9444734571' and client in ('PM26OC','PM26OC_RC','null');
insert into questionaire_details set created_at='2018-04-04 07:52:12', updated_at='2018-04-04 07:52:12', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:12', updated_at='2018-04-04 07:52:12', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:12', updated_at='2018-04-04 07:52:12', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:12', updated_at='2018-04-04 07:52:12', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1024',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:12', updated_at='2018-04-04 07:52:12', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1320',primary_question='Pitch for Investment- MF, HLIC, Demat Account.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:12', updated_at='2018-04-04 07:52:12', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:13', updated_at='2018-04-04 07:52:13', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:13', updated_at='2018-04-04 07:52:13', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:13', updated_at='2018-04-04 07:52:13', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:13', updated_at='2018-04-04 07:52:13', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:13', updated_at='2018-04-04 07:52:13', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:14', updated_at='2018-04-04 07:52:14', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1050',primary_question='Check profiling for TWL / car ownership, Pitch for car loan.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:14', updated_at='2018-04-04 07:52:14', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:52:14', updated_at='2018-04-04 07:52:14', user_id='82332',cust_id='51316216',call_id='1495289',name='SMATHEEJ C',number='9884930926',question_time='2018-04-04 07-40-09',question='1061',primary_question='Pitch HL BT & Top Up',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495355',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495385',fullremark='';
select distinct clientinternalid from records;
select id from records where mobile like '%9444734571' OR
altphone1 like '%9444734571' OR
altphone2 like '%9444734571' OR
altphone3 like '%9444734571' OR
altphone4 like '%9444734571' OR
altphone5 like '%9444734571' OR
altphone6 like '%9444734571' OR
altphone7 like '%9444734571' OR
altphone8 like '%9444734571' OR
altphone9 like '%9444734571' OR
altphone10 like '%9444734571' and client in ('PM26OC','PM26OC_RC','null');
update records set modified=now(),peopledata='a:148:{s:2:"id";i:248879;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:12:"NIBIN BABU C";s:10:"clientcode";s:8:"41358283";s:16:"clientinternalid";s:8:"41358283";s:6:"status";s:6:"Called";s:7:"ucic_id";s:217:"~||~ SPC CC_UPG_ELIG: EMV VISA HNW REGALIA FIRST ~||~ LE_AND_UPG - Old Limit: 136000 | New Limit: 176000 | OLDPROD: VISA PLATINUM | NEWPROD: SIGNATURE REGALIA FIRST ~||~ ~||~ COC_AMT: 102000 ~||~ PL2CC_AMT: 190000.00";s:6:"client";s:6:"PM10OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"41358283";s:3:"DOB";s:25:"25OCT1990:00:00:00.000000";s:3:"age";s:2:"27";s:6:"mobile";s:10:"9840055372";s:7:"emailid";s:20:"[email protected]";s:8:"Product1";s:5:"Demat";s:8:"Product2";s:16:"Health Insurance";s:8:"Product3";s:9:"Auto Loan";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active30";s:7:"dc_type";s:11:"Platinum DC";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:37:"Platinum Debit Card thru E-age(VEC01)";s:10:"AL_PRE_AMT";s:5:" ";s:15:"EDU_SEGMENT_var";s:7:"EduLoan";s:17:"decile_HL_CSA_var";s:5:" ";s:17:"LAST_TXN_POS_DATE";s:25:"28JAN2018:16:16:01.000000";s:21:"decile_demat_casa_var";s:5:"Demat";s:8:"li_cover";s:92:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.8.4 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:75:"LI PLAN Priority 1)HDFC Cancer Care 2)Click 2 protect Plus 3)HDFC Life Uday";s:15:"dialer_lastcall";s:19:"2018-04-04 07:52:31";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:15:"Phone No Answer";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:21:"directpay_billpay_tag";s:1:"1";s:19:"decile_GoldLoan_var";s:5:" ";s:5:"prod2";s:13:"VISA PLATINUM";s:3:"APT";s:117:"HOLDS VISA PLATINUM AND ELIGIBLE FOR LE AMT 176000AND UPGRADE TO EMV VISA HNW REGALIA FRST INTL AND COC AMT 102000.00";s:17:"STATEMENT_DETAILS";s:50:"O/S DUES -470.00 LAST BILL AMOUNT 0.00 DUE DATE 12";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:13:"decile_MF_var";s:2:"MF";s:14:"DBC_ACTIVATION";s:252:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD:(N) /RD:(N) /Smart Pay:(N) /Credit Card Active:(N) /Debit Card Active:(Y) /Total NB online Transactions : 16 /";s:18:"DIGITAL_INITIATIVE";s:155:"NetBanking Active . Top 4 Product :AL /Customer is neither registered for BillPay nor pays bill / / / /Pitch for Insta loan /Kindly pitch for FD product .";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 1).";s:4:"CBDT";s:265:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / /Top 4 Pdts :Forex / /Pitch CASA nominee online. / . / /Pitch Insta/jumbo loan. / / /";s:8:"ins_date";s:19:"2018-04-02 13:23:32";s:7:"auto_id";s:6:"517026";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"41358283";s:3:"dob";s:25:"25OCT1990:00:00:00.000000";s:9:"altphone2";s:5:" ";s:8:"product1";s:25:"Mobile Banking Activation";s:8:"product2";s:12:"Reatil Forex";s:8:"product3";s:11:"Mutual Fund";s:6:"chillr";s:5:" ";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:9:"1482443.6";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:3:"apt";s:115:"HOLDS JUMBO CASH AND IS IN ACTIVE AND UPGRADE TO EMV VISA HNW REGALIA FIRST AND COC AMT 68K AND SMARTPAY REGISTERED";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:55:"O/S DUES 9892.26 LAST BILL AMOUNT 101291.00 DUE DATE 12";s:9:"coc_eligi";s:3:"68K";s:17:"last_txn_pos_date";s:25:"15SEP2016:11:27:26.000000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"Y";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) YOUNGSTAR and 3) PRO_GROWTH_SUPER";s:13:"decile_mf_var";s:2:"MF";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 1).";s:18:"digital_initiative";s:265:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / /Top 4 Pdts :Forex / /Pitch CASA nominee online. / . / /Pitch Insta/jumbo loan. / / /";s:5:"Perks";s:183:"< ACT:ADHR,MB,NB,SMS >< INACT:CHLR,MCR,PZAP, > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: Active";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:10:"ACT_STATUS";s:6:"ACTIVE";s:9:"COC_ELIGI";s:6:"102000";s:7:"LE_ELIG";s:6:"176000";s:20:"decile_LAS_Demat_var";s:307:" | PL: YES | AL: NO | TWL: NO | HL: NO | CC: YES | Demat: NO | Insurance: NO | ISA: NO | FD: NO | RD: NO | DC: YES | GRP_Assets_and_CC_Elig_PL: | PL_10_SECS: | AL: 1012700 | TWL: 607100 | CC: | CC_TYPE: PLATINUM EDGE | CC_USAGE: CC IS ACTIVE | GRP_Recommended_Products_1: , 2, 3, 4, 5, 6 | EmailID_Y_N: Y";s:6:"mf_isa";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:9:"altphone1";s:1:" ";s:14:"altphone_lbl_1";N;s:14:"altphone_lbl_2";N;s:9:"altphone3";N;s:14:"altphone_lbl_3";N;s:9:"altphone4";N;s:14:"altphone_lbl_4";N;s:9:"altphone5";N;s:14:"altphone_lbl_5";N;s:9:"altphone6";N;s:14:"altphone_lbl_6";N;s:9:"altphone7";N;s:14:"altphone_lbl_7";N;s:9:"altphone8";N;s:14:"altphone_lbl_8";N;s:9:"altphone9";N;s:14:"altphone_lbl_9";N;s:10:"altphone10";s:0:"";s:15:"altphone_lbl_10";s:0:"";s:10:"PL_PRE_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:1:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:8:"question";s:74:"1015,1016,1319,1056,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:10:"al_upgrade";s:5:" ";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:17:"decile_las_mf_var";s:274:"Aadhaar: NOT UPDATED | PriorIty: Priority 2 | COCODE: G0520 | Br_Code: 1865 | GRP_Product_Holding_NB_Active: Y | MB_Active: N | Financial_Txn_done_on_NB: Y | Financial_Txn_done_on_MB: N | Chillr: NO | PayZapp: NO | BillPay_Reg: NO | BillPay_Use: YES | Debit_Card_active: YES";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:117:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:10:"AL_PRE_AMT";i:1;s:15:"EDU_SEGMENT_var";i:1;s:17:"decile_HL_CSA_var";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:21:"decile_demat_casa_var";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:21:"directpay_billpay_tag";i:1;s:19:"decile_GoldLoan_var";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:17:"STATEMENT_DETAILS";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:13:"decile_MF_var";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:6:"chillr";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:9:"coc_eligi";i:1;s:17:"last_txn_pos_date";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:13:"decile_mf_var";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:10:"ACT_STATUS";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:7:"cc_auto";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:17:"decile_las_mf_var";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:19:"decile_Ins_CASA_var";i:1;s:9:"altphone1";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='NIBIN BABU C' ,`mobile`='9840055372' ,`emailid`='[email protected]' ,`altphone1`=' ' ,`altphone2`=' ' ,`altphone10`='' ,`client`='PM10OC' ,`status`='Called' ,`clientinternalid`='41358283' ,`clientcode`='41358283' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone No Answer' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:52:31' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1015,1016,1319,1056,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330' ,`mf_isa`='' where id='248879' limit 1;
insert into full_remark set call_id='1495384',fullremark='customer cut the call';
insert into full_remark set call_id='1495383',fullremark='Not ContactedPurpose RECALL FOR HOME LOANS Out call made on 9551293080 RNR Attempt 1';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495378',fullremark='';
SELECT distinct question FROM questionaire_details WHERE cust_id=35862858 and question IN(1015,1016,1319,1056,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330,1050,1059);
insert into full_remark set call_id='1495389',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=39666038 and question IN(1015,1016,1319,1056,1058,1327,1024,1320,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495289',fullremark='';
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM24OC' order by dialer_lastcall asc;
insert into full_remark set call_id='1495390',fullremark='';
insert into full_remark set call_id='1495379',fullremark='51008578 called from diff num';
update records set modified=now(),peopledata='a:124:{s:2:"id";i:415330;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:21:"R KAPILESH RAMANATHAN";s:10:"clientcode";s:8:"46110432";s:16:"clientinternalid";s:8:"46110432";s:6:"status";s:6:"Called";s:8:"priority";s:0:"";s:7:"ucic_id";s:223:" ~||~ PL 10Sec NB Decile: 4 ~||~ PL 10Sec thru NB PA Limit: 1300000 ~||~ ZipDrive Loan Amt: 1440000 ~||~ LE_ONLY - Old Limit: 44000 | New Limit: 200000 | OLDPROD: TIMES TITANIUM ~||~ COC_AMT: 33000 ~||~ PL2CC_AMT: 250000.00";s:6:"client";s:6:"PM13OC";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"46110432";s:3:"dob";s:25:"21MAY1992:00:00:00.000000";s:3:"age";s:2:"25";s:6:"mobile";s:10:"9655650680";s:9:"altphone2";s:5:" ";s:7:"emailid";s:53:"[email protected] ~~ Customer Registered for NDNC";s:8:"product1";s:9:"Auto Loan";s:8:"product2";s:27:"Petrol Usage on Credit Card";s:10:"atm_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:6:"chillr";s:5:" ";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active30";s:7:"dc_type";s:11:"Platinum DC";s:14:"dc_billpay_tag";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:37:"Platinum Debit Card thru E-age(VEC01)";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:6:"691000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:15:"edu_segment_var";s:7:"EduLoan";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(N) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:16:"pl_paperless_amt";s:6:"346000";s:10:"pl_pre_amt";s:6:"346000";s:5:"prod2";s:14:"TIMES TITANIUM";s:3:"apt";s:50:"HOLDS TIMES TITANIUM AND ELIGIBLE FOR LE AMT 58000";s:17:"statement_details";s:49:"O/S DUES 575.00 LAST BILL AMOUNT 0.00 DUE DATE 25";s:17:"last_txn_pos_date";s:25:"28OCT2016:19:47:48.000000";s:7:"le_elig";s:5:"58000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:4:"CBDT";s:312:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / /Top 4 Pdts :Forex / /Pitch CASA nominee online. / . Pitch Billpay / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:8:"li_cover";s:94:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.52.36 Lacs.";s:22:"life_insu_premium_amt1";s:1:"0";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(Y)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 2) /Banking Txn:(N) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:312:"DA: Pref. channel:NB/Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / /Top 4 Pdts :Forex / /Pitch CASA nominee online. / . Pitch Billpay / /Pitch Insta/jumbo loan. / / /Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 15:06:12";s:7:"auto_id";s:7:"1934342";s:9:"SERVER_IP";s:12:"10.22.214.10";s:5:"Perks";s:186:"< ACT:ADHR,NB >< INACT:CHLR,MB,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 2--> BillPay: InActive, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:15:"dialer_lastcall";s:19:"2018-04-04 07:52:46";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:15:"Phone No Answer";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:10:"GROUP_CORR";s:8:"46110432";s:3:"DOB";s:25:"21MAY1992:00:00:00.000000";s:8:"product3";s:26:"Petrol Usage on Debit Card";s:6:"Chillr";s:5:" ";s:14:"DC_billpay_tag";s:1:"1";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:3:"SSS";s:5:" ";s:10:"AL_PRE_AMT";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:15:"EDU_SEGMENT_var";s:7:"EduLoan";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:3:"APT";s:89:"HOLDS TIMES TITANIUM AND IS IN ACTIVE AND ELIGIBLE FOR LE AMT 200000 AND COC AMT 33000.00";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:54:"O/S DUES 19809.19 LAST BILL AMOUNT 5045.00 DUE DATE 25";s:9:"COC_ELIGI";s:5:"33000";s:17:"LAST_TXN_POS_DATE";s:25:"24JAN2018:11:32:49.000000";s:7:"LE_ELIG";s:6:"200000";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:20:"decile_LAS_Demat_var";s:328:" | PL: NO | AL: NO | TWL: NO | HL: NO | CC: YES | Demat: NO | Insurance: NO | ISA: NO | FD: NO | RD: NO | DC: YES | GRP_Assets_and_CC_Elig_PL: 1500000 | PL_10_SECS: [email protected]% | AL: 1440000 | TWL: 600000 | CC: | CC_TYPE: TIMES TITANIUM | CC_USAGE: CC IS ACTIVE | GRP_Recommended_Products_1: , 2, 3, 4, 5, 6 | EmailID_Y_N: Y";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:6:"mf_isa";s:0:"";s:8:"question";s:79:"1056,1058,1327,1026,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059";s:10:"ATM_active";s:1:"1";s:10:"IVR_active";s:1:"1";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:10:"al_upgrade";s:5:" ";s:14:"decile_EEG_var";s:3:"EEG";s:11:"LAS_PRE_AMT";s:5:" ";s:12:"LI_PLan_Prio";s:97:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)HDFC Life Classic Assure Plus 3)HDFC Cancer Care";s:19:"decile_Ins_CASA_var";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:17:"decile_las_mf_var";s:274:"Aadhaar: NOT UPDATED | PriorIty: Priority 2 | COCODE: C0748 | Br_Code: 1866 | GRP_Product_Holding_NB_Active: Y | MB_Active: N | Financial_Txn_done_on_NB: Y | Financial_Txn_done_on_MB: N | Chillr: NO | PayZapp: NO | BillPay_Reg: NO | BillPay_Use: YES | Debit_Card_active: YES";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:3:"HSL";s:1:"1";}',modifylog='0',dirty='a:111:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:8:"priority";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:9:"altphone2";i:1;s:7:"emailid";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:10:"atm_active";i:1;s:9:"atm_usage";i:1;s:6:"chillr";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:14:"dc_billpay_tag";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:15:"edu_segment_var";i:1;s:9:"hl_bt_amt";i:1;s:16:"pl_paperless_amt";i:1;s:10:"pl_pre_amt";i:1;s:5:"prod2";i:1;s:3:"apt";i:1;s:17:"statement_details";i:1;s:17:"last_txn_pos_date";i:1;s:7:"le_elig";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:4:"CBDT";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:8:"li_cover";i:1;s:22:"life_insu_premium_amt1";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:5:"Perks";i:1;s:4:"Unit";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:8:"product3";i:1;s:6:"Chillr";i:1;s:14:"DC_billpay_tag";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:3:"SSS";i:1;s:10:"AL_PRE_AMT";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:15:"EDU_SEGMENT_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:5:"BLOCK";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:9:"COC_ELIGI";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:7:"LE_ELIG";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:20:"decile_LAS_Demat_var";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:6:"mf_isa";i:1;s:8:"question";i:1;s:10:"ATM_active";i:1;s:10:"IVR_active";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:14:"decile_EEG_var";i:1;s:11:"LAS_PRE_AMT";i:1;s:12:"LI_PLan_Prio";i:1;s:19:"decile_Ins_CASA_var";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:17:"decile_las_mf_var";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='R KAPILESH RAMANATHAN' ,`mobile`='9655650680' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone2`=' ' ,`client`='PM13OC' ,`status`='Called' ,`clientinternalid`='46110432' ,`clientcode`='46110432' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone No Answer' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:52:46' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1058,1327,1026,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059' ,`mf_isa`='' where id='415330' limit 1;
insert into full_remark set call_id='1495386',fullremark='Rnr';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495387',fullremark='';
insert into full_remark set call_id='1495381',fullremark='RINGING NO RESPONSE';
insert into full_remark set call_id='1495391',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=55630505 and question IN(1056,1057,1058,1327,1320,1318,1004,2462,2515,2505,2498,1059);
SELECT distinct question FROM questionaire_details WHERE cust_id=3282768 and question IN(1056,1057,1058,1327,1322,1325,1326,2462,2515,2505,2498,1328,1329,1330);
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM12OC' order by dialer_lastcall asc;
select count(*) as cnt,currentstatus,legalstatus,dialer_status from records where 1=1 and client='PM25OC' group by currentstatus,legalstatus,dialer_status having legalstatus='PRIMARY' and currentstatus='ACTIVE';
select id from records where mobile like '%9789982228' OR
altphone1 like '%9789982228' OR
altphone2 like '%9789982228' OR
altphone3 like '%9789982228' OR
altphone4 like '%9789982228' OR
altphone5 like '%9789982228' OR
altphone6 like '%9789982228' OR
altphone7 like '%9789982228' OR
altphone8 like '%9789982228' OR
altphone9 like '%9789982228' OR
altphone10 like '%9789982228' and client in ('PM25OC','PM25OC_RC','null','PM6OC');
insert into full_remark set call_id='1495382',fullremark='customer came incoming call but line is busy ';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=51411615 and question IN(1015,1016,1319,1056,1057,1058,1327,1024,1320,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495388',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495392',fullremark='RNR';
insert into full_remark set call_id='1495373',fullremark='service call';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495410',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495399',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495372',fullremark='';
insert into full_remark set call_id='1495411',fullremark='not reachable';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495380',fullremark='IAM SPOKE TO THE CUSTOMER SAYS NO REQ FROM BANK SIDE AND FINALLY PROFILE UPDATION DONE';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495409',fullremark='INTRO CALL GIVEN CUSTOMER CUT THE CALL WHILE SPEAKING';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=59406180 and question IN(1056,1057,1058,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330,1051,1059);
select distinct clientinternalid from records;
select distinct mobile from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:137:{s:2:"id";i:250999;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:11:"SOWMIYA S T";s:10:"clientcode";s:8:"39666038";s:16:"clientinternalid";s:8:"39666038";s:6:"status";s:6:"Called";s:7:"ucic_id";s:124:" ~||~ PL 10Sec NB Decile: 4 ~||~ PL 10Sec thru NB PA Limit: 184000 ~||~ ZipDrive Loan Amt: 977600 ~||~ COC_AMT: 112500 ~||~ ";s:6:"client";s:6:"PM19OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"39666038";s:3:"DOB";s:25:"31JUL1990:00:00:00.000000";s:3:"age";s:2:"27";s:6:"mobile";s:10:"9629401974";s:7:"emailid";s:18:"[email protected]";s:8:"Product1";s:13:"Personal Loan";s:8:"Product2";s:11:"Mutual Fund";s:8:"Product3";s:15:"Investment Plan";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active31";s:7:"dc_type";s:7:"Gold DC";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:11:"pref_action";s:28:"Platinum DC thru net banking";s:10:"AL_PRE_AMT";s:5:" ";s:15:"EDU_SEGMENT_var";s:7:"EduLoan";s:19:"decile_GoldLoan_var";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:17:"LAST_TXN_POS_DATE";s:25:"02DEC2017:11:29:38.000000";s:21:"decile_demat_casa_var";s:5:"Demat";s:19:"decile_Ins_CASA_var";s:5:" ";s:8:"li_cover";s:93:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.73.8 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:75:"LI PLAN Priority 1)HDFC Cancer Care 2)Click 2 protect Plus 3)HDFC Life Uday";s:3:"dob";s:25:"31JUL1990:00:00:00.000000";s:8:"product1";s:25:"Mobile Banking Activation";s:8:"product2";s:13:"Personal Loan";s:10:"bp_act_tag";s:1:"Y";s:10:"bp_reg_ora";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:19:"decile_goldloan_var";s:8:"GoldLoan";s:17:"last_txn_pos_date";s:25:"28OCT2016:11:27:11.000000";s:19:"decile_ins_casa_var";s:25:"Investment Insurance plan";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) PRO_GROWTH_SUPER and 3) YOUNGSTAR";s:14:"DBC_ACTIVATION";s:252:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (Y) / Bill Pay Active : (Y) / FD:(Y) /RD:(Y) /Smart Pay:(N) /Credit Card Active:(N) /Debit Card Active:(Y) /Total NB online Transactions : 42 /";s:18:"DIGITAL_INITIATIVE";s:119:"NetBanking Active . Top 4 Product :AL/PL/LI /Customer is registered and paying bills through other methods / / / / / .";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:10:"BP_REG_ora";s:1:"1";s:17:"decile_HL_CSA_var";s:5:" ";s:5:"BLOCK";s:5:" ";s:5:"prod2";s:14:"VISA SOLITAIRE";s:3:"APT";s:42:"HOLDS VISA SOLITAIRE AND COC AMT 112500.00";s:17:"STATEMENT_DETAILS";s:53:"O/S DUES -149.54 LAST BILL AMOUNT -149.00 DUE DATE 14";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:7:"dc_auto";s:67:"Customer spending on petorl and Car services,Disuss Auto insurance.";s:13:"decile_MF_var";s:2:"MF";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (Y) / FD(Y) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:367:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:RECURRING DEPOSIT // / / / /Pitch CASA/FD nominee online. / . Customer is registered and paying bills through other methods. / /Pitch Insta loan / /Pitch SI on BP/";s:8:"ins_date";s:19:"2018-04-02 13:23:32";s:7:"auto_id";s:6:"519144";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"39666038";s:9:"altphone2";s:5:" ";s:6:"chillr";s:5:" ";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:6:"457000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"pl_pre_amt";s:6:"192000";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:5:"block";s:1:"R";s:3:"apt";s:39:"HOLDS VISA SOLITAIRE IS IN BLOCK CODE R";s:17:"statement_details";s:55:"O/S DUES 64571.31 LAST BILL AMOUNT 78368.00 DUE DATE 14";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:13:"decile_mf_var";s:2:"MF";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (Y) / FD(Y) /RD(N) /Smart Pay:(N) /CC Active:(N) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:367:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:RECURRING DEPOSIT // / / / /Pitch CASA/FD nominee online. / . Customer is registered and paying bills through other methods. / /Pitch Insta loan / /Pitch SI on BP/";s:5:"Perks";s:184:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:8:"product3";s:14:"Atm Activation";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:10:"ACT_STATUS";s:5:" ";s:9:"COC_ELIGI";s:6:"112500";s:7:"LE_ELIG";s:6:"210000";s:20:"decile_LAS_Demat_var";s:1:" ";s:6:"mf_isa";s:0:"";s:11:"TWL_PRE_AMT";s:5:" ";s:15:"dialer_lastcall";s:19:"2018-04-04 07:56:55";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:10:"Phone Busy";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:8:"question";s:79:"1015,1016,1319,1056,1058,1327,1024,1320,2462,2515,2505,2498,1328,1329,1330,1059";s:14:"DC_billpay_tag";s:1:"1";s:6:"wallet";s:1:"1";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:25:"FD_BROKEN_BEFORE_MATURITY";s:10:"al_upgrade";s:5:" ";s:9:"FD_Status";s:15:"FD : 12/10/2017";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:2:"Si";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:9:"altphone1";s:1:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:124:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:11:"pref_action";i:1;s:10:"AL_PRE_AMT";i:1;s:15:"EDU_SEGMENT_var";i:1;s:19:"decile_GoldLoan_var";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:21:"decile_demat_casa_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:3:"dob";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:10:"bp_act_tag";i:1;s:10:"bp_reg_ora";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:19:"decile_goldloan_var";i:1;s:17:"last_txn_pos_date";i:1;s:19:"decile_ins_casa_var";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:10:"BP_REG_ora";i:1;s:17:"decile_HL_CSA_var";i:1;s:5:"BLOCK";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:17:"STATEMENT_DETAILS";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:7:"dc_auto";i:1;s:13:"decile_MF_var";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:9:"altphone2";i:1;s:6:"chillr";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:5:"block";i:1;s:3:"apt";i:1;s:17:"statement_details";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:13:"decile_mf_var";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:8:"product3";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:10:"ACT_STATUS";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:11:"TWL_PRE_AMT";i:1;s:8:"question";i:1;s:14:"DC_billpay_tag";i:1;s:6:"wallet";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:9:"FD_Status";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:2:"Si";i:1;s:10:"HL_PRE_AMT";i:1;s:18:"decile_Ins_pen_var";i:1;s:9:"altphone1";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='SOWMIYA S T' ,`mobile`='9629401974' ,`emailid`='[email protected]' ,`altphone1`=' ' ,`altphone2`=' ' ,`client`='PM19OC' ,`status`='Called' ,`clientinternalid`='39666038' ,`clientcode`='39666038' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone Busy' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 07:56:55' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1015,1016,1319,1056,1058,1327,1024,1320,2462,2515,2505,2498,1328,1329,1330,1059' ,`mf_isa`='' where id='250999' limit 1;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495412',fullremark='customer is busy ';
select * from `users` where `username` = '82350' limit 1;
select * from `messages` where `to` = '29' and `status` in ('New', 'Read') and `group` in ('Default', 'PRIME CHENNAI') order by `updated_at` desc limit 5;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495351',fullremark='car loan cb eve pl not eligible';
SELECT distinct question FROM questionaire_details WHERE cust_id=9887653 and question IN(1056,1057,1327,1026,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330);
insert into full_remark set call_id='1495421',fullremark='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:57:20', updated_at='2018-04-04 07:57:20', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='Dear Sir / Madame, request you to help in letting us know your annual income',followup1_response=' I am busy now. Call me back later',followup1_text='',followup2_question='Sure Sir, What is the convenience time to call you back',followup2_response=' I am busy now. Call me back later',followup2_text='',followup3_question='',followup3_response=' I am busy now. Call me back later',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:20', updated_at='2018-04-04 07:57:20', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='Sir I can See your have not registered for Insta Alerts .',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:20', updated_at='2018-04-04 07:57:20', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='1026',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, as I can see, you are using a normal CC and there are regular debit in the account',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:20', updated_at='2018-04-04 07:57:20', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see there is not much balance in you?re A/c , Compare to earlier ',followup1_response=' Yes',followup1_text='',followup2_question='is there any funds Requirement , So that I can help for getting the Loans for you .',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:20', updated_at='2018-04-04 07:57:20', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' No',primary_text='',followup1_question='In todays busy schedule, online bill payment is of great help to save time & penalty on late payment',followup1_response=' No I am not interested now. Will let you know if required',followup1_text='',followup2_question='',followup2_response=' No I am not interested now. Will let you know if required',followup2_text='',followup3_question='',followup3_response=' No I am not interested now. Will let you know if required',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:20', updated_at='2018-04-04 07:57:20', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:21', updated_at='2018-04-04 07:57:21', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' No',primary_text='',followup1_question='Sir this is simple process wherein without visiting branch you can book FD/RD online anytime.',followup1_response=' OK I will book the same',followup1_text='',followup2_question='Sure Sir it is convenient, I can help you to book it now now itself through a simple step by logging into to net banking.',followup2_response=' OK I will book the same',followup2_text='',followup3_question='',followup3_response=' OK I will book the same',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:21', updated_at='2018-04-04 07:57:21', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' No',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:21', updated_at='2018-04-04 07:57:21', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:57:21', updated_at='2018-04-04 07:57:21', user_id='87322',cust_id='50215821',call_id='1495403',name='RAJKUMAR S',number='7845035737',question_time='2018-04-04 07-54-07',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:12', updated_at='2018-04-04 07:58:12', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1050',primary_question='Check profiling for TWL / car ownership, Pitch for car loan.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:12', updated_at='2018-04-04 07:58:12', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:12', updated_at='2018-04-04 07:58:12', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:12', updated_at='2018-04-04 07:58:12', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:12', updated_at='2018-04-04 07:58:12', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:13', updated_at='2018-04-04 07:58:13', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:13', updated_at='2018-04-04 07:58:13', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1004',primary_question='Book TD through NB/MB',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:58:13', updated_at='2018-04-04 07:58:13', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1318',primary_question='Get activated on netbanking',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:13', updated_at='2018-04-04 07:58:13', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='2485',primary_question='Sir, we can see that salary is not getting credited in your salary account. Have you changed the employer or changed salary account with other bank',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:13', updated_at='2018-04-04 07:58:13', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1326',primary_question='Understadn the reason ',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:13', updated_at='2018-04-04 07:58:13', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1325',primary_question='Check for reason, if new organisation, update the same in COCO link, pitch CC Payment through NetBanking, PA products, Term Products, BP/SP, increase CTG,',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:13', updated_at='2018-04-04 07:58:13', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1320',primary_question='Pitch for Investment- MF, HLIC, Demat Account.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:13', updated_at='2018-04-04 07:58:13', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1024',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:14', updated_at='2018-04-04 07:58:14', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:14', updated_at='2018-04-04 07:58:14', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:14', updated_at='2018-04-04 07:58:14', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1016',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:14', updated_at='2018-04-04 07:58:14', user_id='82243',cust_id='52236694',call_id='1495332',name='SANIDHYA RASIWASIA',number='9176722478',question_time='2018-04-04 07-44-10',question='1015',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495376',fullremark='customer not int in PL he is looking for HL and interested in GL GL lead generated followup';
insert into questionaire_details set created_at='2018-04-04 07:58:17', updated_at='2018-04-04 07:58:17', user_id='95046',cust_id='40950405',call_id='1495406',name='D LATCHATHIPATHI',number='7299102707',question_time='2018-04-04 07-54-44',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495398',fullremark='Incomingcustomer asked deposit charges details and i cleared itand kandachavadi branch deposit that amountso i cleared it Payzapp promoted and link shared via SMS Profiling to be updated only incase customer refusesFollow up email sent NoFurther assistance offered customer happy with our servicesAadhar Updation Informed Yes Customer not interested as does not have an aadhaar no';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495395',fullremark='ContactedPurpose updation call Out call made on 9791071207 Program introduction providedcustomer wants insta loan details and payment details Further assistance offered customer happy with our services';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 07:58:32', updated_at='2018-04-04 07:58:32', user_id='82341',cust_id='56369342',call_id='1495419',name='ABIRAMI G',number='9790976119',question_time='2018-04-04 07-56-55',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:32', updated_at='2018-04-04 07:58:32', user_id='82341',cust_id='56369342',call_id='1495419',name='ABIRAMI G',number='9790976119',question_time='2018-04-04 07-56-55',question='1026',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495420',fullremark='';
insert into questionaire_details set created_at='2018-04-04 07:58:32', updated_at='2018-04-04 07:58:32', user_id='82341',cust_id='56369342',call_id='1495419',name='ABIRAMI G',number='9790976119',question_time='2018-04-04 07-56-55',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:32', updated_at='2018-04-04 07:58:32', user_id='82341',cust_id='56369342',call_id='1495419',name='ABIRAMI G',number='9790976119',question_time='2018-04-04 07-56-55',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:33', updated_at='2018-04-04 07:58:33', user_id='82341',cust_id='56369342',call_id='1495419',name='ABIRAMI G',number='9790976119',question_time='2018-04-04 07-56-55',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:58:33', updated_at='2018-04-04 07:58:33', user_id='82341',cust_id='56369342',call_id='1495419',name='ABIRAMI G',number='9790976119',question_time='2018-04-04 07-56-55',question='1051',primary_question='Check profiling for TWL / car ownership, Pitch for car loan- resh or CNC, update profiler with car details.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495406',fullremark='ContactedPurpose Introduction Out call made on 7299102707 Program introduction provided';
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM9OC' order by dialer_lastcall asc;
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=38534236 and question IN(1319,1056,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330);
insert into full_remark set call_id='1495403',fullremark='ALREADY SPOKEN TOPUP TEN SECS OFFER EXPLAINED NOT INTERESTED';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=35472577 and question IN(1015,1016,1319,1056,1327,1026,1322,2462,2515,2505,2498,1328,1329,1330,1059);
SELECT distinct question FROM questionaire_details WHERE cust_id=3282768 and question IN(1056,1057,1058,1327,1322,1325,1326,2462,2515,2505,2498,1328,1329,1330);
select distinct clientinternalid from records;
insert into full_remark set call_id='1495428',fullremark='';
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM29OC' order by dialer_lastcall asc;
insert into full_remark set call_id='1495424',fullremark='Not ContactedPurpose INCOMING Out call made on 9789984672 RNR Attempt 1';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495419',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=25386230 and question IN(1015,1016,1319,1056,1057,1058,1026,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495365',fullremark='HE ASKING ABOUT MUTUAL FUND DETAILS I TRANSFER CALL TO THAT DIVISION AFTER THAT HE DISCONNECT THE CALL';
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM6OC' order by dialer_lastcall asc;
select distinct clientinternalid from records;
select id from records where mobile like '%7904900510' OR
altphone1 like '%7904900510' OR
altphone2 like '%7904900510' OR
altphone3 like '%7904900510' OR
altphone4 like '%7904900510' OR
altphone5 like '%7904900510' OR
altphone6 like '%7904900510' OR
altphone7 like '%7904900510' OR
altphone8 like '%7904900510' OR
altphone9 like '%7904900510' OR
altphone10 like '%7904900510' and client in ('PM11OC','PM11OC_RC','null');
SELECT distinct question FROM questionaire_details WHERE cust_id=20061703 and question IN(1056,1057,1058,1327,1320,1318,1004,2462,2515,2505,2498,1328,1329,1330,1051,1059);
select distinct clientinternalid from records;
insert into full_remark set call_id='1495353',fullremark='CUSTOMER ASKED PL LOAN DETAILS';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495432',fullremark='';
select distinct clientinternalid from records;
select id from records where mobile like '%8000645034' OR
altphone1 like '%8000645034' OR
altphone2 like '%8000645034' OR
altphone3 like '%8000645034' OR
altphone4 like '%8000645034' OR
altphone5 like '%8000645034' OR
altphone6 like '%8000645034' OR
altphone7 like '%8000645034' OR
altphone8 like '%8000645034' OR
altphone9 like '%8000645034' OR
altphone10 like '%8000645034' and client in ('PM11OC','PM11OC_RC','null');
insert into questionaire_details set created_at='2018-04-04 07:59:47', updated_at='2018-04-04 07:59:47', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1015',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:47', updated_at='2018-04-04 07:59:47', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1016',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:48', updated_at='2018-04-04 07:59:48', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1053',primary_question='Update Aadhaar No through NB/MB, SMS Banking, Phone Banking, ATM, Branch visit.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:48', updated_at='2018-04-04 07:59:48', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:48', updated_at='2018-04-04 07:59:48', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1026',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:48', updated_at='2018-04-04 07:59:48', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:48', updated_at='2018-04-04 07:59:48', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:48', updated_at='2018-04-04 07:59:48', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:49', updated_at='2018-04-04 07:59:49', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:49', updated_at='2018-04-04 07:59:49', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:49', updated_at='2018-04-04 07:59:49', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:49', updated_at='2018-04-04 07:59:49', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 07:59:49', updated_at='2018-04-04 07:59:49', user_id='82332',cust_id='41849512',call_id='1495413',name='SATHIYAMURTHY R',number='8939992782',question_time='2018-04-04 07-55-11',question='1051',primary_question='Check profiling for TWL / car ownership, Pitch for car loan- resh or CNC, update profiler with car details.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495413',fullremark='';
insert into full_remark set call_id='1495332',fullremark=' Contacted Purpose Introduction Out call made 9443008201 Program introduction providedProfiled customer on Income family Investments and Income Informed about preferential rates of Loan and Forex Follow up email sent Yes No Further assistance offered customer happy with our services Aadhar Updation Informed Yes No Customer not interested as does not have an aadhaar no ';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495431',fullremark='IAM TRY TO CONTECT THIS CUSTOMER NUMBER BUT CUSTOMER NUMBER IS CANNOT ACCEPET YOUR CALL';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=41882723 and question IN(1021,1319,1056,1057,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1051,1059);
insert into full_remark set call_id='1495437',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495441',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495440',fullremark='';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:130:{s:2:"id";i:403257;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:15:"N MARTIN SELVAN";s:10:"clientcode";s:8:"23483882";s:16:"clientinternalid";s:8:"23483882";s:6:"status";s:6:"Called";s:8:"priority";s:0:"";s:7:"ucic_id";s:125:" ~||~ PL 10Sec NB Decile: 8 ~||~ PL 10Sec thru NB PA Limit: 800000 ~||~ ZipDrive Loan Amt: 1200000 ~||~ COC_AMT: 281250 ~||~ ";s:6:"client";s:5:"PM5OC";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"23483882";s:3:"dob";s:25:"27JUN1981:00:00:00.000000";s:3:"age";s:2:"36";s:6:"mobile";s:10:"9841766445";s:9:"altphone2";s:5:" ";s:7:"emailid";s:54:"[email protected] ~~ Customer Registered for NDNC";s:8:"product1";s:9:"Home Loan";s:8:"product2";s:9:"Auto Loan";s:8:"product3";s:25:"Mobile Banking Activation";s:10:"atm_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:6:"chillr";s:5:" ";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active31";s:7:"dc_type";s:21:"JetPrivilege World Dc";s:21:"directpay_billpay_tag";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:6:"wallet";s:1:"1";s:11:"pref_action";s:45:"Earn JP miles on every Spend.Fly Free Faster.";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:7:"1200000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:9:"hl_bt_amt";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (Y) /Payzapp Active : (Y) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 2).";s:10:"hl_pre_amt";s:7:"3443795";s:17:"decile_hl_csa_var";s:8:"HomeLoan";s:16:"pl_paperless_amt";s:6:"750000";s:10:"pl_pre_amt";s:6:"750000";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:11:"twl_pre_amt";s:6:"566000";s:5:"prod2";s:17:"SIGNATURE REGALIA";s:3:"apt";s:54:"HOLDS VISA SIGNATURE AND IS IN ACTIVE AND COC AMT 187K";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:55:"O/S DUES 21983.72 LAST BILL AMOUNT 15679.00 DUE DATE 14";s:9:"coc_eligi";s:3:"187";s:17:"last_txn_pos_date";s:25:"05SEP2016:19:51:45.000000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:4:"CBDT";s:356:"DA: Pref. channel:NB/Offline:CHEQUE PAYMENT/ / / / //Pref. channel txns:BALANCE ENQUIRY /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / /Top 4 Pdts :AL / /Pitch CASA nominee online. /Offline NB (CHQ PAY ) . Pitch Billpay / /Pitch Insta loan / / /Paying Rent pitch SI on DC";s:8:"rf_offer";s:5:" ";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:15:"motor_insurance";s:5:" ";s:8:"li_cover";s:66:"Gi Taken in MAR17 TO MAY17# GI TXNS : 1 TOTAL TXN VALUE RS. 9143 .";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) YOUNGSTAR and 3) PRO_GROWTH_SUPER";s:13:"decile_mf_var";s:2:"MF";s:14:"dbc_activation";s:405:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (Y) /Payzapp Active : (Y) /MCR Active: (N) /MB Active : (Y) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 2).";s:18:"digital_initiative";s:356:"DA: Pref. channel:NB/Offline:CHEQUE PAYMENT/ / / / //Pref. channel txns:BALANCE ENQUIRY /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY // / /Top 4 Pdts :AL / /Pitch CASA nominee online. /Offline NB (CHQ PAY ) . Pitch Billpay / /Pitch Insta loan / / /Paying Rent pitch SI on DC";s:8:"ins_date";s:19:"2018-04-02 14:51:12";s:7:"auto_id";s:7:"1662419";s:9:"SERVER_IP";s:12:"10.22.214.10";s:15:"dialer_lastcall";s:19:"2018-04-04 08:00:33";s:13:"dialer_status";s:31:"Contacted - Follow-Up - Generic";s:16:"dialer_substatus";s:67:"Customer - No Requirement - Not to be called back within same month";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:5:"Perks";s:182:"< ACT:ADHR,MB,NB >< INACT:CHLR,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: Active";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:10:"GROUP_CORR";s:8:"23483882";s:3:"DOB";s:25:"27JUN1981:00:00:00.000000";s:10:"ATM_active";s:1:"1";s:6:"Chillr";s:5:" ";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:3:"SSS";s:5:" ";s:10:"AL_PRE_AMT";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:10:"HL_PRE_AMT";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:3:"APT";s:62:"HOLDS SIGNATURE REGALIA AND IS IN ACTIVE AND COC AMT 281250.00";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:54:"O/S DUES 7538.19 LAST BILL AMOUNT 12892.00 DUE DATE 14";s:9:"COC_ELIGI";s:6:"281250";s:7:"LE_ELIG";s:5:" ";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:21:"decile_demat_casa_var";s:5:"Demat";s:20:"decile_LAS_Demat_var";s:1:" ";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:88:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)HDFC Cancer Care 3)Click 2 protect Plus";s:6:"mf_isa";s:0:"";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:17:"LAST_TXN_POS_DATE";s:25:"19DEC2017:17:18:50.000000";s:8:"question";s:59:"1056,1327,1322,2462,2515,2505,2498,1328,1329,1330,1050,1059";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:5:"nboff";s:21:"Offline NB (CHQ PAY )";s:17:"decile_HL_CSA_var";s:8:"HomeLoan";s:13:"decile_MF_var";s:2:"MF";s:11:"AL_CAR_CASH";s:5:" ";s:10:"al_upgrade";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:10:"IVR_active";s:1:"1";s:2:"Si";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:3:"HSL";s:1:"0";s:11:"LAS_PRE_AMT";s:5:" ";}',modifylog='0',dirty='a:117:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:8:"priority";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:3:"dob";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:9:"altphone2";i:1;s:7:"emailid";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"atm_active";i:1;s:9:"atm_usage";i:1;s:6:"chillr";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:6:"wallet";i:1;s:11:"pref_action";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:9:"hl_bt_amt";i:1;s:10:"hl_pre_amt";i:1;s:17:"decile_hl_csa_var";i:1;s:16:"pl_paperless_amt";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:11:"twl_pre_amt";i:1;s:5:"prod2";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:9:"coc_eligi";i:1;s:17:"last_txn_pos_date";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:4:"CBDT";i:1;s:8:"rf_offer";i:1;s:7:"cc_auto";i:1;s:15:"motor_insurance";i:1;s:8:"li_cover";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:13:"decile_mf_var";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:5:"Perks";i:1;s:4:"Unit";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:10:"ATM_active";i:1;s:6:"Chillr";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:3:"SSS";i:1;s:10:"AL_PRE_AMT";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:10:"HL_PRE_AMT";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:11:"TWL_PRE_AMT";i:1;s:5:"BLOCK";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:21:"decile_demat_casa_var";i:1;s:20:"decile_LAS_Demat_var";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:6:"mf_isa";i:1;s:17:"decile_PL_CSA_var";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:8:"question";i:1;s:5:"nboff";i:1;s:17:"decile_HL_CSA_var";i:1;s:13:"decile_MF_var";i:1;s:11:"AL_CAR_CASH";i:1;s:10:"al_upgrade";i:1;s:11:"LAP_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:10:"IVR_active";i:1;s:2:"Si";i:1;s:19:"decile_Ins_CASA_var";i:1;s:18:"decile_Ins_pen_var";i:1;s:3:"HSL";i:1;s:11:"LAS_PRE_AMT";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='N MARTIN SELVAN' ,`mobile`='9841766445' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone2`=' ' ,`client`='PM5OC' ,`status`='Called' ,`clientinternalid`='23483882' ,`clientcode`='23483882' ,`dialer_status`='Contacted - Follow-Up - Generic' ,`dialer_substatus`='Customer - No Requirement - Not to be called back within same month' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 08:00:33' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1327,1322,2462,2515,2505,2498,1328,1329,1330,1050,1059' ,`mf_isa`='' where id='403257' limit 1;
insert into full_remark set call_id='1495415',fullremark='';
insert into full_remark set call_id='1495445',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=55358660 and question IN(1021,1319,1056,1058,1327,1320,1325,2485,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495434',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495338',fullremark='Courtesy Calljumbo and pl followup cust wants call back within 5mnts';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=61524110 and question IN(1056,1327,1026,1322,2462,2515,2505,2498,1059);
insert into full_remark set call_id='1495446',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495436',fullremark='RINGING NO RESPONSE';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495447',fullremark='';
insert into full_remark set call_id='1495443',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=20161706 and question IN(1056,1057,1327,1320,2462,2515,2505,2498,1328,1329,1330,1051,1059,1060);
select distinct clientinternalid from records;
insert into full_remark set call_id='1495449',fullremark='CALL NOT CONNECTED NOW';
select distinct clientinternalid from records;
select id from records where mobile like '%8072950831' OR
altphone1 like '%8072950831' OR
altphone2 like '%8072950831' OR
altphone3 like '%8072950831' OR
altphone4 like '%8072950831' OR
altphone5 like '%8072950831' OR
altphone6 like '%8072950831' OR
altphone7 like '%8072950831' OR
altphone8 like '%8072950831' OR
altphone9 like '%8072950831' OR
altphone10 like '%8072950831' and client in ('PM19OC','PM19OC_RC','null');
insert into full_remark set call_id='1495452',fullremark='';
select distinct clientinternalid from records;
insert into crmcalls_archive select * from crmcalls where id>(select max(id) from crmcalls_archive);
insert into full_remark set call_id='1495455',fullremark='';
UPDATE crmcalls_archive as ca INNER JOIN crmcalls as c on ca.id = c.id set ca.state = c.state,ca.statuscode = c.statuscode,ca.status = c.status,ca.substatus = c.substatus,ca.callSec = c.callSec,ca.ts_Talk = c.ts_Talk,ca.ts_Recstart = c.ts_Recstart,ca.ts_Recend = c.ts_Recend,ca.ts_Dispo = c.ts_Dispo,ca.ts_Close = c.ts_Close,ca.dispoSec = c.dispoSec,ca.recstartSec=c.recstartSec,ca.data = c.data,ca.recsize = c.recsize,ca.userstatus = c.userstatus,ca.usersubstatus = c.usersubstatus,ca.usercallback = c.usercallback ,ca.userremarks = c.userremarks,ca.attempt = c.attempt,ca.priority = c.priority,ca.question = c.question;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495460',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495408',fullremark='customer asking the pre closing option in PL and AL told the details to the customer';
select distinct clientinternalid from records;
select count(*) as cnt,currentstatus,legalstatus,dialer_status from records where 1=1 and client='PM4OC' group by currentstatus,legalstatus,dialer_status;
insert into full_remark set call_id='1495461',fullremark='';
select distinct clientinternalid from records;
select count(*) as cnt,currentstatus,legalstatus,dialer_status from records where 1=1 and client='PM21OC' group by currentstatus,legalstatus,dialer_status;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM4OC' order by dialer_lastcall asc;
insert into full_remark set call_id='1495451',fullremark='Not Contacted Purpose Introduction Out call made on 9894085890 RNR Attempt 1 Alternate number XXXXXX tried Rining ';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495454',fullremark='rnr ';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495457',fullremark='rnr';
select distinct clientinternalid from records;
select id from records where mobile like '%9655212347' OR
altphone1 like '%9655212347' OR
altphone2 like '%9655212347' OR
altphone3 like '%9655212347' OR
altphone4 like '%9655212347' OR
altphone5 like '%9655212347' OR
altphone6 like '%9655212347' OR
altphone7 like '%9655212347' OR
altphone8 like '%9655212347' OR
altphone9 like '%9655212347' OR
altphone10 like '%9655212347' and client in ('PM6OC','PM6OC_RC','null');
insert into full_remark set call_id='1495456',fullremark='Wrong number';
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM25OC' order by dialer_lastcall asc;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495468',fullremark='';
insert into full_remark set call_id='1495467',fullremark='';
select count(*) as cnt,currentstatus,legalstatus,dialer_status from records where 1=1 and client='PM9OC' group by currentstatus,legalstatus,dialer_status having legalstatus='PRIMARY' and currentstatus='ACTIVE';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495469',fullremark='';
SELECT distinct question FROM questionaire_details WHERE cust_id=25386230 and question IN(1015,1016,1319,1056,1057,1058,1026,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1059);
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM19OC' order by dialer_lastcall asc;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495464',fullremark='';
insert into full_remark set call_id='1495465',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=58451301 and question IN(1056,1057,1058,1327,1024,1320,2462,2515,2505,2498,1328,1329,1330,1051,1059);
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 08:04:30', updated_at='2018-04-04 08:04:30', user_id='82346',cust_id='20866034',call_id='1495423',name='SANTHANA KRISHNAN VENKATRAMAN',number='9739745150',question_time='2018-04-04 07-57-23',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 08:04:30', user_id='82346',cust_id='20866034',call_id='1495423',name='SANTHANA KRISHNAN VENKATRAMAN',number='9739745150',question_time='2018-04-04 07-57-23',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495423' and question='1056' and cust_id='20866034';
insert into questionaire_details set created_at='2018-04-04 08:04:30', updated_at='2018-04-04 08:04:30', user_id='82346',cust_id='20866034',call_id='1495423',name='SANTHANA KRISHNAN VENKATRAMAN',number='9739745150',question_time='2018-04-04 07-57-23',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 08:04:30', user_id='82346',cust_id='20866034',call_id='1495423',name='SANTHANA KRISHNAN VENKATRAMAN',number='9739745150',question_time='2018-04-04 07-57-23',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495423' and question='1059' and cust_id='20866034';
insert into questionaire_details set created_at='2018-04-04 08:04:30', updated_at='2018-04-04 08:04:30', user_id='82346',cust_id='20866034',call_id='1495423',name='SANTHANA KRISHNAN VENKATRAMAN',number='9739745150',question_time='2018-04-04 07-57-23',question='1051',primary_question='Check profiling for TWL / car ownership, Pitch for car loan- resh or CNC, update profiler with car details.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 08:04:30', user_id='82346',cust_id='20866034',call_id='1495423',name='SANTHANA KRISHNAN VENKATRAMAN',number='9739745150',question_time='2018-04-04 07-57-23',question='1051',primary_question='Check profiling for TWL / car ownership, Pitch for car loan- resh or CNC, update profiler with car details.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495423' and question='1051' and cust_id='20866034';
insert into questionaire_details set created_at='2018-04-04 08:04:30', updated_at='2018-04-04 08:04:30', user_id='82346',cust_id='20866034',call_id='1495423',name='SANTHANA KRISHNAN VENKATRAMAN',number='9739745150',question_time='2018-04-04 07-57-23',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
update questionaire_details set updated_at='2018-04-04 08:04:30', user_id='82346',cust_id='20866034',call_id='1495423',name='SANTHANA KRISHNAN VENKATRAMAN',number='9739745150',question_time='2018-04-04 07-57-23',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='' where call_id='1495423' and question='1329' and cust_id='20866034';
insert into full_remark set call_id='1495463',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495423',fullremark='ContactedPurpose Introduction Out call made preferential rates of Loan offers informed looking home loan Further assistance offered customer happy with our services';
select distinct clientinternalid from records;
select * from `roles` where `rolename` = 'User' limit 1;
insert into full_remark set call_id='1495472',fullremark='';
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM11OC' order by dialer_lastcall asc;
insert into questionaire_details set created_at='2018-04-04 08:04:59', updated_at='2018-04-04 08:04:59', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:04:59', updated_at='2018-04-04 08:04:59', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:04:59', updated_at='2018-04-04 08:04:59', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:04:59', updated_at='2018-04-04 08:04:59', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see there is not much balance in you?re A/c , Compare to earlier ',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:04:59', updated_at='2018-04-04 08:04:59', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='1325',primary_question='Check for reason, if new organisation, update the same in COCO link, pitch CC Payment through NetBanking, PA products, Term Products, BP/SP, increase CTG,',primary_response=' OK',primary_text='',followup1_question='Sir , I can see your Salary is not getting Credit in the A/C',followup1_response=' No , I have not changed my Company',followup1_text='',followup2_question='',followup2_response=' No , I have not changed my Company',followup2_text='',followup3_question='',followup3_response=' No , I have not changed my Company',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:04:59', updated_at='2018-04-04 08:04:59', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='1326',primary_question='Understadn the reason ',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:04:59', updated_at='2018-04-04 08:04:59', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='2485',primary_question='Sir, we can see that salary is not getting credited in your salary account. Have you changed the employer or changed salary account with other bank',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:04:59', updated_at='2018-04-04 08:04:59', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:00', updated_at='2018-04-04 08:05:00', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='Sir additionally you can avail of special offers & discounts available for online shopping including cash backs, & higher reward points',followup1_response=' Let me know of the offers available',followup1_text='',followup2_question='',followup2_response=' Let me know of the offers available',followup2_text='',followup3_question='',followup3_response=' Let me know of the offers available',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:00', updated_at='2018-04-04 08:05:00', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:00', updated_at='2018-04-04 08:05:00', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:00', updated_at='2018-04-04 08:05:00', user_id='87155',cust_id='43539513',call_id='1495439',name='SYED HAFIZUDDIN',number='9094908019',question_time='2018-04-04 07-59-53',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select id from records where mobile like '%7305905905' OR
altphone1 like '%7305905905' OR
altphone2 like '%7305905905' OR
altphone3 like '%7305905905' OR
altphone4 like '%7305905905' OR
altphone5 like '%7305905905' OR
altphone6 like '%7305905905' OR
altphone7 like '%7305905905' OR
altphone8 like '%7305905905' OR
altphone9 like '%7305905905' OR
altphone10 like '%7305905905' and client in ('PM4OC','PM9OC','PM14OC','PM20OC','PM21OC','PM24OC','PM27OC','PM29OC','PM4OC_RC','PM9OC_RC','PM20OC_RC','PM24OC_RC','PM29OC_RC','null');
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=24577497 and question IN(1021,1319,1052,1056,1327,1322,1325,2485,2462,2515,2505,2498,1328,1329,1330);
select distinct clientinternalid from records;
select id from records where mobile like '%7904214486' OR
altphone1 like '%7904214486' OR
altphone2 like '%7904214486' OR
altphone3 like '%7904214486' OR
altphone4 like '%7904214486' OR
altphone5 like '%7904214486' OR
altphone6 like '%7904214486' OR
altphone7 like '%7904214486' OR
altphone8 like '%7904214486' OR
altphone9 like '%7904214486' OR
altphone10 like '%7904214486' and client in ('PM6OC','PM6OC_RC','null');
select distinct clientinternalid from records;
insert into full_remark set call_id='1495475',fullremark='CUSTOMER DISCONNECTING D CALL';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495466',fullremark='IAM TRY TO CONTECT THIS CUSTOMER NUMBER BUT CUSTOMER WIFE PICKING THE CALL BACAUSE CUSTOMER NOW IN US SO IAM GIVING MY DETAILS ';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=41882723 and question IN(1021,1319,1056,1057,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1051,1059);
select distinct clientinternalid from records;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM13OC' order by dialer_lastcall asc;
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM11OC' order by dialer_lastcall asc;
SELECT distinct question FROM questionaire_details WHERE cust_id=1277484 and question IN(1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1051,1059);
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM20OC' order by dialer_lastcall asc;
insert into full_remark set call_id='1495394',fullremark='';
SELECT distinct question FROM questionaire_details WHERE cust_id=61524110 and question IN(1056,1327,1026,1322,2462,2515,2505,2498,1059);
select id ,`currentstatus` ,`legalstatus` ,`firstname` ,`lastname` ,`mobile` ,`emailid` ,`altphone1` ,`altphone2` ,`altphone3` ,`altphone4` ,`altphone5` ,`altphone6` ,`altphone7` ,`altphone8` ,`altphone9` ,`altphone10` ,`candidatecategory` ,`nextfollowupdate` ,`passportno` ,`joiningdate` ,`client` ,`designation` ,`supervisor` ,`contracttype` ,`saltotal` ,`ibannumber` ,`servicestoppeddate` ,`employeeexitstatus` ,`exittype` ,`dateofexit` ,`abscondtype` ,`abscondeddate` ,`workflowstatus` ,`status` ,`clientinternalid` ,`department` ,`passportstatus` ,`clientcode` ,`laborcardpersonalid` ,`dialer_status` ,`dialer_substatus` ,`dialer_callback` ,`dialer_remarks` ,`dialer_flag` ,`dialer_lastcall` ,`priority` ,`crmlist_id` ,`group` ,`bttc` ,`service_vs_product` ,`resolution` ,`satisfaction` ,`final_call_assessment` ,`question` ,`mf_isa` from records where client='PM25OC' order by dialer_lastcall asc;
insert into questionaire_details set created_at='2018-04-04 08:05:49', updated_at='2018-04-04 08:05:49', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1059',primary_question='Pitch 10 Sec loan through NB and other loan through DAP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:49', updated_at='2018-04-04 08:05:49', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:49', updated_at='2018-04-04 08:05:49', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:49', updated_at='2018-04-04 08:05:49', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='2498',primary_question='Sir, You are not using Net Banking/Mobile App as most convenient mode of doing Banking transaction. I Can help You to register and use the same now.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:49', updated_at='2018-04-04 08:05:49', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='2505',primary_question='Sir, Thank You for using Net Banking/Mobile App for financial transaction. I Can help You to invest by booking FD/RD Online at ease.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:49', updated_at='2018-04-04 08:05:49', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='2515',primary_question='Sir, Thank You for using Net Banking/Mobile App for banking, I Can help You to to use the same for online shopping.',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:49', updated_at='2018-04-04 08:05:49', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='2462',primary_question='Sir, Thank You for using net banking/mobile app for financial transaction. Can I help You to register for your utility bill payments. ',primary_response=' Yes',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:49', updated_at='2018-04-04 08:05:49', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1325',primary_question='Check for reason, if new organisation, update the same in COCO link, pitch CC Payment through NetBanking, PA products, Term Products, BP/SP, increase CTG,',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:50', updated_at='2018-04-04 08:05:50', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:50', updated_at='2018-04-04 08:05:50', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:50', updated_at='2018-04-04 08:05:50', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1057',primary_question='Take details / reconfirm updated profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:50', updated_at='2018-04-04 08:05:50', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1056',primary_question='Take details of pending profiler',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:50', updated_at='2018-04-04 08:05:50', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1053',primary_question='Update Aadhaar No through NB/MB, SMS Banking, Phone Banking, ATM, Branch visit.',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:05:50', updated_at='2018-04-04 08:05:50', user_id='82243',cust_id='51995086',call_id='1495471',name='SHANMUGASUNDARAM M',number='9840262414',question_time='2018-04-04 08-03-45',question='1021',primary_question='Understand the current CC customer is using and the benefits he is enjoying in the same, Pitch SPC.',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see you are not holding the HDFC Bank Credit Card',followup1_response=' Yes',followup1_text='',followup2_question='',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:168:{s:2:"id";i:302539;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:9:"KARTHIK K";s:10:"clientcode";s:8:"56327191";s:16:"clientinternalid";s:8:"56327191";s:6:"status";s:6:"Called";s:7:"ucic_id";s:34:" ~||~ PL BT Loan Amt: 200000 ~||~ ";s:6:"client";s:5:"PM6OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:8:"56327191";s:3:"DOB";s:25:"15NOV1986:00:00:00.000000";s:3:"age";s:2:"31";s:6:"mobile";s:10:"9962298825";s:7:"emailid";s:24:"[email protected]";s:8:"Product1";s:5:"Demat";s:8:"Product2";s:11:"Mutual Fund";s:8:"Product3";s:27:"Petrol Usage on Credit Card";s:9:"DR_CR_TAG";s:26:"High on Credits.Cr.=588220";s:11:"TOT_CHQ_IND";s:1:"0";s:14:"TOT_CHQ_NONIND";s:3:"132";s:8:"TOT_SELF";s:1:"0";s:6:"TOT_CR";s:6:"588220";s:6:"TOT_DR";s:8:"298453.4";s:11:"TOT_EMI_OUT";s:1:"0";s:13:"TOT_INVST_OUT";s:1:"0";s:11:"TOT_UTL_OUT";s:1:"0";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:10:"BP_REG_ora";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Active31";s:7:"dc_type";s:11:"Platinum DC";s:5:"nboff";s:21:"Offline NB (CHQ PAY )";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:11:"pref_action";s:37:"Platinum Debit Card thru E-age(VEC01)";s:17:"LAST_TXN_POS_DATE";s:25:"18NOV2017:12:10:15.000000";s:21:"decile_demat_casa_var";s:5:"Demat";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:7:"dc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:19:"decile_Ins_CASA_var";s:5:" ";s:8:"li_cover";s:94:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.22.34 Lacs.";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:12:"LI_PLan_Prio";s:101:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)Click 2 protect Plus 3)HDFC Life Classic Assure Plus";s:15:"dialer_lastcall";s:19:"2018-04-04 08:05:58";s:13:"dialer_status";s:33:"Not Contactable - Non Human Voice";s:16:"dialer_substatus";s:15:"Phone No Answer";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:3:"dob";s:25:"15NOV1986:00:00:00.000000";s:8:"product1";s:27:"Petrol Usage on Credit Card";s:8:"product2";s:26:"Petrol Usage on Debit Card";s:8:"product3";s:15:"Motor Insurance";s:9:"dr_cr_tag";s:26:"High on Credits.Cr.=744900";s:11:"tot_chq_ind";s:4:"2882";s:14:"tot_chq_nonind";s:6:"278150";s:8:"tot_self";s:1:"0";s:6:"tot_cr";s:6:"744900";s:6:"tot_dr";s:6:"495520";s:11:"tot_emi_out";s:1:"0";s:13:"tot_invst_out";s:1:"0";s:11:"tot_utl_out";s:1:"0";s:10:"atm_active";s:1:"1";s:10:"bp_reg_ora";s:1:"1";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:5:"prod2";s:19:"WORLD REGALIA FIRST";s:3:"apt";s:77:"HOLDS MASTER PLATINUM AND IS IN ACTIVEAND UPGRADE TO EMV MC HNW REGALIA FIRST";s:10:"act_status";s:6:"ACTIVE";s:17:"statement_details";s:55:"O/S DUES 16404.69 LAST BILL AMOUNT 10396.00 DUE DATE 10";s:17:"last_txn_pos_date";s:25:"15MAY2016:17:01:26.000000";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"Y";s:18:"decile_ins_pen_var";s:12:"Pension plan";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:66:"LI PLAN Priority : 1) PRO_GROWTH_SUPER 2) SANCHAY and 3) YOUNGSTAR";s:14:"DBC_ACTIVATION";s:253:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: N ,AUG16: N ,SEP16: N /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD:(N) /RD:(Y) /Smart Pay:(Y) /Credit Card Active:(Y) /Debit Card Active:(N) /Total NB online Transactions : 0 /Ac";s:18:"DIGITAL_INITIATIVE";s:138:"NetBanking Active. Customer did these transactions offline in sep which can be migrated to NB -CHQ PAY . Top 4 Product :LI / / / / / / .";s:10:"IVR_active";s:1:"1";s:3:"APT";s:42:"HOLDS WORLD REGALIA FIRST AND IS IN ACTIVE";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:54:"O/S DUES 25017.89 LAST BILL AMOUNT 4424.00 DUE DATE 10";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:8:"priority";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (Y) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 4).";s:4:"CBDT";s:21:"DA: Pref. channel:SI/";s:8:"ins_date";s:19:"2018-04-02 14:06:33";s:7:"auto_id";s:7:"1052641";s:9:"SERVER_IP";s:12:"10.22.214.10";s:9:"altphone1";s:24:"[email protected]";s:14:"altphone_lbl_1";s:6:"vinoth";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"56327191";s:9:"altphone2";s:5:" ";s:6:"chillr";s:5:" ";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:8:"rf_offer";s:5:" ";s:19:"decile_ins_casa_var";s:25:"Investment Insurance plan";s:15:"motor_insurance";s:5:" ";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (Y) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 4).";s:18:"digital_initiative";s:21:"DA: Pref. channel:SI/";s:5:"Perks";s:177:"< ACT:ADHR >< INACT:CHLR,MB,MCR,NB,PZAP,SMS > Apr02 || Digital 2.0 Score is 2--> BillPay: InActive, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical:";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:9:"COC_ELIGI";s:5:" ";s:7:"LE_ELIG";s:5:" ";s:20:"decile_LAS_Demat_var";s:1:" ";s:6:"mf_isa";s:0:"";s:9:"altphone3";s:10:"7904214486";s:14:"altphone_lbl_3";s:4:"miss";s:21:"directpay_billpay_tag";s:1:"1";s:10:"AL_PRE_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:11:"TWL_PRE_AMT";s:5:" ";s:13:"decile_MF_var";s:2:"MF";s:8:"question";s:79:"1319,1056,1058,1327,1322,1325,1326,2462,2515,2505,2498,1328,1329,1330,1051,1061";s:9:"altphone4";s:10:"8030598934";s:14:"altphone_lbl_4";s:6:"sitha.";s:9:"altphone5";s:10:"9514422906";s:14:"altphone_lbl_5";s:2:"al";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:17:"decile_las_mf_var";s:3:"LAS";s:9:"altphone6";s:10:"7010474698";s:14:"altphone_lbl_6";s:4:"miss";s:9:"altphone7";s:10:"9884507555";s:14:"altphone_lbl_7";s:4:"miss";s:9:"altphone8";s:11:"04433548211";s:14:"altphone_lbl_8";s:2:"pl";s:9:"altphone9";N;s:14:"altphone_lbl_9";N;s:10:"altphone10";s:0:"";s:15:"altphone_lbl_10";s:0:"";s:10:"al_upgrade";s:5:" ";s:16:"decile_HL_SA_var";s:5:" ";s:11:"LAS_PRE_AMT";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:6:"payzap";s:5:" ";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:138:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:9:"DR_CR_TAG";i:1;s:11:"TOT_CHQ_IND";i:1;s:14:"TOT_CHQ_NONIND";i:1;s:8:"TOT_SELF";i:1;s:6:"TOT_CR";i:1;s:6:"TOT_DR";i:1;s:11:"TOT_EMI_OUT";i:1;s:13:"TOT_INVST_OUT";i:1;s:11:"TOT_UTL_OUT";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:10:"BP_REG_ora";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:5:"nboff";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:11:"pref_action";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:21:"decile_demat_casa_var";i:1;s:7:"cc_auto";i:1;s:7:"dc_auto";i:1;s:19:"decile_Ins_CASA_var";i:1;s:8:"li_cover";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:12:"LI_PLan_Prio";i:1;s:3:"dob";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:9:"dr_cr_tag";i:1;s:11:"tot_chq_ind";i:1;s:14:"tot_chq_nonind";i:1;s:8:"tot_self";i:1;s:6:"tot_cr";i:1;s:6:"tot_dr";i:1;s:11:"tot_emi_out";i:1;s:13:"tot_invst_out";i:1;s:11:"tot_utl_out";i:1;s:10:"atm_active";i:1;s:10:"bp_reg_ora";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:5:"prod2";i:1;s:3:"apt";i:1;s:10:"act_status";i:1;s:17:"statement_details";i:1;s:17:"last_txn_pos_date";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:18:"decile_ins_pen_var";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:10:"IVR_active";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:9:"altphone2";i:1;s:6:"chillr";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:8:"rf_offer";i:1;s:19:"decile_ins_casa_var";i:1;s:15:"motor_insurance";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:19:"decile_GoldLoan_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:6:"mf_isa";i:1;s:21:"directpay_billpay_tag";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:17:"decile_PL_CSA_var";i:1;s:11:"TWL_PRE_AMT";i:1;s:13:"decile_MF_var";i:1;s:8:"question";i:1;s:9:"altphone1";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:17:"decile_las_mf_var";i:1;s:10:"al_upgrade";i:1;s:16:"decile_HL_SA_var";i:1;s:11:"LAS_PRE_AMT";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:6:"payzap";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='KARTHIK K' ,`mobile`='9962298825' ,`emailid`='[email protected]' ,`altphone1`='[email protected]' ,`altphone2`=' ' ,`altphone3`='7904214486' ,`altphone4`='8030598934' ,`altphone5`='9514422906' ,`altphone6`='7010474698' ,`altphone7`='9884507555' ,`altphone8`='04433548211' ,`altphone10`='' ,`client`='PM6OC' ,`status`='Called' ,`clientinternalid`='56327191' ,`clientcode`='56327191' ,`dialer_status`='Not Contactable - Non Human Voice' ,`dialer_substatus`='Phone No Answer' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 08:05:58' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1319,1056,1058,1327,1322,1325,1326,2462,2515,2505,2498,1328,1329,1330,1051,1061' ,`mf_isa`='' where id='302539' limit 1;
insert into full_remark set call_id='1495487',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495482',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select id from records where mobile like '%8610823039' OR
altphone1 like '%8610823039' OR
altphone2 like '%8610823039' OR
altphone3 like '%8610823039' OR
altphone4 like '%8610823039' OR
altphone5 like '%8610823039' OR
altphone6 like '%8610823039' OR
altphone7 like '%8610823039' OR
altphone8 like '%8610823039' OR
altphone9 like '%8610823039' OR
altphone10 like '%8610823039' and client in ('PM15OC','PM15OC_RC','null');
select distinct clientinternalid from records;
insert into full_remark set call_id='1495439',fullremark='asked insta loan details';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495471',fullremark='spoken with customer welcomecall and he is busy right meeting call back some time ';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495484',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495489',fullremark='called from diff num';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select id from records where mobile like '%7305905905' OR
altphone1 like '%7305905905' OR
altphone2 like '%7305905905' OR
altphone3 like '%7305905905' OR
altphone4 like '%7305905905' OR
altphone5 like '%7305905905' OR
altphone6 like '%7305905905' OR
altphone7 like '%7305905905' OR
altphone8 like '%7305905905' OR
altphone9 like '%7305905905' OR
altphone10 like '%7305905905' and client in ('PM4OC','PM9OC','PM14OC','PM20OC','PM21OC','PM24OC','PM27OC','PM29OC','PM4OC_RC','PM9OC_RC','PM20OC_RC','PM24OC_RC','PM29OC_RC','null');
insert into full_remark set call_id='1495497',fullremark='';
insert into full_remark set call_id='1495505',fullremark='';
insert into full_remark set call_id='1495476',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=7726409 and question IN(1015,1016,1319,1053,1056,1057,1327,1325,1326,2462,2515,2505,2498,1328,1329,1330);
SELECT distinct question FROM questionaire_details WHERE cust_id=53621490 and question IN(1021,1319,1056,1058,1327,1320,2462,2515,2505,2498,1328,1329,1330);
select distinct clientinternalid from records;
insert into full_remark set call_id='1495509',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495486',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495485',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495444',fullremark='';
insert into full_remark set call_id='1495507',fullremark='';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=40796297 and question IN(1015,1016,1319,1056,1057,1058,1026,1322,2462,2515,2505,2498,1328,1329,1330,1059);
insert into full_remark set call_id='1495510',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495514',fullremark='';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495511',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
update records set modified=now(),peopledata='a:134:{s:2:"id";i:388442;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:14:"SATISH KUMAR M";s:10:"clientcode";s:8:"42486846";s:16:"clientinternalid";s:8:"42486846";s:6:"status";s:6:"Called";s:7:"ucic_id";s:6:" ~||~ ";s:6:"client";s:5:"PM1OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:10:"GROUP_CORR";s:8:"42486846";s:3:"dob";s:25:"18MAR1977:00:00:00.000000";s:3:"age";s:2:"40";s:6:"mobile";s:10:"9840604057";s:9:"altphone1";s:10:"9884004935";s:8:"product1";s:9:"Home Loan";s:8:"product2";s:13:"Fixed Deposit";s:8:"product3";s:9:"Auto Loan";s:10:"bp_reg_ora";s:1:"1";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:8:"Inactive";s:7:"dc_type";s:11:"Platinum DC";s:5:"nboff";s:83:"Customer did these transactions offline in oct which can be migrated to NB -CHQ PAY";s:6:"nb_reg";s:1:"1";s:2:"nb";s:7:"Active.";s:11:"pref_action";s:37:"Platinum Debit Card thru E-age(VEC01)";s:19:"decile_ins_casa_var";s:25:"Investment Insurance plan";s:8:"li_cover";s:95:"Basis internal data, the suggestive lifecover amount for the customer should be Rs.104.17 Lacs.";s:22:"life_insu_premium_amt1";s:1:"0";s:12:"li_plan_prio";s:69:"LI PLAN Priority : 1) PRO_GROWTH 2) YOUNGSTAR and 3) PRO_GROWTH_SUPER";s:14:"DBC_ACTIVATION";s:252:"NB Status - JUL16: Y ,AUG16: Y ,SEP16: Y /NB Fin usage - JUL16: Y ,AUG16: Y ,SEP16: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD:(N) /RD:(Y) /Smart Pay:(Y) /Credit Card Active:(Y) /Debit Card Active:(N) /Total NB online Transactions : 10 /";s:18:"DIGITAL_INITIATIVE";s:236:"NetBanking Active. Customer did these transactions offline in sep which can be migrated to NB -CHQ PAY . Top 4 Product :AL/PL/LI /Customer is registered and paying bills through other methods (Biller Name : AIRTEL MOBILE ) / / / / / .";s:6:"STATUS";s:7:"PRIMARY";s:3:"DOB";s:25:"18MAR1977:00:00:00.000000";s:7:"emailid";s:51:"[email protected] ~~ Customer Registered for NDNC";s:8:"Product1";s:13:"Fixed Deposit";s:8:"Product2";s:15:"Investment Plan";s:8:"Product3";s:11:"Mutual Fund";s:10:"BP_REG_ora";s:1:"1";s:21:"directpay_billpay_tag";s:1:"1";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:10:"AL_PRE_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:5:"prod2";s:15:"MASTER PLATINUM";s:3:"APT";s:38:"HOLDS MASTER PLATINUM AND IS IN ACTIVE";s:10:"ACT_STATUS";s:6:"ACTIVE";s:17:"STATEMENT_DETAILS";s:54:"O/S DUES -789.11 LAST BILL AMOUNT -6957.00 DUE DATE 15";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:19:"decile_Ins_CASA_var";s:5:" ";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:13:"decile_MF_var";s:2:"MF";s:15:"dialer_lastcall";s:19:"2018-04-04 08:08:57";s:8:"priority";s:0:"";s:13:"dialer_status";s:31:"Contacted - Follow-Up - Generic";s:16:"dialer_substatus";s:67:"Customer - No Requirement - Not to be called back within same month";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:4:"CBDT";s:304:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:RECURRING DEPOSIT // / / / /Pitch CASA nominee online. / . (Biller Name :AIRTEL Offline / / / /Pitch SI on BP/";s:8:"ins_date";s:19:"2018-04-02 14:36:06";s:7:"auto_id";s:7:"1504324";s:9:"SERVER_IP";s:12:"10.22.214.10";s:4:"unit";s:7:"CHENNAI";s:7:"status1";s:7:"PRIMARY";s:10:"group_corr";s:8:"42486846";s:9:"altphone2";s:5:" ";s:6:"chillr";s:5:" ";s:5:"perks";s:5:" ";s:3:"sss";s:5:" ";s:10:"al_pre_amt";s:7:"1500000";s:16:"decile_al_ca_var";s:5:" ";s:17:"decile_al_csa_var";s:5:" ";s:16:"decile_al_sa_var";s:5:" ";s:10:"hl_pre_amt";s:7:"2810585";s:16:"pl_paperless_amt";s:6:"432000";s:10:"pl_pre_amt";s:6:"867000";s:17:"decile_pl_csa_var";s:12:"PersonalLoan";s:11:"twl_pre_amt";s:6:"507000";s:3:"apt";s:60:"HOLDS MASTER PLATINUMAND UPGRADE TO EMV MC HNW REGALIA FIRST";s:17:"statement_details";s:55:"O/S DUES 14488.00 LAST BILL AMOUNT 12821.00 DUE DATE 15";s:12:"smpay_active";s:1:"N";s:10:"smpay_regd";s:1:"N";s:8:"rf_offer";s:5:" ";s:15:"motor_insurance";s:5:" ";s:13:"decile_mf_var";s:2:"MF";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (Y) / Bill Pay Active : (N) / FD(N) /RD(N) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 3) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(N) /Count of Physical Txns.:( 0).";s:18:"digital_initiative";s:304:"DA: Pref. channel:NB/Pref. channel txns:BALANCE ENQUIRY //Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:RECURRING DEPOSIT // / / / /Pitch CASA nominee online. / . (Biller Name :AIRTEL Offline / / / /Pitch SI on BP/";s:5:"Perks";s:184:"< ACT:ADHR,NB >< INACT:CHLR,MB,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 3--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: InActive, Physical: InActive";s:6:"Chillr";s:5:" ";s:3:"SSS";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"decile_AL_SA_var";s:5:" ";s:10:"BL_PRE_AMT";s:5:" ";s:13:"decile_BL_var";s:1:" ";s:10:"HL_PRE_AMT";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:5:"BLOCK";s:5:" ";s:9:"COC_ELIGI";s:5:"81000";s:7:"LE_ELIG";s:6:"195000";s:20:"decile_LAS_Demat_var";s:312:" | PL: NO | AL: NO | TWL: NO | HL: NO | CC: YES | Demat: NO | Insurance: NO | ISA: NO | FD: NO | RD: YES | DC: YES | GRP_Assets_and_CC_Elig_PL: | PL_10_SECS: | AL: 1950000 | TWL: 0 | CC: | CC_TYPE: PLATINUM | CC_USAGE: CC IS ACTIVE | GRP_Recommended_Products_1: INVESTMENT PLAN, 2, 3, 4, 5, 6 | EmailID_Y_N: Y";s:12:"LI_PLan_Prio";s:95:"LI PLAN Priority 1)HDFC Life Uday 2)HDFC Life Classic Assure Plus 3)HDFC Life Super Income Plan";s:6:"mf_isa";s:0:"";s:8:"question";s:54:"1056,1058,1026,1322,2462,2515,2505,2498,1328,1329,1330";s:11:"AL_CAR_CASH";s:5:" ";s:11:"LAP_PRE_AMT";s:5:" ";s:10:"al_upgrade";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:17:"decile_HL_CSA_var";s:8:"HomeLoan";s:16:"decile_HL_SA_var";s:5:" ";s:17:"decile_PL_CSA_var";s:12:"PersonalLoan";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:7:"MEdical";s:59:"Customer has high medical spends, discuss Health Insurance.";s:11:"LAS_PRE_AMT";s:5:" ";s:17:"decile_las_mf_var";s:275:"Aadhaar: NOT UPDATED | PriorIty: Prioirty 3 | COCODE: W0164 | Br_Code: 1586 | GRP_Product_Holding_NB_Active: Y | MB_Active: Y | Financial_Txn_done_on_NB: Y | Financial_Txn_done_on_MB: Y | Chillr: NO | PayZapp: NO | BillPay_Reg: YES | BillPay_Use: YES | Debit_Card_active: YES";s:2:"Si";s:5:" ";s:18:"decile_Ins_pen_var";s:5:" ";s:21:"decile_demat_casa_var";s:5:"Demat";s:9:"altphone3";s:11:"04439290392";s:14:"altphone_lbl_3";s:7:"off no ";s:3:"HSL";s:1:"0";}',modifylog='0',dirty='a:119:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:10:"GROUP_CORR";i:1;s:3:"dob";i:1;s:3:"age";i:1;s:6:"mobile";i:1;s:9:"altphone1";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:10:"bp_reg_ora";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:5:"nboff";i:1;s:6:"nb_reg";i:1;s:2:"nb";i:1;s:11:"pref_action";i:1;s:19:"decile_ins_casa_var";i:1;s:8:"li_cover";i:1;s:22:"life_insu_premium_amt1";i:1;s:12:"li_plan_prio";i:1;s:14:"DBC_ACTIVATION";i:1;s:18:"DIGITAL_INITIATIVE";i:1;s:6:"STATUS";i:1;s:3:"DOB";i:1;s:7:"emailid";i:1;s:8:"Product1";i:1;s:8:"Product2";i:1;s:8:"Product3";i:1;s:10:"BP_REG_ora";i:1;s:21:"directpay_billpay_tag";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:11:"TWL_PRE_AMT";i:1;s:5:"prod2";i:1;s:3:"APT";i:1;s:10:"ACT_STATUS";i:1;s:17:"STATEMENT_DETAILS";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:19:"decile_Ins_CASA_var";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:13:"decile_MF_var";i:1;s:9:"hl_bt_amt";i:1;s:4:"CBDT";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:4:"unit";i:1;s:7:"status1";i:1;s:10:"group_corr";i:1;s:9:"altphone2";i:1;s:6:"chillr";i:1;s:5:"perks";i:1;s:3:"sss";i:1;s:10:"al_pre_amt";i:1;s:16:"decile_al_ca_var";i:1;s:17:"decile_al_csa_var";i:1;s:16:"decile_al_sa_var";i:1;s:10:"hl_pre_amt";i:1;s:16:"pl_paperless_amt";i:1;s:10:"pl_pre_amt";i:1;s:17:"decile_pl_csa_var";i:1;s:11:"twl_pre_amt";i:1;s:3:"apt";i:1;s:17:"statement_details";i:1;s:12:"smpay_active";i:1;s:10:"smpay_regd";i:1;s:8:"rf_offer";i:1;s:15:"motor_insurance";i:1;s:13:"decile_mf_var";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:5:"Perks";i:1;s:6:"Chillr";i:1;s:3:"SSS";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"decile_AL_SA_var";i:1;s:10:"BL_PRE_AMT";i:1;s:13:"decile_BL_var";i:1;s:10:"HL_PRE_AMT";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:5:"BLOCK";i:1;s:9:"COC_ELIGI";i:1;s:7:"LE_ELIG";i:1;s:20:"decile_LAS_Demat_var";i:1;s:12:"LI_PLan_Prio";i:1;s:6:"mf_isa";i:1;s:8:"question";i:1;s:11:"AL_CAR_CASH";i:1;s:11:"LAP_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:16:"decile_HL_SA_var";i:1;s:17:"decile_PL_CSA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:7:"MEdical";i:1;s:11:"LAS_PRE_AMT";i:1;s:17:"decile_las_mf_var";i:1;s:2:"Si";i:1;s:18:"decile_Ins_pen_var";i:1;s:21:"decile_demat_casa_var";i:1;s:3:"HSL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='SATISH KUMAR M' ,`mobile`='9840604057' ,`emailid`='[email protected] ~~ Customer Registered for NDNC' ,`altphone1`='9884004935' ,`altphone2`=' ' ,`altphone3`='04439290392' ,`client`='PM1OC' ,`status`='Called' ,`clientinternalid`='42486846' ,`clientcode`='42486846' ,`dialer_status`='Contacted - Follow-Up - Generic' ,`dialer_substatus`='Customer - No Requirement - Not to be called back within same month' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 08:08:57' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1058,1026,1322,2462,2515,2505,2498,1328,1329,1330' ,`mf_isa`='' where id='388442' limit 1;
insert into full_remark set call_id='1495427',fullremark='';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495519',fullremark='';
update records set modified=now(),peopledata='a:111:{s:2:"id";i:202042;s:13:"currentstatus";s:6:"ACTIVE";s:11:"legalstatus";s:7:"PRIMARY";s:9:"firstname";s:18:"SAMPATH SRINIVASAN";s:10:"clientcode";s:7:"1277484";s:16:"clientinternalid";s:7:"1277484";s:6:"status";s:6:"Called";s:7:"ucic_id";s:270:" ~||~ PL 10Sec NB Decile: 8 ~||~ PL 10Sec thru NB PA Limit: 1200000 ~||~ TWL Green Channel Amt: 1068000 ~||~ ZipDrive Loan Amt: 1440000 ~||~ LE_ONLY - Old Limit: 160000 | New Limit: 202000 | OLDPROD: SIGNATURE REGALIA FIRST ~||~ COC_AMT: 120000 ~||~ PL2CC_AMT: 605000.00";s:6:"client";s:6:"PM19OC";s:4:"Unit";s:18:"CHENNAI- NM TOWERS";s:6:"STATUS";s:7:"PRIMARY";s:10:"GROUP_CORR";s:7:"1277484";s:6:"mobile";s:10:"9092023515";s:7:"emailid";s:23:"[email protected]";s:10:"IVR_active";s:1:"1";s:11:"pref_action";s:28:"Platinum DC thru net banking";s:3:"SSS";s:5:" ";s:11:"AL_CAR_CASH";s:5:" ";s:10:"AL_PRE_AMT";s:5:" ";s:10:"al_upgrade";s:5:" ";s:16:"decile_AL_CA_var";s:5:" ";s:17:"decile_AL_CSA_var";s:5:" ";s:16:"PL_PAPERLESS_AMT";s:5:" ";s:10:"PL_PRE_AMT";s:5:" ";s:11:"TWL_PRE_AMT";s:5:" ";s:3:"APT";s:46:"HOLDS SIGNATURE REGALIA FIRST AND IS IN ACTIVE";s:17:"STATEMENT_DETAILS";s:56:"O/S DUES 129915.20 LAST BILL AMOUNT 36843.00 DUE DATE 06";s:5:"Perks";s:173:"< ACT:ADHR,NB >< INACT:CHLR,MB,MCR,PZAP,SMS > Apr02 || Digital 2.0 Score is 4--> BillPay: Active, Basic_Banking: Active, ECOM_Shopping: Active, Investment: Active, Physical:";s:16:"decile_AL_SA_var";s:5:" ";s:17:"decile_PL_CSA_var";s:1:" ";s:5:"BLOCK";s:5:" ";s:10:"ACT_STATUS";s:6:"ACTIVE";s:9:"COC_ELIGI";s:6:"120000";s:8:"ins_date";s:19:"2018-04-02 13:04:53";s:7:"auto_id";s:6:"269086";s:9:"SERVER_IP";s:12:"10.22.214.10";s:8:"priority";s:0:"";s:15:"motor_insurance";s:5:" ";s:7:"status1";s:7:"PRIMARY";s:3:"DOB";s:25:"04JUL1958:00:00:00.000000";s:3:"age";s:2:"59";s:9:"altphone1";s:8:"42031802";s:9:"altphone2";s:5:" ";s:8:"product1";s:9:"Auto Loan";s:8:"product2";s:13:"Fixed Deposit";s:8:"product3";s:12:"Reatil Forex";s:9:"DR_CR_TAG";s:25:"High on Credits.Cr.=80000";s:11:"TOT_CHQ_IND";s:1:"0";s:14:"TOT_CHQ_NONIND";s:1:"0";s:8:"TOT_SELF";s:1:"0";s:6:"TOT_CR";s:5:"80000";s:6:"TOT_DR";s:1:"0";s:11:"TOT_EMI_OUT";s:1:"0";s:13:"TOT_INVST_OUT";s:1:"0";s:11:"TOT_UTL_OUT";s:1:"0";s:10:"ATM_active";s:1:"1";s:9:"atm_usage";s:1:"1";s:6:"Chillr";s:5:" ";s:8:"dc_offer";s:5:" ";s:10:"pos_status";s:7:"Dormant";s:7:"dc_type";s:10:"Regular DC";s:5:"nboff";s:83:"Customer did these transactions offline in Feb which can be migrated to NB -CHQ PAY";s:6:"NB_REG";s:1:"1";s:2:"NB";s:7:"Active.";s:6:"wallet";s:1:"1";s:13:"decile_BL_var";s:1:" ";s:9:"hl_bt_amt";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(Y) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 4) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(Y) /Count of Physical Txns.:( 2).";s:5:"prod2";s:23:"SIGNATURE REGALIA FIRST";s:17:"LAST_TXN_POS_DATE";s:25:"30JAN2014:18:36:19.000000";s:7:"LE_ELIG";s:6:"205000";s:12:"SMPAY_ACTIVE";s:1:"N";s:10:"SMPAY_REGD";s:1:"N";s:4:"CBDT";s:320:"DA: Pref. channel:NB/Offline:BALANCE INQUIRY/ / / / //Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:FIXED DEPOSIT // / /Top 4 Pdts :AL/Forex / /Pitch CASA nominee online. / . / / / / /";s:8:"rf_offer";s:5:" ";s:7:"cc_auto";s:67:"Customer spending on petrol and Car services,Disuss Auto insurance.";s:20:"decile_LAS_Demat_var";s:1:" ";s:22:"LIFE_INSU_PREMIUM_AMT1";s:1:"0";s:6:"mf_isa";s:0:"";s:14:"dbc_activation";s:404:"NB Status - JAN18: Y /NB Fin usage - JAN18: Y /Bill Pay registered : (N) / Bill Pay Active : (N) / FD(N) /RD(Y) /Smart Pay:(N) /CC Active:(Y) /DC Active:(N)SMS/TollFree Active : (N) /Payzapp Active : (N) /MCR Active: (N) /MB Active: (N) /Chillr Active: (N) /Overall digital Active: (Y) /Digital 2.0 Score( 4) /Banking Txn:(Y) /BillPayments:(Y) /Shopping:(Y) /Investment:(Y) /Count of Physical Txns.:( 2).";s:18:"digital_initiative";s:320:"DA: Pref. channel:NB/Offline:BALANCE INQUIRY/ / / / //Pref. channel txns:FUNDS TRANSFER /DIRECTPAY/Pref top Fin:BILLPAYMENTS/FUNDS TRANSFER/DIRECTPAY/Pref top non Fin:ACCOUNT STATEMENT/BALANCE ENQUIRY/FD/RD SUMMARY/Online prod purchas:FIXED DEPOSIT // / /Top 4 Pdts :AL/Forex / /Pitch CASA nominee online. / . / / / / /";s:15:"dialer_lastcall";s:19:"2018-04-04 08:09:25";s:13:"dialer_status";s:31:"Contacted - Follow-Up - Generic";s:16:"dialer_substatus";s:67:"Customer - No Requirement - Not to be called back within same month";s:15:"dialer_callback";s:0:"";s:14:"dialer_remarks";s:0:"";s:11:"dialer_flag";s:0:"";s:4:"bttc";s:1:":";s:18:"service_vs_product";s:0:"";s:10:"resolution";s:0:"";s:12:"satisfaction";s:0:"";s:21:"final_call_assessment";s:0:"";s:15:"dialer_userdata";a:6:{s:19:"dialerdata_service1";s:0:"";s:19:"dialerdata_service2";s:0:"";s:19:"dialerdata_service3";s:0:"";s:19:"dialerdata_service4";s:0:"";s:19:"dialerdata_service5";s:0:"";s:19:"dialerdata_service6";s:0:"";}s:10:"BL_PRE_AMT";s:5:" ";s:11:"LAP_PRE_AMT";s:29:"INVESTMENT MADE IN OTHER BANK";s:8:"question";s:64:"1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1051,1059";s:3:"HSL";s:1:"0";s:8:"li_cover";s:107:"Basis internal data, the suggestive life cover amount for the customer should be Rs.85.43000000000001 Lacs.";s:11:"LAS_PRE_AMT";s:5:" ";s:21:"decile_demat_casa_var";s:5:"Demat";s:18:"decile_Ins_pen_var";s:5:" ";s:13:"MF_LUMSUM_AMT";s:1:" ";s:10:"MF_SIP_AMT";s:1:" ";s:16:"decile_HL_SA_var";s:5:" ";s:6:"payzap";s:5:" ";s:19:"decile_GoldLoan_var";s:5:" ";s:2:"Si";s:5:" ";s:10:"HL_PRE_AMT";s:5:" ";s:17:"decile_HL_CSA_var";s:5:" ";s:19:"decile_Ins_CASA_var";s:5:" ";s:12:"LI_PLan_Prio";s:113:"LI PLAN Priority 1)HDFC Life Super Income Plan 2)HDFC Life Classic Assure Plus 3)HDFC Life Guranteed Pension Plan";s:9:"JET_XSELL";s:58:"Customer is a frequent flyer,cross sell Jet Privilege Card";}',modifylog='0',dirty='a:98:{s:13:"currentstatus";i:1;s:11:"legalstatus";i:1;s:9:"firstname";i:1;s:10:"clientcode";i:1;s:16:"clientinternalid";i:1;s:6:"status";i:1;s:7:"ucic_id";i:1;s:6:"client";i:1;s:4:"Unit";i:1;s:6:"STATUS";i:1;s:10:"GROUP_CORR";i:1;s:6:"mobile";i:1;s:7:"emailid";i:1;s:10:"IVR_active";i:1;s:11:"pref_action";i:1;s:3:"SSS";i:1;s:11:"AL_CAR_CASH";i:1;s:10:"AL_PRE_AMT";i:1;s:10:"al_upgrade";i:1;s:16:"decile_AL_CA_var";i:1;s:17:"decile_AL_CSA_var";i:1;s:16:"PL_PAPERLESS_AMT";i:1;s:10:"PL_PRE_AMT";i:1;s:11:"TWL_PRE_AMT";i:1;s:3:"APT";i:1;s:17:"STATEMENT_DETAILS";i:1;s:5:"Perks";i:1;s:16:"decile_AL_SA_var";i:1;s:17:"decile_PL_CSA_var";i:1;s:5:"BLOCK";i:1;s:10:"ACT_STATUS";i:1;s:9:"COC_ELIGI";i:1;s:8:"ins_date";i:1;s:7:"auto_id";i:1;s:9:"SERVER_IP";i:1;s:8:"priority";i:1;s:15:"motor_insurance";i:1;s:7:"status1";i:1;s:3:"DOB";i:1;s:3:"age";i:1;s:9:"altphone1";i:1;s:9:"altphone2";i:1;s:8:"product1";i:1;s:8:"product2";i:1;s:8:"product3";i:1;s:9:"DR_CR_TAG";i:1;s:11:"TOT_CHQ_IND";i:1;s:14:"TOT_CHQ_NONIND";i:1;s:8:"TOT_SELF";i:1;s:6:"TOT_CR";i:1;s:6:"TOT_DR";i:1;s:11:"TOT_EMI_OUT";i:1;s:13:"TOT_INVST_OUT";i:1;s:11:"TOT_UTL_OUT";i:1;s:10:"ATM_active";i:1;s:9:"atm_usage";i:1;s:6:"Chillr";i:1;s:8:"dc_offer";i:1;s:10:"pos_status";i:1;s:7:"dc_type";i:1;s:5:"nboff";i:1;s:6:"NB_REG";i:1;s:2:"NB";i:1;s:6:"wallet";i:1;s:13:"decile_BL_var";i:1;s:9:"hl_bt_amt";i:1;s:5:"prod2";i:1;s:17:"LAST_TXN_POS_DATE";i:1;s:7:"LE_ELIG";i:1;s:12:"SMPAY_ACTIVE";i:1;s:10:"SMPAY_REGD";i:1;s:4:"CBDT";i:1;s:8:"rf_offer";i:1;s:7:"cc_auto";i:1;s:20:"decile_LAS_Demat_var";i:1;s:22:"LIFE_INSU_PREMIUM_AMT1";i:1;s:6:"mf_isa";i:1;s:14:"dbc_activation";i:1;s:18:"digital_initiative";i:1;s:10:"BL_PRE_AMT";i:1;s:11:"LAP_PRE_AMT";i:1;s:8:"question";i:1;s:3:"HSL";i:1;s:8:"li_cover";i:1;s:11:"LAS_PRE_AMT";i:1;s:21:"decile_demat_casa_var";i:1;s:18:"decile_Ins_pen_var";i:1;s:13:"MF_LUMSUM_AMT";i:1;s:10:"MF_SIP_AMT";i:1;s:16:"decile_HL_SA_var";i:1;s:6:"payzap";i:1;s:19:"decile_GoldLoan_var";i:1;s:2:"Si";i:1;s:10:"HL_PRE_AMT";i:1;s:17:"decile_HL_CSA_var";i:1;s:19:"decile_Ins_CASA_var";i:1;s:12:"LI_PLan_Prio";i:1;s:9:"JET_XSELL";i:1;}' ,`currentstatus`='ACTIVE' ,`legalstatus`='PRIMARY' ,`firstname`='SAMPATH SRINIVASAN' ,`mobile`='9092023515' ,`emailid`='[email protected]' ,`altphone1`='42031802' ,`altphone2`=' ' ,`client`='PM19OC' ,`status`='Called' ,`clientinternalid`='1277484' ,`clientcode`='1277484' ,`dialer_status`='Contacted - Follow-Up - Generic' ,`dialer_substatus`='Customer - No Requirement - Not to be called back within same month' ,`dialer_callback`='' ,`dialer_remarks`='' ,`dialer_flag`='' ,`dialer_lastcall`='2018-04-04 08:09:25' ,`priority`='' ,`bttc`=':' ,`service_vs_product`='' ,`resolution`='' ,`satisfaction`='' ,`final_call_assessment`='' ,`question`='1056,1058,1327,1322,2462,2515,2505,2498,1328,1329,1330,1051,1059' ,`mf_isa`='' where id='202042' limit 1;
insert into full_remark set call_id='1495493',fullremark=' customer cut the call after told personal banker he think it is a sales call ';
select distinct clientinternalid from records;
SELECT distinct question FROM questionaire_details WHERE cust_id=44008506 and question IN(1056,1058,1322,1325,1326,2485,2462,2515,2505,2498,1328,1329,1330,1051);
insert into full_remark set call_id='1495516',fullremark='';
select distinct clientinternalid from records;
insert into questionaire_details set created_at='2018-04-04 08:09:48', updated_at='2018-04-04 08:09:48', user_id='82238',cust_id='50128910',call_id='1495492',name='S SELVARAJ',number='9600013063',question_time='2018-04-04 08-06-18',question='1058',primary_question='Register for Insta Alert through NB, Branch.',primary_response=' OK',primary_text='',followup1_question='Sir I can See your have not registered for Insta Alerts .',followup1_response=' Yes',followup1_text='',followup2_question='How can I register for Insta Alerts',followup2_response=' Yes',followup2_text='',followup3_question='',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:09:48', updated_at='2018-04-04 08:09:48', user_id='82238',cust_id='50128910',call_id='1495492',name='S SELVARAJ',number='9600013063',question_time='2018-04-04 08-06-18',question='1026',primary_question='Pitch SPC, Reiterate Card Benefits',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, as I can see, you are using a normal CC and there are regular debit in the account',followup1_response=' Yes',followup1_text='',followup2_question='We have an offer of on your credit card',followup2_response=' Yes',followup2_text='',followup3_question='Pls verify you DOB & Mailing address',followup3_response=' Yes',followup3_text='',followup4_question='After positive verification, share eligibilty and explain the benefits, Ask if he would like to go for upgrade',followup4_response=' I don?t want to UG',followup4_text='',followup5_question='Thank You',followup5_response=' OK',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:09:48', updated_at='2018-04-04 08:09:48', user_id='82238',cust_id='50128910',call_id='1495492',name='S SELVARAJ',number='9600013063',question_time='2018-04-04 08-06-18',question='1322',primary_question='Understand reason for Depletion, Ask for money, add CTG',primary_response=' OK',primary_text='',followup1_question='Sir , I Can see there is not much balance in you?re A/c , Compare to earlier ',followup1_response=' Yes',followup1_text='',followup2_question='is there any funds Requirement , So that I can help for getting the Loans for you .',followup2_response=' Yes',followup2_text='',followup3_question='No issue , Sir but I request you to bring the Balance to the A/C ',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:09:48', updated_at='2018-04-04 08:09:48', user_id='82387',cust_id='40526801',call_id='1495512',name='MANIMARAN V',number='9962245275',question_time='2018-04-04 08-08-16',question='1326',primary_question='Understadn the reason ',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:09:48', updated_at='2018-04-04 08:09:48', user_id='82238',cust_id='50128910',call_id='1495492',name='S SELVARAJ',number='9600013063',question_time='2018-04-04 08-06-18',question='1328',primary_question='Identify SP/BP opportunity through flexcube statement, CBCI transaction and Register SP/BP',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='Sir, why don?t you register for smart pay
Explain beenfits of using smart pay (You will never miss you due date/ No late payment charges)',followup2_response=' Yes',followup2_text='',followup3_question='Ask for the reson',followup3_response=' Yes',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:09:48', updated_at='2018-04-04 08:09:48', user_id='82387',cust_id='40526801',call_id='1495512',name='MANIMARAN V',number='9962245275',question_time='2018-04-04 08-08-16',question='1318',primary_question='Get activated on netbanking',primary_response=' OK',primary_text='',followup1_question='',followup1_response='',followup1_text='',followup2_question='',followup2_response='',followup2_text='',followup3_question='',followup3_response='',followup3_text='',followup4_question='',followup4_response='',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into questionaire_details set created_at='2018-04-04 08:09:48', updated_at='2018-04-04 08:09:48', user_id='82238',cust_id='50128910',call_id='1495492',name='S SELVARAJ',number='9600013063',question_time='2018-04-04 08-06-18',question='1329',primary_question='Register BP through NB/MB, ATM.',primary_response=' OK',primary_text='',followup1_question='Mr / Ms XXX, I have observed that you pay you utility bill using NEFT/CC, manually every month',followup1_response=' Yes',followup1_text='',followup2_question='Sir, why don?t you register for smart pay
Explain beenfits of using smart pay (You will never miss you due date/ No late payment charges)',followup2_response=' Yes',followup2_text='',followup3_question='Explain the process to register for Bill pay via net banking',followup3_response=' Yes',followup3_text='',followup4_question='Ask customer to login to netbanking and guide for registration of bill pay',followup4_response=' OK',followup4_text='',followup5_question='',followup5_response='',followup5_text='',followup6_question='',followup6_response='',followup6_text='',followup7_question='',followup7_response='',followup7_text='';
insert into full_remark set call_id='1495518',fullremark='RNR';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495492',fullremark='';
select distinct clientinternalid from records;
select id from records where mobile like '%7904214486' OR
altphone1 like '%7904214486' OR
altphone2 like '%7904214486' OR
altphone3 like '%7904214486' OR
altphone4 like '%7904214486' OR
altphone5 like '%7904214486' OR
altphone6 like '%7904214486' OR
altphone7 like '%7904214486' OR
altphone8 like '%7904214486' OR
altphone9 like '%7904214486' OR
altphone10 like '%7904214486' and client in ('PM6OC','PM6OC_RC','null');
insert into full_remark set call_id='1495490',fullremark='ContactedOut call made on 7498423874 customer clarified their doubt abt jumbo loan emi details';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495479',fullremark='customer applied 1 month before she didnt get told about the insant card customer said she will go to branch customer going for medical for his son';
select distinct clientinternalid from records;
select distinct clientinternalid from records;
insert into full_remark set call_id='1495523',fullremark='';
insert into full_remark set call_id='1495512',fullremark='Customer need jumbo loan value of 2 lac but he is having only 50000 offer and informed to the customer ';
select distinct clientinternalid from records;
insert into full_remark set call_id='1495422',fullremark='intro call given customer asked doubt about cc payment';
select distinct clientinternalid from records;