The_Loyalty_Box - Version 1.0.0

Version Notes

The Loyalty Box – Customer Loyalty Programs for Magento

Download this release

Release Info

Developer Double-eye
Extension The_Loyalty_Box
Version 1.0.0
Comparing to
See all releases


Version 1.0.0

app/code/local/Lb/Points/Block/lbblock.php ADDED
@@ -0,0 +1,491 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Lb_Points_Block_Lbblock extends Mage_Core_Block_Template {
4
+
5
+ /**
6
+ * registration_button.
7
+ *
8
+ * This method is used to show connect with loyaltybox button
9
+ * which will open registration / login popup
10
+ * if session is already runnig for logged in user it will show users account details with available loyalty points.
11
+ *
12
+ * @version 1.0.0
13
+ *
14
+ * @author Double Eye
15
+ *
16
+ * @since 1.0.0
17
+ * @access public
18
+ *
19
+ * @static
20
+ */
21
+ public function registration_button() {
22
+
23
+ $rewardProgrammeName = Mage::getStoreConfig('lbconfig_section/lb_settings_group/reward_programme_name_field');
24
+ Lb_Points_Helper_Data::$rewardProgrammeName = $rewardProgrammeName;
25
+ if(isset($_SESSION['LB_Session']))
26
+ {
27
+ if(!empty($_SESSION['LB_Session']))
28
+ {
29
+ $LB_Session = $_SESSION['LB_Session'];
30
+ Lb_Points_Helper_Data::debug_log("Rendered session user with his LB Points", true);
31
+ ?>
32
+ <div class="connectlbbtn lb-box">
33
+ <span class="h2"><?php echo Lb_Points_Helper_Data::$rewardProgrammeName;?></span>
34
+ <div class="loyaltybox-info-contain">
35
+ <?php
36
+ if(isset($_SESSION['LB_Session']['totalRedeemPoints']))
37
+ $remainingPoints = $LB_Session['lb_points'] - $_SESSION['LB_Session']['totalRedeemPoints'];
38
+ else
39
+ $remainingPoints = $LB_Session['lb_points'];
40
+ ?>
41
+ <?php echo "<strong>Hi ".$LB_Session['Customer Name']."</strong> | <a id='lbLogout' href='javascript:void(0);'>Logout(".Lb_Points_Helper_Data::$rewardProgrammeName.")</a></br>You have ".$remainingPoints." Points in your <strong>".Lb_Points_Helper_Data::$rewardProgrammeName."</strong> account."; ?>
42
+ </div>
43
+ <div class="lbMsg"></div>
44
+ </div>
45
+ <?php
46
+ }
47
+ else
48
+ {
49
+ Lb_Points_Helper_Data::debug_log("Rendered Connect with Loyalty Box button", true);
50
+ ?>
51
+ <div class="connectlbbtn registrationBtn lb-box">
52
+ <button class="button btn-cart" onclick="return showForm('popup_form_registration')" title="Connect with <?php echo Lb_Points_Helper_Data::$rewardProgrammeName;?>" type="button"><span><span>Connect with <?php echo Lb_Points_Helper_Data::$rewardProgrammeName;?></span></span></button>
53
+ <div class="lbMsg"></div>
54
+ </div>
55
+
56
+ <script type="text/javascript">
57
+ function showForm(id){
58
+ win = new Window({ title: "Connect with Loyalty Box", zIndex:3000, destroyOnClose: true, recenterAuto:true, resizable: false, width:400, height:'auto', minimizable: true, maximizable: false, draggable: true});
59
+ win.setContent(id, false, false);
60
+ win.showCenter();
61
+ }
62
+ </script>
63
+ <?php
64
+ Lb_Points_Helper_Data::debug_log("End: Rendered Connect with Loyalty Box button", true);
65
+ }
66
+ }
67
+ else
68
+ {
69
+ Lb_Points_Helper_Data::debug_log("Rendered Connect with Loyalty Box button", true);
70
+ ?>
71
+ <div class="connectlbbtn registrationBtn lb-box">
72
+ <button class="button btn-cart" onclick="return showForm('popup_form_registration')" title="Connect with <?php echo Lb_Points_Helper_Data::$rewardProgrammeName;?>" type="button"><span><span>Connect with <?php echo Lb_Points_Helper_Data::$rewardProgrammeName;?></span></span></button>
73
+ <div class="lbMsg"></div>
74
+ </div>
75
+ <script type="text/javascript">
76
+ function showForm(id){
77
+ win = new Window({ title: "Connect with <?php echo Lb_Points_Helper_Data::$rewardProgrammeName;?>", zIndex:3000, destroyOnClose: true, recenterAuto:true, resizable: false, width:400, height:'auto', minimizable: true, maximizable: false, draggable: true});
78
+ win.setContent(id, false, false);
79
+ win.showCenter();
80
+ }
81
+ </script>
82
+ <?php
83
+ Lb_Points_Helper_Data::debug_log("End: Rendered Connect with Loyalty Box button", true);
84
+ }
85
+ }
86
+
87
+ /**
88
+ * registration_popup.
89
+ *
90
+ * This method is used to render registration/login dialog box.
91
+ *
92
+ * @version 1.0.0
93
+ *
94
+ * @author Double Eye
95
+ *
96
+ * @since 1.0.0
97
+ * @access public
98
+ *
99
+ * @static
100
+ */
101
+ public function registration_popup() {
102
+ ?>
103
+ <div style="display:none;">
104
+ <div id="popup_form_registration" class="main">
105
+ <div class="col-main" style="float: none;width:100%;">
106
+ <div class="page-title">
107
+ <h1>Connect with <?php echo Lb_Points_Helper_Data::$rewardProgrammeName;?></h1>
108
+ </div>
109
+ <div id="registerLB">
110
+ <form id="registrationForm">
111
+ <div class="fieldset">
112
+ <h2 class="legend">Registration</h2>
113
+ <p class="required">* Required Fields</p>
114
+ <div id="formRegisterSuccess" ></div>
115
+ <ul class="form-list">
116
+ <li class="fields">
117
+ <div class="field">
118
+ <label class="required" for="name"><em>*</em>Name</label>
119
+ <div class="input-box">
120
+ <input type="text" class="input-text required-entry" value="" title="Name" id="name" name="name">
121
+ </div>
122
+ </div>
123
+ <div class="field">
124
+ <label class="required" for="email"><em>*</em>Email Address</label>
125
+ <div class="input-box">
126
+ <input type="email" spellcheck="false" autocorrect="off" autocapitalize="off" class="input-text required-entry validate-email" value="" title="Email" id="email" name="email">
127
+ </div>
128
+ </div>
129
+ </li>
130
+ <li>
131
+ <label class="required" for="phonenumber"><em>*</em>Phone number</label>
132
+ <div class="input-box">
133
+ <input type="tel" class="input-text required-entry validate-number IsValidCellNumber" value="" title="Phone number" id="phonenumber" name="phonenumber">
134
+ </div>
135
+ </li>
136
+ </ul>
137
+ </div>
138
+ <div class="buttons-set lb-btn-register">
139
+ <button class="button" title="Submit" type="submit"><span><span>Submit</span></span></button>
140
+ </div>
141
+ <div class="lb-links">
142
+ <div >
143
+ Or <a href="javascript:void(0);" id="lnkLBLogin" style="color:burlywood;">login</a> if already registered.
144
+ </div>
145
+ <div>
146
+ download our <a href="javascript:void(0);" id="lnkDownloadApp" style="color:burlywood;">mobile application</a>
147
+ </div>
148
+ </div>
149
+ </form>
150
+ </div>
151
+ <div style="display:none;" id="loginLB">
152
+ <form id="loginForm">
153
+ <div class="fieldset">
154
+ <h2 class="legend">Login</h2>
155
+ <p class="required">* Required Fields</p>
156
+ <div id="formLoginLowestSuccess" ></div>
157
+ <ul class="form-list">
158
+ <li>
159
+ <label class="required" for="txtCardNumber"><em>*</em>Card Number / Phone number / OTP</label>
160
+ <div class="input-box">
161
+ <input type="tel" class="input-text required-entry validate-number IsValidCartNumber" value="" title="Telephone" id="txtCardNumber" name="txtCardNumber" >
162
+ </div>
163
+ </li>
164
+ </ul>
165
+ </div>
166
+ <div class="buttons-set lb-btn-register">
167
+ <button class="button" title="Submit" type="submit"><span><span>Submit</span></span></button>
168
+ </div>
169
+ <div class="lb-links">
170
+ <div>
171
+ Or <a href="javascript:void(0);" id="lnkLBRegister" style="color:burlywood;">click here</a> to register.
172
+ </div>
173
+ <div>
174
+ download our <a href="javascript:void(0);" id="lnkDownloadApp" style="color:burlywood;">mobile application</a>
175
+ </div>
176
+ </div>
177
+ </form>
178
+ </div>
179
+ <span id="formLoader" >
180
+ <img src="<?php echo $this->getSkinUrl("images/opc-ajax-loader.gif") ?>">
181
+ </span>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ <style>
186
+ .frm_error{
187
+ color:red;
188
+ font-size: 13px;
189
+ margin: 5px 0 0;
190
+ }
191
+ .frm_success{
192
+ color:green;
193
+ font-size: 13px;
194
+ margin: 5px 0 0;
195
+ }
196
+ #formLoader{
197
+ display:none;
198
+ }
199
+ .lb-btn-register{
200
+ margin-bottom: 5px;
201
+ }
202
+ .lb-btn-register::after {
203
+ clear: none;
204
+ content: "";
205
+ display: table;
206
+ }
207
+ .lb-links{
208
+ color: #636363;
209
+ font-family: "Helvetica Neue",Verdana,Arial,sans-serif;
210
+ font-size: 13px;
211
+ line-height: 1.5;
212
+ margin-top: -10px;
213
+ }
214
+
215
+ @media screen and (max-width: 479px) {
216
+ .lb-btn-register::after {
217
+ clear: both;
218
+ content: "";
219
+ display: table;
220
+ }
221
+ }
222
+ #popup_form_registration {
223
+ width: auto;
224
+ }
225
+ .connectlbbtn.lb-box {
226
+ clear: both;
227
+ padding:5px;
228
+ }
229
+
230
+ .registrationBtn h2 {
231
+ font-size: 12px;
232
+ font-weight: bold;
233
+ margin: 0 0 5px;
234
+ }
235
+
236
+ #formRegisterSuccess{
237
+ font-size: 13px;
238
+ margin: 5px 0 0;
239
+ color: green;
240
+ }
241
+
242
+ .dialog_content {
243
+ background-color: #F4F4F4;
244
+ color: #636363;
245
+ font-family: Tahoma,Arial,sans-serif;
246
+ font-size: 10px;
247
+ overflow: auto;
248
+ padding-bottom: 5px!important;
249
+ }
250
+
251
+ .redeem_lbpoints input {
252
+ margin-bottom: 5px;
253
+ }
254
+ .lb-redeem-wrapper{
255
+ margin-top: 5px;
256
+ display: none;
257
+ }
258
+ <?php if(strpos($_SERVER['REQUEST_URI'], '/checkout/cart/') !== false){?>
259
+ .registrationBtn{
260
+ background-color: #f4f4f4;
261
+ border: 1px solid #cccccc;
262
+ padding: 10px;
263
+ margin-bottom: 20px;
264
+ }
265
+ <?php }?>
266
+
267
+ </style>
268
+ <script type="text/javascript">
269
+
270
+ jQuery("#loginLB").hide();
271
+ jQuery("#lnkLBLogin").click(function(){
272
+ jQuery("#loginLB").show();
273
+ jQuery("#registerLB").hide();
274
+ jQuery(".dialog_content").css('height','auto');
275
+ });
276
+
277
+ jQuery("#lnkLBRegister").click(function(){
278
+ jQuery("#loginLB").hide();
279
+ jQuery("#registerLB").show();
280
+ jQuery(".dialog_content").css('height','auto');
281
+ });
282
+
283
+ Validation.add('IsValidCartNumber', 'Only 10 or 15 digits are allowed.', function(v) {
284
+ return (v.length == 10 || v.length == 15); // || /^\s+$/.test(v));
285
+ });
286
+
287
+ Validation.add('IsValidCellNumber', 'Only 10 digits are allowed.', function(v) {
288
+ return (v.length == 10); // || /^\s+$/.test(v));
289
+ });
290
+
291
+
292
+ //var dataForm = new VarienForm('lowest-form-validate', true);
293
+ var formId = 'registrationForm';
294
+ var myForm = new VarienForm(formId, true);
295
+ var handleSubmit = true;
296
+ function doAjax() {
297
+ var postUrl = "<?php echo Mage::getBaseUrl() . 'lb/index/register' ?>";
298
+ jQuery(".dialog_content").css('height','auto');
299
+ if (myForm.validator.validate()) {
300
+ var txtName = jQuery("#name");
301
+ var txtEmail = jQuery("#email");
302
+ var txtPhoneNumber = jQuery("#phonenumber");
303
+ var tips = jQuery("#formRegisterSuccess");
304
+ tips.text('');
305
+ var data = {
306
+ 'txtName': txtName.val(),
307
+ 'txtEmail': txtEmail.val(),
308
+ 'txtPhoneNumber': txtPhoneNumber.val()
309
+ };
310
+ if(handleSubmit){
311
+ handleSubmit = false;
312
+ jQuery("#formLoader").show();
313
+ jQuery.post(postUrl, data, function(response) {
314
+ handleSubmit = true;
315
+ if(response.status == '1'){
316
+ jQuery("#formLoader").hide();
317
+ tips.text(response.message).addClass( "frm_success" );
318
+ txtName.val('');
319
+ txtEmail.val('');
320
+ txtPhoneNumber.val('');
321
+ jQuery(".dialog_close").trigger('click');
322
+ window.location.reload();
323
+ }
324
+ else{
325
+ tips.text(response.message).addClass( "frm_error" );
326
+ jQuery("#formLoader").hide();
327
+ }
328
+ },'JSON');
329
+ }
330
+ }
331
+ }
332
+ // REGISTRATION CALL BACK
333
+ new Event.observe('registrationForm', 'submit', function(e){
334
+ e.stop();
335
+ doAjax();
336
+ });
337
+
338
+
339
+ // login js
340
+ var loginFormId = 'loginForm';
341
+ var loginForm = new VarienForm(loginFormId, true);
342
+ jQuery("#loginForm button").click(function(){
343
+ var postUrl = "<?php echo Mage::getBaseUrl() . 'lb/index/login' ?>";
344
+ var txtCardNumber = jQuery("#txtCardNumber").val();
345
+ jQuery(".dialog_content").css('height','auto');
346
+ if (loginForm.validator.validate()) {
347
+ jQuery("#formLoader").show();
348
+ jQuery.post(postUrl,{'txtCardNumber':txtCardNumber}, function(response) {
349
+ if(response.status == '1'){
350
+ jQuery("#formLoader").hide();
351
+ jQuery(".dialog_close").trigger('click');
352
+ Element.show('formLoginLowestSuccess');
353
+ jQuery("#formLoginLowestSuccess").html(response.message).addClass( "frm_success" );
354
+ jQuery(".connectlbbtn").html(response.replaceBtn);
355
+ window.location.reload();
356
+ }
357
+ else{
358
+ jQuery("#formLoader").hide();
359
+ Element.show('formLoginLowestSuccess');
360
+ jQuery("#formLoginLowestSuccess").html(response.message).addClass( "frm_error" );
361
+ }
362
+ },'JSON');
363
+ }
364
+ return false;
365
+ });
366
+
367
+
368
+ // Add connect with loyaltybox button to right side bar
369
+ /*if(jQuery(".cart-forms").length == 1)
370
+ {
371
+ var btnHtml = jQuery(".connectlbbtn").html();
372
+ jQuery(".connectlbbtn").html('');
373
+ jQuery(".cart-forms").prepend("<div class='discount connectlbbtn'>"+btnHtml+"</div>");
374
+
375
+ }*/
376
+ // End : Add connect with loyaltybox button to right side bar.
377
+
378
+ // LOGOUT CALL BACK
379
+ jQuery("#lbLogout").click(function(){
380
+ var postUrl = "<?php echo Mage::getBaseUrl() . 'lb/index/logout' ?>";
381
+ jQuery.post(postUrl, function(response) {
382
+ if(response.status == '1'){
383
+ window.location.reload();
384
+ }
385
+ else{
386
+ jQuery("lbMsg").html(response.message).addClass( "frm_error" );
387
+ }
388
+ },'JSON');
389
+ });
390
+ // end of logout
391
+ //end of javascript code
392
+ <?php if(strpos($_SERVER['REQUEST_URI'], '/checkout/cart/') !== false){?>
393
+ jQuery(".connectlbbtn").parent().addClass('cart-forms');
394
+ <?php }else{?>
395
+ var regBox = jQuery(".connectlbbtn");
396
+ jQuery(".add-to-cart").append(regBox);
397
+ jQuery(".add-to-cart").css("clear","both");
398
+ <?php }?>
399
+ </script>
400
+ <?php
401
+ }
402
+
403
+ /**
404
+ * redeem_points.
405
+ *
406
+ * This method is used to render Redeem Points form
407
+ *
408
+ * @version 1.0.0
409
+ *
410
+ * @author Double Eye
411
+ *
412
+ * @since 1.0.0
413
+ * @access public
414
+ *
415
+ * @static
416
+ */
417
+ public function redeem_points() {
418
+ $rewardProgrammeName = Mage::getStoreConfig('lbconfig_section/lb_settings_group/reward_programme_name_field');
419
+ Lb_Points_Helper_Data::$rewardProgrammeName = $rewardProgrammeName;
420
+ if(isset($_SESSION['LB_Session']))
421
+ {
422
+ if(!empty($_SESSION['LB_Session']))
423
+ {
424
+ $LB_Session = $_SESSION['LB_Session'];
425
+ Lb_Points_Helper_Data::debug_log("Rendered session user with his LB Points", true);
426
+ ?>
427
+ <div class="redeem_lbpoints lb-box">
428
+ <form id="frmRedeemPoints" onsubmit=" return false;">
429
+ <label>
430
+ Want to Redeem Loyalty Points? <a class="btnShowRedeem" href="javascript:void(0);" >Click here</a> to redeem.
431
+ </label>
432
+ <div class="lb-redeem-wrapper">
433
+ <label>Enter Loyalty Points</label>
434
+ <input type="text" class="input-text required-entry lb-double" value="" title="Enter Loyalty points" placeholder="Enter Loyalty points" id="txtRedeemPoints" name="txtRedeemPoints">
435
+ <div class="redeemMsg"></div>
436
+ <div class="button-wrapper">
437
+ <button id="btnRedeemPoints" value="Redeem" class="button" title="Redeem" type="button"><span><span>Redeem</span></span></button>
438
+ <!-- button value="Cancel" class="button btnShowRedeem" title="Cancel" type="button"><span><span>Cancel</span></span></button -->
439
+ </div>
440
+
441
+ </div>
442
+ </form>
443
+ </div>
444
+ <script>
445
+ // Redeem points
446
+ jQuery(".btnShowRedeem").click(function(){
447
+ jQuery(".lb-redeem-wrapper").toggle('display');
448
+ });
449
+
450
+ var frmRedeemPoints = 'frmRedeemPoints';
451
+ var redeemPoints = new VarienForm(frmRedeemPoints, true);
452
+ Validation.add('lb-double', 'Please enter a number greater than 0 in this field.', function(v) {
453
+ return (v > 0); // || /^\s+$/.test(v));
454
+ });
455
+ jQuery("#btnRedeemPoints").click(function(){
456
+ if (redeemPoints.validator.validate()) {
457
+ jQuery(this).attr('disabled','disabled');
458
+
459
+ var postUrl = "<?php echo Mage::getBaseUrl() . 'lb/index/redeem' ?>";
460
+ var txtRedeemPoints = jQuery("#txtRedeemPoints").val();
461
+ jQuery.post(postUrl,{'txtRedeemPoints':txtRedeemPoints},function(response) {
462
+ if(response.status == '1'){
463
+ jQuery(".redeemMsg").html(response.message).addClass( "frm_success" );
464
+ window.location.reload();
465
+ }
466
+ else{
467
+ jQuery(".redeemMsg").html(response.message).addClass( "frm_error" );
468
+ jQuery("#btnRedeemPoints").removeAttr('disabled');
469
+ }
470
+ },'JSON');
471
+ }
472
+ });
473
+ </script>
474
+ <style>
475
+ .lb-box
476
+ {
477
+ background-color: #f4f4f4;
478
+ border: 1px solid #cccccc;
479
+ padding: 10px;
480
+ margin-bottom: 20px;
481
+ }
482
+ .lb-redeem-wrapper label,.redeemMsg{
483
+ padding-bottom: 5px;
484
+ }
485
+ </style>
486
+ <?php
487
+ }
488
+ }
489
+ }
490
+
491
+ }
app/code/local/Lb/Points/Helper/Data.php ADDED
@@ -0,0 +1,1429 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?PHP
2
+ /**
3
+ * Copyright 2015 Loyaltybox.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may
6
+ * not use this file except in compliance with the License. You may obtain
7
+ * a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
+ * License for the specific language governing permissions and limitations
15
+ * under the License.
16
+ */
17
+ if (!function_exists('curl_init')) {
18
+ trigger_error('Loyaltybox needs the CURL PHP extension.');
19
+ }
20
+
21
+ if (!function_exists('json_decode')) {
22
+ trigger_error('Loyaltybox needs the JSON PHP extension.');
23
+ }
24
+
25
+ class LoyaltyboxException extends Exception
26
+ {
27
+ public function __construct($error = array())
28
+ {
29
+ if (!isset($error['code'])) {
30
+ $error['code'] = -1;
31
+ }
32
+ if (!isset($error['message'])) {
33
+ $error['message'] = '';
34
+ }
35
+
36
+ parent::__construct($error['message'], $error['code']);
37
+ }
38
+ }
39
+
40
+ class Lb_Points_Helper_Data extends Mage_Core_Helper_Abstract
41
+ {
42
+ /**
43
+ * @var string
44
+ */
45
+ public static $signature = 'PHP API'; // Set this value to whatever the API is used for
46
+
47
+ /**
48
+ * @var bool
49
+ */
50
+ public static $fail_silently = false; // Set this to false in dev env
51
+
52
+ /**
53
+ * @var string
54
+ */
55
+ public static $endpoint = "http://webservice.theloyaltybox.com/RetailConnect_LineItems.asmx?WSDL";
56
+
57
+ /**
58
+ * @var string
59
+ */
60
+ public static $access_token_path = 'oauth/access_token';
61
+
62
+ /**
63
+ * @var string
64
+ */
65
+ //public static $stateAPIendpoint = "http://api.loyaltybox.sandip/api/v1/";
66
+ //public static $stateAPIendpoint = "http://api.loyaltybox.qa.ext.desds.com:8080/api/v1/";
67
+ public static $stateAPIendpoint = "http://ec2-54-85-223-200.compute-1.amazonaws.com/api/v1/";
68
+
69
+ /**
70
+ * @var string
71
+ */
72
+ const VERSION = '1';
73
+
74
+ /**
75
+ * @var string
76
+ */
77
+ const OPT_NAME = 'wc_loyaltybox_options';
78
+
79
+ /**
80
+ * @var string
81
+ */
82
+ const DS = '/';
83
+
84
+ /**
85
+ * @var string
86
+ */
87
+ const LOYALTYBOX_DEBUG_LOG = "loyaltybox.log";
88
+
89
+ /**
90
+ * @var string
91
+ */
92
+ const LOYALTYBOX_ERROR_LOG = 'error.log';
93
+
94
+ /**
95
+ * @var string
96
+ */
97
+ const LOYALTYBOX_REQUEST_LOG = 'request_log.log';
98
+
99
+ /**
100
+ * @var bool
101
+ */
102
+ const REQUEST_DEBUG_MODE = true;
103
+
104
+ /**
105
+ * @var string
106
+ */
107
+ const MODULE_NAME = 'Lb_Points';
108
+
109
+ /**
110
+ * @var int
111
+ */
112
+ private static $error_log_type = 0; // PHP error_log: $message_type argument
113
+
114
+ /**
115
+ * @var string
116
+ */
117
+ private static $error_log_destination = ''; // PHP error_log: $destination argument
118
+
119
+ /**
120
+ * @var string
121
+ */
122
+ private static $error_log_extra = ''; // PHP error_log: $extra_headers argument
123
+
124
+ /**
125
+ * Set this by calling init().
126
+ *
127
+ * @var int
128
+ */
129
+ public static $rewardProgrammeName;
130
+
131
+ /**
132
+ * Set this by calling init().
133
+ *
134
+ * @var int
135
+ */
136
+ public static $clientId;
137
+
138
+ /**
139
+ * Set this by calling init().
140
+ *
141
+ * @var int
142
+ */
143
+ public static $locationId;
144
+
145
+ /**
146
+ * Set this by calling init().
147
+ *
148
+ * @var string
149
+ */
150
+ public static $userName;
151
+
152
+ /**
153
+ * Set this by calling init().
154
+ *
155
+ * @var string
156
+ */
157
+ public static $password;
158
+
159
+ /**
160
+ * Set this by calling init().
161
+ *
162
+ * @var string
163
+ */
164
+ public static $friendly_message;
165
+
166
+ /**
167
+ * Set this by calling init().
168
+ *
169
+ * @var int
170
+ */
171
+ public static $lb_request_id;
172
+
173
+ // Consider using init instead of object construct
174
+ public function __construct()
175
+ {
176
+
177
+ }
178
+
179
+ /**
180
+ * debug_log.
181
+ *
182
+ * A method to log information to disk
183
+ *
184
+ * @version 1.0.0
185
+ *
186
+ * @author Double Eye
187
+ *
188
+ * @since 1.0.0
189
+ * @access public
190
+ *
191
+ * @param $info
192
+ * @param bool $first_line
193
+ *
194
+ * @static
195
+ */
196
+ public static function debug_log($info, $first_line = false)
197
+ {
198
+ if (DEBUG_MODE) {
199
+ $log = date('Y-m-d H:i:s.uP')." => ".$info.PHP_EOL;
200
+ if ($first_line) {
201
+ $log = PHP_EOL.PHP_EOL.$log;
202
+ }
203
+ $path = Mage::getModuleDir('Model', self::MODULE_NAME) .self::DS. self::LOYALTYBOX_DEBUG_LOG;
204
+ file_put_contents($path, $log, FILE_APPEND);
205
+ }
206
+ }
207
+
208
+ /**
209
+ * getLbRequestId.
210
+ *
211
+ * Get autopopulated request id from state api use as request id for Loyalty Box API
212
+ *
213
+ * @version 1.0.0
214
+ *
215
+ * @author Double Eye
216
+ *
217
+ * @since 1.0.0
218
+ * @access public
219
+ *
220
+ * @param string $merchantId
221
+ *
222
+ * @return int|mixed|void
223
+ * @static
224
+ */
225
+ public static function getLbRequestId($merchantId = '')
226
+ {
227
+
228
+ $path = "lbrequest?merchantId=".$merchantId;
229
+ $orderStatus = self::state_api_make_request($path, null, null, 'GET');
230
+
231
+ if(!empty($orderStatus)){
232
+ return $orderStatus['lbrequest_id'];
233
+ }
234
+ else
235
+ return 0;
236
+ }
237
+
238
+ /**
239
+ * getCardPoints.
240
+ *
241
+ * Get points balance for card number.
242
+ *
243
+ * @version 1.0.0
244
+ *
245
+ * @author Double Eye
246
+ *
247
+ * @since 1.0.0
248
+ * @access public
249
+ *
250
+ * @param string $CardOrPhoneNumber
251
+ *
252
+ * @return array|int|mixed|void
253
+ * @static
254
+ */
255
+ public static function getCardPoints($CardOrPhoneNumber = '')
256
+ {
257
+ if (!empty($CardOrPhoneNumber)) {
258
+ $clientId = self::$clientId;
259
+ $locationId = self::$locationId;
260
+ $userName = self::$userName;
261
+ $password = self::$password;
262
+
263
+ $txtCardNumber = $CardOrPhoneNumber;
264
+
265
+ $paramArray = array(
266
+ 'Inquiry' => array(
267
+ 'p_objRequest' => array(
268
+ 'standardHeader' => array(
269
+ 'requestId' => self::$lb_request_id,
270
+ 'localeId' => '',
271
+ 'systemId' => '',
272
+ 'clientId' => $clientId,
273
+ 'locationId' => $locationId,
274
+ 'terminalId' => '',
275
+ 'terminalDateTime' => date('Y-m-d H:i:s'),
276
+ 'initiatorType' => '',
277
+ 'initiatorId' => '',
278
+ 'initiatorPassword' => '',
279
+ 'externalId' => '',
280
+ 'batchId' => '',
281
+ 'batchReference' => '',
282
+ ),
283
+ 'account' => array(
284
+ 'accountId' => $txtCardNumber,//$txtPhoneNumber
285
+ 'pin' => '',
286
+ 'entryType' => 'W',
287
+ ),
288
+ 'customerInfo' => array(
289
+ 'customerType' => '',
290
+ 'firstName' => '',
291
+ 'middleName' => '',
292
+ 'lastName' => '',
293
+ 'address1' => '',
294
+ 'address2' => '',
295
+ 'city' => '',
296
+ 'state' => '',
297
+ 'postal' => '',
298
+ 'country' => '',
299
+ 'mailPref' => '',
300
+ 'phone' => $txtCardNumber,
301
+ 'isMobile' => 'Y',
302
+ 'phonePref' => '',
303
+ 'email' => '',
304
+ 'emailPref' => '',
305
+ 'birthday' => '',
306
+ 'anniversary' => '',
307
+ 'gender' => '',
308
+ ),
309
+ ),
310
+ 'netCredentials' => array(
311
+ 'UserName' => $userName,
312
+ 'Password' => $password,
313
+ 'Domain' => '',
314
+ ),
315
+ ),
316
+ );
317
+ $result = self::makeRequest($paramArray, 'Inquiry');
318
+
319
+ return $result;
320
+ } else {
321
+ return 0;
322
+ }
323
+ }
324
+
325
+ /**
326
+ * handleError.
327
+ *
328
+ * This function is use to handle errors
329
+ *
330
+ * @version 1.0.0
331
+ *
332
+ * @author Double Eye
333
+ *
334
+ * @since 1.0.0
335
+ * @access public
336
+ *
337
+ * @param string $error_string
338
+ * @param bool $fail_silently
339
+ * @return string
340
+ * @throws LoyaltyboxException
341
+ *
342
+ * @static
343
+ */
344
+ public static function handleError($error_string, $fail_silently = null)
345
+ {
346
+ if ($fail_silently === null) {
347
+ $fail_silently = self::$fail_silently;
348
+ }
349
+
350
+ $error = new LoyaltyboxException($error_string);
351
+ if ($fail_silently) {
352
+ $log = PHP_EOL.PHP_EOL.PHP_EOL
353
+ .'Exception at '.date('Y-m-d H:i:s.uP').PHP_EOL
354
+ .self::$signature.PHP_EOL
355
+ .$error->getMessage().PHP_EOL;
356
+ error_log($log, self::$error_log_type, self::$error_log_destination, self::$error_log_extra);
357
+ error_log($error, self::$error_log_type, self::$error_log_destination, self::$error_log_extra);
358
+
359
+ return;
360
+ } else {
361
+ throw $error;
362
+ }
363
+ return;
364
+ }
365
+
366
+ /**
367
+ * init.
368
+ *
369
+ * A method to intitialise loyaltybox options
370
+ *
371
+ * @version 1.0.0
372
+ *
373
+ * @author Double Eye
374
+ *
375
+ * @since 1.0.0
376
+ * @access public
377
+ *
378
+ * @param int $clientId
379
+ * @param int $locationId
380
+ * @param string $userName
381
+ * @param string $password
382
+ * @param string $friendly_message
383
+ *
384
+ * @static
385
+ */
386
+ public static function init($lb_request_id)
387
+ {
388
+ self::$rewardProgrammeName = Mage::getStoreConfig('lbconfig_section/lb_settings_group/reward_programme_name_field');
389
+ self::$clientId = Mage::getStoreConfig('lbconfig_section/lb_settings_group/client_id_field');
390
+ self::$locationId = Mage::getStoreConfig('lbconfig_section/lb_settings_group/location_id_field');
391
+ self::$userName = Mage::getStoreConfig('lbconfig_section/lb_settings_group/api_username_field');
392
+ self::$password = Mage::getStoreConfig('lbconfig_section/lb_settings_group/api_password_field');
393
+ self::$friendly_message = Mage::getStoreConfig('lbconfig_section/lb_settings_group/friendly_message_field');
394
+ self::$lb_request_id = $lb_request_id;
395
+ self::debug_log('CALLED STATE API: initialies all vars with request id-'.$lb_request_id,true);
396
+ }
397
+
398
+ /**
399
+ * issuePoints.
400
+ *
401
+ * Submit issue points request to LoyaltyBox.
402
+ *
403
+ * @version 1.0.0
404
+ *
405
+ * @author Double Eye
406
+ *
407
+ * @since 1.0.0
408
+ * @access public
409
+ *
410
+ * @param string $CardOrPhoneNumber
411
+ * @param array $lineItems
412
+ * @param double $enteredAmount
413
+ *
414
+ * @return array|mixed|void
415
+ * @static
416
+ */
417
+ public static function issuePoints($CardOrPhoneNumber,$lineItems,$enteredAmount)
418
+ {
419
+ $clientId = self::$clientId;
420
+ $locationId = self::$locationId;
421
+ $userName = self::$userName;
422
+ $password = self::$password;
423
+ $paramArray = array(
424
+ 'UpdateSale' => array(
425
+ 'p_objrequest' => array(
426
+ 'transactionTypeId' => 1,
427
+ 'tenderTypeId' => 1,
428
+ 'standardHeader' => array(
429
+ 'requestId' => self::$lb_request_id,
430
+ 'localeId' => '',
431
+ 'systemId' => '',
432
+ 'clientId' => $clientId,
433
+ 'locationId' => $locationId,
434
+ 'terminalId' => '',
435
+ 'terminalDateTime' => date('Y-m-d H:i:s'),
436
+ 'initiatorType' => '',
437
+ 'initiatorId' => '',
438
+ 'initiatorPassword' => '',
439
+ 'externalId' => '',
440
+ 'batchId' => '',
441
+ 'batchReference' => '',
442
+ ),
443
+ 'account' => array(
444
+ 'accountId' => $CardOrPhoneNumber,//$txtPhoneNumber
445
+ 'pin' => '',
446
+ 'entryType' => 'W',
447
+ ),
448
+ 'activating' => 'Y',
449
+ 'amount' => array(
450
+ 'valueCode' => 'ZAR',
451
+ 'enteredAmount' => $enteredAmount,//,
452
+ //'nsfAllowed' => 'N'
453
+ ),
454
+ 'lineItems' => $lineItems,
455
+ ),
456
+ 'netCredentials' => array(
457
+ 'UserName' => $userName,
458
+ 'Password' => $password,
459
+ 'Domain' => '',
460
+ ),
461
+ ),
462
+ );
463
+ $result = self::makeRequest($paramArray, 'UpdateSale');
464
+
465
+ return $result;
466
+ }
467
+
468
+ /**
469
+ * logError.
470
+ *
471
+ * A method to log errors information to disk
472
+ *
473
+ * @version 1.0.0
474
+ *
475
+ * @author Double Eye
476
+ *
477
+ * @since 1.0.0
478
+ * @access public
479
+ *
480
+ * @param $info
481
+ * @param bool $first_line
482
+ *
483
+ * @static
484
+ */
485
+ public static function logError($info, $first_line = false)
486
+ {
487
+ $log = date('Y-m-d H:i:s.uP')." => ".$info.PHP_EOL;
488
+ if ($first_line) {
489
+ $log = PHP_EOL.PHP_EOL.$log;
490
+ }
491
+ $path = Mage::getModuleDir('Model', self::MODULE_NAME) .self::DS. self::LOYALTYBOX_ERROR_LOG;
492
+ file_put_contents($path , $log, FILE_APPEND);
493
+ }
494
+
495
+ /**
496
+ * makeRequest.
497
+ *
498
+ * Builds a request from an array and sends it to Loyalty Box
499
+ *
500
+ * @version 1.0.0
501
+ *
502
+ * @author Double Eye
503
+ *
504
+ * @since 1.0.0
505
+ * @access public
506
+ *
507
+ * @param array $paramArray
508
+ * @param string $methodCall
509
+ * @param bool $getDetails
510
+ *
511
+ * @return array|mixed|void
512
+ *
513
+ * @static
514
+ *
515
+ */
516
+ public static function makeRequest($paramArray = null, $methodCall = null, $getDetails = FALSE)
517
+ {
518
+ $url = self::$endpoint;
519
+ try {
520
+ $client = new SoapClient($url, array('trace' => 1));
521
+ if ($methodCall == 'Enrollment') {
522
+ $resultInquiry = $client->__call('Inquiry', $paramArray);
523
+ $resultUpdateClient = $client->__call('UpdateClient', $paramArray);
524
+
525
+ return array('Inquiry' => $resultInquiry, 'UpdateClient' => $resultUpdateClient);
526
+ } else {
527
+ $result = $client->__call($methodCall, $paramArray);
528
+ if(REQUEST_DEBUG_MODE){
529
+ @ob_start();
530
+ print_r($result);
531
+ $resultContent = ob_get_contents();
532
+ @ob_clean();
533
+ $request = $client->__getLastRequest();
534
+ $path = Mage::getModuleDir('Model', self::MODULE_NAME) .self::DS. self::LOYALTYBOX_REQUEST_LOG;
535
+ file_put_contents($path, " ".$methodCall."-".date('Y-m-d H:i:s.uP')." ".$info.PHP_EOL." ", FILE_APPEND);
536
+ file_put_contents($path, $request, FILE_APPEND);
537
+ file_put_contents($path, $resultContent, FILE_APPEND);
538
+ }
539
+ if ($getDetails) {
540
+ $request = $client->__getLastRequest();
541
+ return array('request' => $request,'response' => $result);
542
+ } else {
543
+ return $result;
544
+ }
545
+ }
546
+ } catch (Exception $e) {
547
+ $error = array('message' => $e->getMessage(),'code' => $e->getCode());
548
+ return self::handleError($error);
549
+ }
550
+ }
551
+
552
+ /**
553
+ * newBasketState.
554
+ *
555
+ * Create basket state.
556
+ *
557
+ * @version 1.0.0
558
+ *
559
+ * @author Double Eye
560
+ *
561
+ * @since 1.0.0
562
+ * @access public
563
+ *
564
+ * @param int $cartId
565
+ * @param int $merchantId
566
+ * @param double $basketTotal
567
+ * @param int $lbRef
568
+ * @param double $discounts
569
+ * @param string $basketState
570
+ * @param double $earnPoints
571
+ * @param double $redeemPoints
572
+ * @param int $basketId
573
+ *
574
+ * @static
575
+ */
576
+ public static function newBasketState($cartId, $merchantId, $basketTotal, $lbRef, $lbCustomerName, $discounts, $basketState, $earnPoints =0, $redeemPoints =0, $basketId = 0,$orderId = 0,$isLoyaltyIssued = 0)
577
+ {
578
+ $data = array(
579
+ 'cartId' =>$cartId,
580
+ 'merchantId' =>$merchantId,
581
+ 'basketTotal' =>$basketTotal,
582
+ 'lbRef' =>$lbRef,
583
+ 'lbCustomerName' =>$lbCustomerName,
584
+ 'earnPoints' =>$earnPoints,
585
+ 'redeemPoints' =>$redeemPoints,
586
+ 'discounts' =>$discounts,
587
+ 'basketState' =>$basketState,
588
+ 'basketId' =>$basketId,
589
+ 'orderId' =>$orderId,
590
+ 'isLoyaltyIssued' =>$isLoyaltyIssued
591
+ );
592
+ $resultData = array();
593
+ if($basketId > 0)
594
+ {
595
+ $path = 'basket/'.$basketId;
596
+ $resultData = self::state_api_make_request($path, $data, null, 'PUT');
597
+ }
598
+ else
599
+ $resultData = self::state_api_make_request('basket', $data, null, 'POST');
600
+
601
+ self::debug_log('CALLED STATE API: Status-'.$resultData['status'].' Message-'.$resultData['message'],true);
602
+ return $resultData;
603
+ }
604
+
605
+ /**
606
+ * newOrderStatus.
607
+ *
608
+ * Get order status for new order after checkout completed successfully.
609
+ *
610
+ * @version 1.0.0
611
+ *
612
+ * @author Double Eye
613
+ *
614
+ * @since 1.0.0
615
+ * @access public
616
+ *
617
+ * @param int $orderId
618
+ * @param int $merchantId
619
+ *
620
+ * @static
621
+ *
622
+ * @return bool
623
+ */
624
+ public static function newOrderStatus($orderId,$merchantId){
625
+ $path = "basket/order/".$orderId."/".$merchantId;
626
+ $orderStatus = self::state_api_make_request($path, null, null, 'GET');
627
+ if(!empty($orderStatus)){
628
+ return $orderStatus['loyalty_issued'];
629
+ }
630
+ else
631
+ return 0;
632
+ }
633
+
634
+ /**
635
+ * registerUser.
636
+ *
637
+ * Calls LoyaltyBox and attempts to register a new user with the supplied details for this store.
638
+ *
639
+ * @version 1.0.0
640
+ *
641
+ * @author Double Eye
642
+ *
643
+ * @since 1.0.0
644
+ * @access public
645
+ *
646
+ * @param $txtName
647
+ * @param $txtEmail
648
+ * @param $txtPhoneNumber
649
+ *
650
+ * @return array|mixed|void
651
+ * @static
652
+ */
653
+ public static function registerUser($txtName,$txtEmail,$txtPhoneNumber)
654
+ {
655
+ $returnArr = array();
656
+ $clientId = self::$clientId;
657
+ $locationId = self::$locationId;
658
+ $userName = self::$userName;
659
+ $password = self::$password;
660
+ $paramArray = array(
661
+ 'Inquiry' => array(
662
+ 'p_objRequest' => array(
663
+ 'standardHeader' => array(
664
+ 'requestId' => self::$lb_request_id,
665
+ 'localeId' => '',
666
+ 'systemId' => '',
667
+ 'clientId' => $clientId,
668
+ 'locationId' => $locationId,
669
+ 'terminalId' => '',
670
+ 'terminalDateTime' => date('Y-m-d H:i:s'),
671
+ 'initiatorType' => '',
672
+ 'initiatorId' => '',
673
+ 'initiatorPassword' => '',
674
+ 'externalId' => '',
675
+ 'batchId' => '',
676
+ 'batchReference' => '',
677
+ ),
678
+ 'account' => array(
679
+ 'accountId' => $txtPhoneNumber,//$txtPhoneNumber
680
+ 'pin' => '',
681
+ 'entryType' => 'W',
682
+ ),
683
+ 'customerInfo' => array(
684
+ 'customerType' => '',
685
+ 'firstName' => $txtName,
686
+ 'middleName' => '',
687
+ 'lastName' => '',
688
+ 'address1' => '',
689
+ 'address2' => '',
690
+ 'city' => '',
691
+ 'state' => '',
692
+ 'postal' => '',
693
+ 'country' => '',
694
+ 'mailPref' => '',
695
+ 'phone' => $txtPhoneNumber,
696
+ 'isMobile' => 'Y',
697
+ 'phonePref' => '',
698
+ 'email' => $txtEmail,
699
+ 'emailPref' => '',
700
+ 'birthday' => '',
701
+ 'anniversary' => '',
702
+ 'gender' => '',
703
+ ),
704
+ ),
705
+ 'netCredentials' => array(
706
+ 'UserName' => $userName,
707
+ 'Password' => $password,
708
+ 'Domain' => '',
709
+ ),
710
+ ),
711
+ );
712
+ $result = self::makeRequest($paramArray, 'UpdateClient');
713
+
714
+ self::debug_log("LB API Called : UpdateClient to register new user", true);
715
+
716
+ $UpdateClientResult = $result->UpdateClientResult;
717
+ $standardHeader = $UpdateClientResult->standardHeader;
718
+
719
+ if ($standardHeader->status == 'A') {
720
+ //$result = 'You are successfully registered with Loyalty Box and your Card number is:8888888888.';
721
+ self::debug_log("Response : New user is successfully registered with Loyalty Box. ", true);
722
+ $customerInfo = $UpdateClientResult->customerInfo;
723
+ $returnArr = array('status' => 1, 'message' => self::$friendly_message);
724
+
725
+ // perform login for current registered user
726
+ $balances = $UpdateClientResult->balances;
727
+ $firstName = "Guest";
728
+ if (!empty($customerInfo->firstName)) {
729
+ $firstName = $customerInfo->firstName;
730
+ }
731
+
732
+ $lb_discount = 0;
733
+ $lb_discount_difference = 0;
734
+ $lb_discount_exchangeRate = 0;
735
+
736
+ $lb_points = 0;
737
+ $lb_points_difference = 0;
738
+ $lb_points_exchangeRate = 0;
739
+
740
+ $lb_zar = 0;
741
+ $lb_zar_difference = 0;
742
+ $lb_zar_exchangeRate = 0;
743
+
744
+ if (!empty($balances)) {
745
+ foreach ($balances->balance as $lb_bal) {
746
+ if ($lb_bal->valueCode == 'Discount') {
747
+ $lb_discount = $lb_bal->amount;
748
+ $lb_discount_difference = $lb_bal->difference;
749
+ $lb_discount_exchangeRate = $lb_bal->exchangeRate;
750
+ } elseif ($lb_bal->valueCode == 'Points') {
751
+ $lb_points = $lb_bal->amount;
752
+ $lb_points_difference = $lb_bal->difference;
753
+ $lb_points_exchangeRate = $lb_bal->exchangeRate;
754
+ } elseif ($lb_bal->valueCode == 'ZAR') {
755
+ $lb_zar = $lb_bal->amount;
756
+ $lb_zar_difference = $lb_bal->difference;
757
+ $lb_zar_exchangeRate = $lb_bal->exchangeRate;
758
+ }
759
+ }
760
+ }
761
+
762
+ @session_start();
763
+ $_SESSION['LB_Session'] = array(
764
+ 'Customer Name' => $firstName,
765
+ 'Phone Number' => $customerInfo->phone,
766
+ 'Customer_email' => $customerInfo->email,
767
+ 'lb_discount' => $lb_discount,
768
+ 'lb_discount_difference' => $lb_discount_difference,
769
+ 'lb_discount_exchangeRate' => $lb_discount_exchangeRate,
770
+ 'lb_points' => $lb_points,
771
+ 'lb_points_difference' => $lb_points_difference,
772
+ 'lb_points_exchangeRate' => $lb_points_exchangeRate,
773
+ 'lb_zar' => $lb_zar,
774
+ 'lb_zar_difference' => $lb_zar_difference,
775
+ 'lb_zar_exchangeRate' => $lb_zar_exchangeRate,
776
+ );
777
+ //print_r($_SESSION['LB_Session']);
778
+ $replaceBtn = "<span class='h2'>".self::$rewardProgrammeName."</span><div class='loyaltybox-info-contain'><strong>Hi " . $_SESSION['LB_Session']['Customer Name'] . "</strong> | <a id='lbLogout' href='javascript:void(0);'>Logout(".self::$rewardProgrammeName.")</a></br>You have " . $_SESSION['LB_Session']['lb_points'] . " Points in your <strong>" . self::$rewardProgrammeName . "</strong> account.</div>";
779
+ $returnArr = array('status' => 1, 'message' => self::$friendly_message, 'replaceBtn' => $replaceBtn);
780
+
781
+ // end login
782
+
783
+
784
+ } else {
785
+ $errorMessage = $UpdateClientResult->errorMessage;
786
+ $errorCode = $errorMessage->errorCode;
787
+ self::debug_log("Response : ".$errorMessage->briefMessage, true);
788
+ if ($errorCode == 6) {
789
+ // DO IT AGAIN TO ENROL
790
+ //echo "do enrollment";
791
+ $resultInquiry = self::makeRequest($paramArray, 'Inquiry');
792
+ self::debug_log("LB API Called : Inquiry - to enroll new user", true);
793
+
794
+ $result = self::makeRequest($paramArray, 'UpdateClient');
795
+ self::debug_log("LB API Called : UpdateClient - to enroll new user", true);
796
+
797
+ $UpdateClientResult = $result->UpdateClientResult;
798
+ $standardHeader = $UpdateClientResult->standardHeader;
799
+ if ($standardHeader->status == 'A') {
800
+ //$result = 'You are successfully registered with Loyalty Box and your Card number is:8888888888.';
801
+ $customerInfo = $UpdateClientResult->customerInfo;
802
+ $returnArr = array('status' => 1, 'message' => self::$friendly_message);
803
+ // perform login for current registered user
804
+ $balances = $UpdateClientResult->balances;
805
+ $firstName = "Guest";
806
+ if (!empty($customerInfo->firstName)) {
807
+ $firstName = $customerInfo->firstName;
808
+ }
809
+
810
+ $lb_discount = 0;
811
+ $lb_discount_difference = 0;
812
+ $lb_discount_exchangeRate = 0;
813
+
814
+ $lb_points = 0;
815
+ $lb_points_difference = 0;
816
+ $lb_points_exchangeRate = 0;
817
+
818
+ $lb_zar = 0;
819
+ $lb_zar_difference = 0;
820
+ $lb_zar_exchangeRate = 0;
821
+
822
+ if (!empty($balances)) {
823
+ foreach ($balances->balance as $lb_bal) {
824
+ if ($lb_bal->valueCode == 'Discount') {
825
+ $lb_discount = $lb_bal->amount;
826
+ $lb_discount_difference = $lb_bal->difference;
827
+ $lb_discount_exchangeRate = $lb_bal->exchangeRate;
828
+ } elseif ($lb_bal->valueCode == 'Points') {
829
+ $lb_points = $lb_bal->amount;
830
+ $lb_points_difference = $lb_bal->difference;
831
+ $lb_points_exchangeRate = $lb_bal->exchangeRate;
832
+ } elseif ($lb_bal->valueCode == 'ZAR') {
833
+ $lb_zar = $lb_bal->amount;
834
+ $lb_zar_difference = $lb_bal->difference;
835
+ $lb_zar_exchangeRate = $lb_bal->exchangeRate;
836
+ }
837
+ }
838
+ }
839
+
840
+ @session_start();
841
+ $_SESSION['LB_Session'] = array(
842
+ 'Customer Name' => $firstName,
843
+ 'Phone Number' => $customerInfo->phone,
844
+ 'Customer_email' => $customerInfo->email,
845
+ 'lb_discount' => $lb_discount,
846
+ 'lb_discount_difference' => $lb_discount_difference,
847
+ 'lb_discount_exchangeRate' => $lb_discount_exchangeRate,
848
+ 'lb_points' => $lb_points,
849
+ 'lb_points_difference' => $lb_points_difference,
850
+ 'lb_points_exchangeRate' => $lb_points_exchangeRate,
851
+ 'lb_zar' => $lb_zar,
852
+ 'lb_zar_difference' => $lb_zar_difference,
853
+ 'lb_zar_exchangeRate' => $lb_zar_exchangeRate,
854
+ );
855
+ //print_r($_SESSION['LB_Session']);
856
+ $replaceBtn = "<div class='loyaltybox-info-contain'><strong>Hi " . $_SESSION['LB_Session']['Customer Name'] . "</strong> | <a id='lbLogout' href='javascript:void(0);'>Logout(".self::$rewardProgrammeName.")</a></br>You have " . $_SESSION['LB_Session']['lb_points'] . " Points in your <strong>" . self::$rewardProgrammeName . "</strong> account.</div>";
857
+ $returnArr = array('status' => 1, 'message' => self::$friendly_message, 'replaceBtn' => $replaceBtn);
858
+
859
+ // end login
860
+ } else {
861
+ $errorMessage = $UpdateClientResult->errorMessage;
862
+ $errorCode = $errorMessage->errorCode;
863
+ self::debug_log("Response : ".$errorMessage->briefMessage, true);
864
+ $returnArr = array('status' => 0, 'message' => $errorMessage->briefMessage);
865
+ }
866
+ // END OF ENROL
867
+ } else {
868
+ self::debug_log("Response : ".$errorMessage->briefMessage, true);
869
+ $returnArr = array('status' => 0, 'message' => $errorMessage->briefMessage);
870
+ }
871
+
872
+ }
873
+ return $returnArr;
874
+ }
875
+
876
+ /**
877
+ * redeemPoints.
878
+ *
879
+ * Submit redeem points for cash to LoyaltyBox.
880
+ *
881
+ * @version 1.0.0
882
+ *
883
+ * @author Double Eye
884
+ *
885
+ * @since 1.0.0
886
+ * @access public
887
+ *
888
+ * @param string $CardOrPhoneNumber
889
+ * @param array $lineItems
890
+ * @param double $txtRedeemPoints
891
+ *
892
+ * @return array|mixed|void
893
+ * @static
894
+ */
895
+ public static function redeemPoints($CardOrPhoneNumber,$lineItems,$txtRedeemPoints)
896
+ {
897
+ $clientId = self::$clientId;
898
+ $locationId = self::$locationId;
899
+ $userName = self::$userName;
900
+ $password = self::$password;
901
+ $paramArray = array(
902
+ 'UpdateSale' => array(
903
+ 'p_objrequest' => array(
904
+ 'transactionTypeId' => 4,
905
+ 'tenderTypeId' => 5,
906
+ 'standardHeader' => array(
907
+ 'requestId' => self::$lb_request_id,
908
+ 'localeId' => '',
909
+ 'systemId' => '',
910
+ 'clientId' => $clientId,
911
+ 'locationId' => $locationId,
912
+ 'terminalId' => '',
913
+ 'terminalDateTime' => date('Y-m-d H:i:s'),
914
+ 'initiatorType' => '',
915
+ 'initiatorId' => '',
916
+ 'initiatorPassword' => '',
917
+ 'externalId' => '',
918
+ 'batchId' => '',
919
+ 'batchReference' => '',
920
+ ),
921
+ 'account' => array(
922
+ 'accountId' => $CardOrPhoneNumber,//$txtPhoneNumber
923
+ 'pin' => '',
924
+ 'entryType' => 'K',
925
+ ),
926
+ 'activating' => '',
927
+ 'amount' => array(
928
+ 'valueCode' => 'Points',
929
+ 'enteredAmount' => $txtRedeemPoints,//,
930
+ //'nsfAllowed' => 'N'
931
+ ),
932
+ 'customerInfo' => array(
933
+ 'customerType' => '',
934
+ 'firstName' => '',
935
+ 'middleName' => '',
936
+ 'lastName' => '',
937
+ 'address1' => '',
938
+ 'address2' => '',
939
+ 'city' => '',
940
+ 'state' => '',
941
+ 'postal' => '',
942
+ 'country' => '',
943
+ 'mailPref' => '',
944
+ 'phone' => '',
945
+ 'isMobile' => '',
946
+ 'phonePref' => '',
947
+ 'email' => '',
948
+ 'emailPref' => '',
949
+ 'birthday' => '',
950
+ 'anniversary' => '',
951
+ 'gender' => '',
952
+ ),
953
+ 'lineItems' => $lineItems,
954
+ ),
955
+ 'netCredentials' => array(
956
+ 'UserName' => $userName,
957
+ 'Password' => $password,
958
+ 'Domain' => '',
959
+ ),
960
+ ),
961
+ );
962
+ $result = self::makeRequest($paramArray, 'UpdateSale');
963
+
964
+ return $result;
965
+ }
966
+
967
+ /**
968
+ * set_error_log.
969
+ *
970
+ * This function is use to set error options parameters
971
+ *
972
+ * @version 1.0.0
973
+ *
974
+ * @author Double Eye
975
+ *
976
+ * @since 1.0.0
977
+ * @access public
978
+ *
979
+ * @param int $type
980
+ * @param string $destination
981
+ * @param string $extra
982
+ *
983
+ * @static
984
+ */
985
+ public static function set_error_log($type, $destination = '', $extra = '')
986
+ {
987
+ self::$error_log_type = $type;
988
+ self::$error_log_destination = $destination;
989
+ self::$error_log_extra = $extra;
990
+ }
991
+
992
+ /**
993
+ * state_api_make_request.
994
+ *
995
+ * Builds a request from an array and sends it to State API Server
996
+ *
997
+ * @version 1.0.0
998
+ *
999
+ * @author Double Eye
1000
+ *
1001
+ * @since 1.0.0
1002
+ * @access public
1003
+ *
1004
+ * @param string $path
1005
+ * @param array $data
1006
+ * @param bool $fail_silently
1007
+ * @param string $method
1008
+ *
1009
+ * @return array|mixed|void
1010
+ *
1011
+ * @static
1012
+ *
1013
+ * @throws LoyaltyboxException
1014
+ */
1015
+ public static function state_api_make_request($path, $data=null, $fail_silently=null, $method=null)
1016
+ {
1017
+ $url = self::$stateAPIendpoint.$path;
1018
+ if(!$data) $data = array();
1019
+ $ua = array(
1020
+ 'bindings_version' => self::VERSION,
1021
+ 'application' => self::$signature,
1022
+ 'lang' => 'PHP',
1023
+ 'lang_version' => phpversion(),
1024
+ 'publisher' => 'Loaylty Box',
1025
+ );
1026
+ $data_string = json_encode($data);
1027
+
1028
+ // Set Request Options
1029
+ $curlConfig = array(
1030
+ CURLOPT_URL => $url,
1031
+ CURLOPT_RETURNTRANSFER => true,
1032
+ CURLOPT_CUSTOMREQUEST => $method,
1033
+ CURLOPT_POSTFIELDS => $data_string,
1034
+ CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
1035
+ //CURLOPT_USERPWD => self::$secret.':',
1036
+ CURLOPT_HTTPHEADER => array(
1037
+ 'Content-Type: application/json',
1038
+ 'Content-Length: ' . strlen($data_string),
1039
+ 'X-LB-Client-User-Agent: '. json_encode($ua),
1040
+ ),
1041
+ );
1042
+
1043
+ //Make HTTP Request
1044
+ $ch = curl_init();
1045
+ curl_setopt_array($ch, $curlConfig);
1046
+ $response = curl_exec($ch);
1047
+ $http_status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
1048
+ $content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
1049
+ curl_close($ch);
1050
+
1051
+ // Check for HTTP Error
1052
+ if($content_type!='application/json'){
1053
+ $error = array(
1054
+ 'code' => $http_status,
1055
+ 'message' => 'HTTP Error: '.$http_status,
1056
+ );
1057
+ return self::handleError($error, $fail_silently);
1058
+ }
1059
+
1060
+ // Load response
1061
+ $response = json_decode($response, TRUE);
1062
+ if(array_key_exists('error', $response))
1063
+ if($response['error'])
1064
+ return self::handleError($response['error'], $fail_silently);
1065
+
1066
+ return $response['result'];
1067
+ }
1068
+
1069
+ /**
1070
+ * sendCartUpdate.
1071
+ *
1072
+ * @version 1.0.0
1073
+ *
1074
+ * @author Double Eye
1075
+ *
1076
+ * @since 1.0.0
1077
+ * @access public
1078
+ *
1079
+ * @param string $txtPhoneNumber
1080
+ * @param double $CartContentsTotal
1081
+ * @param array $lineItems
1082
+ * @param bool $CommitTransaction
1083
+ *
1084
+ * @return array|mixed|void
1085
+ * @static
1086
+ */
1087
+ public static function sendCartUpdate($txtPhoneNumber,$CartContentsTotal,$lineItems = array(), $CommitTransaction = 0)
1088
+ {
1089
+ @session_start();
1090
+ $allowedDiscount = 0;
1091
+ $clientId = self::$clientId;
1092
+ $locationId = self::$locationId;
1093
+ $userName = self::$userName;
1094
+ $password = self::$password;
1095
+
1096
+ $paramArray = array(
1097
+ 'RequestLineItemRedemption' => array(
1098
+ 'p_objRequest' => array(
1099
+ 'standardHeader' => array(
1100
+ 'requestId' => self::$lb_request_id,
1101
+ 'localeId' => '',
1102
+ 'systemId' => '',
1103
+ 'clientId' => $clientId,
1104
+ 'locationId' => $locationId,
1105
+ 'terminalId' => '',
1106
+ 'terminalDateTime' => date('Y-m-d H:i:s'),
1107
+ 'initiatorType' => '',
1108
+ 'initiatorId' => '',
1109
+ 'initiatorPassword' => '',
1110
+ 'externalId' => '',
1111
+ 'batchId' => '',
1112
+ 'batchReference' => '',
1113
+ ),
1114
+ 'account' => array(
1115
+ 'accountId' => $txtPhoneNumber,//$txtPhoneNumber
1116
+ 'pin' => '',
1117
+ 'entryType' => 'K',
1118
+ ),
1119
+ 'activating' => '',
1120
+ 'amount' => array(
1121
+ 'valueCode' => 'Discount',
1122
+ 'enteredAmount' => $CartContentsTotal,//,
1123
+ //'nsfAllowed' => 'N'
1124
+ ),
1125
+ 'customerInfo' => array(
1126
+ 'customerType' => '',
1127
+ 'firstName' => '',
1128
+ 'middleName' => '',
1129
+ 'lastName' => '',
1130
+ 'address1' => '',
1131
+ 'address2' => '',
1132
+ 'city' => '',
1133
+ 'state' => '',
1134
+ 'postal' => '',
1135
+ 'country' => '',
1136
+ 'mailPref' => '',
1137
+ 'phone' => '',
1138
+ 'isMobile' => '',
1139
+ 'phonePref' => '',
1140
+ 'email' => '',
1141
+ 'emailPref' => '',
1142
+ 'birthday' => '',
1143
+ 'anniversary' => '',
1144
+ 'gender' => '',
1145
+ ),
1146
+ 'lineItems' => $lineItems,
1147
+ 'CommitTransaction' => $CommitTransaction,
1148
+ ),
1149
+ 'netCredentials' => array(
1150
+ 'UserName' => $userName,
1151
+ 'Password' => $password,
1152
+ 'Domain' => '',
1153
+ ),
1154
+ ),
1155
+ );
1156
+ $result = self::makeRequest($paramArray, 'RequestLineItemRedemption');
1157
+
1158
+ $RequestLineItemRedemptionResult = $result->RequestLineItemRedemptionResult;
1159
+ $standardHeader = $RequestLineItemRedemptionResult->standardHeader;
1160
+ self::debug_log("LB API called : RequestLineItemRedemption", true);
1161
+ if ($standardHeader->status == 'A') {
1162
+ $balances = $RequestLineItemRedemptionResult->balances;
1163
+ $Balance = $balances->Balance;
1164
+
1165
+ foreach ($Balance as $balValue) {
1166
+ if ($balValue->valueCode == 'Discount') {
1167
+ $allowedDiscount = $balValue->amount;
1168
+ $_SESSION['LB_Session']['lb_discount'] = $balValue->amount;
1169
+ $_SESSION['LB_Session']['lb_discount_difference'] = $balValue->difference;
1170
+ $_SESSION['LB_Session']['lb_discount_exchangeRate'] = $balValue->exchangeRate;
1171
+ } elseif ($balValue->valueCode == 'Points') {
1172
+ $_SESSION['LB_Session']['lb_points'] = $balValue->amount;
1173
+ $_SESSION['LB_Session']['lb_points_difference'] = $balValue->difference;
1174
+ $_SESSION['LB_Session']['lb_points_exchangeRate'] = $balValue->exchangeRate;
1175
+ } elseif ($balValue->valueCode == 'ZAR') {
1176
+ $_SESSION['LB_Session']['lb_zar'] = $balValue->amount;
1177
+ $_SESSION['LB_Session']['lb_zar_difference'] = $balValue->difference;
1178
+ $_SESSION['LB_Session']['lb_zar_exchangeRate'] = $balValue->exchangeRate;
1179
+ }
1180
+ }
1181
+
1182
+ self::debug_log("LB API called : got Discount".$allowedDiscount."%", true);
1183
+ /* NO NEED TO COMMITE TRANSACTIONS BEFORE ACTUAL PAYMENT
1184
+ $paramArray['RequestLineItemRedemption']['p_objRequest']['CommitTransaction'] = 1;
1185
+ $result = self::makeRequest($paramArray, 'RequestLineItemRedemption');
1186
+ */
1187
+ }
1188
+ return $allowedDiscount;
1189
+ }
1190
+
1191
+ /**
1192
+ * sendCartFinal.
1193
+ *
1194
+ * Submit final cart to Loyalty Box.
1195
+ *
1196
+ * @version 1.0.0
1197
+ *
1198
+ * @author Double Eye
1199
+ *
1200
+ * @since 1.0.0
1201
+ * @access public
1202
+ *
1203
+ * @param string $txtPhoneNumber
1204
+ * @param double $CartContentsTotal
1205
+ * @param array $lineItems
1206
+ * @param bool $CommitTransaction
1207
+ *
1208
+ * @return array|mixed|void
1209
+ * @static
1210
+ */
1211
+ public static function sendCartFinal($txtPhoneNumber,$CartContentsTotal,$lineItems,$CommitTransaction)
1212
+ {
1213
+ $clientId = self::$clientId;
1214
+ $locationId = self::$locationId;
1215
+ $userName = self::$userName;
1216
+ $password = self::$password;
1217
+
1218
+ $paramArray = array(
1219
+ 'RequestLineItemRedemption' => array(
1220
+ 'p_objRequest' => array(
1221
+ 'standardHeader' => array(
1222
+ 'requestId' => self::$lb_request_id,
1223
+ 'localeId' => '',
1224
+ 'systemId' => '',
1225
+ 'clientId' => $clientId,
1226
+ 'locationId' => $locationId,
1227
+ 'terminalId' => '',
1228
+ 'terminalDateTime' => date('Y-m-d H:i:s'),
1229
+ 'initiatorType' => '',
1230
+ 'initiatorId' => '',
1231
+ 'initiatorPassword' => '',
1232
+ 'externalId' => '',
1233
+ 'batchId' => '',
1234
+ 'batchReference' => '',
1235
+ ),
1236
+ 'account' => array(
1237
+ 'accountId' => $txtPhoneNumber,//$txtPhoneNumber
1238
+ 'pin' => '',
1239
+ 'entryType' => 'K',
1240
+ ),
1241
+ 'activating' => '',
1242
+ 'amount' => array(
1243
+ 'valueCode' => 'Discount',
1244
+ 'enteredAmount' => $CartContentsTotal,//,
1245
+ //'nsfAllowed' => 'N'
1246
+ ),
1247
+ 'customerInfo' => array(
1248
+ 'customerType' => '',
1249
+ 'firstName' => '',
1250
+ 'middleName' => '',
1251
+ 'lastName' => '',
1252
+ 'address1' => '',
1253
+ 'address2' => '',
1254
+ 'city' => '',
1255
+ 'state' => '',
1256
+ 'postal' => '',
1257
+ 'country' => '',
1258
+ 'mailPref' => '',
1259
+ 'phone' => '',
1260
+ 'isMobile' => '',
1261
+ 'phonePref' => '',
1262
+ 'email' => '',
1263
+ 'emailPref' => '',
1264
+ 'birthday' => '',
1265
+ 'anniversary' => '',
1266
+ 'gender' => '',
1267
+ ),
1268
+ 'lineItems' => $lineItems,
1269
+ 'CommitTransaction' => $CommitTransaction,
1270
+ ),
1271
+ 'netCredentials' => array(
1272
+ 'UserName' => $userName,
1273
+ 'Password' => $password,
1274
+ 'Domain' => '',
1275
+ ),
1276
+ ),
1277
+ );
1278
+ $result = self::makeRequest($paramArray, 'RequestLineItemRedemption');
1279
+
1280
+ return $result;
1281
+ }
1282
+
1283
+ /**
1284
+ * verifyUser.
1285
+ *
1286
+ * Verify user.
1287
+ *
1288
+ * @version 1.0.0
1289
+ *
1290
+ * @author Double Eye
1291
+ *
1292
+ * @since 1.0.0
1293
+ * @access public
1294
+ *
1295
+ * @param txtCardNumber
1296
+ *
1297
+ * @return array|mixed|void
1298
+ * @static
1299
+ */
1300
+ public static function verifyUser($txtCardNumber)
1301
+ {
1302
+ $returnArr = array();
1303
+ $clientId = self::$clientId;
1304
+ $locationId = self::$locationId;
1305
+ $userName = self::$userName;
1306
+ $password = self::$password;
1307
+ $paramArray = array(
1308
+ 'Inquiry' => array(
1309
+ 'p_objRequest' => array(
1310
+ 'standardHeader' => array(
1311
+ 'requestId' => self::$lb_request_id,
1312
+ 'localeId' => '',
1313
+ 'systemId' => '',
1314
+ 'clientId' => $clientId,
1315
+ 'locationId' => $locationId,
1316
+ 'terminalId' => '',
1317
+ 'terminalDateTime' => date('Y-m-d H:i:s'),
1318
+ 'initiatorType' => '',
1319
+ 'initiatorId' => '',
1320
+ 'initiatorPassword' => '',
1321
+ 'externalId' => '',
1322
+ 'batchId' => '',
1323
+ 'batchReference' => '',
1324
+ ),
1325
+ 'account' => array(
1326
+ 'accountId' => $txtCardNumber,
1327
+ 'pin' => '',
1328
+ 'entryType' => 'K',
1329
+ ),
1330
+ 'customerInfo' => array(
1331
+ 'customerType' => '',
1332
+ 'firstName' => '',
1333
+ 'middleName' => '',
1334
+ 'lastName' => '',
1335
+ 'address1' => '',
1336
+ 'address2' => '',
1337
+ 'city' => '',
1338
+ 'state' => '',
1339
+ 'postal' => '',
1340
+ 'country' => '',
1341
+ 'mailPref' => '',
1342
+ 'phone' => $txtCardNumber,
1343
+ 'isMobile' => 'Y',
1344
+ 'phonePref' => '',
1345
+ 'email' => '',
1346
+ 'emailPref' => '',
1347
+ 'birthday' => '',
1348
+ 'anniversary' => '',
1349
+ 'gender' => '',
1350
+ ),
1351
+ ),
1352
+ 'netCredentials' => array(
1353
+ 'UserName' => $userName,
1354
+ 'Password' => $password,
1355
+ 'Domain' => '',
1356
+ ),
1357
+ ),
1358
+ );
1359
+
1360
+ $result = self::makeRequest($paramArray, 'Inquiry');
1361
+ $InquiryResult = $result->InquiryResult;
1362
+ $standardHeader = $InquiryResult->standardHeader;
1363
+ if ($standardHeader->status == 'A') {
1364
+
1365
+ $customerInfo = $InquiryResult->customerInfo;
1366
+ $balances = $InquiryResult->balances;
1367
+
1368
+ $firstName = "Guest";
1369
+ if (!empty($customerInfo->firstName)) {
1370
+ $firstName = $customerInfo->firstName;
1371
+ }
1372
+
1373
+ $lb_discount = 0;
1374
+ $lb_discount_difference = 0;
1375
+ $lb_discount_exchangeRate = 0;
1376
+
1377
+ $lb_points = 0;
1378
+ $lb_points_difference = 0;
1379
+ $lb_points_exchangeRate = 0;
1380
+
1381
+ $lb_zar = 0;
1382
+ $lb_zar_difference = 0;
1383
+ $lb_zar_exchangeRate = 0;
1384
+
1385
+ if (!empty($balances)) {
1386
+ foreach ($balances->balance as $lb_bal) {
1387
+ if ($lb_bal->valueCode == 'Discount') {
1388
+ $lb_discount = $lb_bal->amount;
1389
+ $lb_discount_difference = $lb_bal->difference;
1390
+ $lb_discount_exchangeRate = $lb_bal->exchangeRate;
1391
+ } elseif ($lb_bal->valueCode == 'Points') {
1392
+ $lb_points = $lb_bal->amount;
1393
+ $lb_points_difference = $lb_bal->difference;
1394
+ $lb_points_exchangeRate = $lb_bal->exchangeRate;
1395
+ } elseif ($lb_bal->valueCode == 'ZAR') {
1396
+ $lb_zar = $lb_bal->amount;
1397
+ $lb_zar_difference = $lb_bal->difference;
1398
+ $lb_zar_exchangeRate = $lb_bal->exchangeRate;
1399
+ }
1400
+ }
1401
+ }
1402
+
1403
+ @session_start();
1404
+ $_SESSION['LB_Session'] = array(
1405
+ 'Customer Name' => $firstName,
1406
+ 'Phone Number' => $customerInfo->phone,
1407
+ 'Customer_email' => $customerInfo->email,
1408
+ 'lb_discount' => $lb_discount,
1409
+ 'lb_discount_difference' => $lb_discount_difference,
1410
+ 'lb_discount_exchangeRate' => $lb_discount_exchangeRate,
1411
+ 'lb_points' => $lb_points,
1412
+ 'lb_points_difference' => $lb_points_difference,
1413
+ 'lb_points_exchangeRate' => $lb_points_exchangeRate,
1414
+ 'lb_zar' => $lb_zar,
1415
+ 'lb_zar_difference' => $lb_zar_difference,
1416
+ 'lb_zar_exchangeRate' => $lb_zar_exchangeRate,
1417
+ );
1418
+ //print_r($_SESSION['LB_Session']);
1419
+ $replaceBtn = "<span class='h2'>".self::$rewardProgrammeName."</span><div class='loyaltybox-info-contain'><strong>Hi ".$_SESSION['LB_Session']['Customer Name']."</strong> | <a id='lbLogout' href='javascript:void(0);'>Logout(".self::$rewardProgrammeName.")</a></br>You have ".$_SESSION['LB_Session']['lb_points']." Points in your <strong>".self::$rewardProgrammeName."</strong> account.</div>";
1420
+ $returnArr = array('status' => 1, 'message' => "You have successfully logged in with ".self::$rewardProgrammeName.".", 'replaceBtn' => $replaceBtn);
1421
+ } else {
1422
+ $errorMessage = $InquiryResult->errorMessage;
1423
+ $errorCode = $errorMessage->errorCode;
1424
+ $returnArr = array('status' => 0, 'message' => $errorMessage->briefMessage);
1425
+ }
1426
+ return $returnArr;
1427
+ }
1428
+
1429
+ }
app/code/local/Lb/Points/Model/Apipassword.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Lb_Points_Model_Apipassword extends Mage_Core_Model_Config_Data
3
+ {
4
+ public function save()
5
+ {
6
+ $apiPassword = $this->getValue(); //get the value from our config
7
+ if(empty($apiPassword))
8
+ {
9
+ Mage::throwException("API Password should not be empty.");
10
+ }
11
+ return parent::save(); //call original save method so whatever happened
12
+ //before still happens (the value saves)
13
+ }
14
+ }
app/code/local/Lb/Points/Model/Apiusername.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Lb_Points_Model_Apiusername extends Mage_Core_Model_Config_Data
3
+ {
4
+ public function save()
5
+ {
6
+ $apiUsername = $this->getValue(); //get the value from our config
7
+ if(!empty($apiUsername))
8
+ {
9
+ if (!preg_match('/^[0-9]*$/', $apiUsername))
10
+ {
11
+ Mage::throwException("API Username should be numeric with no decimal points.");
12
+ }
13
+ } else {
14
+ Mage::throwException("API Username should not be empty.");
15
+ }
16
+
17
+ return parent::save(); //call original save method so whatever happened
18
+ //before still happens (the value saves)
19
+ }
20
+ }
app/code/local/Lb/Points/Model/Clientid.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Lb_Points_Model_Clientid extends Mage_Core_Model_Config_Data
3
+ {
4
+ public function save()
5
+ {
6
+ $clientid = $this->getValue(); //get the value from our config
7
+ if(!empty($clientid))
8
+ {
9
+ if (!preg_match('/^[0-9]*$/', $clientid))
10
+ {
11
+ Mage::throwException("Client Id should be numeric with no decimal points.");
12
+ }
13
+ } else {
14
+ Mage::throwException("Client Id should not be empty.");
15
+ }
16
+
17
+ return parent::save(); //call original save method so whatever happened
18
+ //before still happens (the value saves)
19
+ }
20
+ }
app/code/local/Lb/Points/Model/Locationid.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Lb_Points_Model_Locationid extends Mage_Core_Model_Config_Data
3
+ {
4
+ public function save()
5
+ {
6
+ $locationid = $this->getValue(); //get the value from our config
7
+ if(!empty($locationid))
8
+ {
9
+ if (!preg_match('/^[0-9]*$/', $locationid))
10
+ {
11
+ Mage::throwException("Location Id should be numeric with no decimal points.");
12
+ }
13
+ } else {
14
+ Mage::throwException("Location Id should not be empty.");
15
+ }
16
+
17
+ return parent::save(); //call original save method so whatever happened
18
+ //before still happens (the value saves)
19
+ }
20
+ }
app/code/local/Lb/Points/Model/Observer.php ADDED
@@ -0,0 +1,541 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Lb_Points_Model_Observer
3
+ {
4
+ /**
5
+ * earlySession.
6
+ *
7
+ * earlySession function is used to initialise session.
8
+ *
9
+ * @version 1.0.0
10
+ *
11
+ * @author Double Eye
12
+ *
13
+ * @since 1.0.0
14
+ * @access public
15
+ *
16
+ *
17
+ * @return void
18
+ */
19
+ public function earlySession()
20
+ {
21
+ @session_start();
22
+ Lb_Points_Helper_Data::debug_log("earlySession: SESSION HAS BEEN STARTED...", true);
23
+ }
24
+
25
+ /**
26
+ * init.
27
+ *
28
+ * init function used to initialise all configuration parameters.
29
+ *
30
+ * @version 1.0.0
31
+ *
32
+ * @author Double Eye
33
+ *
34
+ * @since 1.0.0
35
+ * @access public
36
+ *
37
+ *
38
+ * @return void
39
+ */
40
+ public function init() {
41
+ $lb_request_id = 0;
42
+ if (isset($_SESSION['LB_Session_RequestId'])) {
43
+ if ($_SESSION['LB_Session_RequestId'] > 0) {
44
+ $lb_request_id = $_SESSION['LB_Session_RequestId'];
45
+ }
46
+ }
47
+ if (empty($lb_request_id)) {
48
+ $clientId = Mage::getStoreConfig('lbconfig_section/lb_settings_group/client_id_field');
49
+ $lb_request_id = Lb_Points_Helper_Data::getLbRequestId($clientId);
50
+ $_SESSION['LB_Session_RequestId'] = $lb_request_id;
51
+ }
52
+ Lb_Points_Helper_Data::init($lb_request_id);
53
+ //Lb_Points_Helper_Data::init();
54
+ }
55
+
56
+ /**
57
+ * logCartUpdate.
58
+ *
59
+ * logCartUpdate function used to update basket discount whenever product is added or removed.
60
+ *
61
+ * @version 1.0.0
62
+ *
63
+ * @author Double Eye
64
+ *
65
+ * @since 1.0.0
66
+ * @access public
67
+ *
68
+ *
69
+ * @return void
70
+ */
71
+ public function logCartUpdate() {
72
+ self::init();
73
+ $LB_Session = $_SESSION['LB_Session'];
74
+
75
+ $quoteData = Mage::getSingleton('checkout/session')->getQuote();
76
+ $cart = $quoteData->getAllItems();
77
+ $CartContentsTotal = $quoteData['subtotal'];
78
+
79
+ if (!empty($LB_Session) && $CartContentsTotal > 0) {
80
+ $txtPhoneNumber = $LB_Session['Phone Number'];
81
+
82
+ $CartContentsCount = Mage::helper('checkout/cart')->getSummaryCount();
83
+ // Checked here if there is no change in cart
84
+ if (isset($_SESSION['LB_Session']['CartContentsCount'])) {
85
+ if ($_SESSION['LB_Session']['CartContentsCount'] == $CartContentsCount
86
+ && $_SESSION['LB_Session']['CartContentsTotal'] == $CartContentsTotal) {
87
+ if(isset($_SESSION['LB_Session']['CartAppliedRedeemPoints']) && isset($_SESSION['LB_Session']['totalRedeemPoints'])){
88
+ if($_SESSION['LB_Session']['CartAppliedRedeemPoints'] == $_SESSION['LB_Session']['totalRedeemPoints']){
89
+ return;
90
+ }
91
+ }
92
+ else
93
+ {
94
+ if(isset($_SESSION['LB_Session']['totalRedeemPoints'])){
95
+ if($_SESSION['LB_Session']['totalRedeemPoints'] > 0){
96
+ // allowed
97
+ }
98
+ else
99
+ return;
100
+ }
101
+ else
102
+ return;
103
+ }
104
+ } else {
105
+ $_SESSION['LB_Session']['CartContentsCount'] = $CartContentsCount;
106
+ $_SESSION['LB_Session']['CartContentsTotal'] = $CartContentsTotal;
107
+ }
108
+ } else {
109
+ $_SESSION['LB_Session']['CartContentsCount'] = $CartContentsCount;
110
+ $_SESSION['LB_Session']['CartContentsTotal'] = $CartContentsTotal;
111
+ }
112
+
113
+ $lineItems = array();
114
+ foreach ($cart as $item) {
115
+ $product = $item->getProduct();
116
+ $categories = $product->getCategoryIds();
117
+ $itemId = $item->getItemId();
118
+
119
+ $productData = array(
120
+ 'productCode' => $item->getSku(),
121
+ 'qty' => $item->getQty(),
122
+ 'price' => $item->getProduct()->getPrice(),
123
+ 'categoryCode' => Mage::getModel('catalog/category')->load($categories[0])->getName(),
124
+ 'discountedPrice' => 0,
125
+ 'description' => ''
126
+ );
127
+ array_push($lineItems, $productData);
128
+ }
129
+ $allowedDiscount = Lb_Points_Helper_Data::sendCartUpdate($txtPhoneNumber, $CartContentsTotal, $lineItems, 0);
130
+ if ($allowedDiscount > 0) {
131
+
132
+ $coupon_code = "";
133
+ $coupon_name = "";
134
+ if (isset($_SESSION['LB_Session']["LB_COUPON"])) {
135
+ if (!empty($_SESSION['LB_Session']["LB_COUPON"])) {
136
+ $coupon_code = $_SESSION['LB_Session']["LB_COUPON"];
137
+ $coupon_name = $_SESSION['LB_Session']["LB_COUPON_NAME"];
138
+ } else {
139
+ $coupon_code = "LB_" . rand(1111, 9999); //Generate code for coupon for current session.
140
+ $_SESSION['LB_Session']["LB_COUPON"] = $coupon_code;
141
+ $coupon_name = "RULE_" . rand(1111, 9999); //Generate name for coupon for current session.
142
+ $_SESSION['LB_Session']["LB_COUPON_NAME"] = $coupon_name;
143
+ }
144
+ } else {
145
+ $coupon_code = "LB_" . rand(1111, 9999); //Generate code for coupon for current session.
146
+ $_SESSION['LB_Session']["LB_COUPON"] = $coupon_code;
147
+ $coupon_name = "RULE_" . rand(1111, 9999); //Generate name for coupon for current session.
148
+ $_SESSION['LB_Session']["LB_COUPON_NAME"] = $coupon_name;
149
+ }
150
+ // Check if therese Redeem points are availed for user if yes include its discount to cart.
151
+ if($_SESSION['LB_Session']['totalRedeemPoints'] > 0){
152
+ $allowedDiscount = $_SESSION['LB_Session']['totalRedeemPoints'] + $allowedDiscount;
153
+ //$coupon_code = $_SESSION['LB_Session']["LB_COUPON"] . "_R_".$_SESSION['LB_Session']['totalRedeemPoints'];
154
+ //$_SESSION['LB_Session']["LB_COUPON"] = $coupon_code;
155
+ $_SESSION['LB_Session']['CartAppliedRedeemPoints'] = $_SESSION['LB_Session']['totalRedeemPoints'];
156
+ }
157
+ self::generateRule($coupon_name, $coupon_code, $allowedDiscount);
158
+ Lb_Points_Helper_Data::debug_log("Generating coupon..." . $allowedDiscount, true);
159
+ }
160
+ }
161
+ Lb_Points_Helper_Data::debug_log("Cart is updated...", true);
162
+ }
163
+
164
+ /**
165
+ * generateRule.
166
+ *
167
+ * generateRule function used to generate coupon code and apply it on customers cart.
168
+ *
169
+ * @version 1.0.0
170
+ *
171
+ * @author Double Eye
172
+ *
173
+ * @since 1.0.0
174
+ * @access public
175
+ *
176
+ * @param type $name string
177
+ * @param type $coupon_code string
178
+ * @param type $discount double
179
+ *
180
+ * @return void
181
+ */
182
+ public function generateRule($name = null, $coupon_code = null, $discount = 0)
183
+ {
184
+ if ($name != null && $coupon_code != null) {
185
+ $oldRule = Mage::getModel('salesrule/rule')
186
+ ->getCollection()
187
+ ->addFieldToFilter('name', array('eq'=>$name))
188
+ ->addFieldToFilter('code', array('eq'=>$coupon_code))
189
+ ->getFirstItem();
190
+ $oldRule->delete();
191
+
192
+ $rule = Mage::getModel('salesrule/rule');
193
+ $customer_groups = array(0, 1, 2, 3);
194
+ $rule->setName($name)
195
+ ->setDescription($name)
196
+ ->setFromDate('')
197
+ ->setCouponType(2)
198
+ ->setCouponCode($coupon_code)
199
+ ->setUsesPerCustomer(1)
200
+ ->setUsesPerCoupon(1)
201
+ ->setCustomerGroupIds($customer_groups) //an array of customer grou pids
202
+ ->setIsActive(1)
203
+ ->setConditionsSerialized('')
204
+ ->setActionsSerialized('')
205
+ ->setStopRulesProcessing(0)
206
+ ->setIsAdvanced(1)
207
+ ->setProductIds('')
208
+ ->setSortOrder(0)
209
+ ->setSimpleAction('cart_fixed')
210
+ ->setDiscountAmount($discount)
211
+ ->setDiscountQty(null)
212
+ ->setDiscountStep(0)
213
+ ->setSimpleFreeShipping('0')
214
+ ->setApplyToShipping('0')
215
+ ->setIsRss(0)
216
+ ->setWebsiteIds(array(1));
217
+
218
+ $item_found = Mage::getModel('salesrule/rule_condition_product_found')
219
+ ->setType('salesrule/rule_condition_product_found')
220
+ ->setValue(1) // 1 == FOUND
221
+ ->setAggregator('all'); // match ALL conditions
222
+ $rule->getConditions()->addCondition($item_found);
223
+
224
+ $rule->save();
225
+ $discountWithoutRedeemPoints = $discount;
226
+
227
+ if(isset($_SESSION['LB_Session']['totalRedeemPoints'])){
228
+ if($_SESSION['LB_Session']['totalRedeemPoints'])
229
+ $discountWithoutRedeemPoints = $discount - $_SESSION['LB_Session']['totalRedeemPoints'];
230
+ }
231
+
232
+ $_SESSION['LB_Session']['loyaltybox_total_discount'] = $discountWithoutRedeemPoints;
233
+
234
+ $message = Lb_Points_Helper_Data::$rewardProgrammeName." Discount of ".($discountWithoutRedeemPoints)." is applied to your cart.";
235
+ Mage::getSingleton('core/session')->addSuccess($message);
236
+
237
+ Mage::getSingleton('checkout/cart')
238
+ ->getQuote()
239
+ ->setCouponCode(strlen($coupon_code) ? $coupon_code: '')
240
+ ->collectTotals()
241
+ ->save();
242
+
243
+ Lb_Points_Helper_Data::debug_log("Coupon generated..".$coupon_code, true);
244
+ }
245
+ }
246
+
247
+ /**
248
+ * orderProcesing.
249
+ *
250
+ * orderProcesing function used to send final basket to the loyaltybox before checkout process.
251
+ *
252
+ * @version 1.0.0
253
+ *
254
+ * @author Double Eye
255
+ *
256
+ * @since 1.0.0
257
+ *
258
+ * @access public
259
+ *
260
+ * @param Varien_Event_Observer $observer
261
+ *
262
+ * @return void
263
+ */
264
+ public function orderProcesing(Varien_Event_Observer $observer) {
265
+ self::init();
266
+
267
+ $LB_Session = $_SESSION['LB_Session'];
268
+ if (!empty($LB_Session))
269
+ {
270
+ $apiserverBasketId = 0;
271
+ if(isset($_SESSION['LB_Session']['basketId'])){
272
+ $apiserverBasketId = $_SESSION['LB_Session']['basketId'];
273
+ }
274
+ //$totalItemsInCart = Mage::helper('checkout/cart')->getItemsCount(); //total items in cart
275
+ $quoteData = Mage::getSingleton('checkout/session')->getQuote();
276
+ $CartContentsTotal = $quoteData['subtotal'];
277
+
278
+ // get all redeeem points by user.
279
+ $totalRedeemPoints = 0;
280
+ if(isset($_SESSION['LB_Session']['totalRedeemPoints']))
281
+ $totalRedeemPoints = $_SESSION['LB_Session']['totalRedeemPoints'];
282
+
283
+ $CartDiscount = 0;
284
+ if(isset($_SESSION['LB_Session']['loyaltybox_total_discount'])){
285
+ $CartDiscount = $_SESSION['LB_Session']['loyaltybox_total_discount'];
286
+ }
287
+
288
+ $CartDiscount = $CartDiscount + $totalRedeemPoints;
289
+
290
+ // get coupon name which is applied on cart
291
+ $coupon_code = "";
292
+ $coupon_name = "";
293
+ $discount_type = "cart_fixed";
294
+ // built array for discount
295
+ $CartAppliedCoupons = array();
296
+ if($CartDiscount)
297
+ if(isset($_SESSION['LB_Session']["LB_COUPON"]))
298
+ {
299
+ $coupon_name = $_SESSION['LB_Session']["LB_COUPON_NAME"];
300
+ $coupon_code = $_SESSION['LB_Session']["LB_COUPON"];
301
+ $cartCoupon = array(
302
+ "code" => $coupon_code,
303
+ "discount_type" => $discount_type,
304
+ "coupon_amount" => $CartDiscount,
305
+ );
306
+ array_push($CartAppliedCoupons,$cartCoupon);
307
+ }
308
+
309
+
310
+ $cartId = '';
311
+ $merchantId = Lb_Points_Helper_Data::$clientId;
312
+ $basketTotal = $CartContentsTotal;
313
+ $lbRef = '--NA--';
314
+
315
+ $discounts = array("cart_discount"=>$CartDiscount,"applied_coupon"=>$CartAppliedCoupons);
316
+ $basketState = 'Checkout';
317
+ $lbCustomerName = $LB_Session['Customer Name'];
318
+
319
+ $result = Lb_Points_Helper_Data::newBasketState($cartId, $merchantId, $basketTotal, $lbRef, $lbCustomerName, $discounts, $basketState,0,$totalRedeemPoints,$apiserverBasketId);
320
+ if(!empty($result)){
321
+ if(array_key_exists('basket_id', $result)){
322
+ $_SESSION['LB_Session']['basketId'] = $result['basket_id'];
323
+ }
324
+ }
325
+ }
326
+
327
+ }
328
+
329
+ /**
330
+ * orderPlacedSuccessfully.
331
+ *
332
+ * orderPlacedSuccessfully function used to send final basket to the loyaltybox before checkout processed.
333
+ *
334
+ * @version 1.0.0
335
+ *
336
+ * @author Double Eye
337
+ *
338
+ * @since 1.0.0
339
+ *
340
+ * @access public
341
+ *
342
+ * @param Varien_Event_Observer $observer
343
+ *
344
+ * @return void
345
+ */
346
+ public function orderPlacedSuccessfully(Varien_Event_Observer $observer) {
347
+ self::init();
348
+ $orderIncrementId = Mage::getSingleton('checkout/session')->getLastRealOrderId();
349
+ try {
350
+
351
+ $order = Mage::getModel('sales/order')->loadByIncrementId($orderIncrementId);
352
+ $orderData = $order->debug();
353
+
354
+ Lb_Points_Helper_Data::debug_log("Order process after checkout started order id: ".$orderIncrementId, true);
355
+
356
+ $CartContents = $order->getItemsCollection();
357
+ $CartContentsTotal = $orderData['subtotal'];
358
+ $CartGrandTotal = $orderData['grand_total'];
359
+ $usedCouponCode = $orderData['coupon_code'];
360
+ $CartDiscount = $orderData['discount_amount'];
361
+ $isLoyaltyIssued = 0;
362
+ $cartCoupons = array();
363
+ if (!empty($usedCouponCode)) {
364
+ if (!empty($CartDiscount)) {
365
+ $cartCouponsChild = array(
366
+ 'code' => $usedCouponCode,
367
+ 'discount_type' => 'cart_fixed',
368
+ 'coupon_amount' => $CartDiscount
369
+ );
370
+ array_push($cartCoupons, $cartCouponsChild);
371
+ }
372
+ }
373
+
374
+ $apiserverBasketId = 0;
375
+
376
+ $LB_Session = "";
377
+ if (isset($_SESSION['LB_Session']))
378
+ $LB_Session = $_SESSION['LB_Session'];
379
+
380
+ Lb_Points_Helper_Data::debug_log("Order processed started", true);
381
+ if (!empty($LB_Session)) {
382
+ $txtPhoneNumber = $LB_Session['Phone Number'];
383
+ $lbCustomerName = $LB_Session['Customer Name'];
384
+ if (isset($_SESSION['LB_Session']['basketId'])) {
385
+ $apiserverBasketId = $_SESSION['LB_Session']['basketId'];
386
+ }
387
+ $_SESSION['LB_Session']['basketId'] = 0;
388
+ $_SESSION['LB_Session']['CartContentsCount'] = 0;
389
+
390
+ $lineItems = array();
391
+ foreach ($CartContents as $item) {
392
+ $product_id = $item->product_id;
393
+ $_product = Mage::getModel('catalog/product')->load($product_id);
394
+ $cats = $_product->getCategoryIds();
395
+ $category_id = $cats[0];
396
+ $category = Mage::getModel('catalog/category')->load($category_id);
397
+ $category_name = $category->getName();
398
+ $lineItem = array(
399
+ 'productCode' => $item->sku,
400
+ 'categoryCode' => $category_name,
401
+ 'qty' => $item->getData('qty_ordered'),
402
+ 'price' => $item->getPrice(),
403
+ 'discountedPrice' => 0,
404
+ 'description' => $item->getName(),
405
+ );
406
+ array_push($lineItems, $lineItem);
407
+ }
408
+
409
+ $CommitTransaction = 0;
410
+ $result = Lb_Points_Helper_Data::sendCartFinal($txtPhoneNumber, $CartContentsTotal, $lineItems, $CommitTransaction);
411
+
412
+ $RequestLineItemRedemptionResult = $result->RequestLineItemRedemptionResult;
413
+ $standardHeader = $RequestLineItemRedemptionResult->standardHeader;
414
+ Lb_Points_Helper_Data::debug_log("LB API called sendCartFinal(uncommited): RequestLineItemRedemption", true);
415
+ if ($standardHeader->status == 'A') {
416
+ $balances = $RequestLineItemRedemptionResult->balances;
417
+ $Balance = $balances->Balance;
418
+ $allowedDiscount = 0;
419
+
420
+ foreach ($Balance as $balValue) {
421
+ if ($balValue->valueCode == 'Discount') {
422
+ $allowedDiscount = $balValue->amount;
423
+ $_SESSION['LB_Session']['lb_discount'] = $balValue->amount;
424
+ $_SESSION['LB_Session']['lb_discount_difference'] = $balValue->difference;
425
+ $_SESSION['LB_Session']['lb_discount_exchangeRate'] = $balValue->exchangeRate;
426
+ } elseif ($balValue->valueCode == 'Points') {
427
+ $_SESSION['LB_Session']['lb_points'] = $balValue->amount;
428
+ $_SESSION['LB_Session']['lb_points_difference'] = $balValue->difference;
429
+ $_SESSION['LB_Session']['lb_points_exchangeRate'] = $balValue->exchangeRate;
430
+ } elseif ($balValue->valueCode == 'ZAR') {
431
+ $_SESSION['LB_Session']['lb_zar'] = $balValue->amount;
432
+ $_SESSION['LB_Session']['lb_zar_difference'] = $balValue->difference;
433
+ $_SESSION['LB_Session']['lb_zar_exchangeRate'] = $balValue->exchangeRate;
434
+ }
435
+ }
436
+
437
+ Lb_Points_Helper_Data::debug_log("LB API called : got Discount " . $allowedDiscount . "%", true);
438
+ //if ($allowedDiscount > 0) {
439
+
440
+ $CommitTransaction = 1;
441
+ $result = Lb_Points_Helper_Data::sendCartFinal($txtPhoneNumber, $CartContentsTotal, $lineItems, $CommitTransaction);
442
+ Lb_Points_Helper_Data::debug_log("LB API called sendCartFinal(commited): RequestLineItemRedemption", true);
443
+
444
+ $RequestLineItemRedemptionResult = $result->RequestLineItemRedemptionResult;
445
+ $identification = $RequestLineItemRedemptionResult->identification;
446
+
447
+ // REDEEM POINTS IF ANY
448
+ $totalRedeemPoints = $_SESSION['LB_Session']['totalRedeemPoints'];
449
+ $CardOrPhoneNumber = $LB_Session['Phone Number'];
450
+ if($totalRedeemPoints > 0)
451
+ {
452
+ $redeemResult = Lb_Points_Helper_Data::redeemPoints($CardOrPhoneNumber,$lineItems,$totalRedeemPoints);
453
+ $UpdateSaleResult = $redeemResult->UpdateSaleResult;
454
+ $standardHeader = $UpdateSaleResult->standardHeader;
455
+ $identification = $UpdateSaleResult->identification;
456
+ Lb_Points_Helper_Data::debug_log("LB API called : UpdateSale", true);
457
+ if ($standardHeader->status == 'A') {
458
+ $_SESSION['LB_Session']['totalRedeemPoints'] = 0;
459
+ $balances = $UpdateSaleResult->balances;
460
+ $Balance = $balances->Balance;
461
+ foreach ($Balance as $balValue) {
462
+ if ($balValue->valueCode == 'Discount') {
463
+ $_SESSION['LB_Session']['lb_discount'] = $balValue->amount;
464
+ $_SESSION['LB_Session']['lb_discount_difference'] = $balValue->difference;
465
+ $_SESSION['LB_Session']['lb_discount_exchangeRate'] = $balValue->exchangeRate;
466
+ } elseif ($balValue->valueCode == 'Points') {
467
+ $_SESSION['LB_Session']['lb_points'] = $balValue->amount;
468
+ $_SESSION['LB_Session']['lb_points_difference'] = $balValue->difference;
469
+ $_SESSION['LB_Session']['lb_points_exchangeRate'] = $balValue->exchangeRate;
470
+ } elseif ($balValue->valueCode == 'ZAR') {
471
+ $_SESSION['LB_Session']['lb_zar'] = $balValue->amount;
472
+ $_SESSION['LB_Session']['lb_zar_difference'] = $balValue->difference;
473
+ $_SESSION['LB_Session']['lb_zar_exchangeRate'] = $balValue->exchangeRate;
474
+ }
475
+ }
476
+
477
+ Lb_Points_Helper_Data::debug_log("LB API called : redeem points ".$totalRedeemPoints."", true);
478
+ }
479
+ }
480
+ else
481
+ $totalRedeemPoints = 0;
482
+ // END OF REDEEM
483
+ // ISSUE DISCOUNTED AMOUNT AS LB POINTS
484
+ //$issuePoints = $allowedDiscount;
485
+ $issueResult = Lb_Points_Helper_Data::issuePoints($txtPhoneNumber, $lineItems, $CartGrandTotal);
486
+ $UpdateSaleResult = $issueResult->UpdateSaleResult;
487
+ $standardHeader = $UpdateSaleResult->standardHeader;
488
+ $earnPoints = 0;
489
+ Lb_Points_Helper_Data::debug_log("LB API called issuePoints: UpdateSale", true);
490
+ if ($standardHeader->status == 'A') {
491
+ $balances = $UpdateSaleResult->balances;
492
+ $Balance = $balances->Balance;
493
+ foreach ($Balance as $balValue) {
494
+ if ($balValue->valueCode == 'Points') {
495
+ $earnPoints = $balValue->difference;
496
+ $_SESSION['LB_Session']['lb_points'] = $balValue->amount;
497
+ $_SESSION['LB_Session']['lb_points_difference'] = $balValue->difference;
498
+ $_SESSION['LB_Session']['lb_points_exchangeRate'] = $balValue->exchangeRate;
499
+ }
500
+ }
501
+ }
502
+ $isLoyaltyIssued = 1;
503
+ Lb_Points_Helper_Data::debug_log("Issued Gift Issued " . $issuePoints . ".", true);
504
+ Lb_Points_Helper_Data::debug_log("Earn loyalty points " . $earnPoints . ".", true);
505
+
506
+ // STATE API CALL
507
+ $cartId = '';
508
+ $merchantId = Lb_Points_Helper_Data::$clientId;
509
+ $basketTotal = $CartContentsTotal;
510
+ $lbRef = $identification->transactionId;
511
+ $discounts = array("cart_discount" => $CartDiscount, "applied_coupon" => $CartAppliedCoupons);
512
+ $basketState = 'Paid';
513
+
514
+ // REMOVED CURRENT SESSION COUPON FROM DB.
515
+ $coupon_code = "";
516
+ if (isset($_SESSION['LB_Session']["LB_COUPON"])) {
517
+ if (!empty($_SESSION['LB_Session']["LB_COUPON"])) {
518
+ $coupon_code = $_SESSION['LB_Session']["LB_COUPON"];
519
+ $_SESSION['LB_Session']["LB_COUPON"] = "";
520
+ $_SESSION['LB_Session']["LB_COUPON_NAME"] = "";
521
+ }
522
+ }
523
+
524
+ Lb_Points_Helper_Data::newBasketState($cartId, $merchantId, $basketTotal, $lbRef, $lbCustomerName, $discounts, $basketState, $earnPoints, $totalRedeemPoints, $apiserverBasketId, $order_id, $isLoyaltyIssued);
525
+ $_SESSION['LB_Session_RequestId'] = 0;
526
+ $_SESSION['LB_Session']['loyaltybox_total_discount'] = 0;
527
+
528
+ //}
529
+ }
530
+ }
531
+
532
+ } catch (Exception $e) {
533
+
534
+ Lb_Points_Helper_Data::debug_log('Caught exception: ' . $e->getMessage() . ".", true);
535
+ Lb_Points_Helper_Data::handleError('Caught exception: ' . $e->getMessage() . ".", true);
536
+
537
+ }
538
+
539
+ }
540
+
541
+ }
app/code/local/Lb/Points/Model/Programname.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Lb_Points_Model_Programname extends Mage_Core_Model_Config_Data
3
+ {
4
+ public function save()
5
+ {
6
+ $programName = $this->getValue(); //get the value from our config
7
+ if(empty($programName))
8
+ {
9
+ Mage::throwException("Reward Program Name should not be empty.");
10
+ }
11
+ return parent::save(); //call original save method so whatever happened
12
+ //before still happens (the value saves)
13
+ }
14
+ }
app/code/local/Lb/Points/Model/Registrationmessage.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Lb_Points_Model_Registrationmessage extends Mage_Core_Model_Config_Data
3
+ {
4
+ public function save()
5
+ {
6
+ $registrationMessage = $this->getValue(); //get the value from our config
7
+ if(empty($registrationMessage))
8
+ {
9
+ Mage::throwException("Registration Completed Message should not be empty.");
10
+ }
11
+ return parent::save(); //call original save method so whatever happened
12
+ //before still happens (the value saves)
13
+ }
14
+ }
app/code/local/Lb/Points/controllers/IndexController.php ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class Lb_Points_IndexController extends Mage_Core_Controller_Front_Action
3
+ {
4
+ /**
5
+ * _construct.
6
+ *
7
+ * Contructor function used to initialise all configuration parameters.
8
+ *
9
+ * @version 1.0.0
10
+ *
11
+ * @author Double Eye
12
+ *
13
+ * @since 1.0.0
14
+ * @access public
15
+ *
16
+ *
17
+ * @return void
18
+ */
19
+ public function _construct(){
20
+ $lb_request_id = 0;
21
+ if (isset($_SESSION['LB_Session_RequestId']))
22
+ {
23
+ if($_SESSION['LB_Session_RequestId'] > 0)
24
+ {
25
+ $lb_request_id = $_SESSION['LB_Session_RequestId'];
26
+ }
27
+ }
28
+ if(empty($lb_request_id)){
29
+ $clientId = Mage::getStoreConfig('lbconfig_section/lb_settings_group/client_id_field');
30
+ $lb_request_id = Lb_Points_Helper_Data::getLbRequestId($clientId);
31
+ $_SESSION['LB_Session_RequestId'] = $lb_request_id;
32
+ }
33
+ Lb_Points_Helper_Data::init($lb_request_id);
34
+ //Lb_Points_Helper_Data::init();
35
+ }
36
+
37
+ /**
38
+ * indexAction.
39
+ *
40
+ * renders magento default layout.
41
+ *
42
+ * @version 1.0.0
43
+ *
44
+ * @author Double Eye
45
+ *
46
+ * @since 1.0.0
47
+ * @access public
48
+ *
49
+ *
50
+ * @return void
51
+ */
52
+ public function indexAction()
53
+ {
54
+ $this->loadLayout();
55
+ $this->renderLayout();
56
+ }
57
+
58
+ /**
59
+ * registerAction.
60
+ *
61
+ * Ajax request callback function to raise request to Loyaltybox API for register user.
62
+ *
63
+ * @version 1.0.0
64
+ *
65
+ * @author Double Eye
66
+ *
67
+ * @since 1.0.0
68
+ * @access public
69
+ *
70
+ *
71
+ * @return void
72
+ */
73
+ public function registerAction()
74
+ {
75
+ Lb_Points_Helper_Data::debug_log("Registration request sent to LB", true);
76
+ $txtName = $_POST['txtName'];
77
+ $txtEmail = $_POST['txtEmail'];
78
+ $txtPhoneNumber = $_POST['txtPhoneNumber'];
79
+ $result = Lb_Points_Helper_Data::registerUser($txtName,$txtEmail,$txtPhoneNumber);
80
+ echo json_encode($result);
81
+ }
82
+
83
+ /**
84
+ * registerAction.
85
+ *
86
+ * Used to get logged in to Loyaltybox Programme.
87
+ *
88
+ * @version 1.0.0
89
+ *
90
+ * @author Double Eye
91
+ *
92
+ * @since 1.0.0
93
+ * @access public
94
+ *
95
+ *
96
+ * @return void
97
+ */
98
+ public function loginAction()
99
+ {
100
+ Lb_Points_Helper_Data::debug_log("Login :".$_POST['txtCardNumber'], true);
101
+ $txtCardNumber = $_POST['txtCardNumber'];
102
+ $result = Lb_Points_Helper_Data::verifyUser($txtCardNumber);
103
+ echo json_encode($result);
104
+ die;
105
+ //echo "You have logged in successfully.";
106
+ }
107
+
108
+ /**
109
+ * logoutAction.
110
+ *
111
+ * Unset loyaltybox user session
112
+ *
113
+ * @version 1.0.0
114
+ *
115
+ * @author Double Eye
116
+ *
117
+ * @since 1.0.0
118
+ * @access public
119
+ */
120
+ public function logoutAction(){
121
+ $coupon_code = "";
122
+ $coupon_name = "";
123
+ if(isset($_SESSION['LB_Session']["LB_COUPON"])){
124
+ if(!empty($_SESSION['LB_Session']["LB_COUPON"]))
125
+ {
126
+ $coupon_code = $_SESSION['LB_Session']["LB_COUPON"];
127
+ $coupon_name = $_SESSION['LB_Session']["LB_COUPON_NAME"];
128
+ }
129
+ }
130
+ if(!empty($coupon_code))
131
+ {
132
+ // delete coupon
133
+ $oldRule = Mage::getModel('salesrule/rule')
134
+ ->getCollection()
135
+ ->addFieldToFilter('name', array('eq'=>$coupon_name))
136
+ ->addFieldToFilter('code', array('eq'=>$coupon_code))
137
+ ->getFirstItem();
138
+ $oldRule->delete();
139
+ }
140
+ $message = "You have successfully logged out with ".Lb_Points_Helper_Data::$rewardProgrammeName.".";
141
+ Mage::getSingleton('core/session')->addSuccess($message);
142
+ $_SESSION['LB_Session'] = NULL;
143
+ $_SESSION['LB_Session_RequestId'] = 0;
144
+ echo json_encode(array('status' => 1, 'message' => "You have successfully logged out with ".Lb_Points_Helper_Data::$rewardProgrammeName."."));
145
+ die;
146
+ }
147
+
148
+ /**
149
+ * redeemAction.
150
+ *
151
+ * Used to redeem Loyalty box points for user.
152
+ *
153
+ * @version 1.0.0
154
+ *
155
+ * @author Double Eye
156
+ *
157
+ * @since 1.0.0
158
+ * @access public
159
+ */
160
+ public function redeemAction(){
161
+ $txtRedeemPoints = $_POST['txtRedeemPoints'];
162
+ $quoteData = Mage::getSingleton('checkout/session')->getQuote();
163
+
164
+ $CartContentsTotal = $quoteData['subtotal'];
165
+ $CartTotal = $quoteData['grand_total'];
166
+
167
+ if(!empty($txtRedeemPoints)){
168
+ $LB_Session = $_SESSION['LB_Session'];
169
+ if (!empty($LB_Session)) {
170
+ // confirm loyalty points available or not and update to session if available.
171
+ $CardOrPhoneNumber = $LB_Session['Phone Number'];
172
+ $CardPoints = Lb_Points_Helper_Data::getCardPoints($CardOrPhoneNumber);
173
+ $InquiryResult = $CardPoints->InquiryResult;
174
+ $balances = $InquiryResult->balances;
175
+ $Balance = $balances->balance;
176
+ foreach ($Balance as $balValue) {
177
+ if ($balValue->valueCode == 'Discount') {
178
+ $_SESSION['LB_Session']['lb_discount'] = $balValue->amount;
179
+ $_SESSION['LB_Session']['lb_discount_difference'] = $balValue->difference;
180
+ $_SESSION['LB_Session']['lb_discount_exchangeRate'] = $balValue->exchangeRate;
181
+ } elseif ($balValue->valueCode == 'Points') {
182
+ $_SESSION['LB_Session']['lb_points'] = $balValue->amount;
183
+ $_SESSION['LB_Session']['lb_points_difference'] = $balValue->difference;
184
+ $_SESSION['LB_Session']['lb_points_exchangeRate'] = $balValue->exchangeRate;
185
+ } elseif ($balValue->valueCode == 'ZAR') {
186
+ $_SESSION['LB_Session']['lb_zar'] = $balValue->amount;
187
+ $_SESSION['LB_Session']['lb_zar_difference'] = $balValue->difference;
188
+ $_SESSION['LB_Session']['lb_zar_exchangeRate'] = $balValue->exchangeRate;
189
+ }
190
+ }
191
+ Lb_Points_Helper_Data::debug_log("LB API called : Inquiry to check Points Balance", true);
192
+
193
+ $totalRedeemPoints = 0;
194
+ if(isset($_SESSION['LB_Session']['totalRedeemPoints']))
195
+ {
196
+ if($_SESSION['LB_Session']['totalRedeemPoints'] > 0){
197
+ $totalRedeemPoints = $_SESSION['LB_Session']['totalRedeemPoints'] + $txtRedeemPoints;
198
+ }
199
+ }
200
+
201
+ if($totalRedeemPoints == 0){
202
+ $totalRedeemPoints = $txtRedeemPoints;
203
+ }
204
+
205
+ if ($txtRedeemPoints > 0 && $totalRedeemPoints <= $CartTotal && is_numeric($txtRedeemPoints)) {
206
+
207
+ if ($_SESSION['LB_Session']['lb_points'] >= $totalRedeemPoints) {
208
+ //self::generate_discount_coupon($txtRedeemPoints, 'fixed_cart', 'REDEEM');
209
+ if(isset($_SESSION['LB_Session']['totalRedeemPoints']))
210
+ {
211
+ if($_SESSION['LB_Session']['totalRedeemPoints'] > 0){
212
+ $_SESSION['LB_Session']['totalRedeemPoints'] = $_SESSION['LB_Session']['totalRedeemPoints'] + $txtRedeemPoints;
213
+ }
214
+ else
215
+ $_SESSION['LB_Session']['totalRedeemPoints'] = $txtRedeemPoints;
216
+ }
217
+ else
218
+ {
219
+ $_SESSION['LB_Session']['totalRedeemPoints'] = $txtRedeemPoints;
220
+ }
221
+ $message = "You have redeemed ".$_SESSION['LB_Session']['totalRedeemPoints']." Loyalty Points successfully and applied discount to your cart.";
222
+ $messageJson = "You have redeemed ".$_SESSION['LB_Session']['totalRedeemPoints']." Loyalty Points successfully and discount is being applied to your cart.";
223
+ Mage::getSingleton('core/session')->addSuccess($message);
224
+ echo json_encode(array('status' => 1, 'message' => $messageJson));
225
+ }else {
226
+ echo json_encode(array('status' => 0, 'message' => "You don't have sufficient Loyalty Points to redeem."));
227
+ }
228
+ } else {
229
+ echo json_encode(array('status' => 0, 'message' => "Please enter valid Loyalty Points."));
230
+ }
231
+ }
232
+ else
233
+ echo json_encode(array('status' => 0, 'message' => Lb_Points_Helper_Data::$rewardProgrammeName." session expired."));
234
+ }
235
+ else
236
+ echo json_encode(array('status' => 0, 'message' => "Please enter loyalty points."));
237
+ die;
238
+ }
239
+ }
app/code/local/Lb/Points/error.log ADDED
File without changes
app/code/local/Lb/Points/etc/adminhtml.xml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" ?>
2
+ <config>
3
+ <acl>
4
+ <resources>
5
+ <admin>
6
+ <children>
7
+ <system>
8
+ <children>
9
+ <config>
10
+ <children>
11
+ <lbconfig_section translate="title" module="points">
12
+ <title>Loyalty Box Settings</title>
13
+ <sort_order>100</sort_order>
14
+ </lbconfig_section>
15
+ </children>
16
+ </config>
17
+ </children>
18
+ </system>
19
+ </children>
20
+ </admin>
21
+ </resources>
22
+ </acl>
23
+ </config>
app/code/local/Lb/Points/etc/config.xml ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Lb_Points>
5
+ <version>1.0.0</version>
6
+ </Lb_Points>
7
+ </modules>
8
+ <global>
9
+ <models>
10
+ <points>
11
+ <class>Lb_Points_Model</class>
12
+ </points>
13
+ <lbpoints>
14
+ <class>Lb_Points_Model</class>
15
+ </lbpoints>
16
+ </models>
17
+ <helpers>
18
+ <points>
19
+ <class>Lb_Points_Helper</class>
20
+ </points>
21
+ </helpers>
22
+ <blocks>
23
+ <lb>
24
+ <class>Lb_Points_Block</class>
25
+ </lb>
26
+ </blocks>
27
+ <events>
28
+ <controller_front_init_before>
29
+ <observers>
30
+ <session_too_early>
31
+ <type>singleton</type>
32
+ <class>Lb_Points_Model_Observer</class>
33
+ <method>earlySession</method>
34
+ </session_too_early>
35
+ </observers>
36
+ </controller_front_init_before>
37
+ </events>
38
+ </global>
39
+ <frontend>
40
+ <routers>
41
+ <routeurfrontend>
42
+ <use>standard</use>
43
+ <args>
44
+ <module>Lb_Points</module>
45
+ <frontName>lb</frontName>
46
+ </args>
47
+ </routeurfrontend>
48
+ </routers>
49
+ <layout>
50
+ <updates>
51
+ <lb>
52
+ <file>lb.xml</file>
53
+ </lb>
54
+ </updates>
55
+ </layout>
56
+ <events>
57
+ <controller_action_predispatch_checkout_cart_index>
58
+ <observers>
59
+ <controller_action_after>
60
+ <class>Lb_Points_Model_Observer</class>
61
+ <method>logCartUpdate</method>
62
+ </controller_action_after>
63
+ </observers>
64
+ </controller_action_predispatch_checkout_cart_index>
65
+
66
+ <checkout_submit_all_after>
67
+ <observers>
68
+ <awesome_example>
69
+ <type>singleton</type>
70
+ <class>Lb_Points_Model_Observer</class>
71
+ <method>orderProcesing</method>
72
+ </awesome_example>
73
+ </observers>
74
+ </checkout_submit_all_after>
75
+ <checkout_onepage_controller_success_action>
76
+ <observers>
77
+ <order_processing_success>
78
+ <type>singleton</type>
79
+ <class>Lb_Points_Model_Observer</class>
80
+ <method>orderPlacedSuccessfully</method>
81
+ </order_processing_success>
82
+ </observers>
83
+ </checkout_onepage_controller_success_action>
84
+ </events>
85
+ </frontend>
86
+ </config>
app/code/local/Lb/Points/etc/system.xml ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" ?>
2
+ <config>
3
+ <tabs>
4
+ <mycustom_tab module="points" translate="label">
5
+ <label>Loyalty Box</label>
6
+ <sort_order>100</sort_order>
7
+ </mycustom_tab>
8
+ </tabs>
9
+ <sections>
10
+ <lbconfig_section module="points" translate="label">
11
+ <label>Loyalty Box Settings</label>
12
+ <sort_order>200</sort_order>
13
+ <show_in_default>1</show_in_default>
14
+ <show_in_website>1</show_in_website>
15
+ <show_in_store>1</show_in_store>
16
+ <tab>mycustom_tab</tab>
17
+ <groups>
18
+ <lb_settings_group translate="label">
19
+ <label>Loyalty Box API Configuration</label>
20
+ <comment>Configure your api details to access Loyalty Box. (All fields are mandatory.)</comment>
21
+ <sort_order>10</sort_order>
22
+ <show_in_default>1</show_in_default>
23
+ <show_in_website>1</show_in_website>
24
+ <show_in_store>1</show_in_store>
25
+ <fields>
26
+ <reward_programme_name_field translate="label tooltip">
27
+ <backend_model>lbpoints/programname</backend_model>
28
+ <label>Reward Program Name</label>
29
+ <tooltip>Please enter your Reward Program Name here.</tooltip>
30
+ <sort_order>0</sort_order>
31
+ <show_in_default>1</show_in_default>
32
+ <show_in_website>1</show_in_website>
33
+ <show_in_store>1</show_in_store>
34
+ <frontend_type>text</frontend_type>
35
+ </reward_programme_name_field>
36
+ <client_id_field translate="label tooltip">
37
+ <backend_model>lbpoints/clientid</backend_model>
38
+ <label>Client Id</label>
39
+ <tooltip>Please enter your Client Id here.</tooltip>
40
+ <sort_order>1</sort_order>
41
+ <show_in_default>1</show_in_default>
42
+ <show_in_website>1</show_in_website>
43
+ <show_in_store>1</show_in_store>
44
+ <frontend_type>text</frontend_type>
45
+ </client_id_field>
46
+ <location_id_field translate="label tooltip">
47
+ <backend_model>lbpoints/locationid</backend_model>
48
+ <label>Location Id</label>
49
+ <tooltip>Please enter your Location Id here.</tooltip>
50
+ <sort_order>2</sort_order>
51
+ <show_in_default>1</show_in_default>
52
+ <show_in_website>1</show_in_website>
53
+ <show_in_store>1</show_in_store>
54
+ <frontend_type>text</frontend_type>
55
+ </location_id_field>
56
+ <api_username_field translate="label tooltip">
57
+ <backend_model>lbpoints/apiusername</backend_model>
58
+ <label>API Username</label>
59
+ <tooltip>Please enter your API Username here.</tooltip>
60
+ <sort_order>3</sort_order>
61
+ <show_in_default>1</show_in_default>
62
+ <show_in_website>1</show_in_website>
63
+ <show_in_store>1</show_in_store>
64
+ <frontend_type>text</frontend_type>
65
+ </api_username_field>
66
+ <api_password_field translate="label tooltip">
67
+ <backend_model>lbpoints/apipassword</backend_model>
68
+ <label>API Password</label>
69
+ <tooltip>Please enter your API Password here.</tooltip>
70
+ <sort_order>4</sort_order>
71
+ <show_in_default>1</show_in_default>
72
+ <show_in_website>1</show_in_website>
73
+ <show_in_store>1</show_in_store>
74
+ <frontend_type>password</frontend_type>
75
+ </api_password_field>
76
+ <friendly_message_field translate="label tooltip">
77
+ <backend_model>lbpoints/registrationmessage</backend_model>
78
+ <label>Registration Completed Message</label>
79
+ <tooltip>Please enter your Registration Completed Message here.</tooltip>
80
+ <sort_order>5</sort_order>
81
+ <show_in_default>1</show_in_default>
82
+ <show_in_website>1</show_in_website>
83
+ <show_in_store>1</show_in_store>
84
+ <frontend_type>text</frontend_type>
85
+ </friendly_message_field>
86
+ </fields>
87
+ </lb_settings_group>
88
+ </groups>
89
+ </lbconfig_section>
90
+ </sections>
91
+ </config>
app/code/local/Lb/Points/loyaltybox.log ADDED
@@ -0,0 +1,4512 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ 2015-06-01 13:22:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4
+
5
+
6
+ 2015-06-01 13:22:01.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
7
+
8
+
9
+ 2015-06-01 13:22:01.000000+00:00 => Rendered session user with his LB Points
10
+
11
+
12
+ 2015-06-01 13:22:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
13
+
14
+
15
+ 2015-06-01 13:28:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
16
+
17
+
18
+ 2015-06-01 13:28:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
19
+
20
+
21
+ 2015-06-01 13:28:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
22
+
23
+
24
+ 2015-06-01 13:29:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
25
+
26
+
27
+ 2015-06-01 13:29:00.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
28
+
29
+
30
+ 2015-06-01 13:29:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
31
+
32
+
33
+ 2015-06-01 13:29:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
34
+
35
+
36
+ 2015-06-01 13:29:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
37
+
38
+
39
+ 2015-06-01 13:29:28.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
40
+
41
+
42
+ 2015-06-01 13:30:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
43
+
44
+
45
+ 2015-06-01 13:30:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
46
+
47
+
48
+ 2015-06-01 13:30:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
49
+
50
+
51
+ 2015-06-01 13:30:07.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
52
+
53
+
54
+ 2015-06-01 13:30:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
55
+
56
+
57
+ 2015-06-01 13:30:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
58
+
59
+
60
+ 2015-06-01 13:30:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
61
+
62
+
63
+ 2015-06-01 13:30:47.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
64
+
65
+
66
+ 2015-06-01 13:31:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
67
+
68
+
69
+ 2015-06-01 13:31:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
70
+
71
+
72
+ 2015-06-01 13:31:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
73
+
74
+
75
+ 2015-06-01 13:31:09.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
76
+
77
+
78
+ 2015-06-01 13:31:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
79
+
80
+
81
+ 2015-06-01 13:31:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
82
+
83
+
84
+ 2015-06-01 13:31:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
85
+
86
+
87
+ 2015-06-01 13:31:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
88
+
89
+
90
+ 2015-06-01 13:31:59.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
91
+
92
+
93
+ 2015-06-01 13:32:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
94
+
95
+
96
+ 2015-06-01 13:32:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
97
+
98
+
99
+ 2015-06-01 13:32:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
100
+
101
+
102
+ 2015-06-01 13:32:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
103
+
104
+
105
+ 2015-06-01 13:32:38.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
106
+
107
+
108
+ 2015-06-01 13:32:39.000000+00:00 => Rendered session user with his LB Points
109
+
110
+
111
+ 2015-06-01 13:32:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
112
+
113
+
114
+ 2015-06-01 13:33:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
115
+
116
+
117
+ 2015-06-01 13:33:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
118
+
119
+
120
+ 2015-06-01 13:33:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
121
+
122
+
123
+ 2015-06-01 13:33:16.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
124
+
125
+
126
+ 2015-06-01 13:34:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
127
+
128
+
129
+ 2015-06-01 13:34:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
130
+
131
+
132
+ 2015-06-01 13:34:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
133
+
134
+
135
+ 2015-06-01 13:34:26.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
136
+
137
+
138
+ 2015-06-01 13:38:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
139
+
140
+
141
+ 2015-06-01 13:38:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
142
+
143
+
144
+ 2015-06-01 13:38:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
145
+
146
+
147
+ 2015-06-01 13:38:54.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
148
+
149
+
150
+ 2015-06-01 13:38:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
151
+
152
+
153
+ 2015-06-01 13:38:55.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
154
+
155
+
156
+ 2015-06-01 13:40:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
157
+
158
+
159
+ 2015-06-01 13:40:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
160
+
161
+
162
+ 2015-06-01 13:40:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
163
+
164
+
165
+ 2015-06-01 13:40:13.000000+00:00 => CALLED STATE API: initialies all vars with request id-755
166
+
167
+
168
+ 2015-06-01 13:40:14.000000+00:00 => Rendered session user with his LB Points
169
+
170
+
171
+ 2015-06-01 13:40:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
172
+
173
+
174
+ 2015-06-01 13:40:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
175
+
176
+
177
+ 2015-06-01 13:40:18.000000+00:00 => Rendered session user with his LB Points
178
+
179
+
180
+ 2015-06-01 13:40:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
181
+
182
+
183
+ 2015-06-02 04:00:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
184
+
185
+
186
+ 2015-06-02 04:00:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
187
+
188
+
189
+ 2015-06-02 05:22:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
190
+
191
+
192
+ 2015-06-02 05:22:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
193
+
194
+
195
+ 2015-06-02 05:22:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
196
+
197
+
198
+ 2015-06-02 05:22:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
199
+
200
+
201
+ 2015-06-02 05:22:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
202
+
203
+
204
+ 2015-06-02 05:22:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
205
+
206
+
207
+ 2015-06-02 05:22:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
208
+
209
+
210
+ 2015-06-02 05:22:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
211
+
212
+
213
+ 2015-06-02 05:22:29.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
214
+
215
+
216
+ 2015-06-02 05:22:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
217
+
218
+
219
+ 2015-06-02 05:22:40.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
220
+
221
+
222
+ 2015-06-02 05:22:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
223
+
224
+
225
+ 2015-06-02 05:22:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
226
+
227
+
228
+ 2015-06-02 05:22:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
229
+
230
+
231
+ 2015-06-02 05:22:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
232
+
233
+
234
+ 2015-06-02 05:22:51.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
235
+
236
+
237
+ 2015-06-02 05:22:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
238
+
239
+
240
+ 2015-06-02 05:23:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
241
+
242
+
243
+ 2015-06-02 05:23:13.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
244
+
245
+
246
+ 2015-06-02 05:23:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
247
+
248
+
249
+ 2015-06-02 05:23:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
250
+
251
+
252
+ 2015-06-02 05:23:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
253
+
254
+
255
+ 2015-06-02 05:23:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
256
+
257
+
258
+ 2015-06-02 05:23:22.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
259
+
260
+
261
+ 2015-06-02 05:23:23.000000+00:00 => Rendered Connect with Loyalty Box button
262
+
263
+
264
+ 2015-06-02 05:23:23.000000+00:00 => End: Rendered Connect with Loyalty Box button
265
+
266
+
267
+ 2015-06-02 05:23:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
268
+
269
+
270
+ 2015-06-02 05:25:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
271
+
272
+
273
+ 2015-06-02 05:25:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
274
+
275
+
276
+ 2015-06-02 05:26:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
277
+
278
+
279
+ 2015-06-02 05:26:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
280
+
281
+
282
+ 2015-06-02 05:26:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
283
+
284
+
285
+ 2015-06-02 05:27:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
286
+
287
+
288
+ 2015-06-02 05:27:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
289
+
290
+
291
+ 2015-06-02 05:27:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
292
+
293
+
294
+ 2015-06-02 05:27:08.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
295
+
296
+
297
+ 2015-06-02 05:27:08.000000+00:00 => Rendered Connect with Loyalty Box button
298
+
299
+
300
+ 2015-06-02 05:27:08.000000+00:00 => End: Rendered Connect with Loyalty Box button
301
+
302
+
303
+ 2015-06-02 05:27:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
304
+
305
+
306
+ 2015-06-02 05:31:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
307
+
308
+
309
+ 2015-06-02 05:31:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
310
+
311
+
312
+ 2015-06-02 05:31:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
313
+
314
+
315
+ 2015-06-02 05:31:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
316
+
317
+
318
+ 2015-06-02 05:31:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
319
+
320
+
321
+ 2015-06-02 05:31:12.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
322
+
323
+
324
+ 2015-06-02 05:31:13.000000+00:00 => Rendered Connect with Loyalty Box button
325
+
326
+
327
+ 2015-06-02 05:31:13.000000+00:00 => End: Rendered Connect with Loyalty Box button
328
+
329
+
330
+ 2015-06-02 05:31:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
331
+
332
+
333
+ 2015-06-02 05:31:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
334
+
335
+
336
+ 2015-06-02 05:31:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
337
+
338
+
339
+ 2015-06-02 05:31:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
340
+
341
+
342
+ 2015-06-02 05:31:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
343
+
344
+
345
+ 2015-06-02 05:31:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
346
+
347
+
348
+ 2015-06-02 05:31:25.000000+00:00 => Rendered Connect with Loyalty Box button
349
+
350
+
351
+ 2015-06-02 05:31:25.000000+00:00 => End: Rendered Connect with Loyalty Box button
352
+
353
+
354
+ 2015-06-02 05:31:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
355
+
356
+
357
+ 2015-06-02 05:31:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
358
+
359
+
360
+ 2015-06-02 05:31:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
361
+
362
+
363
+ 2015-06-02 05:31:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
364
+
365
+
366
+ 2015-06-02 05:31:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
367
+
368
+
369
+ 2015-06-02 05:32:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
370
+
371
+
372
+ 2015-06-02 05:32:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
373
+
374
+
375
+ 2015-06-02 06:01:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
376
+
377
+
378
+ 2015-06-02 06:01:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
379
+
380
+
381
+ 2015-06-02 06:01:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
382
+
383
+
384
+ 2015-06-02 06:01:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
385
+
386
+
387
+ 2015-06-02 06:01:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
388
+
389
+
390
+ 2015-06-02 06:20:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
391
+
392
+
393
+ 2015-06-02 06:20:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
394
+
395
+
396
+ 2015-06-02 06:20:10.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
397
+
398
+
399
+ 2015-06-02 06:20:11.000000+00:00 => Cart is updated...
400
+
401
+
402
+ 2015-06-02 06:20:28.000000+00:00 => Rendered Connect with Loyalty Box button
403
+
404
+
405
+ 2015-06-02 06:20:28.000000+00:00 => End: Rendered Connect with Loyalty Box button
406
+
407
+
408
+ 2015-06-02 06:20:29.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
409
+
410
+
411
+ 2015-06-02 06:20:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
412
+
413
+
414
+ 2015-06-02 06:20:46.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
415
+
416
+
417
+ 2015-06-02 06:20:46.000000+00:00 => Login :8888888888
418
+
419
+
420
+ 2015-06-02 06:20:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
421
+
422
+
423
+ 2015-06-02 06:20:51.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
424
+
425
+
426
+ 2015-06-02 06:20:58.000000+00:00 => LB API called : RequestLineItemRedemption
427
+
428
+
429
+ 2015-06-02 06:20:58.000000+00:00 => LB API called : got Discount99.8%
430
+
431
+
432
+ 2015-06-02 06:20:59.000000+00:00 => Coupon generated..LB_5030
433
+
434
+
435
+ 2015-06-02 06:20:59.000000+00:00 => Generating coupon...99.8
436
+
437
+
438
+ 2015-06-02 06:20:59.000000+00:00 => Cart is updated...
439
+
440
+
441
+ 2015-06-02 06:21:00.000000+00:00 => Rendered session user with his LB Points
442
+
443
+
444
+ 2015-06-02 06:21:00.000000+00:00 => Rendered session user with his LB Points
445
+
446
+
447
+ 2015-06-02 06:21:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
448
+
449
+
450
+ 2015-06-02 06:21:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
451
+
452
+
453
+ 2015-06-02 07:02:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
454
+
455
+
456
+ 2015-06-02 07:02:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
457
+
458
+
459
+ 2015-06-02 07:14:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
460
+
461
+
462
+ 2015-06-02 07:14:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
463
+
464
+
465
+ 2015-06-02 07:15:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
466
+
467
+
468
+ 2015-06-02 07:15:06.000000+00:00 => Rendered session user with his LB Points
469
+
470
+
471
+ 2015-06-02 07:15:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
472
+
473
+
474
+ 2015-06-02 07:15:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
475
+
476
+
477
+ 2015-06-02 07:15:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
478
+
479
+
480
+ 2015-06-02 07:15:10.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
481
+
482
+
483
+ 2015-06-02 07:15:15.000000+00:00 => LB API called : RequestLineItemRedemption
484
+
485
+
486
+ 2015-06-02 07:15:15.000000+00:00 => LB API called : got Discount199.6%
487
+
488
+
489
+ 2015-06-02 07:15:16.000000+00:00 => Coupon generated..LB_5030
490
+
491
+
492
+ 2015-06-02 07:15:16.000000+00:00 => Generating coupon...199.6
493
+
494
+
495
+ 2015-06-02 07:15:16.000000+00:00 => Cart is updated...
496
+
497
+
498
+ 2015-06-02 07:15:16.000000+00:00 => Rendered session user with his LB Points
499
+
500
+
501
+ 2015-06-02 07:15:16.000000+00:00 => Rendered session user with his LB Points
502
+
503
+
504
+ 2015-06-02 07:15:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
505
+
506
+
507
+ 2015-06-02 07:26:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
508
+
509
+
510
+ 2015-06-02 07:26:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
511
+
512
+
513
+ 2015-06-02 08:34:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
514
+
515
+
516
+ 2015-06-02 08:34:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
517
+
518
+
519
+ 2015-06-02 08:34:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
520
+
521
+
522
+ 2015-06-02 08:35:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
523
+
524
+
525
+ 2015-06-02 08:35:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
526
+
527
+
528
+ 2015-06-02 09:36:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
529
+
530
+
531
+ 2015-06-02 09:36:57.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
532
+
533
+
534
+ 2015-06-02 09:37:04.000000+00:00 => Rendered session user with his LB Points
535
+
536
+
537
+ 2015-06-02 09:37:04.000000+00:00 => Rendered session user with his LB Points
538
+
539
+
540
+ 2015-06-02 09:37:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
541
+
542
+
543
+ 2015-06-02 09:38:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
544
+
545
+
546
+ 2015-06-02 09:38:26.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
547
+
548
+
549
+ 2015-06-02 09:38:27.000000+00:00 => Rendered session user with his LB Points
550
+
551
+
552
+ 2015-06-02 09:38:27.000000+00:00 => Rendered session user with his LB Points
553
+
554
+
555
+ 2015-06-02 09:38:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
556
+
557
+
558
+ 2015-06-02 09:39:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
559
+
560
+
561
+ 2015-06-02 09:39:00.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
562
+
563
+
564
+ 2015-06-02 09:39:01.000000+00:00 => Rendered session user with his LB Points
565
+
566
+
567
+ 2015-06-02 09:39:01.000000+00:00 => Rendered session user with his LB Points
568
+
569
+
570
+ 2015-06-02 09:39:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
571
+
572
+
573
+ 2015-06-02 10:09:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
574
+
575
+
576
+ 2015-06-02 10:09:45.000000+00:00 => CALLED STATE API: initialies all vars with request id-765
577
+
578
+
579
+ 2015-06-02 10:09:46.000000+00:00 => Rendered session user with his LB Points
580
+
581
+
582
+ 2015-06-02 10:09:46.000000+00:00 => Rendered session user with his LB Points
583
+
584
+
585
+ 2015-06-02 10:09:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
586
+
587
+
588
+ 2015-06-02 13:23:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
589
+
590
+
591
+ 2015-06-02 13:24:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
592
+
593
+
594
+ 2015-06-02 13:24:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
595
+
596
+
597
+ 2015-06-02 13:58:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
598
+
599
+
600
+ 2015-06-02 13:58:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
601
+
602
+
603
+ 2015-06-02 13:58:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
604
+
605
+
606
+ 2015-06-02 13:58:17.000000+00:00 => CALLED STATE API: initialies all vars with request id-774
607
+
608
+
609
+ 2015-06-02 13:58:17.000000+00:00 => Rendered Connect with Loyalty Box button
610
+
611
+
612
+ 2015-06-02 13:58:17.000000+00:00 => End: Rendered Connect with Loyalty Box button
613
+
614
+
615
+ 2015-06-02 13:58:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
616
+
617
+
618
+ 2015-06-03 04:29:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
619
+
620
+
621
+ 2015-06-03 04:29:43.000000+00:00 => CALLED STATE API: initialies all vars with request id-776
622
+
623
+
624
+ 2015-06-03 04:29:44.000000+00:00 => Rendered Connect with Loyalty Box button
625
+
626
+
627
+ 2015-06-03 04:29:44.000000+00:00 => End: Rendered Connect with Loyalty Box button
628
+
629
+
630
+ 2015-06-03 04:29:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
631
+
632
+
633
+ 2015-06-04 04:20:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
634
+
635
+
636
+ 2015-06-04 04:20:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
637
+
638
+
639
+ 2015-06-04 04:22:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
640
+
641
+
642
+ 2015-06-04 04:22:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
643
+
644
+
645
+ 2015-06-04 04:53:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
646
+
647
+
648
+ 2015-06-04 04:53:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
649
+
650
+
651
+ 2015-06-04 04:53:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
652
+
653
+
654
+ 2015-06-04 04:53:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
655
+
656
+
657
+ 2015-06-04 04:53:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
658
+
659
+
660
+ 2015-06-04 04:53:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
661
+
662
+
663
+ 2015-06-04 04:53:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
664
+
665
+
666
+ 2015-06-04 04:53:32.000000+00:00 => Rendered Connect with Loyalty Box button
667
+
668
+
669
+ 2015-06-04 04:53:32.000000+00:00 => End: Rendered Connect with Loyalty Box button
670
+
671
+
672
+ 2015-06-04 04:53:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
673
+
674
+
675
+ 2015-06-04 04:53:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
676
+
677
+
678
+ 2015-06-04 04:53:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
679
+
680
+
681
+ 2015-06-04 04:53:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
682
+
683
+
684
+ 2015-06-04 04:53:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
685
+
686
+
687
+ 2015-06-04 04:54:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
688
+
689
+
690
+ 2015-06-04 04:54:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
691
+
692
+
693
+ 2015-06-04 04:59:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
694
+
695
+
696
+ 2015-06-04 04:59:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
697
+
698
+
699
+ 2015-06-04 05:00:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
700
+
701
+
702
+ 2015-06-04 05:00:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
703
+
704
+
705
+ 2015-06-04 05:01:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
706
+
707
+
708
+ 2015-06-04 05:01:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
709
+
710
+
711
+ 2015-06-04 05:01:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
712
+
713
+
714
+ 2015-06-04 05:01:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
715
+
716
+
717
+ 2015-06-04 05:01:47.000000+00:00 => Rendered Connect with Loyalty Box button
718
+
719
+
720
+ 2015-06-04 05:01:47.000000+00:00 => End: Rendered Connect with Loyalty Box button
721
+
722
+
723
+ 2015-06-04 05:01:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
724
+
725
+
726
+ 2015-06-04 05:02:49.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
727
+
728
+
729
+ 2015-06-04 05:02:50.000000+00:00 => Rendered Connect with Loyalty Box button
730
+
731
+
732
+ 2015-06-04 05:02:50.000000+00:00 => End: Rendered Connect with Loyalty Box button
733
+
734
+
735
+ 2015-06-04 05:02:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
736
+
737
+
738
+ 2015-06-04 05:03:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
739
+
740
+
741
+ 2015-06-04 05:03:24.000000+00:00 => CALLED STATE API: initialies all vars with request id-794
742
+
743
+
744
+ 2015-06-04 05:03:24.000000+00:00 => Registration request sent to LB
745
+
746
+
747
+ 2015-06-04 05:03:31.000000+00:00 => LB API Called : UpdateClient to register new user
748
+
749
+
750
+ 2015-06-04 05:03:31.000000+00:00 => Response : Invalid Account Details
751
+
752
+
753
+ 2015-06-04 05:03:35.000000+00:00 => LB API Called : Inquiry - to enroll new user
754
+
755
+
756
+ 2015-06-04 05:03:39.000000+00:00 => LB API Called : UpdateClient - to enroll new user
757
+
758
+
759
+ 2015-06-04 05:03:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
760
+
761
+
762
+ 2015-06-04 05:03:40.000000+00:00 => Rendered session user with his LB Points
763
+
764
+
765
+ 2015-06-04 05:03:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
766
+
767
+
768
+ 2015-06-04 05:03:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
769
+
770
+
771
+ 2015-06-04 05:03:51.000000+00:00 => CALLED STATE API: initialies all vars with request id-794
772
+
773
+
774
+ 2015-06-04 05:03:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
775
+
776
+
777
+ 2015-06-04 05:03:52.000000+00:00 => Rendered Connect with Loyalty Box button
778
+
779
+
780
+ 2015-06-04 05:03:52.000000+00:00 => End: Rendered Connect with Loyalty Box button
781
+
782
+
783
+ 2015-06-04 05:03:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
784
+
785
+
786
+ 2015-06-04 05:04:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
787
+
788
+
789
+ 2015-06-04 05:04:17.000000+00:00 => CALLED STATE API: initialies all vars with request id-795
790
+
791
+
792
+ 2015-06-04 05:04:18.000000+00:00 => Registration request sent to LB
793
+
794
+
795
+ 2015-06-04 05:04:21.000000+00:00 => LB API Called : UpdateClient to register new user
796
+
797
+
798
+ 2015-06-04 05:04:21.000000+00:00 => Response : New user is successfully registered with Loyalty Box.
799
+
800
+
801
+ 2015-06-04 05:04:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
802
+
803
+
804
+ 2015-06-04 05:04:22.000000+00:00 => Rendered session user with his LB Points
805
+
806
+
807
+ 2015-06-04 05:04:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
808
+
809
+
810
+ 2015-06-04 05:06:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
811
+
812
+
813
+ 2015-06-04 05:06:56.000000+00:00 => CALLED STATE API: initialies all vars with request id-795
814
+
815
+
816
+ 2015-06-04 05:06:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
817
+
818
+
819
+ 2015-06-04 05:06:57.000000+00:00 => Rendered Connect with Loyalty Box button
820
+
821
+
822
+ 2015-06-04 05:06:57.000000+00:00 => End: Rendered Connect with Loyalty Box button
823
+
824
+
825
+ 2015-06-04 05:06:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
826
+
827
+
828
+ 2015-06-04 05:07:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
829
+
830
+
831
+ 2015-06-04 05:07:11.000000+00:00 => CALLED STATE API: initialies all vars with request id-796
832
+
833
+
834
+ 2015-06-04 05:07:11.000000+00:00 => Registration request sent to LB
835
+
836
+
837
+ 2015-06-04 05:07:14.000000+00:00 => LB API Called : UpdateClient to register new user
838
+
839
+
840
+ 2015-06-04 05:07:14.000000+00:00 => Response : New user is successfully registered with Loyalty Box.
841
+
842
+
843
+ 2015-06-04 05:07:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
844
+
845
+
846
+ 2015-06-04 05:07:15.000000+00:00 => Rendered session user with his LB Points
847
+
848
+
849
+ 2015-06-04 05:07:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
850
+
851
+
852
+ 2015-06-04 05:25:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
853
+
854
+
855
+ 2015-06-04 05:25:57.000000+00:00 => CALLED STATE API: initialies all vars with request id-796
856
+
857
+
858
+ 2015-06-04 05:25:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
859
+
860
+
861
+ 2015-06-04 05:25:58.000000+00:00 => Rendered Connect with Loyalty Box button
862
+
863
+
864
+ 2015-06-04 05:25:58.000000+00:00 => End: Rendered Connect with Loyalty Box button
865
+
866
+
867
+ 2015-06-04 05:25:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
868
+
869
+
870
+ 2015-06-04 05:26:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
871
+
872
+
873
+ 2015-06-04 05:26:15.000000+00:00 => CALLED STATE API: initialies all vars with request id-797
874
+
875
+
876
+ 2015-06-04 05:26:15.000000+00:00 => Login :7575757575
877
+
878
+
879
+ 2015-06-04 05:26:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
880
+
881
+
882
+ 2015-06-04 05:26:20.000000+00:00 => Rendered session user with his LB Points
883
+
884
+
885
+ 2015-06-04 05:26:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
886
+
887
+
888
+ 2015-06-04 05:32:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
889
+
890
+
891
+ 2015-06-04 05:41:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
892
+
893
+
894
+ 2015-06-04 05:41:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
895
+
896
+
897
+ 2015-06-04 05:41:34.000000+00:00 => CALLED STATE API: initialies all vars with request id-797
898
+
899
+
900
+ 2015-06-04 05:41:37.000000+00:00 => LB API called : RequestLineItemRedemption
901
+
902
+
903
+ 2015-06-04 05:41:37.000000+00:00 => LB API called : got Discount99.8%
904
+
905
+
906
+ 2015-06-04 05:41:38.000000+00:00 => Coupon generated..LB_7533
907
+
908
+
909
+ 2015-06-04 05:41:38.000000+00:00 => Generating coupon...99.8
910
+
911
+
912
+ 2015-06-04 05:41:38.000000+00:00 => Cart is updated...
913
+
914
+
915
+ 2015-06-04 05:41:45.000000+00:00 => Rendered session user with his LB Points
916
+
917
+
918
+ 2015-06-04 05:41:45.000000+00:00 => Rendered session user with his LB Points
919
+
920
+
921
+ 2015-06-04 05:41:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
922
+
923
+
924
+ 2015-06-04 05:49:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
925
+
926
+
927
+ 2015-06-04 05:49:41.000000+00:00 => CALLED STATE API: initialies all vars with request id-797
928
+
929
+
930
+ 2015-06-04 05:49:42.000000+00:00 => Rendered session user with his LB Points
931
+
932
+
933
+ 2015-06-04 05:49:42.000000+00:00 => Rendered session user with his LB Points
934
+
935
+
936
+ 2015-06-04 05:49:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
937
+
938
+
939
+ 2015-06-04 05:49:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
940
+
941
+
942
+ 2015-06-04 05:49:48.000000+00:00 => CALLED STATE API: initialies all vars with request id-797
943
+
944
+
945
+ 2015-06-04 05:49:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
946
+
947
+
948
+ 2015-06-04 05:49:49.000000+00:00 => CALLED STATE API: initialies all vars with request id-798
949
+
950
+
951
+ 2015-06-04 05:49:49.000000+00:00 => Cart is updated...
952
+
953
+
954
+ 2015-06-04 05:49:50.000000+00:00 => Rendered Connect with Loyalty Box button
955
+
956
+
957
+ 2015-06-04 05:49:50.000000+00:00 => End: Rendered Connect with Loyalty Box button
958
+
959
+
960
+ 2015-06-04 05:49:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
961
+
962
+
963
+ 2015-06-04 05:50:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
964
+
965
+
966
+ 2015-06-04 05:50:12.000000+00:00 => CALLED STATE API: initialies all vars with request id-798
967
+
968
+
969
+ 2015-06-04 05:50:12.000000+00:00 => Login :9999999999
970
+
971
+
972
+ 2015-06-04 05:50:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
973
+
974
+
975
+ 2015-06-04 05:50:19.000000+00:00 => CALLED STATE API: initialies all vars with request id-798
976
+
977
+
978
+ 2015-06-04 05:50:24.000000+00:00 => LB API called : RequestLineItemRedemption
979
+
980
+
981
+ 2015-06-04 05:50:24.000000+00:00 => LB API called : got Discount99.8%
982
+
983
+
984
+ 2015-06-04 05:50:24.000000+00:00 => Coupon generated..LB_3274
985
+
986
+
987
+ 2015-06-04 05:50:24.000000+00:00 => Generating coupon...99.8
988
+
989
+
990
+ 2015-06-04 05:50:24.000000+00:00 => Cart is updated...
991
+
992
+
993
+ 2015-06-04 05:50:25.000000+00:00 => Rendered session user with his LB Points
994
+
995
+
996
+ 2015-06-04 05:50:25.000000+00:00 => Rendered session user with his LB Points
997
+
998
+
999
+ 2015-06-04 05:50:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1000
+
1001
+
1002
+ 2015-06-04 05:54:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1003
+
1004
+
1005
+ 2015-06-04 05:54:13.000000+00:00 => CALLED STATE API: initialies all vars with request id-798
1006
+
1007
+
1008
+ 2015-06-04 05:54:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1009
+
1010
+
1011
+ 2015-06-04 05:54:14.000000+00:00 => CALLED STATE API: initialies all vars with request id-799
1012
+
1013
+
1014
+ 2015-06-04 05:54:14.000000+00:00 => Cart is updated...
1015
+
1016
+
1017
+ 2015-06-04 05:54:15.000000+00:00 => Rendered Connect with Loyalty Box button
1018
+
1019
+
1020
+ 2015-06-04 05:54:15.000000+00:00 => End: Rendered Connect with Loyalty Box button
1021
+
1022
+
1023
+ 2015-06-04 05:54:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1024
+
1025
+
1026
+ 2015-06-04 05:54:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1027
+
1028
+
1029
+ 2015-06-04 05:54:24.000000+00:00 => CALLED STATE API: initialies all vars with request id-799
1030
+
1031
+
1032
+ 2015-06-04 05:54:24.000000+00:00 => Login :9999999999
1033
+
1034
+
1035
+ 2015-06-04 05:54:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1036
+
1037
+
1038
+ 2015-06-04 05:54:28.000000+00:00 => CALLED STATE API: initialies all vars with request id-799
1039
+
1040
+
1041
+ 2015-06-04 05:54:32.000000+00:00 => LB API called : RequestLineItemRedemption
1042
+
1043
+
1044
+ 2015-06-04 05:54:32.000000+00:00 => LB API called : got Discount99.8%
1045
+
1046
+
1047
+ 2015-06-04 05:54:33.000000+00:00 => Coupon generated..LB_9185
1048
+
1049
+
1050
+ 2015-06-04 05:54:33.000000+00:00 => Generating coupon...99.8
1051
+
1052
+
1053
+ 2015-06-04 05:54:33.000000+00:00 => Cart is updated...
1054
+
1055
+
1056
+ 2015-06-04 05:54:33.000000+00:00 => Rendered session user with his LB Points
1057
+
1058
+
1059
+ 2015-06-04 05:54:33.000000+00:00 => Rendered session user with his LB Points
1060
+
1061
+
1062
+ 2015-06-04 05:54:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1063
+
1064
+
1065
+ 2015-06-04 05:55:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1066
+
1067
+
1068
+ 2015-06-04 05:55:30.000000+00:00 => CALLED STATE API: initialies all vars with request id-799
1069
+
1070
+
1071
+ 2015-06-04 05:55:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1072
+
1073
+
1074
+ 2015-06-04 05:55:31.000000+00:00 => CALLED STATE API: initialies all vars with request id-800
1075
+
1076
+
1077
+ 2015-06-04 05:55:31.000000+00:00 => Cart is updated...
1078
+
1079
+
1080
+ 2015-06-04 05:55:32.000000+00:00 => Rendered Connect with Loyalty Box button
1081
+
1082
+
1083
+ 2015-06-04 05:55:32.000000+00:00 => End: Rendered Connect with Loyalty Box button
1084
+
1085
+
1086
+ 2015-06-04 05:55:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1087
+
1088
+
1089
+ 2015-06-04 05:56:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1090
+
1091
+
1092
+ 2015-06-04 05:56:07.000000+00:00 => CALLED STATE API: initialies all vars with request id-800
1093
+
1094
+
1095
+ 2015-06-04 05:56:07.000000+00:00 => Registration request sent to LB
1096
+
1097
+
1098
+ 2015-06-04 05:56:11.000000+00:00 => LB API Called : UpdateClient to register new user
1099
+
1100
+
1101
+ 2015-06-04 05:56:11.000000+00:00 => Response : New user is successfully registered with Loyalty Box.
1102
+
1103
+
1104
+ 2015-06-04 05:56:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1105
+
1106
+
1107
+ 2015-06-04 05:56:11.000000+00:00 => CALLED STATE API: initialies all vars with request id-800
1108
+
1109
+
1110
+ 2015-06-04 05:56:14.000000+00:00 => LB API called : RequestLineItemRedemption
1111
+
1112
+
1113
+ 2015-06-04 05:56:14.000000+00:00 => LB API called : got Discount99.8%
1114
+
1115
+
1116
+ 2015-06-04 05:56:15.000000+00:00 => Coupon generated..LB_4332
1117
+
1118
+
1119
+ 2015-06-04 05:56:15.000000+00:00 => Generating coupon...99.8
1120
+
1121
+
1122
+ 2015-06-04 05:56:15.000000+00:00 => Cart is updated...
1123
+
1124
+
1125
+ 2015-06-04 05:56:16.000000+00:00 => Rendered session user with his LB Points
1126
+
1127
+
1128
+ 2015-06-04 05:56:16.000000+00:00 => Rendered session user with his LB Points
1129
+
1130
+
1131
+ 2015-06-04 05:56:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1132
+
1133
+
1134
+ 2015-06-04 05:56:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1135
+
1136
+
1137
+ 2015-06-04 05:56:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1138
+
1139
+
1140
+ 2015-06-04 05:56:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1141
+
1142
+
1143
+ 2015-06-04 05:56:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1144
+
1145
+
1146
+ 2015-06-04 05:56:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1147
+
1148
+
1149
+ 2015-06-04 05:56:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1150
+
1151
+
1152
+ 2015-06-04 05:56:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1153
+
1154
+
1155
+ 2015-06-04 05:57:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1156
+
1157
+
1158
+ 2015-06-04 05:57:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1159
+
1160
+
1161
+ 2015-06-04 05:57:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1162
+
1163
+
1164
+ 2015-06-04 05:57:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1165
+
1166
+
1167
+ 2015-06-04 05:57:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1168
+
1169
+
1170
+ 2015-06-04 05:57:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1171
+
1172
+
1173
+ 2015-06-04 05:57:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1174
+
1175
+
1176
+ 2015-06-04 05:57:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1177
+
1178
+
1179
+ 2015-06-04 05:57:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1180
+
1181
+
1182
+ 2015-06-04 05:57:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1183
+
1184
+
1185
+ 2015-06-04 05:57:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1186
+
1187
+
1188
+ 2015-06-04 05:57:40.000000+00:00 => CALLED STATE API: initialies all vars with request id-800
1189
+
1190
+
1191
+ 2015-06-04 05:57:49.000000+00:00 => LB API called : RequestLineItemRedemption
1192
+
1193
+
1194
+ 2015-06-04 05:57:49.000000+00:00 => LB API called : got Discount199.6%
1195
+
1196
+
1197
+ 2015-06-04 05:57:49.000000+00:00 => Coupon generated..LB_4332
1198
+
1199
+
1200
+ 2015-06-04 05:57:49.000000+00:00 => Generating coupon...199.6
1201
+
1202
+
1203
+ 2015-06-04 05:57:49.000000+00:00 => Cart is updated...
1204
+
1205
+
1206
+ 2015-06-04 05:57:50.000000+00:00 => Rendered session user with his LB Points
1207
+
1208
+
1209
+ 2015-06-04 05:57:50.000000+00:00 => Rendered session user with his LB Points
1210
+
1211
+
1212
+ 2015-06-04 05:57:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1213
+
1214
+
1215
+ 2015-06-04 05:58:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1216
+
1217
+
1218
+ 2015-06-04 05:58:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1219
+
1220
+
1221
+ 2015-06-04 05:58:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1222
+
1223
+
1224
+ 2015-06-04 05:58:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1225
+
1226
+
1227
+ 2015-06-04 05:58:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1228
+
1229
+
1230
+ 2015-06-04 05:58:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1231
+
1232
+
1233
+ 2015-06-04 05:58:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1234
+
1235
+
1236
+ 2015-06-04 05:58:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1237
+
1238
+
1239
+ 2015-06-04 05:58:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1240
+
1241
+
1242
+ 2015-06-04 05:58:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1243
+
1244
+
1245
+ 2015-06-04 05:58:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1246
+
1247
+
1248
+ 2015-06-04 05:58:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1249
+
1250
+
1251
+ 2015-06-04 05:58:33.000000+00:00 => CALLED STATE API: initialies all vars with request id-800
1252
+
1253
+
1254
+ 2015-06-04 05:58:34.000000+00:00 => CALLED STATE API: Status-A Message-Created a new basket
1255
+
1256
+
1257
+ 2015-06-04 05:58:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1258
+
1259
+
1260
+ 2015-06-04 05:58:36.000000+00:00 => CALLED STATE API: initialies all vars with request id-800
1261
+
1262
+
1263
+ 2015-06-04 05:58:36.000000+00:00 => Order process after checkout started order id: 100000074
1264
+
1265
+
1266
+ 2015-06-04 05:58:36.000000+00:00 => Order processed started
1267
+
1268
+
1269
+ 2015-06-04 05:58:45.000000+00:00 => LB API called sendCartFinal(uncommited): RequestLineItemRedemption
1270
+
1271
+
1272
+ 2015-06-04 05:58:45.000000+00:00 => LB API called : got Discount 199.6%
1273
+
1274
+
1275
+ 2015-06-04 05:58:48.000000+00:00 => LB API called sendCartFinal(commited): RequestLineItemRedemption
1276
+
1277
+
1278
+ 2015-06-04 05:58:52.000000+00:00 => LB API called issuePoints: UpdateSale
1279
+
1280
+
1281
+ 2015-06-04 05:58:52.000000+00:00 => Issued Gift Issued .
1282
+
1283
+
1284
+ 2015-06-04 05:58:52.000000+00:00 => Earn loyalty points 80.84.
1285
+
1286
+
1287
+ 2015-06-04 05:58:53.000000+00:00 => CALLED STATE API: Status-A Message-Basket updated
1288
+
1289
+
1290
+ 2015-06-04 05:58:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1291
+
1292
+
1293
+ 2015-06-04 05:59:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1294
+
1295
+
1296
+ 2015-06-04 05:59:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1297
+
1298
+
1299
+ 2015-06-04 05:59:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1300
+
1301
+
1302
+ 2015-06-04 05:59:31.000000+00:00 => Rendered session user with his LB Points
1303
+
1304
+
1305
+ 2015-06-04 05:59:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1306
+
1307
+
1308
+ 2015-06-04 05:59:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1309
+
1310
+
1311
+ 2015-06-04 05:59:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1312
+
1313
+
1314
+ 2015-06-04 05:59:35.000000+00:00 => CALLED STATE API: initialies all vars with request id-532
1315
+
1316
+
1317
+ 2015-06-04 05:59:40.000000+00:00 => LB API called : RequestLineItemRedemption
1318
+
1319
+
1320
+ 2015-06-04 05:59:40.000000+00:00 => LB API called : got Discount99.8%
1321
+
1322
+
1323
+ 2015-06-04 05:59:40.000000+00:00 => Coupon generated..LB_8504
1324
+
1325
+
1326
+ 2015-06-04 05:59:40.000000+00:00 => Generating coupon...99.8
1327
+
1328
+
1329
+ 2015-06-04 05:59:40.000000+00:00 => Cart is updated...
1330
+
1331
+
1332
+ 2015-06-04 05:59:41.000000+00:00 => Rendered session user with his LB Points
1333
+
1334
+
1335
+ 2015-06-04 05:59:41.000000+00:00 => Rendered session user with his LB Points
1336
+
1337
+
1338
+ 2015-06-04 05:59:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1339
+
1340
+
1341
+ 2015-06-04 05:59:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1342
+
1343
+
1344
+ 2015-06-04 05:59:51.000000+00:00 => CALLED STATE API: initialies all vars with request id-532
1345
+
1346
+
1347
+ 2015-06-04 05:59:55.000000+00:00 => LB API called : Inquiry to check Points Balance
1348
+
1349
+
1350
+ 2015-06-04 05:59:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1351
+
1352
+
1353
+ 2015-06-04 05:59:55.000000+00:00 => CALLED STATE API: initialies all vars with request id-532
1354
+
1355
+
1356
+ 2015-06-04 05:59:59.000000+00:00 => LB API called : RequestLineItemRedemption
1357
+
1358
+
1359
+ 2015-06-04 05:59:59.000000+00:00 => LB API called : got Discount99.8%
1360
+
1361
+
1362
+ 2015-06-04 05:59:59.000000+00:00 => Coupon generated..LB_8504
1363
+
1364
+
1365
+ 2015-06-04 05:59:59.000000+00:00 => Generating coupon...119.8
1366
+
1367
+
1368
+ 2015-06-04 05:59:59.000000+00:00 => Cart is updated...
1369
+
1370
+
1371
+ 2015-06-04 06:00:00.000000+00:00 => Rendered session user with his LB Points
1372
+
1373
+
1374
+ 2015-06-04 06:00:00.000000+00:00 => Rendered session user with his LB Points
1375
+
1376
+
1377
+ 2015-06-04 06:00:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1378
+
1379
+
1380
+ 2015-06-04 06:00:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1381
+
1382
+
1383
+ 2015-06-04 06:00:57.000000+00:00 => CALLED STATE API: initialies all vars with request id-532
1384
+
1385
+
1386
+ 2015-06-04 06:01:01.000000+00:00 => LB API called : Inquiry to check Points Balance
1387
+
1388
+
1389
+ 2015-06-04 06:01:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1390
+
1391
+
1392
+ 2015-06-04 06:01:01.000000+00:00 => CALLED STATE API: initialies all vars with request id-532
1393
+
1394
+
1395
+ 2015-06-04 06:01:05.000000+00:00 => LB API called : RequestLineItemRedemption
1396
+
1397
+
1398
+ 2015-06-04 06:01:05.000000+00:00 => LB API called : got Discount99.8%
1399
+
1400
+
1401
+ 2015-06-04 06:01:06.000000+00:00 => Coupon generated..LB_8504
1402
+
1403
+
1404
+ 2015-06-04 06:01:06.000000+00:00 => Generating coupon...129.8
1405
+
1406
+
1407
+ 2015-06-04 06:01:06.000000+00:00 => Cart is updated...
1408
+
1409
+
1410
+ 2015-06-04 06:01:06.000000+00:00 => Rendered session user with his LB Points
1411
+
1412
+
1413
+ 2015-06-04 06:01:06.000000+00:00 => Rendered session user with his LB Points
1414
+
1415
+
1416
+ 2015-06-04 06:01:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1417
+
1418
+
1419
+ 2015-06-04 06:01:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1420
+
1421
+
1422
+ 2015-06-04 06:01:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1423
+
1424
+
1425
+ 2015-06-04 06:01:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1426
+
1427
+
1428
+ 2015-06-04 06:01:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1429
+
1430
+
1431
+ 2015-06-04 06:01:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1432
+
1433
+
1434
+ 2015-06-04 06:01:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1435
+
1436
+
1437
+ 2015-06-04 06:01:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1438
+
1439
+
1440
+ 2015-06-04 06:01:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1441
+
1442
+
1443
+ 2015-06-04 06:01:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1444
+
1445
+
1446
+ 2015-06-04 06:01:29.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1447
+
1448
+
1449
+ 2015-06-04 06:01:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1450
+
1451
+
1452
+ 2015-06-04 06:01:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1453
+
1454
+
1455
+ 2015-06-04 06:01:37.000000+00:00 => CALLED STATE API: initialies all vars with request id-532
1456
+
1457
+
1458
+ 2015-06-04 06:01:37.000000+00:00 => CALLED STATE API: Status-A Message-Created a new basket
1459
+
1460
+
1461
+ 2015-06-04 06:01:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1462
+
1463
+
1464
+ 2015-06-04 06:01:39.000000+00:00 => CALLED STATE API: initialies all vars with request id-532
1465
+
1466
+
1467
+ 2015-06-04 06:01:39.000000+00:00 => Order process after checkout started order id: 100000075
1468
+
1469
+
1470
+ 2015-06-04 06:01:39.000000+00:00 => Order processed started
1471
+
1472
+
1473
+ 2015-06-04 06:01:43.000000+00:00 => LB API called sendCartFinal(uncommited): RequestLineItemRedemption
1474
+
1475
+
1476
+ 2015-06-04 06:01:43.000000+00:00 => LB API called : got Discount 99.8%
1477
+
1478
+
1479
+ 2015-06-04 06:01:50.000000+00:00 => LB API called sendCartFinal(commited): RequestLineItemRedemption
1480
+
1481
+
1482
+ 2015-06-04 06:01:54.000000+00:00 => LB API called : UpdateSale
1483
+
1484
+
1485
+ 2015-06-04 06:01:54.000000+00:00 => LB API called : redeem points 30
1486
+
1487
+
1488
+ 2015-06-04 06:02:01.000000+00:00 => LB API called issuePoints: UpdateSale
1489
+
1490
+
1491
+ 2015-06-04 06:02:01.000000+00:00 => Issued Gift Issued .
1492
+
1493
+
1494
+ 2015-06-04 06:02:01.000000+00:00 => Earn loyalty points 37.42.
1495
+
1496
+
1497
+ 2015-06-04 06:02:01.000000+00:00 => CALLED STATE API: Status-A Message-Basket updated
1498
+
1499
+
1500
+ 2015-06-04 06:02:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1501
+
1502
+
1503
+ 2015-06-04 06:02:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1504
+
1505
+
1506
+ 2015-06-04 06:02:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1507
+
1508
+
1509
+ 2015-06-04 06:02:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1510
+
1511
+
1512
+ 2015-06-04 06:02:40.000000+00:00 => Rendered session user with his LB Points
1513
+
1514
+
1515
+ 2015-06-04 06:02:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1516
+
1517
+
1518
+ 2015-06-04 06:03:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1519
+
1520
+
1521
+ 2015-06-04 06:03:38.000000+00:00 => Rendered session user with his LB Points
1522
+
1523
+
1524
+ 2015-06-04 06:03:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1525
+
1526
+
1527
+ 2015-06-04 06:04:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1528
+
1529
+
1530
+ 2015-06-04 06:04:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1531
+
1532
+
1533
+ 2015-06-04 06:04:39.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1534
+
1535
+
1536
+ 2015-06-04 06:04:43.000000+00:00 => LB API called : RequestLineItemRedemption
1537
+
1538
+
1539
+ 2015-06-04 06:04:43.000000+00:00 => LB API called : got Discount99.8%
1540
+
1541
+
1542
+ 2015-06-04 06:04:43.000000+00:00 => Coupon generated..LB_1361
1543
+
1544
+
1545
+ 2015-06-04 06:04:43.000000+00:00 => Generating coupon...99.8
1546
+
1547
+
1548
+ 2015-06-04 06:04:43.000000+00:00 => Cart is updated...
1549
+
1550
+
1551
+ 2015-06-04 06:04:44.000000+00:00 => Rendered session user with his LB Points
1552
+
1553
+
1554
+ 2015-06-04 06:04:44.000000+00:00 => Rendered session user with his LB Points
1555
+
1556
+
1557
+ 2015-06-04 06:04:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1558
+
1559
+
1560
+ 2015-06-04 06:04:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1561
+
1562
+
1563
+ 2015-06-04 06:04:54.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1564
+
1565
+
1566
+ 2015-06-04 06:04:58.000000+00:00 => LB API called : Inquiry to check Points Balance
1567
+
1568
+
1569
+ 2015-06-04 06:04:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1570
+
1571
+
1572
+ 2015-06-04 06:04:58.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1573
+
1574
+
1575
+ 2015-06-04 06:05:02.000000+00:00 => LB API called : RequestLineItemRedemption
1576
+
1577
+
1578
+ 2015-06-04 06:05:02.000000+00:00 => LB API called : got Discount99.8%
1579
+
1580
+
1581
+ 2015-06-04 06:05:03.000000+00:00 => Coupon generated..LB_1361
1582
+
1583
+
1584
+ 2015-06-04 06:05:03.000000+00:00 => Generating coupon...109.8
1585
+
1586
+
1587
+ 2015-06-04 06:05:03.000000+00:00 => Cart is updated...
1588
+
1589
+
1590
+ 2015-06-04 06:05:03.000000+00:00 => Rendered session user with his LB Points
1591
+
1592
+
1593
+ 2015-06-04 06:05:03.000000+00:00 => Rendered session user with his LB Points
1594
+
1595
+
1596
+ 2015-06-04 06:05:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1597
+
1598
+
1599
+ 2015-06-04 06:05:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1600
+
1601
+
1602
+ 2015-06-04 06:05:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1603
+
1604
+
1605
+ 2015-06-04 06:05:23.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1606
+
1607
+
1608
+ 2015-06-04 06:05:23.000000+00:00 => Cart is updated...
1609
+
1610
+
1611
+ 2015-06-04 06:05:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1612
+
1613
+
1614
+ 2015-06-04 06:05:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1615
+
1616
+
1617
+ 2015-06-04 06:05:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1618
+
1619
+
1620
+ 2015-06-04 06:05:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1621
+
1622
+
1623
+ 2015-06-04 06:05:31.000000+00:00 => Rendered session user with his LB Points
1624
+
1625
+
1626
+ 2015-06-04 06:05:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1627
+
1628
+
1629
+ 2015-06-04 06:05:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1630
+
1631
+
1632
+ 2015-06-04 06:05:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1633
+
1634
+
1635
+ 2015-06-04 06:05:40.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1636
+
1637
+
1638
+ 2015-06-04 06:05:41.000000+00:00 => Rendered session user with his LB Points
1639
+
1640
+
1641
+ 2015-06-04 06:05:41.000000+00:00 => Rendered session user with his LB Points
1642
+
1643
+
1644
+ 2015-06-04 06:05:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1645
+
1646
+
1647
+ 2015-06-04 06:05:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1648
+
1649
+
1650
+ 2015-06-04 06:05:58.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1651
+
1652
+
1653
+ 2015-06-04 06:05:59.000000+00:00 => Rendered session user with his LB Points
1654
+
1655
+
1656
+ 2015-06-04 06:05:59.000000+00:00 => Rendered session user with his LB Points
1657
+
1658
+
1659
+ 2015-06-04 06:05:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1660
+
1661
+
1662
+ 2015-06-04 06:06:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1663
+
1664
+
1665
+ 2015-06-04 06:06:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1666
+
1667
+
1668
+ 2015-06-04 06:06:25.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1669
+
1670
+
1671
+ 2015-06-04 06:06:29.000000+00:00 => LB API called : RequestLineItemRedemption
1672
+
1673
+
1674
+ 2015-06-04 06:06:29.000000+00:00 => LB API called : got Discount199.6%
1675
+
1676
+
1677
+ 2015-06-04 06:06:30.000000+00:00 => Coupon generated..LB_1361
1678
+
1679
+
1680
+ 2015-06-04 06:06:30.000000+00:00 => Generating coupon...209.6
1681
+
1682
+
1683
+ 2015-06-04 06:06:30.000000+00:00 => Cart is updated...
1684
+
1685
+
1686
+ 2015-06-04 06:06:30.000000+00:00 => Rendered session user with his LB Points
1687
+
1688
+
1689
+ 2015-06-04 06:06:30.000000+00:00 => Rendered session user with his LB Points
1690
+
1691
+
1692
+ 2015-06-04 06:06:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1693
+
1694
+
1695
+ 2015-06-04 06:07:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1696
+
1697
+
1698
+ 2015-06-04 06:07:52.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1699
+
1700
+
1701
+ 2015-06-04 06:07:57.000000+00:00 => LB API called : Inquiry to check Points Balance
1702
+
1703
+
1704
+ 2015-06-04 06:07:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1705
+
1706
+
1707
+ 2015-06-04 06:07:57.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1708
+
1709
+
1710
+ 2015-06-04 06:08:01.000000+00:00 => LB API called : RequestLineItemRedemption
1711
+
1712
+
1713
+ 2015-06-04 06:08:01.000000+00:00 => LB API called : got Discount199.6%
1714
+
1715
+
1716
+ 2015-06-04 06:08:01.000000+00:00 => Coupon generated..LB_1361
1717
+
1718
+
1719
+ 2015-06-04 06:08:01.000000+00:00 => Generating coupon...214.6
1720
+
1721
+
1722
+ 2015-06-04 06:08:01.000000+00:00 => Cart is updated...
1723
+
1724
+
1725
+ 2015-06-04 06:08:02.000000+00:00 => Rendered session user with his LB Points
1726
+
1727
+
1728
+ 2015-06-04 06:08:02.000000+00:00 => Rendered session user with his LB Points
1729
+
1730
+
1731
+ 2015-06-04 06:08:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1732
+
1733
+
1734
+ 2015-06-04 06:08:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1735
+
1736
+
1737
+ 2015-06-04 06:08:10.000000+00:00 => CALLED STATE API: initialies all vars with request id-533
1738
+
1739
+
1740
+ 2015-06-04 06:08:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1741
+
1742
+
1743
+ 2015-06-04 06:08:11.000000+00:00 => CALLED STATE API: initialies all vars with request id-534
1744
+
1745
+
1746
+ 2015-06-04 06:08:11.000000+00:00 => Cart is updated...
1747
+
1748
+
1749
+ 2015-06-04 06:08:12.000000+00:00 => Rendered Connect with Loyalty Box button
1750
+
1751
+
1752
+ 2015-06-04 06:08:12.000000+00:00 => End: Rendered Connect with Loyalty Box button
1753
+
1754
+
1755
+ 2015-06-04 06:08:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1756
+
1757
+
1758
+ 2015-06-04 06:08:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1759
+
1760
+
1761
+ 2015-06-04 06:08:23.000000+00:00 => CALLED STATE API: initialies all vars with request id-534
1762
+
1763
+
1764
+ 2015-06-04 06:08:23.000000+00:00 => Login :5555555555
1765
+
1766
+
1767
+ 2015-06-04 06:08:29.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1768
+
1769
+
1770
+ 2015-06-04 06:08:29.000000+00:00 => CALLED STATE API: initialies all vars with request id-534
1771
+
1772
+
1773
+ 2015-06-04 06:08:33.000000+00:00 => LB API called : RequestLineItemRedemption
1774
+
1775
+
1776
+ 2015-06-04 06:08:33.000000+00:00 => LB API called : got Discount199.6%
1777
+
1778
+
1779
+ 2015-06-04 06:08:33.000000+00:00 => Coupon generated..LB_5339
1780
+
1781
+
1782
+ 2015-06-04 06:08:33.000000+00:00 => Generating coupon...199.6
1783
+
1784
+
1785
+ 2015-06-04 06:08:33.000000+00:00 => Cart is updated...
1786
+
1787
+
1788
+ 2015-06-04 06:08:34.000000+00:00 => Rendered session user with his LB Points
1789
+
1790
+
1791
+ 2015-06-04 06:08:34.000000+00:00 => Rendered session user with his LB Points
1792
+
1793
+
1794
+ 2015-06-04 06:08:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1795
+
1796
+
1797
+ 2015-06-04 06:39:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1798
+
1799
+
1800
+ 2015-06-04 06:39:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1801
+
1802
+
1803
+ 2015-06-04 06:39:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1804
+
1805
+
1806
+ 2015-06-04 06:39:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1807
+
1808
+
1809
+ 2015-06-04 06:39:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1810
+
1811
+
1812
+ 2015-06-04 06:39:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1813
+
1814
+
1815
+ 2015-06-04 06:44:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1816
+
1817
+
1818
+ 2015-06-04 06:44:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1819
+
1820
+
1821
+ 2015-06-04 06:47:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1822
+
1823
+
1824
+ 2015-06-04 06:47:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1825
+
1826
+
1827
+ 2015-06-04 06:47:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1828
+
1829
+
1830
+ 2015-06-04 06:47:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1831
+
1832
+
1833
+ 2015-06-04 06:47:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1834
+
1835
+
1836
+ 2015-06-04 06:47:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1837
+
1838
+
1839
+ 2015-06-04 06:47:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1840
+
1841
+
1842
+ 2015-06-04 06:49:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1843
+
1844
+
1845
+ 2015-06-04 06:49:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1846
+
1847
+
1848
+ 2015-06-04 06:49:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1849
+
1850
+
1851
+ 2015-06-04 06:49:29.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1852
+
1853
+
1854
+ 2015-06-04 06:49:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1855
+
1856
+
1857
+ 2015-06-04 06:50:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1858
+
1859
+
1860
+ 2015-06-04 06:50:36.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1861
+
1862
+
1863
+ 2015-06-04 06:50:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1864
+
1865
+
1866
+ 2015-06-04 06:50:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1867
+
1868
+
1869
+ 2015-06-04 06:50:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1870
+
1871
+
1872
+ 2015-06-04 06:50:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1873
+
1874
+
1875
+ 2015-06-04 06:53:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1876
+
1877
+
1878
+ 2015-06-04 06:53:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1879
+
1880
+
1881
+ 2015-06-04 06:53:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1882
+
1883
+
1884
+ 2015-06-04 06:53:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1885
+
1886
+
1887
+ 2015-06-04 06:53:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1888
+
1889
+
1890
+ 2015-06-04 06:53:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1891
+
1892
+
1893
+ 2015-06-04 06:56:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1894
+
1895
+
1896
+ 2015-06-04 06:56:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1897
+
1898
+
1899
+ 2015-06-04 06:56:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1900
+
1901
+
1902
+ 2015-06-04 06:56:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1903
+
1904
+
1905
+ 2015-06-04 06:56:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1906
+
1907
+
1908
+ 2015-06-04 06:56:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1909
+
1910
+
1911
+ 2015-06-04 06:56:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1912
+
1913
+
1914
+ 2015-06-04 06:57:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1915
+
1916
+
1917
+ 2015-06-04 06:57:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1918
+
1919
+
1920
+ 2015-06-04 06:57:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1921
+
1922
+
1923
+ 2015-06-04 06:57:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1924
+
1925
+
1926
+ 2015-06-04 06:57:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1927
+
1928
+
1929
+ 2015-06-04 06:57:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1930
+
1931
+
1932
+ 2015-06-04 06:58:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1933
+
1934
+
1935
+ 2015-06-04 06:58:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1936
+
1937
+
1938
+ 2015-06-04 06:58:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1939
+
1940
+
1941
+ 2015-06-04 06:58:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1942
+
1943
+
1944
+ 2015-06-04 06:58:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1945
+
1946
+
1947
+ 2015-06-04 06:58:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1948
+
1949
+
1950
+ 2015-06-04 06:59:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1951
+
1952
+
1953
+ 2015-06-04 06:59:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1954
+
1955
+
1956
+ 2015-06-04 06:59:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1957
+
1958
+
1959
+ 2015-06-04 06:59:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1960
+
1961
+
1962
+ 2015-06-04 07:00:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1963
+
1964
+
1965
+ 2015-06-04 07:00:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1966
+
1967
+
1968
+ 2015-06-04 07:01:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1969
+
1970
+
1971
+ 2015-06-04 07:01:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1972
+
1973
+
1974
+ 2015-06-04 07:02:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1975
+
1976
+
1977
+ 2015-06-04 07:02:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1978
+
1979
+
1980
+ 2015-06-04 07:03:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1981
+
1982
+
1983
+ 2015-06-04 07:03:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1984
+
1985
+
1986
+ 2015-06-04 07:03:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1987
+
1988
+
1989
+ 2015-06-04 07:04:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1990
+
1991
+
1992
+ 2015-06-04 07:04:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1993
+
1994
+
1995
+ 2015-06-04 07:04:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1996
+
1997
+
1998
+ 2015-06-04 07:04:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
1999
+
2000
+
2001
+ 2015-06-04 07:05:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2002
+
2003
+
2004
+ 2015-06-04 07:05:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2005
+
2006
+
2007
+ 2015-06-04 07:05:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2008
+
2009
+
2010
+ 2015-06-04 07:05:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2011
+
2012
+
2013
+ 2015-06-04 07:06:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2014
+
2015
+
2016
+ 2015-06-04 07:06:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2017
+
2018
+
2019
+ 2015-06-04 07:06:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2020
+
2021
+
2022
+ 2015-06-04 07:06:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2023
+
2024
+
2025
+ 2015-06-04 07:06:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2026
+
2027
+
2028
+ 2015-06-04 07:07:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2029
+
2030
+
2031
+ 2015-06-04 07:07:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2032
+
2033
+
2034
+ 2015-06-04 07:07:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2035
+
2036
+
2037
+ 2015-06-04 07:07:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2038
+
2039
+
2040
+ 2015-06-04 07:08:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2041
+
2042
+
2043
+ 2015-06-04 07:08:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2044
+
2045
+
2046
+ 2015-06-04 07:08:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2047
+
2048
+
2049
+ 2015-06-04 07:08:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2050
+
2051
+
2052
+ 2015-06-04 07:08:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2053
+
2054
+
2055
+ 2015-06-04 07:08:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2056
+
2057
+
2058
+ 2015-06-04 07:08:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2059
+
2060
+
2061
+ 2015-06-04 07:10:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2062
+
2063
+
2064
+ 2015-06-04 07:10:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2065
+
2066
+
2067
+ 2015-06-04 07:10:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2068
+
2069
+
2070
+ 2015-06-04 07:10:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2071
+
2072
+
2073
+ 2015-06-04 07:10:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2074
+
2075
+
2076
+ 2015-06-04 07:11:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2077
+
2078
+
2079
+ 2015-06-04 07:11:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2080
+
2081
+
2082
+ 2015-06-04 07:11:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2083
+
2084
+
2085
+ 2015-06-04 07:11:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2086
+
2087
+
2088
+ 2015-06-04 07:11:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2089
+
2090
+
2091
+ 2015-06-04 07:11:49.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2092
+
2093
+
2094
+ 2015-06-04 07:11:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2095
+
2096
+
2097
+ 2015-06-04 07:11:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2098
+
2099
+
2100
+ 2015-06-04 07:12:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2101
+
2102
+
2103
+ 2015-06-04 07:12:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2104
+
2105
+
2106
+ 2015-06-04 07:12:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2107
+
2108
+
2109
+ 2015-06-04 07:12:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2110
+
2111
+
2112
+ 2015-06-04 07:20:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2113
+
2114
+
2115
+ 2015-06-04 07:21:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2116
+
2117
+
2118
+ 2015-06-04 07:21:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2119
+
2120
+
2121
+ 2015-06-04 07:21:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2122
+
2123
+
2124
+ 2015-06-04 07:22:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2125
+
2126
+
2127
+ 2015-06-04 07:22:24.000000+00:00 => CALLED STATE API: initialies all vars with request id-534
2128
+
2129
+
2130
+ 2015-06-04 07:22:31.000000+00:00 => Rendered session user with his LB Points
2131
+
2132
+
2133
+ 2015-06-04 07:22:31.000000+00:00 => Rendered session user with his LB Points
2134
+
2135
+
2136
+ 2015-06-04 07:22:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2137
+
2138
+
2139
+ 2015-06-04 07:22:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2140
+
2141
+
2142
+ 2015-06-04 07:22:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2143
+
2144
+
2145
+ 2015-06-04 07:22:41.000000+00:00 => CALLED STATE API: initialies all vars with request id-534
2146
+
2147
+
2148
+ 2015-06-04 07:22:45.000000+00:00 => LB API called : RequestLineItemRedemption
2149
+
2150
+
2151
+ 2015-06-04 07:22:45.000000+00:00 => LB API called : got Discount99.8%
2152
+
2153
+
2154
+ 2015-06-04 07:22:45.000000+00:00 => Coupon generated..LB_5339
2155
+
2156
+
2157
+ 2015-06-04 07:22:45.000000+00:00 => Generating coupon...99.8
2158
+
2159
+
2160
+ 2015-06-04 07:22:45.000000+00:00 => Cart is updated...
2161
+
2162
+
2163
+ 2015-06-04 07:22:46.000000+00:00 => Rendered session user with his LB Points
2164
+
2165
+
2166
+ 2015-06-04 07:22:46.000000+00:00 => Rendered session user with his LB Points
2167
+
2168
+
2169
+ 2015-06-04 07:22:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2170
+
2171
+
2172
+ 2015-06-04 07:25:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2173
+
2174
+
2175
+ 2015-06-04 07:25:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2176
+
2177
+
2178
+ 2015-06-04 07:25:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2179
+
2180
+
2181
+ 2015-06-04 07:25:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2182
+
2183
+
2184
+ 2015-06-04 07:25:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2185
+
2186
+
2187
+ 2015-06-04 07:25:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2188
+
2189
+
2190
+ 2015-06-04 07:25:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2191
+
2192
+
2193
+ 2015-06-04 07:25:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2194
+
2195
+
2196
+ 2015-06-04 07:30:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2197
+
2198
+
2199
+ 2015-06-04 07:30:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2200
+
2201
+
2202
+ 2015-06-04 09:06:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2203
+
2204
+
2205
+ 2015-06-04 09:06:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2206
+
2207
+
2208
+ 2015-06-04 09:23:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2209
+
2210
+
2211
+ 2015-06-04 09:23:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2212
+
2213
+
2214
+ 2015-06-04 09:24:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2215
+
2216
+
2217
+ 2015-06-04 09:24:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2218
+
2219
+
2220
+ 2015-06-04 09:27:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2221
+
2222
+
2223
+ 2015-06-04 09:27:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2224
+
2225
+
2226
+ 2015-06-04 09:27:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2227
+
2228
+
2229
+ 2015-06-04 09:28:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2230
+
2231
+
2232
+ 2015-06-04 09:28:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2233
+
2234
+
2235
+ 2015-06-04 09:30:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2236
+
2237
+
2238
+ 2015-06-04 09:30:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2239
+
2240
+
2241
+ 2015-06-04 09:30:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2242
+
2243
+
2244
+ 2015-06-04 09:30:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2245
+
2246
+
2247
+ 2015-06-04 09:30:29.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2248
+
2249
+
2250
+ 2015-06-04 09:30:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2251
+
2252
+
2253
+ 2015-06-04 09:31:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2254
+
2255
+
2256
+ 2015-06-04 09:31:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2257
+
2258
+
2259
+ 2015-06-04 09:31:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2260
+
2261
+
2262
+ 2015-06-04 09:31:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2263
+
2264
+
2265
+ 2015-06-04 09:34:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2266
+
2267
+
2268
+ 2015-06-04 09:34:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2269
+
2270
+
2271
+ 2015-06-04 09:34:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2272
+
2273
+
2274
+ 2015-06-04 09:34:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2275
+
2276
+
2277
+ 2015-06-04 09:34:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2278
+
2279
+
2280
+ 2015-06-04 09:34:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2281
+
2282
+
2283
+ 2015-06-04 09:35:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2284
+
2285
+
2286
+ 2015-06-04 09:35:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2287
+
2288
+
2289
+ 2015-06-04 09:35:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2290
+
2291
+
2292
+ 2015-06-04 09:35:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2293
+
2294
+
2295
+ 2015-06-04 09:35:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2296
+
2297
+
2298
+ 2015-06-04 09:35:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2299
+
2300
+
2301
+ 2015-06-04 09:35:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2302
+
2303
+
2304
+ 2015-06-04 09:35:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2305
+
2306
+
2307
+ 2015-06-04 09:37:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2308
+
2309
+
2310
+ 2015-06-04 09:37:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2311
+
2312
+
2313
+ 2015-06-04 09:46:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2314
+
2315
+
2316
+ 2015-06-04 09:46:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2317
+
2318
+
2319
+ 2015-06-04 09:46:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2320
+
2321
+
2322
+ 2015-06-04 09:46:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2323
+
2324
+
2325
+ 2015-06-04 09:46:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2326
+
2327
+
2328
+ 2015-06-04 09:46:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2329
+
2330
+
2331
+ 2015-06-04 09:47:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2332
+
2333
+
2334
+ 2015-06-04 09:47:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2335
+
2336
+
2337
+ 2015-06-04 09:49:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2338
+
2339
+
2340
+ 2015-06-04 09:49:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2341
+
2342
+
2343
+ 2015-06-04 09:49:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2344
+
2345
+
2346
+ 2015-06-04 09:49:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2347
+
2348
+
2349
+ 2015-06-04 09:49:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2350
+
2351
+
2352
+ 2015-06-04 09:49:43.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2353
+
2354
+
2355
+ 2015-06-04 09:51:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2356
+
2357
+
2358
+ 2015-06-04 09:51:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2359
+
2360
+
2361
+ 2015-06-04 09:52:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2362
+
2363
+
2364
+ 2015-06-04 09:52:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2365
+
2366
+
2367
+ 2015-06-04 09:53:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2368
+
2369
+
2370
+ 2015-06-04 09:53:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2371
+
2372
+
2373
+ 2015-06-04 09:53:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2374
+
2375
+
2376
+ 2015-06-04 09:54:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2377
+
2378
+
2379
+ 2015-06-04 09:54:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2380
+
2381
+
2382
+ 2015-06-04 09:54:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2383
+
2384
+
2385
+ 2015-06-04 09:54:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2386
+
2387
+
2388
+ 2015-06-04 09:54:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2389
+
2390
+
2391
+ 2015-06-04 09:55:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2392
+
2393
+
2394
+ 2015-06-04 09:55:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2395
+
2396
+
2397
+ 2015-06-04 10:01:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2398
+
2399
+
2400
+ 2015-06-04 10:01:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2401
+
2402
+
2403
+ 2015-06-04 10:01:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2404
+
2405
+
2406
+ 2015-06-04 10:01:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2407
+
2408
+
2409
+ 2015-06-04 10:02:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2410
+
2411
+
2412
+ 2015-06-04 10:02:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2413
+
2414
+
2415
+ 2015-06-04 10:02:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2416
+
2417
+
2418
+ 2015-06-04 10:02:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2419
+
2420
+
2421
+ 2015-06-04 10:02:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2422
+
2423
+
2424
+ 2015-06-04 11:08:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2425
+
2426
+
2427
+ 2015-06-04 11:08:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2428
+
2429
+
2430
+ 2015-06-04 11:08:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2431
+
2432
+
2433
+ 2015-06-04 11:08:41.000000+00:00 => Rendered session user with his LB Points
2434
+
2435
+
2436
+ 2015-06-04 11:08:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2437
+
2438
+
2439
+ 2015-06-04 11:08:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2440
+
2441
+
2442
+ 2015-06-04 11:08:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2443
+
2444
+
2445
+ 2015-06-04 11:08:47.000000+00:00 => CALLED STATE API: initialies all vars with request id-534
2446
+
2447
+
2448
+ 2015-06-04 11:08:52.000000+00:00 => LB API called : RequestLineItemRedemption
2449
+
2450
+
2451
+ 2015-06-04 11:08:52.000000+00:00 => LB API called : got Discount199.6%
2452
+
2453
+
2454
+ 2015-06-04 11:08:53.000000+00:00 => Coupon generated..LB_5339
2455
+
2456
+
2457
+ 2015-06-04 11:08:53.000000+00:00 => Generating coupon...199.6
2458
+
2459
+
2460
+ 2015-06-04 11:08:53.000000+00:00 => Cart is updated...
2461
+
2462
+
2463
+ 2015-06-04 11:08:58.000000+00:00 => Rendered session user with his LB Points
2464
+
2465
+
2466
+ 2015-06-04 11:08:58.000000+00:00 => Rendered session user with his LB Points
2467
+
2468
+
2469
+ 2015-06-04 11:09:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2470
+
2471
+
2472
+ 2015-06-15 10:20:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2473
+
2474
+
2475
+ 2015-06-15 10:20:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2476
+
2477
+
2478
+ 2015-06-15 10:20:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2479
+
2480
+
2481
+ 2015-06-15 10:20:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2482
+
2483
+
2484
+ 2015-06-15 10:20:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2485
+
2486
+
2487
+ 2015-06-15 10:20:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2488
+
2489
+
2490
+ 2015-06-15 10:20:22.000000+00:00 => Rendered Connect with Loyalty Box button
2491
+
2492
+
2493
+ 2015-06-15 10:20:22.000000+00:00 => End: Rendered Connect with Loyalty Box button
2494
+
2495
+
2496
+ 2015-06-15 10:20:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2497
+
2498
+
2499
+ 2015-06-15 10:20:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2500
+
2501
+
2502
+ 2015-06-15 10:20:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2503
+
2504
+
2505
+ 2015-06-15 10:20:28.000000+00:00 => CALLED STATE API: initialies all vars with request id-3204
2506
+
2507
+
2508
+ 2015-06-15 10:20:28.000000+00:00 => Cart is updated...
2509
+
2510
+
2511
+ 2015-06-15 10:20:34.000000+00:00 => Rendered Connect with Loyalty Box button
2512
+
2513
+
2514
+ 2015-06-15 10:20:34.000000+00:00 => End: Rendered Connect with Loyalty Box button
2515
+
2516
+
2517
+ 2015-06-15 10:20:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2518
+
2519
+
2520
+ 2015-06-15 10:21:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2521
+
2522
+
2523
+ 2015-06-15 10:21:15.000000+00:00 => CALLED STATE API: initialies all vars with request id-3204
2524
+
2525
+
2526
+ 2015-06-15 10:21:15.000000+00:00 => Login :6666333333
2527
+
2528
+
2529
+ 2015-06-15 10:21:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2530
+
2531
+
2532
+ 2015-06-15 10:21:21.000000+00:00 => CALLED STATE API: initialies all vars with request id-3204
2533
+
2534
+
2535
+ 2015-06-15 10:21:27.000000+00:00 => LB API called : RequestLineItemRedemption
2536
+
2537
+
2538
+ 2015-06-15 10:21:27.000000+00:00 => LB API called : got Discount99.8%
2539
+
2540
+
2541
+ 2015-06-15 10:21:28.000000+00:00 => Coupon generated..LB_5735
2542
+
2543
+
2544
+ 2015-06-15 10:21:28.000000+00:00 => Generating coupon...99.8
2545
+
2546
+
2547
+ 2015-06-15 10:21:28.000000+00:00 => Cart is updated...
2548
+
2549
+
2550
+ 2015-06-15 10:21:28.000000+00:00 => Rendered session user with his LB Points
2551
+
2552
+
2553
+ 2015-06-15 10:21:28.000000+00:00 => Rendered session user with his LB Points
2554
+
2555
+
2556
+ 2015-06-15 10:21:29.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2557
+
2558
+
2559
+ 2015-06-15 10:21:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2560
+
2561
+
2562
+ 2015-06-15 10:21:33.000000+00:00 => CALLED STATE API: initialies all vars with request id-3204
2563
+
2564
+
2565
+ 2015-06-15 10:21:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2566
+
2567
+
2568
+ 2015-06-15 10:21:34.000000+00:00 => CALLED STATE API: initialies all vars with request id-3205
2569
+
2570
+
2571
+ 2015-06-15 10:21:34.000000+00:00 => Cart is updated...
2572
+
2573
+
2574
+ 2015-06-15 10:21:35.000000+00:00 => Rendered Connect with Loyalty Box button
2575
+
2576
+
2577
+ 2015-06-15 10:21:35.000000+00:00 => End: Rendered Connect with Loyalty Box button
2578
+
2579
+
2580
+ 2015-06-15 10:21:36.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2581
+
2582
+
2583
+ 2015-06-15 10:21:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2584
+
2585
+
2586
+ 2015-06-15 10:21:44.000000+00:00 => CALLED STATE API: initialies all vars with request id-3205
2587
+
2588
+
2589
+ 2015-06-15 10:21:44.000000+00:00 => Login :9999999999
2590
+
2591
+
2592
+ 2015-06-15 10:21:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2593
+
2594
+
2595
+ 2015-06-15 10:21:53.000000+00:00 => CALLED STATE API: initialies all vars with request id-3205
2596
+
2597
+
2598
+ 2015-06-15 10:21:58.000000+00:00 => LB API called : RequestLineItemRedemption
2599
+
2600
+
2601
+ 2015-06-15 10:21:58.000000+00:00 => LB API called : got Discount99.8%
2602
+
2603
+
2604
+ 2015-06-15 10:21:59.000000+00:00 => Coupon generated..LB_2369
2605
+
2606
+
2607
+ 2015-06-15 10:21:59.000000+00:00 => Generating coupon...99.8
2608
+
2609
+
2610
+ 2015-06-15 10:21:59.000000+00:00 => Cart is updated...
2611
+
2612
+
2613
+ 2015-06-15 10:21:59.000000+00:00 => Rendered session user with his LB Points
2614
+
2615
+
2616
+ 2015-06-15 10:21:59.000000+00:00 => Rendered session user with his LB Points
2617
+
2618
+
2619
+ 2015-06-15 10:22:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2620
+
2621
+
2622
+ 2015-06-15 10:22:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2623
+
2624
+
2625
+ 2015-06-15 10:22:04.000000+00:00 => CALLED STATE API: initialies all vars with request id-3205
2626
+
2627
+
2628
+ 2015-06-15 10:22:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2629
+
2630
+
2631
+ 2015-06-15 10:22:05.000000+00:00 => CALLED STATE API: initialies all vars with request id-3206
2632
+
2633
+
2634
+ 2015-06-15 10:22:05.000000+00:00 => Cart is updated...
2635
+
2636
+
2637
+ 2015-06-15 10:22:06.000000+00:00 => Rendered Connect with Loyalty Box button
2638
+
2639
+
2640
+ 2015-06-15 10:22:06.000000+00:00 => End: Rendered Connect with Loyalty Box button
2641
+
2642
+
2643
+ 2015-06-15 10:22:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2644
+
2645
+
2646
+ 2015-06-15 10:22:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2647
+
2648
+
2649
+ 2015-06-15 10:22:27.000000+00:00 => CALLED STATE API: initialies all vars with request id-3206
2650
+
2651
+
2652
+ 2015-06-15 10:22:28.000000+00:00 => Login :5555555555
2653
+
2654
+
2655
+ 2015-06-15 10:22:36.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2656
+
2657
+
2658
+ 2015-06-15 10:22:36.000000+00:00 => CALLED STATE API: initialies all vars with request id-3206
2659
+
2660
+
2661
+ 2015-06-15 10:22:43.000000+00:00 => LB API called : RequestLineItemRedemption
2662
+
2663
+
2664
+ 2015-06-15 10:22:43.000000+00:00 => LB API called : got Discount99.8%
2665
+
2666
+
2667
+ 2015-06-15 10:22:43.000000+00:00 => Coupon generated..LB_1361
2668
+
2669
+
2670
+ 2015-06-15 10:22:43.000000+00:00 => Generating coupon...99.8
2671
+
2672
+
2673
+ 2015-06-15 10:22:43.000000+00:00 => Cart is updated...
2674
+
2675
+
2676
+ 2015-06-15 10:22:44.000000+00:00 => Rendered session user with his LB Points
2677
+
2678
+
2679
+ 2015-06-15 10:22:44.000000+00:00 => Rendered session user with his LB Points
2680
+
2681
+
2682
+ 2015-06-15 10:22:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2683
+
2684
+
2685
+ 2015-06-15 10:22:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2686
+
2687
+
2688
+ 2015-06-15 10:22:52.000000+00:00 => CALLED STATE API: initialies all vars with request id-3206
2689
+
2690
+
2691
+ 2015-06-15 10:22:58.000000+00:00 => LB API called : Inquiry to check Points Balance
2692
+
2693
+
2694
+ 2015-06-15 10:22:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2695
+
2696
+
2697
+ 2015-06-15 10:22:58.000000+00:00 => CALLED STATE API: initialies all vars with request id-3206
2698
+
2699
+
2700
+ 2015-06-15 10:23:04.000000+00:00 => LB API called : RequestLineItemRedemption
2701
+
2702
+
2703
+ 2015-06-15 10:23:04.000000+00:00 => LB API called : got Discount99.8%
2704
+
2705
+
2706
+ 2015-06-15 10:23:04.000000+00:00 => Coupon generated..LB_1361
2707
+
2708
+
2709
+ 2015-06-15 10:23:04.000000+00:00 => Generating coupon...104.8
2710
+
2711
+
2712
+ 2015-06-15 10:23:04.000000+00:00 => Cart is updated...
2713
+
2714
+
2715
+ 2015-06-15 10:23:05.000000+00:00 => Rendered session user with his LB Points
2716
+
2717
+
2718
+ 2015-06-15 10:23:05.000000+00:00 => Rendered session user with his LB Points
2719
+
2720
+
2721
+ 2015-06-15 10:23:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2722
+
2723
+
2724
+ 2015-06-15 10:26:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2725
+
2726
+
2727
+ 2015-06-15 10:26:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2728
+
2729
+
2730
+ 2015-06-15 10:26:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2731
+
2732
+
2733
+ 2015-06-15 10:26:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2734
+
2735
+
2736
+ 2015-06-15 10:26:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2737
+
2738
+
2739
+ 2015-06-15 10:26:36.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2740
+
2741
+
2742
+ 2015-06-15 10:26:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2743
+
2744
+
2745
+ 2015-06-15 10:26:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2746
+
2747
+
2748
+ 2015-06-15 10:26:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2749
+
2750
+
2751
+ 2015-06-15 10:26:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2752
+
2753
+
2754
+ 2015-07-08 04:34:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2755
+
2756
+
2757
+ 2015-07-08 04:34:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2758
+
2759
+
2760
+ 2015-07-08 04:34:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2761
+
2762
+
2763
+ 2015-07-08 04:34:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2764
+
2765
+
2766
+ 2015-07-08 04:34:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2767
+
2768
+
2769
+ 2015-07-08 04:34:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2770
+
2771
+
2772
+ 2015-07-08 04:34:43.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2773
+
2774
+
2775
+ 2015-07-08 04:34:44.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
2776
+
2777
+
2778
+ 2015-07-08 04:34:44.000000+00:00 => Cart is updated...
2779
+
2780
+
2781
+ 2015-07-08 04:34:49.000000+00:00 => Rendered Connect with Loyalty Box button
2782
+
2783
+
2784
+ 2015-07-08 04:34:49.000000+00:00 => End: Rendered Connect with Loyalty Box button
2785
+
2786
+
2787
+ 2015-07-08 04:34:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2788
+
2789
+
2790
+ 2015-07-08 05:30:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2791
+
2792
+
2793
+ 2015-07-08 05:30:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2794
+
2795
+
2796
+ 2015-07-08 05:30:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2797
+
2798
+
2799
+ 2015-07-08 05:30:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2800
+
2801
+
2802
+ 2015-07-08 05:30:29.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2803
+
2804
+
2805
+ 2015-07-08 05:30:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2806
+
2807
+
2808
+ 2015-07-08 05:30:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2809
+
2810
+
2811
+ 2015-07-08 05:30:43.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2812
+
2813
+
2814
+ 2015-07-08 05:30:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2815
+
2816
+
2817
+ 2015-07-08 05:30:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2818
+
2819
+
2820
+ 2015-07-08 05:30:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2821
+
2822
+
2823
+ 2015-07-08 05:30:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2824
+
2825
+
2826
+ 2015-07-08 05:30:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2827
+
2828
+
2829
+ 2015-07-08 05:31:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2830
+
2831
+
2832
+ 2015-07-08 05:31:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2833
+
2834
+
2835
+ 2015-07-08 05:31:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2836
+
2837
+
2838
+ 2015-07-08 05:31:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2839
+
2840
+
2841
+ 2015-07-08 05:31:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2842
+
2843
+
2844
+ 2015-07-08 05:31:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2845
+
2846
+
2847
+ 2015-07-08 05:31:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2848
+
2849
+
2850
+ 2015-07-08 05:31:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2851
+
2852
+
2853
+ 2015-07-08 05:31:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2854
+
2855
+
2856
+ 2015-07-08 05:31:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2857
+
2858
+
2859
+ 2015-07-08 05:32:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2860
+
2861
+
2862
+ 2015-07-08 05:34:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2863
+
2864
+
2865
+ 2015-07-08 05:34:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2866
+
2867
+
2868
+ 2015-07-08 05:34:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2869
+
2870
+
2871
+ 2015-07-08 05:34:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2872
+
2873
+
2874
+ 2015-07-08 05:34:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2875
+
2876
+
2877
+ 2015-07-08 05:38:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2878
+
2879
+
2880
+ 2015-07-08 05:38:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2881
+
2882
+
2883
+ 2015-07-08 05:38:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2884
+
2885
+
2886
+ 2015-07-08 05:38:43.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2887
+
2888
+
2889
+ 2015-07-08 05:38:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2890
+
2891
+
2892
+ 2015-07-08 05:38:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2893
+
2894
+
2895
+ 2015-07-08 05:39:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2896
+
2897
+
2898
+ 2015-07-08 05:39:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2899
+
2900
+
2901
+ 2015-07-08 05:39:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2902
+
2903
+
2904
+ 2015-07-08 05:39:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2905
+
2906
+
2907
+ 2015-07-08 05:39:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2908
+
2909
+
2910
+ 2015-07-08 05:39:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2911
+
2912
+
2913
+ 2015-07-08 05:40:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2914
+
2915
+
2916
+ 2015-07-08 05:40:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2917
+
2918
+
2919
+ 2015-07-08 05:40:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2920
+
2921
+
2922
+ 2015-07-08 05:45:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2923
+
2924
+
2925
+ 2015-07-08 05:45:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2926
+
2927
+
2928
+ 2015-07-08 05:45:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2929
+
2930
+
2931
+ 2015-07-08 05:45:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2932
+
2933
+
2934
+ 2015-07-08 05:53:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2935
+
2936
+
2937
+ 2015-07-08 05:53:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2938
+
2939
+
2940
+ 2015-07-08 05:54:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2941
+
2942
+
2943
+ 2015-07-08 05:54:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2944
+
2945
+
2946
+ 2015-07-08 05:54:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2947
+
2948
+
2949
+ 2015-07-08 05:54:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2950
+
2951
+
2952
+ 2015-07-08 05:54:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2953
+
2954
+
2955
+ 2015-07-08 05:54:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2956
+
2957
+
2958
+ 2015-07-08 05:54:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2959
+
2960
+
2961
+ 2015-07-08 05:57:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2962
+
2963
+
2964
+ 2015-07-08 05:57:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2965
+
2966
+
2967
+ 2015-07-08 05:57:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2968
+
2969
+
2970
+ 2015-07-08 05:57:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2971
+
2972
+
2973
+ 2015-07-08 05:57:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2974
+
2975
+
2976
+ 2015-07-08 05:58:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2977
+
2978
+
2979
+ 2015-07-08 05:58:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2980
+
2981
+
2982
+ 2015-07-08 05:58:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2983
+
2984
+
2985
+ 2015-07-08 06:02:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2986
+
2987
+
2988
+ 2015-07-08 06:02:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2989
+
2990
+
2991
+ 2015-07-08 06:02:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2992
+
2993
+
2994
+ 2015-07-08 06:02:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2995
+
2996
+
2997
+ 2015-07-08 06:02:17.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
2998
+
2999
+
3000
+ 2015-07-08 06:02:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3001
+
3002
+
3003
+ 2015-07-08 06:02:18.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3004
+
3005
+
3006
+ 2015-07-08 06:02:18.000000+00:00 => Cart is updated...
3007
+
3008
+
3009
+ 2015-07-08 06:02:22.000000+00:00 => Rendered Connect with Loyalty Box button
3010
+
3011
+
3012
+ 2015-07-08 06:02:22.000000+00:00 => End: Rendered Connect with Loyalty Box button
3013
+
3014
+
3015
+ 2015-07-08 06:02:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3016
+
3017
+
3018
+ 2015-07-08 06:02:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3019
+
3020
+
3021
+ 2015-07-08 06:02:40.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3022
+
3023
+
3024
+ 2015-07-08 06:02:41.000000+00:00 => Cart is updated...
3025
+
3026
+
3027
+ 2015-07-08 06:02:41.000000+00:00 => Rendered Connect with Loyalty Box button
3028
+
3029
+
3030
+ 2015-07-08 06:02:41.000000+00:00 => End: Rendered Connect with Loyalty Box button
3031
+
3032
+
3033
+ 2015-07-08 06:02:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3034
+
3035
+
3036
+ 2015-07-08 06:08:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3037
+
3038
+
3039
+ 2015-07-08 06:08:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3040
+
3041
+
3042
+ 2015-07-08 06:08:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3043
+
3044
+
3045
+ 2015-07-08 06:08:32.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3046
+
3047
+
3048
+ 2015-07-08 06:08:32.000000+00:00 => Cart is updated...
3049
+
3050
+
3051
+ 2015-07-08 06:08:36.000000+00:00 => Rendered Connect with Loyalty Box button
3052
+
3053
+
3054
+ 2015-07-08 06:08:36.000000+00:00 => End: Rendered Connect with Loyalty Box button
3055
+
3056
+
3057
+ 2015-07-08 06:08:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3058
+
3059
+
3060
+ 2015-07-08 06:08:43.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3061
+
3062
+
3063
+ 2015-07-08 06:08:43.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3064
+
3065
+
3066
+ 2015-07-08 06:08:44.000000+00:00 => Cart is updated...
3067
+
3068
+
3069
+ 2015-07-08 06:08:44.000000+00:00 => Rendered Connect with Loyalty Box button
3070
+
3071
+
3072
+ 2015-07-08 06:08:44.000000+00:00 => End: Rendered Connect with Loyalty Box button
3073
+
3074
+
3075
+ 2015-07-08 06:08:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3076
+
3077
+
3078
+ 2015-07-08 06:08:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3079
+
3080
+
3081
+ 2015-07-08 06:08:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3082
+
3083
+
3084
+ 2015-07-08 06:09:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3085
+
3086
+
3087
+ 2015-07-08 06:09:01.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3088
+
3089
+
3090
+ 2015-07-08 06:09:01.000000+00:00 => Cart is updated...
3091
+
3092
+
3093
+ 2015-07-08 06:09:05.000000+00:00 => Rendered Connect with Loyalty Box button
3094
+
3095
+
3096
+ 2015-07-08 06:09:05.000000+00:00 => End: Rendered Connect with Loyalty Box button
3097
+
3098
+
3099
+ 2015-07-08 06:09:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3100
+
3101
+
3102
+ 2015-07-08 06:09:43.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3103
+
3104
+
3105
+ 2015-07-08 06:09:43.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3106
+
3107
+
3108
+ 2015-07-08 06:09:43.000000+00:00 => Cart is updated...
3109
+
3110
+
3111
+ 2015-07-08 06:09:44.000000+00:00 => Rendered Connect with Loyalty Box button
3112
+
3113
+
3114
+ 2015-07-08 06:09:44.000000+00:00 => End: Rendered Connect with Loyalty Box button
3115
+
3116
+
3117
+ 2015-07-08 06:09:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3118
+
3119
+
3120
+ 2015-07-08 06:10:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3121
+
3122
+
3123
+ 2015-07-08 06:10:17.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3124
+
3125
+
3126
+ 2015-07-08 06:10:17.000000+00:00 => Cart is updated...
3127
+
3128
+
3129
+ 2015-07-08 06:10:18.000000+00:00 => Rendered Connect with Loyalty Box button
3130
+
3131
+
3132
+ 2015-07-08 06:10:18.000000+00:00 => End: Rendered Connect with Loyalty Box button
3133
+
3134
+
3135
+ 2015-07-08 06:10:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3136
+
3137
+
3138
+ 2015-07-08 06:10:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3139
+
3140
+
3141
+ 2015-07-08 06:10:25.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3142
+
3143
+
3144
+ 2015-07-08 06:10:26.000000+00:00 => Cart is updated...
3145
+
3146
+
3147
+ 2015-07-08 06:10:26.000000+00:00 => Rendered Connect with Loyalty Box button
3148
+
3149
+
3150
+ 2015-07-08 06:10:26.000000+00:00 => End: Rendered Connect with Loyalty Box button
3151
+
3152
+
3153
+ 2015-07-08 06:10:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3154
+
3155
+
3156
+ 2015-07-08 06:10:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3157
+
3158
+
3159
+ 2015-07-08 06:10:57.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3160
+
3161
+
3162
+ 2015-07-08 06:10:57.000000+00:00 => Cart is updated...
3163
+
3164
+
3165
+ 2015-07-08 06:10:58.000000+00:00 => Rendered Connect with Loyalty Box button
3166
+
3167
+
3168
+ 2015-07-08 06:10:58.000000+00:00 => End: Rendered Connect with Loyalty Box button
3169
+
3170
+
3171
+ 2015-07-08 06:10:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3172
+
3173
+
3174
+ 2015-07-08 06:12:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3175
+
3176
+
3177
+ 2015-07-08 06:12:44.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3178
+
3179
+
3180
+ 2015-07-08 06:12:45.000000+00:00 => Cart is updated...
3181
+
3182
+
3183
+ 2015-07-08 06:12:45.000000+00:00 => Rendered Connect with Loyalty Box button
3184
+
3185
+
3186
+ 2015-07-08 06:12:45.000000+00:00 => End: Rendered Connect with Loyalty Box button
3187
+
3188
+
3189
+ 2015-07-08 06:12:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3190
+
3191
+
3192
+ 2015-07-08 06:12:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3193
+
3194
+
3195
+ 2015-07-08 06:12:55.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3196
+
3197
+
3198
+ 2015-07-08 06:12:55.000000+00:00 => Cart is updated...
3199
+
3200
+
3201
+ 2015-07-08 06:12:56.000000+00:00 => Rendered Connect with Loyalty Box button
3202
+
3203
+
3204
+ 2015-07-08 06:12:56.000000+00:00 => End: Rendered Connect with Loyalty Box button
3205
+
3206
+
3207
+ 2015-07-08 06:12:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3208
+
3209
+
3210
+ 2015-07-08 06:14:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3211
+
3212
+
3213
+ 2015-07-08 06:15:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3214
+
3215
+
3216
+ 2015-07-08 06:15:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3217
+
3218
+
3219
+ 2015-07-08 06:15:04.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3220
+
3221
+
3222
+ 2015-07-08 06:15:04.000000+00:00 => Cart is updated...
3223
+
3224
+
3225
+ 2015-07-08 06:15:10.000000+00:00 => Rendered Connect with Loyalty Box button
3226
+
3227
+
3228
+ 2015-07-08 06:15:10.000000+00:00 => End: Rendered Connect with Loyalty Box button
3229
+
3230
+
3231
+ 2015-07-08 06:15:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3232
+
3233
+
3234
+ 2015-07-08 06:15:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3235
+
3236
+
3237
+ 2015-07-08 06:15:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3238
+
3239
+
3240
+ 2015-07-08 06:15:39.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3241
+
3242
+
3243
+ 2015-07-08 06:15:39.000000+00:00 => Cart is updated...
3244
+
3245
+
3246
+ 2015-07-08 06:15:40.000000+00:00 => Rendered Connect with Loyalty Box button
3247
+
3248
+
3249
+ 2015-07-08 06:15:40.000000+00:00 => End: Rendered Connect with Loyalty Box button
3250
+
3251
+
3252
+ 2015-07-08 06:15:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3253
+
3254
+
3255
+ 2015-07-08 06:16:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3256
+
3257
+
3258
+ 2015-07-08 06:16:51.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3259
+
3260
+
3261
+ 2015-07-08 06:16:51.000000+00:00 => Cart is updated...
3262
+
3263
+
3264
+ 2015-07-08 06:16:52.000000+00:00 => Rendered Connect with Loyalty Box button
3265
+
3266
+
3267
+ 2015-07-08 06:16:52.000000+00:00 => End: Rendered Connect with Loyalty Box button
3268
+
3269
+
3270
+ 2015-07-08 06:16:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3271
+
3272
+
3273
+ 2015-07-08 06:16:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3274
+
3275
+
3276
+ 2015-07-08 06:17:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3277
+
3278
+
3279
+ 2015-07-08 06:17:11.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3280
+
3281
+
3282
+ 2015-07-08 06:17:11.000000+00:00 => Cart is updated...
3283
+
3284
+
3285
+ 2015-07-08 06:17:12.000000+00:00 => Rendered Connect with Loyalty Box button
3286
+
3287
+
3288
+ 2015-07-08 06:17:12.000000+00:00 => End: Rendered Connect with Loyalty Box button
3289
+
3290
+
3291
+ 2015-07-08 06:17:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3292
+
3293
+
3294
+ 2015-07-08 06:18:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3295
+
3296
+
3297
+ 2015-07-08 06:18:03.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3298
+
3299
+
3300
+ 2015-07-08 06:18:03.000000+00:00 => Cart is updated...
3301
+
3302
+
3303
+ 2015-07-08 06:18:04.000000+00:00 => Rendered Connect with Loyalty Box button
3304
+
3305
+
3306
+ 2015-07-08 06:18:04.000000+00:00 => End: Rendered Connect with Loyalty Box button
3307
+
3308
+
3309
+ 2015-07-08 06:18:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3310
+
3311
+
3312
+ 2015-07-08 06:18:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3313
+
3314
+
3315
+ 2015-07-08 06:18:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3316
+
3317
+
3318
+ 2015-07-08 06:18:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3319
+
3320
+
3321
+ 2015-07-08 06:18:46.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3322
+
3323
+
3324
+ 2015-07-08 06:18:46.000000+00:00 => Cart is updated...
3325
+
3326
+
3327
+ 2015-07-08 06:18:51.000000+00:00 => Rendered Connect with Loyalty Box button
3328
+
3329
+
3330
+ 2015-07-08 06:18:51.000000+00:00 => End: Rendered Connect with Loyalty Box button
3331
+
3332
+
3333
+ 2015-07-08 06:18:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3334
+
3335
+
3336
+ 2015-07-08 06:19:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3337
+
3338
+
3339
+ 2015-07-08 06:19:50.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3340
+
3341
+
3342
+ 2015-07-08 06:19:50.000000+00:00 => Cart is updated...
3343
+
3344
+
3345
+ 2015-07-08 06:19:51.000000+00:00 => Rendered Connect with Loyalty Box button
3346
+
3347
+
3348
+ 2015-07-08 06:19:51.000000+00:00 => End: Rendered Connect with Loyalty Box button
3349
+
3350
+
3351
+ 2015-07-08 06:19:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3352
+
3353
+
3354
+ 2015-07-08 06:20:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3355
+
3356
+
3357
+ 2015-07-08 06:21:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3358
+
3359
+
3360
+ 2015-07-08 06:21:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3361
+
3362
+
3363
+ 2015-07-08 06:21:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3364
+
3365
+
3366
+ 2015-07-08 06:21:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3367
+
3368
+
3369
+ 2015-07-08 06:21:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3370
+
3371
+
3372
+ 2015-07-08 06:22:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3373
+
3374
+
3375
+ 2015-07-08 06:23:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3376
+
3377
+
3378
+ 2015-07-08 06:23:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3379
+
3380
+
3381
+ 2015-07-08 06:24:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3382
+
3383
+
3384
+ 2015-07-08 06:24:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3385
+
3386
+
3387
+ 2015-07-08 06:24:49.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3388
+
3389
+
3390
+ 2015-07-08 06:24:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3391
+
3392
+
3393
+ 2015-07-08 06:25:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3394
+
3395
+
3396
+ 2015-07-08 06:25:10.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3397
+
3398
+
3399
+ 2015-07-08 06:25:10.000000+00:00 => Cart is updated...
3400
+
3401
+
3402
+ 2015-07-08 06:25:14.000000+00:00 => Rendered Connect with Loyalty Box button
3403
+
3404
+
3405
+ 2015-07-08 06:25:14.000000+00:00 => End: Rendered Connect with Loyalty Box button
3406
+
3407
+
3408
+ 2015-07-08 06:25:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3409
+
3410
+
3411
+ 2015-07-08 06:28:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3412
+
3413
+
3414
+ 2015-07-08 06:28:25.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3415
+
3416
+
3417
+ 2015-07-08 06:28:26.000000+00:00 => Cart is updated...
3418
+
3419
+
3420
+ 2015-07-08 06:28:26.000000+00:00 => Rendered Connect with Loyalty Box button
3421
+
3422
+
3423
+ 2015-07-08 06:28:26.000000+00:00 => End: Rendered Connect with Loyalty Box button
3424
+
3425
+
3426
+ 2015-07-08 06:28:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3427
+
3428
+
3429
+ 2015-07-08 06:29:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3430
+
3431
+
3432
+ 2015-07-08 06:29:03.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3433
+
3434
+
3435
+ 2015-07-08 06:29:03.000000+00:00 => Login :8888888888
3436
+
3437
+
3438
+ 2015-07-08 06:29:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3439
+
3440
+
3441
+ 2015-07-08 06:29:07.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3442
+
3443
+
3444
+ 2015-07-08 06:29:13.000000+00:00 => LB API called : RequestLineItemRedemption
3445
+
3446
+
3447
+ 2015-07-08 06:29:13.000000+00:00 => LB API called : got Discount199.6%
3448
+
3449
+
3450
+ 2015-07-08 06:29:14.000000+00:00 => Coupon generated..LB_5431
3451
+
3452
+
3453
+ 2015-07-08 06:29:14.000000+00:00 => Generating coupon...199.6
3454
+
3455
+
3456
+ 2015-07-08 06:29:14.000000+00:00 => Cart is updated...
3457
+
3458
+
3459
+ 2015-07-08 06:29:15.000000+00:00 => Rendered session user with his LB Points
3460
+
3461
+
3462
+ 2015-07-08 06:29:15.000000+00:00 => Rendered session user with his LB Points
3463
+
3464
+
3465
+ 2015-07-08 06:29:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3466
+
3467
+
3468
+ 2015-07-08 06:29:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3469
+
3470
+
3471
+ 2015-07-08 06:29:22.000000+00:00 => CALLED STATE API: initialies all vars with request id-4067
3472
+
3473
+
3474
+ 2015-07-08 06:29:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3475
+
3476
+
3477
+ 2015-07-08 06:29:23.000000+00:00 => CALLED STATE API: initialies all vars with request id-4069
3478
+
3479
+
3480
+ 2015-07-08 06:29:23.000000+00:00 => Cart is updated...
3481
+
3482
+
3483
+ 2015-07-08 06:29:24.000000+00:00 => Rendered Connect with Loyalty Box button
3484
+
3485
+
3486
+ 2015-07-08 06:29:24.000000+00:00 => End: Rendered Connect with Loyalty Box button
3487
+
3488
+
3489
+ 2015-07-08 06:29:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3490
+
3491
+
3492
+ 2015-07-08 06:31:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3493
+
3494
+
3495
+ 2015-07-08 06:31:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3496
+
3497
+
3498
+ 2015-07-08 06:43:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3499
+
3500
+
3501
+ 2015-07-08 07:05:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3502
+
3503
+
3504
+ 2015-07-08 07:29:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3505
+
3506
+
3507
+ 2015-07-08 07:29:58.000000+00:00 => CALLED STATE API: initialies all vars with request id-4069
3508
+
3509
+
3510
+ 2015-07-08 07:29:59.000000+00:00 => Cart is updated...
3511
+
3512
+
3513
+ 2015-07-08 07:30:00.000000+00:00 => Rendered Connect with Loyalty Box button
3514
+
3515
+
3516
+ 2015-07-08 07:30:00.000000+00:00 => End: Rendered Connect with Loyalty Box button
3517
+
3518
+
3519
+ 2015-07-08 07:30:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3520
+
3521
+
3522
+ 2015-07-08 09:07:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3523
+
3524
+
3525
+ 2015-07-08 09:07:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3526
+
3527
+
3528
+ 2015-07-08 09:07:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3529
+
3530
+
3531
+ 2015-07-08 09:07:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3532
+
3533
+
3534
+ 2015-07-08 09:07:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3535
+
3536
+
3537
+ 2015-07-08 09:07:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3538
+
3539
+
3540
+ 2015-07-08 09:08:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3541
+
3542
+
3543
+ 2015-07-08 09:08:03.000000+00:00 => Rendered Connect with Loyalty Box button
3544
+
3545
+
3546
+ 2015-07-08 09:08:03.000000+00:00 => End: Rendered Connect with Loyalty Box button
3547
+
3548
+
3549
+ 2015-07-08 09:08:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3550
+
3551
+
3552
+ 2015-07-08 09:08:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3553
+
3554
+
3555
+ 2015-07-08 09:08:35.000000+00:00 => Rendered Connect with Loyalty Box button
3556
+
3557
+
3558
+ 2015-07-08 09:08:35.000000+00:00 => End: Rendered Connect with Loyalty Box button
3559
+
3560
+
3561
+ 2015-07-08 09:08:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3562
+
3563
+
3564
+ 2015-07-08 09:08:36.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3565
+
3566
+
3567
+ 2015-07-08 09:24:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3568
+
3569
+
3570
+ 2015-07-08 09:24:56.000000+00:00 => Rendered Connect with Loyalty Box button
3571
+
3572
+
3573
+ 2015-07-08 09:24:56.000000+00:00 => End: Rendered Connect with Loyalty Box button
3574
+
3575
+
3576
+ 2015-07-08 09:24:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3577
+
3578
+
3579
+ 2015-07-08 09:25:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3580
+
3581
+
3582
+ 2015-07-08 09:25:20.000000+00:00 => Rendered Connect with Loyalty Box button
3583
+
3584
+
3585
+ 2015-07-08 09:25:20.000000+00:00 => End: Rendered Connect with Loyalty Box button
3586
+
3587
+
3588
+ 2015-07-08 09:25:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3589
+
3590
+
3591
+ 2015-07-08 09:28:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3592
+
3593
+
3594
+ 2015-07-08 09:28:40.000000+00:00 => Rendered Connect with Loyalty Box button
3595
+
3596
+
3597
+ 2015-07-08 09:28:40.000000+00:00 => End: Rendered Connect with Loyalty Box button
3598
+
3599
+
3600
+ 2015-07-08 09:28:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3601
+
3602
+
3603
+ 2015-07-08 09:28:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3604
+
3605
+
3606
+ 2015-07-08 09:28:54.000000+00:00 => Rendered Connect with Loyalty Box button
3607
+
3608
+
3609
+ 2015-07-08 09:28:54.000000+00:00 => End: Rendered Connect with Loyalty Box button
3610
+
3611
+
3612
+ 2015-07-08 09:28:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3613
+
3614
+
3615
+ 2015-07-08 09:29:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3616
+
3617
+
3618
+ 2015-07-08 09:29:13.000000+00:00 => Rendered Connect with Loyalty Box button
3619
+
3620
+
3621
+ 2015-07-08 09:29:13.000000+00:00 => End: Rendered Connect with Loyalty Box button
3622
+
3623
+
3624
+ 2015-07-08 09:29:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3625
+
3626
+
3627
+ 2015-07-08 09:32:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3628
+
3629
+
3630
+ 2015-07-08 09:32:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3631
+
3632
+
3633
+ 2015-07-08 09:32:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3634
+
3635
+
3636
+ 2015-07-08 09:32:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3637
+
3638
+
3639
+ 2015-07-08 09:32:17.000000+00:00 => Rendered Connect with Loyalty Box button
3640
+
3641
+
3642
+ 2015-07-08 09:32:17.000000+00:00 => End: Rendered Connect with Loyalty Box button
3643
+
3644
+
3645
+ 2015-07-08 09:32:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3646
+
3647
+
3648
+ 2015-07-08 09:32:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3649
+
3650
+
3651
+ 2015-07-08 09:32:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3652
+
3653
+
3654
+ 2015-07-08 09:32:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3655
+
3656
+
3657
+ 2015-07-08 09:32:47.000000+00:00 => Rendered Connect with Loyalty Box button
3658
+
3659
+
3660
+ 2015-07-08 09:32:47.000000+00:00 => End: Rendered Connect with Loyalty Box button
3661
+
3662
+
3663
+ 2015-07-08 09:32:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3664
+
3665
+
3666
+ 2015-07-08 09:33:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3667
+
3668
+
3669
+ 2015-07-08 09:33:01.000000+00:00 => Rendered Connect with Loyalty Box button
3670
+
3671
+
3672
+ 2015-07-08 09:33:01.000000+00:00 => End: Rendered Connect with Loyalty Box button
3673
+
3674
+
3675
+ 2015-07-08 09:33:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3676
+
3677
+
3678
+ 2015-07-08 09:33:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3679
+
3680
+
3681
+ 2015-07-08 09:33:47.000000+00:00 => Rendered Connect with Loyalty Box button
3682
+
3683
+
3684
+ 2015-07-08 09:33:47.000000+00:00 => End: Rendered Connect with Loyalty Box button
3685
+
3686
+
3687
+ 2015-07-08 09:33:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3688
+
3689
+
3690
+ 2015-07-08 09:33:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3691
+
3692
+
3693
+ 2015-07-08 09:34:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3694
+
3695
+
3696
+ 2015-07-08 09:34:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3697
+
3698
+
3699
+ 2015-07-08 09:34:06.000000+00:00 => Rendered Connect with Loyalty Box button
3700
+
3701
+
3702
+ 2015-07-08 09:34:06.000000+00:00 => End: Rendered Connect with Loyalty Box button
3703
+
3704
+
3705
+ 2015-07-08 09:34:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3706
+
3707
+
3708
+ 2015-07-08 09:37:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3709
+
3710
+
3711
+ 2015-07-08 09:37:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3712
+
3713
+
3714
+ 2015-07-08 09:37:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3715
+
3716
+
3717
+ 2015-07-08 09:37:23.000000+00:00 => Rendered Connect with Loyalty Box button
3718
+
3719
+
3720
+ 2015-07-08 09:37:23.000000+00:00 => End: Rendered Connect with Loyalty Box button
3721
+
3722
+
3723
+ 2015-07-08 09:37:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3724
+
3725
+
3726
+ 2015-07-08 09:37:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3727
+
3728
+
3729
+ 2015-07-08 09:37:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3730
+
3731
+
3732
+ 2015-07-08 09:37:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3733
+
3734
+
3735
+ 2015-07-08 09:38:00.000000+00:00 => Rendered Connect with Loyalty Box button
3736
+
3737
+
3738
+ 2015-07-08 09:38:00.000000+00:00 => End: Rendered Connect with Loyalty Box button
3739
+
3740
+
3741
+ 2015-07-08 09:38:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3742
+
3743
+
3744
+ 2015-07-08 09:38:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3745
+
3746
+
3747
+ 2015-07-08 09:38:33.000000+00:00 => Rendered Connect with Loyalty Box button
3748
+
3749
+
3750
+ 2015-07-08 09:38:33.000000+00:00 => End: Rendered Connect with Loyalty Box button
3751
+
3752
+
3753
+ 2015-07-08 09:38:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3754
+
3755
+
3756
+ 2015-07-08 09:38:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3757
+
3758
+
3759
+ 2015-07-08 09:38:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3760
+
3761
+
3762
+ 2015-07-08 09:38:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3763
+
3764
+
3765
+ 2015-07-08 09:38:56.000000+00:00 => Rendered Connect with Loyalty Box button
3766
+
3767
+
3768
+ 2015-07-08 09:38:56.000000+00:00 => End: Rendered Connect with Loyalty Box button
3769
+
3770
+
3771
+ 2015-07-08 09:39:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3772
+
3773
+
3774
+ 2015-07-08 09:39:14.000000+00:00 => Rendered Connect with Loyalty Box button
3775
+
3776
+
3777
+ 2015-07-08 09:39:14.000000+00:00 => End: Rendered Connect with Loyalty Box button
3778
+
3779
+
3780
+ 2015-07-08 09:39:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3781
+
3782
+
3783
+ 2015-07-08 09:39:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3784
+
3785
+
3786
+ 2015-07-08 09:39:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3787
+
3788
+
3789
+ 2015-07-08 09:39:36.000000+00:00 => Rendered Connect with Loyalty Box button
3790
+
3791
+
3792
+ 2015-07-08 09:39:36.000000+00:00 => End: Rendered Connect with Loyalty Box button
3793
+
3794
+
3795
+ 2015-07-08 09:46:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3796
+
3797
+
3798
+ 2015-07-08 09:46:27.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3799
+
3800
+
3801
+ 2015-07-08 09:46:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3802
+
3803
+
3804
+ 2015-07-08 09:46:36.000000+00:00 => Rendered Connect with Loyalty Box button
3805
+
3806
+
3807
+ 2015-07-08 09:46:36.000000+00:00 => End: Rendered Connect with Loyalty Box button
3808
+
3809
+
3810
+ 2015-07-08 09:47:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3811
+
3812
+
3813
+ 2015-07-08 09:47:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3814
+
3815
+
3816
+ 2015-07-08 09:47:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3817
+
3818
+
3819
+ 2015-07-08 09:47:16.000000+00:00 => Rendered Connect with Loyalty Box button
3820
+
3821
+
3822
+ 2015-07-08 09:47:16.000000+00:00 => End: Rendered Connect with Loyalty Box button
3823
+
3824
+
3825
+ 2015-07-08 09:48:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3826
+
3827
+
3828
+ 2015-07-08 09:48:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3829
+
3830
+
3831
+ 2015-07-08 09:48:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3832
+
3833
+
3834
+ 2015-07-08 09:48:13.000000+00:00 => Rendered Connect with Loyalty Box button
3835
+
3836
+
3837
+ 2015-07-08 09:48:13.000000+00:00 => End: Rendered Connect with Loyalty Box button
3838
+
3839
+
3840
+ 2015-07-08 09:48:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3841
+
3842
+
3843
+ 2015-07-08 09:48:22.000000+00:00 => Rendered Connect with Loyalty Box button
3844
+
3845
+
3846
+ 2015-07-08 09:48:22.000000+00:00 => End: Rendered Connect with Loyalty Box button
3847
+
3848
+
3849
+ 2015-07-08 09:49:23.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3850
+
3851
+
3852
+ 2015-07-08 09:49:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3853
+
3854
+
3855
+ 2015-07-08 09:49:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3856
+
3857
+
3858
+ 2015-07-08 09:49:32.000000+00:00 => Rendered Connect with Loyalty Box button
3859
+
3860
+
3861
+ 2015-07-08 09:49:32.000000+00:00 => End: Rendered Connect with Loyalty Box button
3862
+
3863
+
3864
+ 2015-07-08 09:49:45.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3865
+
3866
+
3867
+ 2015-07-08 09:49:46.000000+00:00 => Rendered Connect with Loyalty Box button
3868
+
3869
+
3870
+ 2015-07-08 09:49:46.000000+00:00 => End: Rendered Connect with Loyalty Box button
3871
+
3872
+
3873
+ 2015-07-08 09:49:49.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3874
+
3875
+
3876
+ 2015-07-08 09:49:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3877
+
3878
+
3879
+ 2015-07-08 09:49:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3880
+
3881
+
3882
+ 2015-07-08 09:49:59.000000+00:00 => Rendered Connect with Loyalty Box button
3883
+
3884
+
3885
+ 2015-07-08 09:49:59.000000+00:00 => End: Rendered Connect with Loyalty Box button
3886
+
3887
+
3888
+ 2015-07-08 09:51:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3889
+
3890
+
3891
+ 2015-07-08 09:51:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3892
+
3893
+
3894
+ 2015-07-08 09:51:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3895
+
3896
+
3897
+ 2015-07-08 09:51:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3898
+
3899
+
3900
+ 2015-07-08 09:59:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3901
+
3902
+
3903
+ 2015-07-08 09:59:58.000000+00:00 => Rendered Connect with Loyalty Box button
3904
+
3905
+
3906
+ 2015-07-08 09:59:58.000000+00:00 => End: Rendered Connect with Loyalty Box button
3907
+
3908
+
3909
+ 2015-07-08 10:00:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3910
+
3911
+
3912
+ 2015-07-08 10:00:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3913
+
3914
+
3915
+ 2015-07-08 10:00:05.000000+00:00 => CALLED STATE API: initialies all vars with request id-4069
3916
+
3917
+
3918
+ 2015-07-08 10:00:05.000000+00:00 => Cart is updated...
3919
+
3920
+
3921
+ 2015-07-08 10:00:09.000000+00:00 => Rendered Connect with Loyalty Box button
3922
+
3923
+
3924
+ 2015-07-08 10:00:09.000000+00:00 => End: Rendered Connect with Loyalty Box button
3925
+
3926
+
3927
+ 2015-07-08 10:04:26.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3928
+
3929
+
3930
+ 2015-07-08 10:04:26.000000+00:00 => CALLED STATE API: initialies all vars with request id-4069
3931
+
3932
+
3933
+ 2015-07-08 10:04:27.000000+00:00 => Cart is updated...
3934
+
3935
+
3936
+ 2015-07-08 10:04:27.000000+00:00 => Rendered Connect with Loyalty Box button
3937
+
3938
+
3939
+ 2015-07-08 10:04:27.000000+00:00 => End: Rendered Connect with Loyalty Box button
3940
+
3941
+
3942
+ 2015-07-08 10:04:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3943
+
3944
+
3945
+ 2015-07-08 10:04:40.000000+00:00 => CALLED STATE API: initialies all vars with request id-4069
3946
+
3947
+
3948
+ 2015-07-08 10:04:40.000000+00:00 => Cart is updated...
3949
+
3950
+
3951
+ 2015-07-08 10:04:41.000000+00:00 => Rendered Connect with Loyalty Box button
3952
+
3953
+
3954
+ 2015-07-08 10:04:41.000000+00:00 => End: Rendered Connect with Loyalty Box button
3955
+
3956
+
3957
+ 2015-07-08 10:04:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3958
+
3959
+
3960
+ 2015-07-08 10:04:52.000000+00:00 => Rendered Connect with Loyalty Box button
3961
+
3962
+
3963
+ 2015-07-08 10:04:52.000000+00:00 => End: Rendered Connect with Loyalty Box button
3964
+
3965
+
3966
+ 2015-07-09 04:24:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3967
+
3968
+
3969
+ 2015-07-09 04:24:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3970
+
3971
+
3972
+ 2015-07-09 04:24:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3973
+
3974
+
3975
+ 2015-07-09 04:24:36.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3976
+
3977
+
3978
+ 2015-07-09 04:24:37.000000+00:00 => Rendered Connect with Loyalty Box button
3979
+
3980
+
3981
+ 2015-07-09 04:24:37.000000+00:00 => End: Rendered Connect with Loyalty Box button
3982
+
3983
+
3984
+ 2015-07-09 04:26:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3985
+
3986
+
3987
+ 2015-07-09 04:47:38.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3988
+
3989
+
3990
+ 2015-07-09 04:47:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3991
+
3992
+
3993
+ 2015-07-09 04:47:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3994
+
3995
+
3996
+ 2015-07-09 04:47:49.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
3997
+
3998
+
3999
+ 2015-07-09 04:47:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4000
+
4001
+
4002
+ 2015-07-09 04:48:02.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4003
+
4004
+
4005
+ 2015-07-09 04:48:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4006
+
4007
+
4008
+ 2015-07-09 04:48:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4009
+
4010
+
4011
+ 2015-07-09 04:48:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4012
+
4013
+
4014
+ 2015-07-09 04:48:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4015
+
4016
+
4017
+ 2015-07-14 04:32:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4018
+
4019
+
4020
+ 2015-07-14 04:32:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4021
+
4022
+
4023
+ 2015-07-14 04:32:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4024
+
4025
+
4026
+ 2015-07-14 04:32:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4027
+
4028
+
4029
+ 2015-07-14 04:32:56.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4030
+
4031
+
4032
+ 2015-07-14 04:33:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4033
+
4034
+
4035
+ 2015-07-14 04:33:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4036
+
4037
+
4038
+ 2015-07-14 04:55:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4039
+
4040
+
4041
+ 2015-07-14 04:55:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4042
+
4043
+
4044
+ 2015-07-14 04:55:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4045
+
4046
+
4047
+ 2015-07-14 04:55:28.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4048
+
4049
+
4050
+ 2015-07-14 04:55:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4051
+
4052
+
4053
+ 2015-07-14 04:55:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4054
+
4055
+
4056
+ 2015-07-14 04:55:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4057
+
4058
+
4059
+ 2015-07-14 04:55:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4060
+
4061
+
4062
+ 2015-07-14 04:55:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4063
+
4064
+
4065
+ 2015-07-14 06:08:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4066
+
4067
+
4068
+ 2015-07-14 06:08:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4069
+
4070
+
4071
+ 2015-07-14 06:08:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4072
+
4073
+
4074
+ 2015-07-14 06:08:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4075
+
4076
+
4077
+ 2015-07-14 06:24:19.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4078
+
4079
+
4080
+ 2015-07-14 06:24:21.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4081
+
4082
+
4083
+ 2015-07-14 06:44:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4084
+
4085
+
4086
+ 2015-07-14 06:44:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4087
+
4088
+
4089
+ 2015-07-21 04:18:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4090
+
4091
+
4092
+ 2015-07-22 08:39:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4093
+
4094
+
4095
+ 2015-07-22 08:39:59.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4096
+
4097
+
4098
+ 2015-07-22 08:40:10.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4099
+
4100
+
4101
+ 2015-07-22 08:40:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4102
+
4103
+
4104
+ 2015-07-22 08:40:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4105
+
4106
+
4107
+ 2015-07-22 08:42:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4108
+
4109
+
4110
+ 2015-07-22 08:42:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4111
+
4112
+
4113
+ 2015-07-22 08:42:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4114
+
4115
+
4116
+ 2015-07-22 08:45:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4117
+
4118
+
4119
+ 2015-07-22 08:45:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4120
+
4121
+
4122
+ 2015-07-22 08:45:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4123
+
4124
+
4125
+ 2015-07-22 08:45:11.000000+00:00 => Rendered Connect with Loyalty Box button
4126
+
4127
+
4128
+ 2015-07-22 08:45:11.000000+00:00 => End: Rendered Connect with Loyalty Box button
4129
+
4130
+
4131
+ 2015-07-22 08:45:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4132
+
4133
+
4134
+ 2015-07-22 08:45:18.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4135
+
4136
+
4137
+ 2015-07-22 08:45:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4138
+
4139
+
4140
+ 2015-07-22 08:46:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4141
+
4142
+
4143
+ 2015-07-22 08:46:25.000000+00:00 => Rendered Connect with Loyalty Box button
4144
+
4145
+
4146
+ 2015-07-22 08:46:25.000000+00:00 => End: Rendered Connect with Loyalty Box button
4147
+
4148
+
4149
+ 2015-07-22 08:53:36.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4150
+
4151
+
4152
+ 2015-07-22 08:53:36.000000+00:00 => CALLED STATE API: initialies all vars with request id-79190
4153
+
4154
+
4155
+ 2015-07-22 08:53:36.000000+00:00 => Login :5555555555
4156
+
4157
+
4158
+ 2015-07-22 08:53:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4159
+
4160
+
4161
+ 2015-07-22 08:53:43.000000+00:00 => Rendered session user with his LB Points
4162
+
4163
+
4164
+ 2015-07-22 08:53:51.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4165
+
4166
+
4167
+ 2015-07-22 08:53:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4168
+
4169
+
4170
+ 2015-07-22 08:53:53.000000+00:00 => CALLED STATE API: initialies all vars with request id-79190
4171
+
4172
+
4173
+ 2015-07-22 08:53:58.000000+00:00 => LB API called : RequestLineItemRedemption
4174
+
4175
+
4176
+ 2015-07-22 08:53:58.000000+00:00 => LB API called : got Discount199.6%
4177
+
4178
+
4179
+ 2015-07-22 08:53:59.000000+00:00 => Coupon generated..LB_3382
4180
+
4181
+
4182
+ 2015-07-22 08:53:59.000000+00:00 => Generating coupon...199.6
4183
+
4184
+
4185
+ 2015-07-22 08:53:59.000000+00:00 => Cart is updated...
4186
+
4187
+
4188
+ 2015-07-22 08:54:02.000000+00:00 => Rendered session user with his LB Points
4189
+
4190
+
4191
+ 2015-07-22 08:54:02.000000+00:00 => Rendered session user with his LB Points
4192
+
4193
+
4194
+ 2015-07-22 08:54:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4195
+
4196
+
4197
+ 2015-07-22 08:54:35.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4198
+
4199
+
4200
+ 2015-07-22 08:54:35.000000+00:00 => CALLED STATE API: initialies all vars with request id-79190
4201
+
4202
+
4203
+ 2015-07-22 08:54:36.000000+00:00 => Rendered session user with his LB Points
4204
+
4205
+
4206
+ 2015-07-22 08:54:36.000000+00:00 => Rendered session user with his LB Points
4207
+
4208
+
4209
+ 2015-07-22 08:54:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4210
+
4211
+
4212
+ 2015-07-22 08:54:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4213
+
4214
+
4215
+ 2015-07-22 08:54:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4216
+
4217
+
4218
+ 2015-07-22 08:55:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4219
+
4220
+
4221
+ 2015-07-22 08:55:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4222
+
4223
+
4224
+ 2015-07-22 08:56:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4225
+
4226
+
4227
+ 2015-07-22 08:56:05.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4228
+
4229
+
4230
+ 2015-07-22 08:56:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4231
+
4232
+
4233
+ 2015-07-22 08:56:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4234
+
4235
+
4236
+ 2015-07-22 08:56:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4237
+
4238
+
4239
+ 2015-07-22 08:56:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4240
+
4241
+
4242
+ 2015-07-22 08:56:43.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4243
+
4244
+
4245
+ 2015-07-22 08:56:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4246
+
4247
+
4248
+ 2015-07-22 08:56:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4249
+
4250
+
4251
+ 2015-07-22 08:57:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4252
+
4253
+
4254
+ 2015-07-22 08:57:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4255
+
4256
+
4257
+ 2015-07-22 08:57:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4258
+
4259
+
4260
+ 2015-07-22 08:57:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4261
+
4262
+
4263
+ 2015-07-22 08:57:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4264
+
4265
+
4266
+ 2015-07-22 08:57:30.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4267
+
4268
+
4269
+ 2015-07-22 08:57:39.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4270
+
4271
+
4272
+ 2015-07-22 08:57:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4273
+
4274
+
4275
+ 2015-07-22 08:57:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4276
+
4277
+
4278
+ 2015-07-22 08:57:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4279
+
4280
+
4281
+ 2015-07-22 08:58:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4282
+
4283
+
4284
+ 2015-07-22 08:58:07.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4285
+
4286
+
4287
+ 2015-07-22 08:58:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4288
+
4289
+
4290
+ 2015-07-22 08:58:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4291
+
4292
+
4293
+ 2015-07-22 08:58:13.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4294
+
4295
+
4296
+ 2015-07-22 08:58:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4297
+
4298
+
4299
+ 2015-07-22 08:58:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4300
+
4301
+
4302
+ 2015-07-22 08:58:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4303
+
4304
+
4305
+ 2015-07-22 08:58:16.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4306
+
4307
+
4308
+ 2015-07-22 08:58:24.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4309
+
4310
+
4311
+ 2015-07-22 08:58:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4312
+
4313
+
4314
+ 2015-07-22 08:59:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4315
+
4316
+
4317
+ 2015-07-22 09:00:06.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4318
+
4319
+
4320
+ 2015-07-22 09:00:08.000000+00:00 => CALLED STATE API: initialies all vars with request id-79190
4321
+
4322
+
4323
+ 2015-07-22 09:00:08.000000+00:00 => Order process after checkout started order id: 100000077
4324
+
4325
+
4326
+ 2015-07-22 09:00:08.000000+00:00 => Order processed started
4327
+
4328
+
4329
+ 2015-07-22 09:00:13.000000+00:00 => LB API called sendCartFinal(uncommited): RequestLineItemRedemption
4330
+
4331
+
4332
+ 2015-07-22 09:00:13.000000+00:00 => LB API called : got Discount 399.2%
4333
+
4334
+
4335
+ 2015-07-22 09:00:18.000000+00:00 => LB API called sendCartFinal(commited): RequestLineItemRedemption
4336
+
4337
+
4338
+ 2015-07-22 09:00:23.000000+00:00 => LB API called issuePoints: UpdateSale
4339
+
4340
+
4341
+ 2015-07-22 09:00:23.000000+00:00 => Issued Gift Issued .
4342
+
4343
+
4344
+ 2015-07-22 09:00:23.000000+00:00 => Earn loyalty points 181.64.
4345
+
4346
+
4347
+ 2015-07-22 09:00:24.000000+00:00 => CALLED STATE API: Status-A Message-Created a new basket
4348
+
4349
+
4350
+ 2015-07-22 09:00:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4351
+
4352
+
4353
+ 2015-07-22 09:00:40.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4354
+
4355
+
4356
+ 2015-07-22 09:06:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4357
+
4358
+
4359
+ 2015-07-22 09:07:32.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4360
+
4361
+
4362
+ 2015-07-22 09:07:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4363
+
4364
+
4365
+ 2015-07-22 09:07:34.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4366
+
4367
+
4368
+ 2015-07-22 09:07:47.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4369
+
4370
+
4371
+ 2015-07-22 09:07:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4372
+
4373
+
4374
+ 2015-07-22 09:15:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4375
+
4376
+
4377
+ 2015-07-22 09:15:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4378
+
4379
+
4380
+ 2015-07-22 09:15:59.000000+00:00 => Rendered session user with his LB Points
4381
+
4382
+
4383
+ 2015-07-22 09:16:03.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4384
+
4385
+
4386
+ 2015-07-22 09:16:04.000000+00:00 => CALLED STATE API: initialies all vars with request id-79555
4387
+
4388
+
4389
+ 2015-07-22 09:16:04.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4390
+
4391
+
4392
+ 2015-07-22 09:16:05.000000+00:00 => Rendered Connect with Loyalty Box button
4393
+
4394
+
4395
+ 2015-07-22 09:16:05.000000+00:00 => End: Rendered Connect with Loyalty Box button
4396
+
4397
+
4398
+ 2015-07-22 09:19:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4399
+
4400
+
4401
+ 2015-07-22 09:19:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4402
+
4403
+
4404
+ 2015-07-22 09:26:09.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4405
+
4406
+
4407
+ 2015-07-22 09:26:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4408
+
4409
+
4410
+ 2015-07-22 09:26:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4411
+
4412
+
4413
+ 2015-07-22 09:26:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4414
+
4415
+
4416
+ 2015-07-22 09:26:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4417
+
4418
+
4419
+ 2015-07-22 09:26:15.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4420
+
4421
+
4422
+ 2015-07-22 10:01:08.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4423
+
4424
+
4425
+ 2015-07-22 10:01:11.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4426
+
4427
+
4428
+ 2015-07-22 10:01:12.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4429
+
4430
+
4431
+ 2015-07-22 10:01:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4432
+
4433
+
4434
+ 2015-07-22 10:01:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4435
+
4436
+
4437
+ 2015-07-22 10:56:36.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4438
+
4439
+
4440
+ 2015-07-22 10:56:41.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4441
+
4442
+
4443
+ 2015-07-22 10:56:42.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4444
+
4445
+
4446
+ 2015-07-22 10:56:44.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4447
+
4448
+
4449
+ 2015-07-22 10:56:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4450
+
4451
+
4452
+ 2015-07-22 10:56:46.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4453
+
4454
+
4455
+ 2015-07-22 10:56:53.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4456
+
4457
+
4458
+ 2015-07-22 10:56:54.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4459
+
4460
+
4461
+ 2015-07-22 10:57:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4462
+
4463
+
4464
+ 2015-07-22 10:57:33.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4465
+
4466
+
4467
+ 2015-07-22 10:58:00.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4468
+
4469
+
4470
+ 2015-07-22 10:58:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4471
+
4472
+
4473
+ 2015-07-22 11:10:52.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4474
+
4475
+
4476
+ 2015-07-22 11:10:55.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4477
+
4478
+
4479
+ 2015-07-22 11:10:57.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4480
+
4481
+
4482
+ 2015-07-22 11:10:58.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4483
+
4484
+
4485
+ 2015-07-24 10:31:01.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4486
+
4487
+
4488
+ 2015-07-24 10:31:14.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4489
+
4490
+
4491
+ 2015-07-24 10:31:20.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4492
+
4493
+
4494
+ 2015-07-24 10:31:22.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4495
+
4496
+
4497
+ 2015-07-24 10:31:25.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4498
+
4499
+
4500
+ 2015-07-24 10:31:37.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4501
+
4502
+
4503
+ 2015-07-24 10:31:48.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4504
+
4505
+
4506
+ 2015-07-24 10:31:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4507
+
4508
+
4509
+ 2015-07-24 10:31:50.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
4510
+
4511
+
4512
+ 2015-07-24 10:39:31.000000+00:00 => earlySession: SESSION HAS BEEN STARTED...
app/code/local/Lb/Points/request_log.log ADDED
@@ -0,0 +1,4384 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Inquiry-2015-06-01 13:14:53.000000+00:00
2
+ <?xml version="1.0" encoding="UTF-8"?>
3
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>755</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-01 13:14:48</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>9999999999</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
4
+ stdClass Object
5
+ (
6
+ [InquiryResult] => stdClass Object
7
+ (
8
+ [standardHeader] => stdClass Object
9
+ (
10
+ [requestId] => 755
11
+ [status] => A
12
+ )
13
+
14
+ [identification] => stdClass Object
15
+ (
16
+ [transactionId] => 15592075
17
+ [approvalCode] => 15592075
18
+ [demonstration] => 0
19
+ )
20
+
21
+ [expirationDate] =>
22
+ [balances] => stdClass Object
23
+ (
24
+ [balance] => Array
25
+ (
26
+ [0] => stdClass Object
27
+ (
28
+ [valueCode] => Discount
29
+ [amount] => 199.6
30
+ [difference] => 0
31
+ [exchangeRate] => 0
32
+ )
33
+
34
+ [1] => stdClass Object
35
+ (
36
+ [valueCode] => Points
37
+ [amount] => 3105.035
38
+ [difference] => 0
39
+ [exchangeRate] => 0
40
+ )
41
+
42
+ [2] => stdClass Object
43
+ (
44
+ [valueCode] => ZAR
45
+ [amount] => 7275.218
46
+ [difference] => 0
47
+ [exchangeRate] => 0
48
+ )
49
+
50
+ )
51
+
52
+ )
53
+
54
+ [customerInfo] => stdClass Object
55
+ (
56
+ [customerType] =>
57
+ [firstName] => Wooden Toy
58
+ [middleName] =>
59
+ [lastName] =>
60
+ [address1] =>
61
+ [address2] =>
62
+ [city] =>
63
+ [state] =>
64
+ [postal] =>
65
+ [country] => 197
66
+ [mailPref] => 0
67
+ [phone] => 9999999999
68
+ [isMobile] => Y
69
+ [phonePref] => 0
70
+ [email] => John@123.com
71
+ [emailPref] => 0
72
+ [birthday] =>
73
+ [anniversary] =>
74
+ [gender] => M
75
+ )
76
+
77
+ [hostMessage] =>
78
+ )
79
+
80
+ )
81
+ Inquiry-2015-06-02 06:20:51.000000+00:00
82
+ <?xml version="1.0" encoding="UTF-8"?>
83
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>765</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-02 06:20:46</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>8888888888</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
84
+ stdClass Object
85
+ (
86
+ [InquiryResult] => stdClass Object
87
+ (
88
+ [standardHeader] => stdClass Object
89
+ (
90
+ [requestId] => 765
91
+ [status] => A
92
+ )
93
+
94
+ [identification] => stdClass Object
95
+ (
96
+ [transactionId] => 15606529
97
+ [approvalCode] => 15606529
98
+ [demonstration] => 0
99
+ )
100
+
101
+ [expirationDate] =>
102
+ [balances] => stdClass Object
103
+ (
104
+ [balance] => Array
105
+ (
106
+ [0] => stdClass Object
107
+ (
108
+ [valueCode] => Points
109
+ [amount] => 0
110
+ [difference] => 0
111
+ [exchangeRate] => 0
112
+ )
113
+
114
+ [1] => stdClass Object
115
+ (
116
+ [valueCode] => ZAR
117
+ [amount] => 0
118
+ [difference] => 0
119
+ [exchangeRate] => 0
120
+ )
121
+
122
+ [2] => stdClass Object
123
+ (
124
+ [valueCode] => Discount
125
+ [amount] => 99.8
126
+ [difference] => 0
127
+ [exchangeRate] => 0
128
+ )
129
+
130
+ )
131
+
132
+ )
133
+
134
+ [customerInfo] => stdClass Object
135
+ (
136
+ [customerType] =>
137
+ [firstName] => Test13 User
138
+ [middleName] =>
139
+ [lastName] =>
140
+ [address1] =>
141
+ [address2] =>
142
+ [city] =>
143
+ [state] =>
144
+ [postal] =>
145
+ [country] => 197
146
+ [mailPref] => 0
147
+ [phone] => 8888888888
148
+ [isMobile] => Y
149
+ [phonePref] => 0
150
+ [email] => genknooz4@gmail.com
151
+ [emailPref] => 0
152
+ [birthday] =>
153
+ [anniversary] =>
154
+ [gender] => M
155
+ )
156
+
157
+ [hostMessage] =>
158
+ )
159
+
160
+ )
161
+ RequestLineItemRedemption-2015-06-02 06:20:58.000000+00:00
162
+ <?xml version="1.0" encoding="UTF-8"?>
163
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>765</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-02 06:20:52</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>8888888888</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
164
+ stdClass Object
165
+ (
166
+ [RequestLineItemRedemptionResult] => stdClass Object
167
+ (
168
+ [standardHeader] => stdClass Object
169
+ (
170
+ [requestId] => 15606540
171
+ [status] => A
172
+ )
173
+
174
+ [identification] => stdClass Object
175
+ (
176
+ [transactionId] => 15606540
177
+ [approvalCode] => 15606540
178
+ [demonstration] => 0
179
+ )
180
+
181
+ [expirationDate] =>
182
+ [balances] => stdClass Object
183
+ (
184
+ [Balance] => Array
185
+ (
186
+ [0] => stdClass Object
187
+ (
188
+ [valueCode] => Points
189
+ [amount] => 0
190
+ [difference] => 0
191
+ [exchangeRate] => 0
192
+ )
193
+
194
+ [1] => stdClass Object
195
+ (
196
+ [valueCode] => ZAR
197
+ [amount] => 0
198
+ [difference] => 0
199
+ [exchangeRate] => 0
200
+ )
201
+
202
+ [2] => stdClass Object
203
+ (
204
+ [valueCode] => Discount
205
+ [amount] => 99.8
206
+ [difference] => 99.8
207
+ [exchangeRate] => 0
208
+ )
209
+
210
+ )
211
+
212
+ )
213
+
214
+ [customerInfo] => stdClass Object
215
+ (
216
+ [customerType] =>
217
+ [firstName] => Test13 User
218
+ [middleName] =>
219
+ [lastName] =>
220
+ [address1] =>
221
+ [address2] =>
222
+ [city] =>
223
+ [state] =>
224
+ [postal] =>
225
+ [country] => 197
226
+ [mailPref] => 0
227
+ [phone] => 8888888888
228
+ [isMobile] => Y
229
+ [phonePref] => 0
230
+ [email] => genknooz4@gmail.com
231
+ [emailPref] => 0
232
+ [birthday] =>
233
+ [anniversary] =>
234
+ [gender] => M
235
+ )
236
+
237
+ [hostMessage] =>
238
+ [amountRemaining] =>
239
+ )
240
+
241
+ )
242
+ RequestLineItemRedemption-2015-06-02 07:15:15.000000+00:00
243
+ <?xml version="1.0" encoding="UTF-8"?>
244
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>765</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-02 07:15:10</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>8888888888</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
245
+ stdClass Object
246
+ (
247
+ [RequestLineItemRedemptionResult] => stdClass Object
248
+ (
249
+ [standardHeader] => stdClass Object
250
+ (
251
+ [requestId] => 15609213
252
+ [status] => A
253
+ )
254
+
255
+ [identification] => stdClass Object
256
+ (
257
+ [transactionId] => 15609213
258
+ [approvalCode] => 15609213
259
+ [demonstration] => 0
260
+ )
261
+
262
+ [expirationDate] =>
263
+ [balances] => stdClass Object
264
+ (
265
+ [Balance] => Array
266
+ (
267
+ [0] => stdClass Object
268
+ (
269
+ [valueCode] => Points
270
+ [amount] => 0
271
+ [difference] => 0
272
+ [exchangeRate] => 0
273
+ )
274
+
275
+ [1] => stdClass Object
276
+ (
277
+ [valueCode] => ZAR
278
+ [amount] => 0
279
+ [difference] => 0
280
+ [exchangeRate] => 0
281
+ )
282
+
283
+ [2] => stdClass Object
284
+ (
285
+ [valueCode] => Discount
286
+ [amount] => 199.6
287
+ [difference] => 199.6
288
+ [exchangeRate] => 0
289
+ )
290
+
291
+ )
292
+
293
+ )
294
+
295
+ [customerInfo] => stdClass Object
296
+ (
297
+ [customerType] =>
298
+ [firstName] => Test13 User
299
+ [middleName] =>
300
+ [lastName] =>
301
+ [address1] =>
302
+ [address2] =>
303
+ [city] =>
304
+ [state] =>
305
+ [postal] =>
306
+ [country] => 197
307
+ [mailPref] => 0
308
+ [phone] => 8888888888
309
+ [isMobile] => Y
310
+ [phonePref] => 0
311
+ [email] => genknooz4@gmail.com
312
+ [emailPref] => 0
313
+ [birthday] =>
314
+ [anniversary] =>
315
+ [gender] => M
316
+ )
317
+
318
+ [hostMessage] =>
319
+ [amountRemaining] =>
320
+ )
321
+
322
+ )
323
+ UpdateClient-2015-06-04 05:03:31.000000+00:00
324
+ <?xml version="1.0" encoding="UTF-8"?>
325
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateClient><ns1:p_objRequest><standardHeader><requestId>794</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:03:24</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>3333333333</accountId><pin></pin><entryType>W</entryType></account><customerInfo><customerType></customerType><firstName>magento</firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone>3333333333</phone><isMobile>Y</isMobile><phonePref></phonePref><email>genknooz4@gmail.com</email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></customerInfo></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateClient></SOAP-ENV:Body></SOAP-ENV:Envelope>
326
+ stdClass Object
327
+ (
328
+ [UpdateClientResult] => stdClass Object
329
+ (
330
+ [standardHeader] => stdClass Object
331
+ (
332
+ [requestId] => 794
333
+ [status] => E
334
+ )
335
+
336
+ [expirationDate] =>
337
+ [hostMessage] =>
338
+ [errorMessage] => stdClass Object
339
+ (
340
+ [rejectionId] => 0
341
+ [errorCode] => 6
342
+ [briefMessage] => Invalid Account Details
343
+ [inDepthMessage] => The account details provided are invalid. Check your account details and try the transaction again.
344
+ )
345
+
346
+ )
347
+
348
+ )
349
+ Inquiry-2015-06-04 05:03:35.000000+00:00
350
+ <?xml version="1.0" encoding="UTF-8"?>
351
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>794</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:03:24</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>3333333333</accountId><pin></pin><entryType>W</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
352
+ stdClass Object
353
+ (
354
+ [InquiryResult] => stdClass Object
355
+ (
356
+ [standardHeader] => stdClass Object
357
+ (
358
+ [requestId] => 794
359
+ [status] => A
360
+ )
361
+
362
+ [identification] => stdClass Object
363
+ (
364
+ [transactionId] => 15660047
365
+ [approvalCode] => 15660047
366
+ [demonstration] => 0
367
+ )
368
+
369
+ [expirationDate] =>
370
+ [balances] => stdClass Object
371
+ (
372
+ [balance] => Array
373
+ (
374
+ [0] => stdClass Object
375
+ (
376
+ [valueCode] => Discount
377
+ [amount] => 0
378
+ [difference] => 0
379
+ [exchangeRate] => 0
380
+ )
381
+
382
+ [1] => stdClass Object
383
+ (
384
+ [valueCode] => Points
385
+ [amount] => 0
386
+ [difference] => 0
387
+ [exchangeRate] => 0
388
+ )
389
+
390
+ [2] => stdClass Object
391
+ (
392
+ [valueCode] => ZAR
393
+ [amount] => 0
394
+ [difference] => 0
395
+ [exchangeRate] => 0
396
+ )
397
+
398
+ )
399
+
400
+ )
401
+
402
+ [customerInfo] => stdClass Object
403
+ (
404
+ [customerType] =>
405
+ [firstName] =>
406
+ [middleName] =>
407
+ [lastName] =>
408
+ [address1] =>
409
+ [address2] =>
410
+ [city] =>
411
+ [state] =>
412
+ [postal] =>
413
+ [country] => 197
414
+ [mailPref] => 0
415
+ [phone] => 273333333333
416
+ [isMobile] => 1
417
+ [phonePref] => 0
418
+ [email] =>
419
+ [emailPref] => 0
420
+ [birthday] =>
421
+ [anniversary] =>
422
+ [gender] => M
423
+ )
424
+
425
+ [hostMessage] =>
426
+ )
427
+
428
+ )
429
+ UpdateClient-2015-06-04 05:03:39.000000+00:00
430
+ <?xml version="1.0" encoding="UTF-8"?>
431
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateClient><ns1:p_objRequest><standardHeader><requestId>794</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:03:24</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>3333333333</accountId><pin></pin><entryType>W</entryType></account><customerInfo><customerType></customerType><firstName>magento</firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone>3333333333</phone><isMobile>Y</isMobile><phonePref></phonePref><email>genknooz4@gmail.com</email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></customerInfo></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateClient></SOAP-ENV:Body></SOAP-ENV:Envelope>
432
+ stdClass Object
433
+ (
434
+ [UpdateClientResult] => stdClass Object
435
+ (
436
+ [standardHeader] => stdClass Object
437
+ (
438
+ [requestId] => 794
439
+ [status] => A
440
+ )
441
+
442
+ [identification] => stdClass Object
443
+ (
444
+ [transactionId] => 15660051
445
+ [approvalCode] => 15660051
446
+ [demonstration] => 0
447
+ )
448
+
449
+ [expirationDate] =>
450
+ [balances] => stdClass Object
451
+ (
452
+ [balance] => Array
453
+ (
454
+ [0] => stdClass Object
455
+ (
456
+ [valueCode] => Discount
457
+ [amount] => 0
458
+ [difference] => 0
459
+ [exchangeRate] => 0
460
+ )
461
+
462
+ [1] => stdClass Object
463
+ (
464
+ [valueCode] => Points
465
+ [amount] => 0
466
+ [difference] => 0
467
+ [exchangeRate] => 0
468
+ )
469
+
470
+ [2] => stdClass Object
471
+ (
472
+ [valueCode] => ZAR
473
+ [amount] => 0
474
+ [difference] => 0
475
+ [exchangeRate] => 0
476
+ )
477
+
478
+ )
479
+
480
+ )
481
+
482
+ [customerInfo] => stdClass Object
483
+ (
484
+ [customerType] =>
485
+ [firstName] => magento
486
+ [middleName] =>
487
+ [lastName] =>
488
+ [address1] =>
489
+ [address2] =>
490
+ [city] =>
491
+ [state] =>
492
+ [postal] =>
493
+ [country] => 197
494
+ [mailPref] => 0
495
+ [phone] => 273333333333
496
+ [isMobile] => Y
497
+ [phonePref] => 0
498
+ [email] => genknooz4@gmail.com
499
+ [emailPref] => 0
500
+ [birthday] =>
501
+ [anniversary] =>
502
+ [gender] => M
503
+ )
504
+
505
+ [hostMessage] =>
506
+ )
507
+
508
+ )
509
+ UpdateClient-2015-06-04 05:04:21.000000+00:00
510
+ <?xml version="1.0" encoding="UTF-8"?>
511
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateClient><ns1:p_objRequest><standardHeader><requestId>795</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:04:18</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>3333333333</accountId><pin></pin><entryType>W</entryType></account><customerInfo><customerType></customerType><firstName>magento</firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone>3333333333</phone><isMobile>Y</isMobile><phonePref></phonePref><email>genknooz4@gmail.com</email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></customerInfo></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateClient></SOAP-ENV:Body></SOAP-ENV:Envelope>
512
+ stdClass Object
513
+ (
514
+ [UpdateClientResult] => stdClass Object
515
+ (
516
+ [standardHeader] => stdClass Object
517
+ (
518
+ [requestId] => 795
519
+ [status] => A
520
+ )
521
+
522
+ [identification] => stdClass Object
523
+ (
524
+ [transactionId] => 15660087
525
+ [approvalCode] => 15660087
526
+ [demonstration] => 0
527
+ )
528
+
529
+ [expirationDate] =>
530
+ [balances] => stdClass Object
531
+ (
532
+ [balance] => Array
533
+ (
534
+ [0] => stdClass Object
535
+ (
536
+ [valueCode] => Discount
537
+ [amount] => 0
538
+ [difference] => 0
539
+ [exchangeRate] => 0
540
+ )
541
+
542
+ [1] => stdClass Object
543
+ (
544
+ [valueCode] => Points
545
+ [amount] => 0
546
+ [difference] => 0
547
+ [exchangeRate] => 0
548
+ )
549
+
550
+ [2] => stdClass Object
551
+ (
552
+ [valueCode] => ZAR
553
+ [amount] => 0
554
+ [difference] => 0
555
+ [exchangeRate] => 0
556
+ )
557
+
558
+ )
559
+
560
+ )
561
+
562
+ [customerInfo] => stdClass Object
563
+ (
564
+ [customerType] =>
565
+ [firstName] => magento
566
+ [middleName] =>
567
+ [lastName] =>
568
+ [address1] =>
569
+ [address2] =>
570
+ [city] =>
571
+ [state] =>
572
+ [postal] =>
573
+ [country] => 197
574
+ [mailPref] => 0
575
+ [phone] => 273333333333
576
+ [isMobile] => Y
577
+ [phonePref] => 0
578
+ [email] => genknooz4@gmail.com
579
+ [emailPref] => 0
580
+ [birthday] =>
581
+ [anniversary] =>
582
+ [gender] => M
583
+ )
584
+
585
+ [hostMessage] =>
586
+ )
587
+
588
+ )
589
+ UpdateClient-2015-06-04 05:07:14.000000+00:00
590
+ <?xml version="1.0" encoding="UTF-8"?>
591
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateClient><ns1:p_objRequest><standardHeader><requestId>796</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:07:11</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>3333333333</accountId><pin></pin><entryType>W</entryType></account><customerInfo><customerType></customerType><firstName>magento</firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone>3333333333</phone><isMobile>Y</isMobile><phonePref></phonePref><email>genknooz4@gmail.com</email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></customerInfo></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateClient></SOAP-ENV:Body></SOAP-ENV:Envelope>
592
+ stdClass Object
593
+ (
594
+ [UpdateClientResult] => stdClass Object
595
+ (
596
+ [standardHeader] => stdClass Object
597
+ (
598
+ [requestId] => 796
599
+ [status] => A
600
+ )
601
+
602
+ [identification] => stdClass Object
603
+ (
604
+ [transactionId] => 15660283
605
+ [approvalCode] => 15660283
606
+ [demonstration] => 0
607
+ )
608
+
609
+ [expirationDate] =>
610
+ [balances] => stdClass Object
611
+ (
612
+ [balance] => Array
613
+ (
614
+ [0] => stdClass Object
615
+ (
616
+ [valueCode] => Discount
617
+ [amount] => 0
618
+ [difference] => 0
619
+ [exchangeRate] => 0
620
+ )
621
+
622
+ [1] => stdClass Object
623
+ (
624
+ [valueCode] => Points
625
+ [amount] => 0
626
+ [difference] => 0
627
+ [exchangeRate] => 0
628
+ )
629
+
630
+ [2] => stdClass Object
631
+ (
632
+ [valueCode] => ZAR
633
+ [amount] => 0
634
+ [difference] => 0
635
+ [exchangeRate] => 0
636
+ )
637
+
638
+ )
639
+
640
+ )
641
+
642
+ [customerInfo] => stdClass Object
643
+ (
644
+ [customerType] =>
645
+ [firstName] => magento
646
+ [middleName] =>
647
+ [lastName] =>
648
+ [address1] =>
649
+ [address2] =>
650
+ [city] =>
651
+ [state] =>
652
+ [postal] =>
653
+ [country] => 197
654
+ [mailPref] => 0
655
+ [phone] => 273333333333
656
+ [isMobile] => Y
657
+ [phonePref] => 0
658
+ [email] => genknooz4@gmail.com
659
+ [emailPref] => 0
660
+ [birthday] =>
661
+ [anniversary] =>
662
+ [gender] => M
663
+ )
664
+
665
+ [hostMessage] =>
666
+ )
667
+
668
+ )
669
+ Inquiry-2015-06-04 05:26:19.000000+00:00
670
+ <?xml version="1.0" encoding="UTF-8"?>
671
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>797</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:26:15</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>7575757575</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
672
+ stdClass Object
673
+ (
674
+ [InquiryResult] => stdClass Object
675
+ (
676
+ [standardHeader] => stdClass Object
677
+ (
678
+ [requestId] => 797
679
+ [status] => A
680
+ )
681
+
682
+ [identification] => stdClass Object
683
+ (
684
+ [transactionId] => 15661570
685
+ [approvalCode] => 15661570
686
+ [demonstration] => 0
687
+ )
688
+
689
+ [expirationDate] =>
690
+ [balances] => stdClass Object
691
+ (
692
+ [balance] => Array
693
+ (
694
+ [0] => stdClass Object
695
+ (
696
+ [valueCode] => Discount
697
+ [amount] => 0
698
+ [difference] => 0
699
+ [exchangeRate] => 0
700
+ )
701
+
702
+ [1] => stdClass Object
703
+ (
704
+ [valueCode] => Points
705
+ [amount] => 0
706
+ [difference] => 0
707
+ [exchangeRate] => 0
708
+ )
709
+
710
+ [2] => stdClass Object
711
+ (
712
+ [valueCode] => ZAR
713
+ [amount] => 0
714
+ [difference] => 0
715
+ [exchangeRate] => 0
716
+ )
717
+
718
+ )
719
+
720
+ )
721
+
722
+ [customerInfo] => stdClass Object
723
+ (
724
+ [customerType] =>
725
+ [firstName] =>
726
+ [middleName] =>
727
+ [lastName] =>
728
+ [address1] =>
729
+ [address2] =>
730
+ [city] =>
731
+ [state] =>
732
+ [postal] =>
733
+ [country] => 197
734
+ [mailPref] => 0
735
+ [phone] => 277575757575
736
+ [isMobile] => 1
737
+ [phonePref] => 0
738
+ [email] =>
739
+ [emailPref] => 0
740
+ [birthday] =>
741
+ [anniversary] =>
742
+ [gender] => M
743
+ )
744
+
745
+ [hostMessage] =>
746
+ )
747
+
748
+ )
749
+ RequestLineItemRedemption-2015-06-04 05:41:37.000000+00:00
750
+ <?xml version="1.0" encoding="UTF-8"?>
751
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>797</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:41:34</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>277575757575</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
752
+ stdClass Object
753
+ (
754
+ [RequestLineItemRedemptionResult] => stdClass Object
755
+ (
756
+ [standardHeader] => stdClass Object
757
+ (
758
+ [requestId] => 15662720
759
+ [status] => A
760
+ )
761
+
762
+ [identification] => stdClass Object
763
+ (
764
+ [transactionId] => 15662720
765
+ [approvalCode] => 15662720
766
+ [demonstration] => 0
767
+ )
768
+
769
+ [expirationDate] =>
770
+ [balances] => stdClass Object
771
+ (
772
+ [Balance] => Array
773
+ (
774
+ [0] => stdClass Object
775
+ (
776
+ [valueCode] => Points
777
+ [amount] => 0
778
+ [difference] => 0
779
+ [exchangeRate] => 0
780
+ )
781
+
782
+ [1] => stdClass Object
783
+ (
784
+ [valueCode] => ZAR
785
+ [amount] => 0
786
+ [difference] => 0
787
+ [exchangeRate] => 0
788
+ )
789
+
790
+ [2] => stdClass Object
791
+ (
792
+ [valueCode] => Discount
793
+ [amount] => 99.8
794
+ [difference] => 99.8
795
+ [exchangeRate] => 0
796
+ )
797
+
798
+ )
799
+
800
+ )
801
+
802
+ [customerInfo] => stdClass Object
803
+ (
804
+ [customerType] =>
805
+ [firstName] =>
806
+ [middleName] =>
807
+ [lastName] =>
808
+ [address1] =>
809
+ [address2] =>
810
+ [city] =>
811
+ [state] =>
812
+ [postal] =>
813
+ [country] => 197
814
+ [mailPref] => 0
815
+ [phone] => 277575757575
816
+ [isMobile] => 1
817
+ [phonePref] => 0
818
+ [email] =>
819
+ [emailPref] => 0
820
+ [birthday] =>
821
+ [anniversary] =>
822
+ [gender] => M
823
+ )
824
+
825
+ [hostMessage] =>
826
+ [amountRemaining] =>
827
+ )
828
+
829
+ )
830
+ Inquiry-2015-06-04 05:50:19.000000+00:00
831
+ <?xml version="1.0" encoding="UTF-8"?>
832
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>798</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:50:12</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>9999999999</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
833
+ stdClass Object
834
+ (
835
+ [InquiryResult] => stdClass Object
836
+ (
837
+ [standardHeader] => stdClass Object
838
+ (
839
+ [requestId] => 798
840
+ [status] => A
841
+ )
842
+
843
+ [identification] => stdClass Object
844
+ (
845
+ [transactionId] => 15663371
846
+ [approvalCode] => 15663371
847
+ [demonstration] => 0
848
+ )
849
+
850
+ [expirationDate] =>
851
+ [balances] => stdClass Object
852
+ (
853
+ [balance] => Array
854
+ (
855
+ [0] => stdClass Object
856
+ (
857
+ [valueCode] => Discount
858
+ [amount] => 0
859
+ [difference] => 0
860
+ [exchangeRate] => 0
861
+ )
862
+
863
+ [1] => stdClass Object
864
+ (
865
+ [valueCode] => Points
866
+ [amount] => 0
867
+ [difference] => 0
868
+ [exchangeRate] => 0
869
+ )
870
+
871
+ [2] => stdClass Object
872
+ (
873
+ [valueCode] => ZAR
874
+ [amount] => 0
875
+ [difference] => 0
876
+ [exchangeRate] => 0
877
+ )
878
+
879
+ )
880
+
881
+ )
882
+
883
+ [customerInfo] => stdClass Object
884
+ (
885
+ [customerType] =>
886
+ [firstName] =>
887
+ [middleName] =>
888
+ [lastName] =>
889
+ [address1] =>
890
+ [address2] =>
891
+ [city] =>
892
+ [state] =>
893
+ [postal] =>
894
+ [country] => 197
895
+ [mailPref] => 0
896
+ [phone] => 279999999999
897
+ [isMobile] => 1
898
+ [phonePref] => 0
899
+ [email] =>
900
+ [emailPref] => 0
901
+ [birthday] =>
902
+ [anniversary] =>
903
+ [gender] => M
904
+ )
905
+
906
+ [hostMessage] =>
907
+ )
908
+
909
+ )
910
+ RequestLineItemRedemption-2015-06-04 05:50:24.000000+00:00
911
+ <?xml version="1.0" encoding="UTF-8"?>
912
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>798</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:50:20</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>279999999999</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
913
+ stdClass Object
914
+ (
915
+ [RequestLineItemRedemptionResult] => stdClass Object
916
+ (
917
+ [standardHeader] => stdClass Object
918
+ (
919
+ [requestId] => 15663376
920
+ [status] => A
921
+ )
922
+
923
+ [identification] => stdClass Object
924
+ (
925
+ [transactionId] => 15663376
926
+ [approvalCode] => 15663376
927
+ [demonstration] => 0
928
+ )
929
+
930
+ [expirationDate] =>
931
+ [balances] => stdClass Object
932
+ (
933
+ [Balance] => Array
934
+ (
935
+ [0] => stdClass Object
936
+ (
937
+ [valueCode] => Points
938
+ [amount] => 0
939
+ [difference] => 0
940
+ [exchangeRate] => 0
941
+ )
942
+
943
+ [1] => stdClass Object
944
+ (
945
+ [valueCode] => ZAR
946
+ [amount] => 0
947
+ [difference] => 0
948
+ [exchangeRate] => 0
949
+ )
950
+
951
+ [2] => stdClass Object
952
+ (
953
+ [valueCode] => Discount
954
+ [amount] => 99.8
955
+ [difference] => 99.8
956
+ [exchangeRate] => 0
957
+ )
958
+
959
+ )
960
+
961
+ )
962
+
963
+ [customerInfo] => stdClass Object
964
+ (
965
+ [customerType] =>
966
+ [firstName] =>
967
+ [middleName] =>
968
+ [lastName] =>
969
+ [address1] =>
970
+ [address2] =>
971
+ [city] =>
972
+ [state] =>
973
+ [postal] =>
974
+ [country] => 197
975
+ [mailPref] => 0
976
+ [phone] => 279999999999
977
+ [isMobile] => 1
978
+ [phonePref] => 0
979
+ [email] =>
980
+ [emailPref] => 0
981
+ [birthday] =>
982
+ [anniversary] =>
983
+ [gender] => M
984
+ )
985
+
986
+ [hostMessage] =>
987
+ [amountRemaining] =>
988
+ )
989
+
990
+ )
991
+ Inquiry-2015-06-04 05:54:27.000000+00:00
992
+ <?xml version="1.0" encoding="UTF-8"?>
993
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>799</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:54:24</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>9999999999</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
994
+ stdClass Object
995
+ (
996
+ [InquiryResult] => stdClass Object
997
+ (
998
+ [standardHeader] => stdClass Object
999
+ (
1000
+ [requestId] => 799
1001
+ [status] => A
1002
+ )
1003
+
1004
+ [identification] => stdClass Object
1005
+ (
1006
+ [transactionId] => 15663636
1007
+ [approvalCode] => 15663636
1008
+ [demonstration] => 0
1009
+ )
1010
+
1011
+ [expirationDate] =>
1012
+ [balances] => stdClass Object
1013
+ (
1014
+ [balance] => Array
1015
+ (
1016
+ [0] => stdClass Object
1017
+ (
1018
+ [valueCode] => Points
1019
+ [amount] => 0
1020
+ [difference] => 0
1021
+ [exchangeRate] => 0
1022
+ )
1023
+
1024
+ [1] => stdClass Object
1025
+ (
1026
+ [valueCode] => ZAR
1027
+ [amount] => 0
1028
+ [difference] => 0
1029
+ [exchangeRate] => 0
1030
+ )
1031
+
1032
+ [2] => stdClass Object
1033
+ (
1034
+ [valueCode] => Discount
1035
+ [amount] => 99.8
1036
+ [difference] => 0
1037
+ [exchangeRate] => 0
1038
+ )
1039
+
1040
+ )
1041
+
1042
+ )
1043
+
1044
+ [customerInfo] => stdClass Object
1045
+ (
1046
+ [customerType] =>
1047
+ [firstName] =>
1048
+ [middleName] =>
1049
+ [lastName] =>
1050
+ [address1] =>
1051
+ [address2] =>
1052
+ [city] =>
1053
+ [state] =>
1054
+ [postal] =>
1055
+ [country] => 197
1056
+ [mailPref] => 0
1057
+ [phone] => 279999999999
1058
+ [isMobile] => 1
1059
+ [phonePref] => 0
1060
+ [email] =>
1061
+ [emailPref] => 0
1062
+ [birthday] =>
1063
+ [anniversary] =>
1064
+ [gender] => M
1065
+ )
1066
+
1067
+ [hostMessage] =>
1068
+ )
1069
+
1070
+ )
1071
+ RequestLineItemRedemption-2015-06-04 05:54:32.000000+00:00
1072
+ <?xml version="1.0" encoding="UTF-8"?>
1073
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>799</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:54:28</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>279999999999</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
1074
+ stdClass Object
1075
+ (
1076
+ [RequestLineItemRedemptionResult] => stdClass Object
1077
+ (
1078
+ [standardHeader] => stdClass Object
1079
+ (
1080
+ [requestId] => 15663642
1081
+ [status] => A
1082
+ )
1083
+
1084
+ [identification] => stdClass Object
1085
+ (
1086
+ [transactionId] => 15663642
1087
+ [approvalCode] => 15663642
1088
+ [demonstration] => 0
1089
+ )
1090
+
1091
+ [expirationDate] =>
1092
+ [balances] => stdClass Object
1093
+ (
1094
+ [Balance] => Array
1095
+ (
1096
+ [0] => stdClass Object
1097
+ (
1098
+ [valueCode] => Points
1099
+ [amount] => 0
1100
+ [difference] => 0
1101
+ [exchangeRate] => 0
1102
+ )
1103
+
1104
+ [1] => stdClass Object
1105
+ (
1106
+ [valueCode] => ZAR
1107
+ [amount] => 0
1108
+ [difference] => 0
1109
+ [exchangeRate] => 0
1110
+ )
1111
+
1112
+ [2] => stdClass Object
1113
+ (
1114
+ [valueCode] => Discount
1115
+ [amount] => 99.8
1116
+ [difference] => 99.8
1117
+ [exchangeRate] => 0
1118
+ )
1119
+
1120
+ )
1121
+
1122
+ )
1123
+
1124
+ [customerInfo] => stdClass Object
1125
+ (
1126
+ [customerType] =>
1127
+ [firstName] =>
1128
+ [middleName] =>
1129
+ [lastName] =>
1130
+ [address1] =>
1131
+ [address2] =>
1132
+ [city] =>
1133
+ [state] =>
1134
+ [postal] =>
1135
+ [country] => 197
1136
+ [mailPref] => 0
1137
+ [phone] => 279999999999
1138
+ [isMobile] => 1
1139
+ [phonePref] => 0
1140
+ [email] =>
1141
+ [emailPref] => 0
1142
+ [birthday] =>
1143
+ [anniversary] =>
1144
+ [gender] => M
1145
+ )
1146
+
1147
+ [hostMessage] =>
1148
+ [amountRemaining] =>
1149
+ )
1150
+
1151
+ )
1152
+ UpdateClient-2015-06-04 05:56:11.000000+00:00
1153
+ <?xml version="1.0" encoding="UTF-8"?>
1154
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateClient><ns1:p_objRequest><standardHeader><requestId>800</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:56:07</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>5555555555</accountId><pin></pin><entryType>W</entryType></account><customerInfo><customerType></customerType><firstName>Magento Lb</firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone>5555555555</phone><isMobile>Y</isMobile><phonePref></phonePref><email>genknooz4@gmail.com</email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></customerInfo></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateClient></SOAP-ENV:Body></SOAP-ENV:Envelope>
1155
+ stdClass Object
1156
+ (
1157
+ [UpdateClientResult] => stdClass Object
1158
+ (
1159
+ [standardHeader] => stdClass Object
1160
+ (
1161
+ [requestId] => 800
1162
+ [status] => A
1163
+ )
1164
+
1165
+ [identification] => stdClass Object
1166
+ (
1167
+ [transactionId] => 15663741
1168
+ [approvalCode] => 15663741
1169
+ [demonstration] => 0
1170
+ )
1171
+
1172
+ [expirationDate] =>
1173
+ [balances] => stdClass Object
1174
+ (
1175
+ [balance] => Array
1176
+ (
1177
+ [0] => stdClass Object
1178
+ (
1179
+ [valueCode] => Discount
1180
+ [amount] => 0
1181
+ [difference] => 0
1182
+ [exchangeRate] => 0
1183
+ )
1184
+
1185
+ [1] => stdClass Object
1186
+ (
1187
+ [valueCode] => Points
1188
+ [amount] => 0
1189
+ [difference] => 0
1190
+ [exchangeRate] => 0
1191
+ )
1192
+
1193
+ [2] => stdClass Object
1194
+ (
1195
+ [valueCode] => ZAR
1196
+ [amount] => 0
1197
+ [difference] => 0
1198
+ [exchangeRate] => 0
1199
+ )
1200
+
1201
+ )
1202
+
1203
+ )
1204
+
1205
+ [customerInfo] => stdClass Object
1206
+ (
1207
+ [customerType] =>
1208
+ [firstName] => Magento Lb
1209
+ [middleName] =>
1210
+ [lastName] =>
1211
+ [address1] =>
1212
+ [address2] =>
1213
+ [city] =>
1214
+ [state] =>
1215
+ [postal] =>
1216
+ [country] => 197
1217
+ [mailPref] => 0
1218
+ [phone] => 275555555555
1219
+ [isMobile] => Y
1220
+ [phonePref] => 0
1221
+ [email] => genknooz4@gmail.com
1222
+ [emailPref] => 0
1223
+ [birthday] =>
1224
+ [anniversary] =>
1225
+ [gender] => M
1226
+ )
1227
+
1228
+ [hostMessage] =>
1229
+ )
1230
+
1231
+ )
1232
+ RequestLineItemRedemption-2015-06-04 05:56:14.000000+00:00
1233
+ <?xml version="1.0" encoding="UTF-8"?>
1234
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>800</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:56:11</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
1235
+ stdClass Object
1236
+ (
1237
+ [RequestLineItemRedemptionResult] => stdClass Object
1238
+ (
1239
+ [standardHeader] => stdClass Object
1240
+ (
1241
+ [requestId] => 15663747
1242
+ [status] => A
1243
+ )
1244
+
1245
+ [identification] => stdClass Object
1246
+ (
1247
+ [transactionId] => 15663747
1248
+ [approvalCode] => 15663747
1249
+ [demonstration] => 0
1250
+ )
1251
+
1252
+ [expirationDate] =>
1253
+ [balances] => stdClass Object
1254
+ (
1255
+ [Balance] => Array
1256
+ (
1257
+ [0] => stdClass Object
1258
+ (
1259
+ [valueCode] => Points
1260
+ [amount] => 0
1261
+ [difference] => 0
1262
+ [exchangeRate] => 0
1263
+ )
1264
+
1265
+ [1] => stdClass Object
1266
+ (
1267
+ [valueCode] => ZAR
1268
+ [amount] => 0
1269
+ [difference] => 0
1270
+ [exchangeRate] => 0
1271
+ )
1272
+
1273
+ [2] => stdClass Object
1274
+ (
1275
+ [valueCode] => Discount
1276
+ [amount] => 99.8
1277
+ [difference] => 99.8
1278
+ [exchangeRate] => 0
1279
+ )
1280
+
1281
+ )
1282
+
1283
+ )
1284
+
1285
+ [customerInfo] => stdClass Object
1286
+ (
1287
+ [customerType] =>
1288
+ [firstName] => Magento Lb
1289
+ [middleName] =>
1290
+ [lastName] =>
1291
+ [address1] =>
1292
+ [address2] =>
1293
+ [city] =>
1294
+ [state] =>
1295
+ [postal] =>
1296
+ [country] => 197
1297
+ [mailPref] => 0
1298
+ [phone] => 275555555555
1299
+ [isMobile] => Y
1300
+ [phonePref] => 0
1301
+ [email] => genknooz4@gmail.com
1302
+ [emailPref] => 0
1303
+ [birthday] =>
1304
+ [anniversary] =>
1305
+ [gender] => M
1306
+ )
1307
+
1308
+ [hostMessage] =>
1309
+ [amountRemaining] =>
1310
+ )
1311
+
1312
+ )
1313
+ RequestLineItemRedemption-2015-06-04 05:57:49.000000+00:00
1314
+ <?xml version="1.0" encoding="UTF-8"?>
1315
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>800</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:57:41</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
1316
+ stdClass Object
1317
+ (
1318
+ [RequestLineItemRedemptionResult] => stdClass Object
1319
+ (
1320
+ [standardHeader] => stdClass Object
1321
+ (
1322
+ [requestId] => 15663844
1323
+ [status] => A
1324
+ )
1325
+
1326
+ [identification] => stdClass Object
1327
+ (
1328
+ [transactionId] => 15663844
1329
+ [approvalCode] => 15663844
1330
+ [demonstration] => 0
1331
+ )
1332
+
1333
+ [expirationDate] =>
1334
+ [balances] => stdClass Object
1335
+ (
1336
+ [Balance] => Array
1337
+ (
1338
+ [0] => stdClass Object
1339
+ (
1340
+ [valueCode] => Points
1341
+ [amount] => 0
1342
+ [difference] => 0
1343
+ [exchangeRate] => 0
1344
+ )
1345
+
1346
+ [1] => stdClass Object
1347
+ (
1348
+ [valueCode] => ZAR
1349
+ [amount] => 0
1350
+ [difference] => 0
1351
+ [exchangeRate] => 0
1352
+ )
1353
+
1354
+ [2] => stdClass Object
1355
+ (
1356
+ [valueCode] => Discount
1357
+ [amount] => 199.6
1358
+ [difference] => 199.6
1359
+ [exchangeRate] => 0
1360
+ )
1361
+
1362
+ )
1363
+
1364
+ )
1365
+
1366
+ [customerInfo] => stdClass Object
1367
+ (
1368
+ [customerType] =>
1369
+ [firstName] => Magento Lb
1370
+ [middleName] =>
1371
+ [lastName] =>
1372
+ [address1] =>
1373
+ [address2] =>
1374
+ [city] =>
1375
+ [state] =>
1376
+ [postal] =>
1377
+ [country] => 197
1378
+ [mailPref] => 0
1379
+ [phone] => 275555555555
1380
+ [isMobile] => Y
1381
+ [phonePref] => 0
1382
+ [email] => genknooz4@gmail.com
1383
+ [emailPref] => 0
1384
+ [birthday] =>
1385
+ [anniversary] =>
1386
+ [gender] => M
1387
+ )
1388
+
1389
+ [hostMessage] =>
1390
+ [amountRemaining] =>
1391
+ )
1392
+
1393
+ )
1394
+ RequestLineItemRedemption-2015-06-04 05:58:45.000000+00:00
1395
+ <?xml version="1.0" encoding="UTF-8"?>
1396
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>800</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:58:36</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
1397
+ stdClass Object
1398
+ (
1399
+ [RequestLineItemRedemptionResult] => stdClass Object
1400
+ (
1401
+ [standardHeader] => stdClass Object
1402
+ (
1403
+ [requestId] => 15663915
1404
+ [status] => A
1405
+ )
1406
+
1407
+ [identification] => stdClass Object
1408
+ (
1409
+ [transactionId] => 15663915
1410
+ [approvalCode] => 15663915
1411
+ [demonstration] => 0
1412
+ )
1413
+
1414
+ [expirationDate] =>
1415
+ [balances] => stdClass Object
1416
+ (
1417
+ [Balance] => Array
1418
+ (
1419
+ [0] => stdClass Object
1420
+ (
1421
+ [valueCode] => Points
1422
+ [amount] => 0
1423
+ [difference] => 0
1424
+ [exchangeRate] => 0
1425
+ )
1426
+
1427
+ [1] => stdClass Object
1428
+ (
1429
+ [valueCode] => ZAR
1430
+ [amount] => 0
1431
+ [difference] => 0
1432
+ [exchangeRate] => 0
1433
+ )
1434
+
1435
+ [2] => stdClass Object
1436
+ (
1437
+ [valueCode] => Discount
1438
+ [amount] => 199.6
1439
+ [difference] => 199.6
1440
+ [exchangeRate] => 0
1441
+ )
1442
+
1443
+ )
1444
+
1445
+ )
1446
+
1447
+ [customerInfo] => stdClass Object
1448
+ (
1449
+ [customerType] =>
1450
+ [firstName] => Magento Lb
1451
+ [middleName] =>
1452
+ [lastName] =>
1453
+ [address1] =>
1454
+ [address2] =>
1455
+ [city] =>
1456
+ [state] =>
1457
+ [postal] =>
1458
+ [country] => 197
1459
+ [mailPref] => 0
1460
+ [phone] => 275555555555
1461
+ [isMobile] => Y
1462
+ [phonePref] => 0
1463
+ [email] => genknooz4@gmail.com
1464
+ [emailPref] => 0
1465
+ [birthday] =>
1466
+ [anniversary] =>
1467
+ [gender] => M
1468
+ )
1469
+
1470
+ [hostMessage] =>
1471
+ [amountRemaining] =>
1472
+ )
1473
+
1474
+ )
1475
+ RequestLineItemRedemption-2015-06-04 05:58:48.000000+00:00
1476
+ <?xml version="1.0" encoding="UTF-8"?>
1477
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>800</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:58:45</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>true</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
1478
+ stdClass Object
1479
+ (
1480
+ [RequestLineItemRedemptionResult] => stdClass Object
1481
+ (
1482
+ [standardHeader] => stdClass Object
1483
+ (
1484
+ [requestId] => 15663918
1485
+ [status] => A
1486
+ )
1487
+
1488
+ [identification] => stdClass Object
1489
+ (
1490
+ [transactionId] => 15663918
1491
+ [approvalCode] => 15663918
1492
+ [demonstration] => 0
1493
+ )
1494
+
1495
+ [expirationDate] =>
1496
+ [balances] => stdClass Object
1497
+ (
1498
+ [Balance] => Array
1499
+ (
1500
+ [0] => stdClass Object
1501
+ (
1502
+ [valueCode] => Discount
1503
+ [amount] => 0
1504
+ [difference] => 0
1505
+ [exchangeRate] => 0
1506
+ )
1507
+
1508
+ [1] => stdClass Object
1509
+ (
1510
+ [valueCode] => Points
1511
+ [amount] => 0
1512
+ [difference] => 0
1513
+ [exchangeRate] => 0
1514
+ )
1515
+
1516
+ [2] => stdClass Object
1517
+ (
1518
+ [valueCode] => ZAR
1519
+ [amount] => 0
1520
+ [difference] => 0
1521
+ [exchangeRate] => 0
1522
+ )
1523
+
1524
+ )
1525
+
1526
+ )
1527
+
1528
+ [customerInfo] => stdClass Object
1529
+ (
1530
+ [customerType] =>
1531
+ [firstName] => Magento Lb
1532
+ [middleName] =>
1533
+ [lastName] =>
1534
+ [address1] =>
1535
+ [address2] =>
1536
+ [city] =>
1537
+ [state] =>
1538
+ [postal] =>
1539
+ [country] => 197
1540
+ [mailPref] => 0
1541
+ [phone] => 275555555555
1542
+ [isMobile] => Y
1543
+ [phonePref] => 0
1544
+ [email] => genknooz4@gmail.com
1545
+ [emailPref] => 0
1546
+ [birthday] =>
1547
+ [anniversary] =>
1548
+ [gender] => M
1549
+ )
1550
+
1551
+ [hostMessage] =>
1552
+ [amountRemaining] =>
1553
+ )
1554
+
1555
+ )
1556
+ UpdateSale-2015-06-04 05:58:52.000000+00:00
1557
+ <?xml version="1.0" encoding="UTF-8"?>
1558
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateSale><ns1:p_objrequest><ns1:transactionTypeId>1</ns1:transactionTypeId><ns1:tenderTypeId>1</ns1:tenderTypeId><ns1:standardHeader><requestId>800</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:58:48</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>W</entryType></ns1:account><ns1:activating>Y</ns1:activating><ns1:amount><valueCode>ZAR</valueCode><enteredAmount>808.4000</enteredAmount></ns1:amount><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems></ns1:p_objrequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateSale></SOAP-ENV:Body></SOAP-ENV:Envelope>
1559
+ stdClass Object
1560
+ (
1561
+ [UpdateSaleResult] => stdClass Object
1562
+ (
1563
+ [standardHeader] => stdClass Object
1564
+ (
1565
+ [requestId] => 800
1566
+ [status] => A
1567
+ )
1568
+
1569
+ [identification] => stdClass Object
1570
+ (
1571
+ [transactionId] => 15663923
1572
+ [approvalCode] => 15663923
1573
+ [demonstration] => 0
1574
+ )
1575
+
1576
+ [expirationDate] =>
1577
+ [balances] => stdClass Object
1578
+ (
1579
+ [Balance] => Array
1580
+ (
1581
+ [0] => stdClass Object
1582
+ (
1583
+ [valueCode] => Discount
1584
+ [amount] => 0
1585
+ [difference] => 0
1586
+ [exchangeRate] => 0
1587
+ )
1588
+
1589
+ [1] => stdClass Object
1590
+ (
1591
+ [valueCode] => Points
1592
+ [amount] => 80.84
1593
+ [difference] => 80.84
1594
+ [exchangeRate] => 0
1595
+ )
1596
+
1597
+ [2] => stdClass Object
1598
+ (
1599
+ [valueCode] => ZAR
1600
+ [amount] => 808.4
1601
+ [difference] => 808.4
1602
+ [exchangeRate] => 0
1603
+ )
1604
+
1605
+ )
1606
+
1607
+ )
1608
+
1609
+ [customerInfo] => stdClass Object
1610
+ (
1611
+ [customerType] =>
1612
+ [firstName] => Magento Lb
1613
+ [middleName] =>
1614
+ [lastName] =>
1615
+ [address1] =>
1616
+ [address2] =>
1617
+ [city] =>
1618
+ [state] =>
1619
+ [postal] =>
1620
+ [country] => 197
1621
+ [mailPref] => 0
1622
+ [phone] => 275555555555
1623
+ [isMobile] => Y
1624
+ [phonePref] => 0
1625
+ [email] => genknooz4@gmail.com
1626
+ [emailPref] => 0
1627
+ [birthday] =>
1628
+ [anniversary] =>
1629
+ [gender] => M
1630
+ )
1631
+
1632
+ [hostMessage] =>
1633
+ [amountRemaining] =>
1634
+ )
1635
+
1636
+ )
1637
+ RequestLineItemRedemption-2015-06-04 05:59:40.000000+00:00
1638
+ <?xml version="1.0" encoding="UTF-8"?>
1639
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:59:36</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
1640
+ stdClass Object
1641
+ (
1642
+ [RequestLineItemRedemptionResult] => stdClass Object
1643
+ (
1644
+ [standardHeader] => stdClass Object
1645
+ (
1646
+ [requestId] => 15663980
1647
+ [status] => A
1648
+ )
1649
+
1650
+ [identification] => stdClass Object
1651
+ (
1652
+ [transactionId] => 15663980
1653
+ [approvalCode] => 15663980
1654
+ [demonstration] => 0
1655
+ )
1656
+
1657
+ [expirationDate] =>
1658
+ [balances] => stdClass Object
1659
+ (
1660
+ [Balance] => Array
1661
+ (
1662
+ [0] => stdClass Object
1663
+ (
1664
+ [valueCode] => Points
1665
+ [amount] => 80.84
1666
+ [difference] => 0
1667
+ [exchangeRate] => 0
1668
+ )
1669
+
1670
+ [1] => stdClass Object
1671
+ (
1672
+ [valueCode] => Discount
1673
+ [amount] => 99.8
1674
+ [difference] => 99.8
1675
+ [exchangeRate] => 0
1676
+ )
1677
+
1678
+ [2] => stdClass Object
1679
+ (
1680
+ [valueCode] => ZAR
1681
+ [amount] => 808.4
1682
+ [difference] => 0
1683
+ [exchangeRate] => 0
1684
+ )
1685
+
1686
+ )
1687
+
1688
+ )
1689
+
1690
+ [customerInfo] => stdClass Object
1691
+ (
1692
+ [customerType] =>
1693
+ [firstName] => Magento Lb
1694
+ [middleName] =>
1695
+ [lastName] =>
1696
+ [address1] =>
1697
+ [address2] =>
1698
+ [city] =>
1699
+ [state] =>
1700
+ [postal] =>
1701
+ [country] => 197
1702
+ [mailPref] => 0
1703
+ [phone] => 275555555555
1704
+ [isMobile] => Y
1705
+ [phonePref] => 0
1706
+ [email] => genknooz4@gmail.com
1707
+ [emailPref] => 0
1708
+ [birthday] =>
1709
+ [anniversary] =>
1710
+ [gender] => M
1711
+ )
1712
+
1713
+ [hostMessage] =>
1714
+ [amountRemaining] =>
1715
+ )
1716
+
1717
+ )
1718
+ Inquiry-2015-06-04 05:59:55.000000+00:00
1719
+ <?xml version="1.0" encoding="UTF-8"?>
1720
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:59:51</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>275555555555</accountId><pin></pin><entryType>W</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
1721
+ stdClass Object
1722
+ (
1723
+ [InquiryResult] => stdClass Object
1724
+ (
1725
+ [standardHeader] => stdClass Object
1726
+ (
1727
+ [requestId] => 532
1728
+ [status] => A
1729
+ )
1730
+
1731
+ [identification] => stdClass Object
1732
+ (
1733
+ [transactionId] => 15664002
1734
+ [approvalCode] => 15664002
1735
+ [demonstration] => 0
1736
+ )
1737
+
1738
+ [expirationDate] =>
1739
+ [balances] => stdClass Object
1740
+ (
1741
+ [balance] => Array
1742
+ (
1743
+ [0] => stdClass Object
1744
+ (
1745
+ [valueCode] => Points
1746
+ [amount] => 80.84
1747
+ [difference] => 0
1748
+ [exchangeRate] => 0
1749
+ )
1750
+
1751
+ [1] => stdClass Object
1752
+ (
1753
+ [valueCode] => Discount
1754
+ [amount] => 99.8
1755
+ [difference] => 0
1756
+ [exchangeRate] => 0
1757
+ )
1758
+
1759
+ [2] => stdClass Object
1760
+ (
1761
+ [valueCode] => ZAR
1762
+ [amount] => 808.4
1763
+ [difference] => 0
1764
+ [exchangeRate] => 0
1765
+ )
1766
+
1767
+ )
1768
+
1769
+ )
1770
+
1771
+ [customerInfo] => stdClass Object
1772
+ (
1773
+ [customerType] =>
1774
+ [firstName] => Magento Lb
1775
+ [middleName] =>
1776
+ [lastName] =>
1777
+ [address1] =>
1778
+ [address2] =>
1779
+ [city] =>
1780
+ [state] =>
1781
+ [postal] =>
1782
+ [country] => 197
1783
+ [mailPref] => 0
1784
+ [phone] => 275555555555
1785
+ [isMobile] => Y
1786
+ [phonePref] => 0
1787
+ [email] => genknooz4@gmail.com
1788
+ [emailPref] => 0
1789
+ [birthday] =>
1790
+ [anniversary] =>
1791
+ [gender] => M
1792
+ )
1793
+
1794
+ [hostMessage] =>
1795
+ )
1796
+
1797
+ )
1798
+ RequestLineItemRedemption-2015-06-04 05:59:59.000000+00:00
1799
+ <?xml version="1.0" encoding="UTF-8"?>
1800
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 05:59:55</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
1801
+ stdClass Object
1802
+ (
1803
+ [RequestLineItemRedemptionResult] => stdClass Object
1804
+ (
1805
+ [standardHeader] => stdClass Object
1806
+ (
1807
+ [requestId] => 15664008
1808
+ [status] => A
1809
+ )
1810
+
1811
+ [identification] => stdClass Object
1812
+ (
1813
+ [transactionId] => 15664008
1814
+ [approvalCode] => 15664008
1815
+ [demonstration] => 0
1816
+ )
1817
+
1818
+ [expirationDate] =>
1819
+ [balances] => stdClass Object
1820
+ (
1821
+ [Balance] => Array
1822
+ (
1823
+ [0] => stdClass Object
1824
+ (
1825
+ [valueCode] => Points
1826
+ [amount] => 80.84
1827
+ [difference] => 0
1828
+ [exchangeRate] => 0
1829
+ )
1830
+
1831
+ [1] => stdClass Object
1832
+ (
1833
+ [valueCode] => Discount
1834
+ [amount] => 99.8
1835
+ [difference] => 99.8
1836
+ [exchangeRate] => 0
1837
+ )
1838
+
1839
+ [2] => stdClass Object
1840
+ (
1841
+ [valueCode] => ZAR
1842
+ [amount] => 808.4
1843
+ [difference] => 0
1844
+ [exchangeRate] => 0
1845
+ )
1846
+
1847
+ )
1848
+
1849
+ )
1850
+
1851
+ [customerInfo] => stdClass Object
1852
+ (
1853
+ [customerType] =>
1854
+ [firstName] => Magento Lb
1855
+ [middleName] =>
1856
+ [lastName] =>
1857
+ [address1] =>
1858
+ [address2] =>
1859
+ [city] =>
1860
+ [state] =>
1861
+ [postal] =>
1862
+ [country] => 197
1863
+ [mailPref] => 0
1864
+ [phone] => 275555555555
1865
+ [isMobile] => Y
1866
+ [phonePref] => 0
1867
+ [email] => genknooz4@gmail.com
1868
+ [emailPref] => 0
1869
+ [birthday] =>
1870
+ [anniversary] =>
1871
+ [gender] => M
1872
+ )
1873
+
1874
+ [hostMessage] =>
1875
+ [amountRemaining] =>
1876
+ )
1877
+
1878
+ )
1879
+ Inquiry-2015-06-04 06:01:01.000000+00:00
1880
+ <?xml version="1.0" encoding="UTF-8"?>
1881
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:00:57</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>275555555555</accountId><pin></pin><entryType>W</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
1882
+ stdClass Object
1883
+ (
1884
+ [InquiryResult] => stdClass Object
1885
+ (
1886
+ [standardHeader] => stdClass Object
1887
+ (
1888
+ [requestId] => 532
1889
+ [status] => A
1890
+ )
1891
+
1892
+ [identification] => stdClass Object
1893
+ (
1894
+ [transactionId] => 15664057
1895
+ [approvalCode] => 15664057
1896
+ [demonstration] => 0
1897
+ )
1898
+
1899
+ [expirationDate] =>
1900
+ [balances] => stdClass Object
1901
+ (
1902
+ [balance] => Array
1903
+ (
1904
+ [0] => stdClass Object
1905
+ (
1906
+ [valueCode] => Points
1907
+ [amount] => 80.84
1908
+ [difference] => 0
1909
+ [exchangeRate] => 0
1910
+ )
1911
+
1912
+ [1] => stdClass Object
1913
+ (
1914
+ [valueCode] => Discount
1915
+ [amount] => 99.8
1916
+ [difference] => 0
1917
+ [exchangeRate] => 0
1918
+ )
1919
+
1920
+ [2] => stdClass Object
1921
+ (
1922
+ [valueCode] => ZAR
1923
+ [amount] => 808.4
1924
+ [difference] => 0
1925
+ [exchangeRate] => 0
1926
+ )
1927
+
1928
+ )
1929
+
1930
+ )
1931
+
1932
+ [customerInfo] => stdClass Object
1933
+ (
1934
+ [customerType] =>
1935
+ [firstName] => Magento Lb
1936
+ [middleName] =>
1937
+ [lastName] =>
1938
+ [address1] =>
1939
+ [address2] =>
1940
+ [city] =>
1941
+ [state] =>
1942
+ [postal] =>
1943
+ [country] => 197
1944
+ [mailPref] => 0
1945
+ [phone] => 275555555555
1946
+ [isMobile] => Y
1947
+ [phonePref] => 0
1948
+ [email] => genknooz4@gmail.com
1949
+ [emailPref] => 0
1950
+ [birthday] =>
1951
+ [anniversary] =>
1952
+ [gender] => M
1953
+ )
1954
+
1955
+ [hostMessage] =>
1956
+ )
1957
+
1958
+ )
1959
+ RequestLineItemRedemption-2015-06-04 06:01:05.000000+00:00
1960
+ <?xml version="1.0" encoding="UTF-8"?>
1961
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:01:01</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
1962
+ stdClass Object
1963
+ (
1964
+ [RequestLineItemRedemptionResult] => stdClass Object
1965
+ (
1966
+ [standardHeader] => stdClass Object
1967
+ (
1968
+ [requestId] => 15664060
1969
+ [status] => A
1970
+ )
1971
+
1972
+ [identification] => stdClass Object
1973
+ (
1974
+ [transactionId] => 15664060
1975
+ [approvalCode] => 15664060
1976
+ [demonstration] => 0
1977
+ )
1978
+
1979
+ [expirationDate] =>
1980
+ [balances] => stdClass Object
1981
+ (
1982
+ [Balance] => Array
1983
+ (
1984
+ [0] => stdClass Object
1985
+ (
1986
+ [valueCode] => Points
1987
+ [amount] => 80.84
1988
+ [difference] => 0
1989
+ [exchangeRate] => 0
1990
+ )
1991
+
1992
+ [1] => stdClass Object
1993
+ (
1994
+ [valueCode] => Discount
1995
+ [amount] => 99.8
1996
+ [difference] => 99.8
1997
+ [exchangeRate] => 0
1998
+ )
1999
+
2000
+ [2] => stdClass Object
2001
+ (
2002
+ [valueCode] => ZAR
2003
+ [amount] => 808.4
2004
+ [difference] => 0
2005
+ [exchangeRate] => 0
2006
+ )
2007
+
2008
+ )
2009
+
2010
+ )
2011
+
2012
+ [customerInfo] => stdClass Object
2013
+ (
2014
+ [customerType] =>
2015
+ [firstName] => Magento Lb
2016
+ [middleName] =>
2017
+ [lastName] =>
2018
+ [address1] =>
2019
+ [address2] =>
2020
+ [city] =>
2021
+ [state] =>
2022
+ [postal] =>
2023
+ [country] => 197
2024
+ [mailPref] => 0
2025
+ [phone] => 275555555555
2026
+ [isMobile] => Y
2027
+ [phonePref] => 0
2028
+ [email] => genknooz4@gmail.com
2029
+ [emailPref] => 0
2030
+ [birthday] =>
2031
+ [anniversary] =>
2032
+ [gender] => M
2033
+ )
2034
+
2035
+ [hostMessage] =>
2036
+ [amountRemaining] =>
2037
+ )
2038
+
2039
+ )
2040
+ RequestLineItemRedemption-2015-06-04 06:01:43.000000+00:00
2041
+ <?xml version="1.0" encoding="UTF-8"?>
2042
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:01:40</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
2043
+ stdClass Object
2044
+ (
2045
+ [RequestLineItemRedemptionResult] => stdClass Object
2046
+ (
2047
+ [standardHeader] => stdClass Object
2048
+ (
2049
+ [requestId] => 15664119
2050
+ [status] => A
2051
+ )
2052
+
2053
+ [identification] => stdClass Object
2054
+ (
2055
+ [transactionId] => 15664119
2056
+ [approvalCode] => 15664119
2057
+ [demonstration] => 0
2058
+ )
2059
+
2060
+ [expirationDate] =>
2061
+ [balances] => stdClass Object
2062
+ (
2063
+ [Balance] => Array
2064
+ (
2065
+ [0] => stdClass Object
2066
+ (
2067
+ [valueCode] => Points
2068
+ [amount] => 80.84
2069
+ [difference] => 0
2070
+ [exchangeRate] => 0
2071
+ )
2072
+
2073
+ [1] => stdClass Object
2074
+ (
2075
+ [valueCode] => Discount
2076
+ [amount] => 99.8
2077
+ [difference] => 99.8
2078
+ [exchangeRate] => 0
2079
+ )
2080
+
2081
+ [2] => stdClass Object
2082
+ (
2083
+ [valueCode] => ZAR
2084
+ [amount] => 808.4
2085
+ [difference] => 0
2086
+ [exchangeRate] => 0
2087
+ )
2088
+
2089
+ )
2090
+
2091
+ )
2092
+
2093
+ [customerInfo] => stdClass Object
2094
+ (
2095
+ [customerType] =>
2096
+ [firstName] => Magento Lb
2097
+ [middleName] =>
2098
+ [lastName] =>
2099
+ [address1] =>
2100
+ [address2] =>
2101
+ [city] =>
2102
+ [state] =>
2103
+ [postal] =>
2104
+ [country] => 197
2105
+ [mailPref] => 0
2106
+ [phone] => 275555555555
2107
+ [isMobile] => Y
2108
+ [phonePref] => 0
2109
+ [email] => genknooz4@gmail.com
2110
+ [emailPref] => 0
2111
+ [birthday] =>
2112
+ [anniversary] =>
2113
+ [gender] => M
2114
+ )
2115
+
2116
+ [hostMessage] =>
2117
+ [amountRemaining] =>
2118
+ )
2119
+
2120
+ )
2121
+ RequestLineItemRedemption-2015-06-04 06:01:50.000000+00:00
2122
+ <?xml version="1.0" encoding="UTF-8"?>
2123
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:01:43</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>true</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
2124
+ stdClass Object
2125
+ (
2126
+ [RequestLineItemRedemptionResult] => stdClass Object
2127
+ (
2128
+ [standardHeader] => stdClass Object
2129
+ (
2130
+ [requestId] => 15664127
2131
+ [status] => A
2132
+ )
2133
+
2134
+ [identification] => stdClass Object
2135
+ (
2136
+ [transactionId] => 15664127
2137
+ [approvalCode] => 15664127
2138
+ [demonstration] => 0
2139
+ )
2140
+
2141
+ [expirationDate] =>
2142
+ [balances] => stdClass Object
2143
+ (
2144
+ [Balance] => Array
2145
+ (
2146
+ [0] => stdClass Object
2147
+ (
2148
+ [valueCode] => Discount
2149
+ [amount] => 0
2150
+ [difference] => 0
2151
+ [exchangeRate] => 0
2152
+ )
2153
+
2154
+ [1] => stdClass Object
2155
+ (
2156
+ [valueCode] => Points
2157
+ [amount] => 80.84
2158
+ [difference] => 0
2159
+ [exchangeRate] => 0
2160
+ )
2161
+
2162
+ [2] => stdClass Object
2163
+ (
2164
+ [valueCode] => ZAR
2165
+ [amount] => 808.4
2166
+ [difference] => 0
2167
+ [exchangeRate] => 0
2168
+ )
2169
+
2170
+ )
2171
+
2172
+ )
2173
+
2174
+ [customerInfo] => stdClass Object
2175
+ (
2176
+ [customerType] =>
2177
+ [firstName] => Magento Lb
2178
+ [middleName] =>
2179
+ [lastName] =>
2180
+ [address1] =>
2181
+ [address2] =>
2182
+ [city] =>
2183
+ [state] =>
2184
+ [postal] =>
2185
+ [country] => 197
2186
+ [mailPref] => 0
2187
+ [phone] => 275555555555
2188
+ [isMobile] => Y
2189
+ [phonePref] => 0
2190
+ [email] => genknooz4@gmail.com
2191
+ [emailPref] => 0
2192
+ [birthday] =>
2193
+ [anniversary] =>
2194
+ [gender] => M
2195
+ )
2196
+
2197
+ [hostMessage] =>
2198
+ [amountRemaining] =>
2199
+ )
2200
+
2201
+ )
2202
+ UpdateSale-2015-06-04 06:01:54.000000+00:00
2203
+ <?xml version="1.0" encoding="UTF-8"?>
2204
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateSale><ns1:p_objrequest><ns1:transactionTypeId>4</ns1:transactionTypeId><ns1:tenderTypeId>5</ns1:tenderTypeId><ns1:standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:01:50</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Points</valueCode><enteredAmount>30</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems></ns1:p_objrequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateSale></SOAP-ENV:Body></SOAP-ENV:Envelope>
2205
+ stdClass Object
2206
+ (
2207
+ [UpdateSaleResult] => stdClass Object
2208
+ (
2209
+ [standardHeader] => stdClass Object
2210
+ (
2211
+ [requestId] => 532
2212
+ [status] => A
2213
+ )
2214
+
2215
+ [identification] => stdClass Object
2216
+ (
2217
+ [transactionId] => 15664137
2218
+ [approvalCode] => 15664137
2219
+ [demonstration] => 0
2220
+ )
2221
+
2222
+ [expirationDate] =>
2223
+ [balances] => stdClass Object
2224
+ (
2225
+ [Balance] => Array
2226
+ (
2227
+ [0] => stdClass Object
2228
+ (
2229
+ [valueCode] => Discount
2230
+ [amount] => 0
2231
+ [difference] => 0
2232
+ [exchangeRate] => 0
2233
+ )
2234
+
2235
+ [1] => stdClass Object
2236
+ (
2237
+ [valueCode] => Points
2238
+ [amount] => 50.84
2239
+ [difference] => -30
2240
+ [exchangeRate] => 0
2241
+ )
2242
+
2243
+ [2] => stdClass Object
2244
+ (
2245
+ [valueCode] => ZAR
2246
+ [amount] => 808.4
2247
+ [difference] => 0
2248
+ [exchangeRate] => 0
2249
+ )
2250
+
2251
+ )
2252
+
2253
+ )
2254
+
2255
+ [customerInfo] => stdClass Object
2256
+ (
2257
+ [customerType] =>
2258
+ [firstName] => Magento Lb
2259
+ [middleName] =>
2260
+ [lastName] =>
2261
+ [address1] =>
2262
+ [address2] =>
2263
+ [city] =>
2264
+ [state] =>
2265
+ [postal] =>
2266
+ [country] => 197
2267
+ [mailPref] => 0
2268
+ [phone] => 275555555555
2269
+ [isMobile] => Y
2270
+ [phonePref] => 0
2271
+ [email] => genknooz4@gmail.com
2272
+ [emailPref] => 0
2273
+ [birthday] =>
2274
+ [anniversary] =>
2275
+ [gender] => M
2276
+ )
2277
+
2278
+ [hostMessage] =>
2279
+ [amountRemaining] =>
2280
+ )
2281
+
2282
+ )
2283
+ UpdateSale-2015-06-04 06:02:01.000000+00:00
2284
+ <?xml version="1.0" encoding="UTF-8"?>
2285
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateSale><ns1:p_objrequest><ns1:transactionTypeId>1</ns1:transactionTypeId><ns1:tenderTypeId>1</ns1:tenderTypeId><ns1:standardHeader><requestId>532</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:01:54</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>W</entryType></ns1:account><ns1:activating>Y</ns1:activating><ns1:amount><valueCode>ZAR</valueCode><enteredAmount>374.2000</enteredAmount></ns1:amount><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems></ns1:p_objrequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateSale></SOAP-ENV:Body></SOAP-ENV:Envelope>
2286
+ stdClass Object
2287
+ (
2288
+ [UpdateSaleResult] => stdClass Object
2289
+ (
2290
+ [standardHeader] => stdClass Object
2291
+ (
2292
+ [requestId] => 532
2293
+ [status] => A
2294
+ )
2295
+
2296
+ [identification] => stdClass Object
2297
+ (
2298
+ [transactionId] => 15664143
2299
+ [approvalCode] => 15664143
2300
+ [demonstration] => 0
2301
+ )
2302
+
2303
+ [expirationDate] =>
2304
+ [balances] => stdClass Object
2305
+ (
2306
+ [Balance] => Array
2307
+ (
2308
+ [0] => stdClass Object
2309
+ (
2310
+ [valueCode] => Discount
2311
+ [amount] => 0
2312
+ [difference] => 0
2313
+ [exchangeRate] => 0
2314
+ )
2315
+
2316
+ [1] => stdClass Object
2317
+ (
2318
+ [valueCode] => Points
2319
+ [amount] => 88.26
2320
+ [difference] => 37.42
2321
+ [exchangeRate] => 0
2322
+ )
2323
+
2324
+ [2] => stdClass Object
2325
+ (
2326
+ [valueCode] => ZAR
2327
+ [amount] => 1182.6
2328
+ [difference] => 374.2
2329
+ [exchangeRate] => 0
2330
+ )
2331
+
2332
+ )
2333
+
2334
+ )
2335
+
2336
+ [customerInfo] => stdClass Object
2337
+ (
2338
+ [customerType] =>
2339
+ [firstName] => Magento Lb
2340
+ [middleName] =>
2341
+ [lastName] =>
2342
+ [address1] =>
2343
+ [address2] =>
2344
+ [city] =>
2345
+ [state] =>
2346
+ [postal] =>
2347
+ [country] => 197
2348
+ [mailPref] => 0
2349
+ [phone] => 275555555555
2350
+ [isMobile] => Y
2351
+ [phonePref] => 0
2352
+ [email] => genknooz4@gmail.com
2353
+ [emailPref] => 0
2354
+ [birthday] =>
2355
+ [anniversary] =>
2356
+ [gender] => M
2357
+ )
2358
+
2359
+ [hostMessage] =>
2360
+ [amountRemaining] =>
2361
+ )
2362
+
2363
+ )
2364
+ RequestLineItemRedemption-2015-06-04 06:04:43.000000+00:00
2365
+ <?xml version="1.0" encoding="UTF-8"?>
2366
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>533</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:04:39</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
2367
+ stdClass Object
2368
+ (
2369
+ [RequestLineItemRedemptionResult] => stdClass Object
2370
+ (
2371
+ [standardHeader] => stdClass Object
2372
+ (
2373
+ [requestId] => 15664349
2374
+ [status] => A
2375
+ )
2376
+
2377
+ [identification] => stdClass Object
2378
+ (
2379
+ [transactionId] => 15664349
2380
+ [approvalCode] => 15664349
2381
+ [demonstration] => 0
2382
+ )
2383
+
2384
+ [expirationDate] =>
2385
+ [balances] => stdClass Object
2386
+ (
2387
+ [Balance] => Array
2388
+ (
2389
+ [0] => stdClass Object
2390
+ (
2391
+ [valueCode] => Points
2392
+ [amount] => 88.26
2393
+ [difference] => 0
2394
+ [exchangeRate] => 0
2395
+ )
2396
+
2397
+ [1] => stdClass Object
2398
+ (
2399
+ [valueCode] => Discount
2400
+ [amount] => 99.8
2401
+ [difference] => 99.8
2402
+ [exchangeRate] => 0
2403
+ )
2404
+
2405
+ [2] => stdClass Object
2406
+ (
2407
+ [valueCode] => ZAR
2408
+ [amount] => 1182.6
2409
+ [difference] => 0
2410
+ [exchangeRate] => 0
2411
+ )
2412
+
2413
+ )
2414
+
2415
+ )
2416
+
2417
+ [customerInfo] => stdClass Object
2418
+ (
2419
+ [customerType] =>
2420
+ [firstName] => Magento Lb
2421
+ [middleName] =>
2422
+ [lastName] =>
2423
+ [address1] =>
2424
+ [address2] =>
2425
+ [city] =>
2426
+ [state] =>
2427
+ [postal] =>
2428
+ [country] => 197
2429
+ [mailPref] => 0
2430
+ [phone] => 275555555555
2431
+ [isMobile] => Y
2432
+ [phonePref] => 0
2433
+ [email] => genknooz4@gmail.com
2434
+ [emailPref] => 0
2435
+ [birthday] =>
2436
+ [anniversary] =>
2437
+ [gender] => M
2438
+ )
2439
+
2440
+ [hostMessage] =>
2441
+ [amountRemaining] =>
2442
+ )
2443
+
2444
+ )
2445
+ Inquiry-2015-06-04 06:04:58.000000+00:00
2446
+ <?xml version="1.0" encoding="UTF-8"?>
2447
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>533</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:04:54</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>275555555555</accountId><pin></pin><entryType>W</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
2448
+ stdClass Object
2449
+ (
2450
+ [InquiryResult] => stdClass Object
2451
+ (
2452
+ [standardHeader] => stdClass Object
2453
+ (
2454
+ [requestId] => 533
2455
+ [status] => A
2456
+ )
2457
+
2458
+ [identification] => stdClass Object
2459
+ (
2460
+ [transactionId] => 15664360
2461
+ [approvalCode] => 15664360
2462
+ [demonstration] => 0
2463
+ )
2464
+
2465
+ [expirationDate] =>
2466
+ [balances] => stdClass Object
2467
+ (
2468
+ [balance] => Array
2469
+ (
2470
+ [0] => stdClass Object
2471
+ (
2472
+ [valueCode] => Points
2473
+ [amount] => 88.26
2474
+ [difference] => 0
2475
+ [exchangeRate] => 0
2476
+ )
2477
+
2478
+ [1] => stdClass Object
2479
+ (
2480
+ [valueCode] => Discount
2481
+ [amount] => 99.8
2482
+ [difference] => 0
2483
+ [exchangeRate] => 0
2484
+ )
2485
+
2486
+ [2] => stdClass Object
2487
+ (
2488
+ [valueCode] => ZAR
2489
+ [amount] => 1182.6
2490
+ [difference] => 0
2491
+ [exchangeRate] => 0
2492
+ )
2493
+
2494
+ )
2495
+
2496
+ )
2497
+
2498
+ [customerInfo] => stdClass Object
2499
+ (
2500
+ [customerType] =>
2501
+ [firstName] => Magento Lb
2502
+ [middleName] =>
2503
+ [lastName] =>
2504
+ [address1] =>
2505
+ [address2] =>
2506
+ [city] =>
2507
+ [state] =>
2508
+ [postal] =>
2509
+ [country] => 197
2510
+ [mailPref] => 0
2511
+ [phone] => 275555555555
2512
+ [isMobile] => Y
2513
+ [phonePref] => 0
2514
+ [email] => genknooz4@gmail.com
2515
+ [emailPref] => 0
2516
+ [birthday] =>
2517
+ [anniversary] =>
2518
+ [gender] => M
2519
+ )
2520
+
2521
+ [hostMessage] =>
2522
+ )
2523
+
2524
+ )
2525
+ RequestLineItemRedemption-2015-06-04 06:05:02.000000+00:00
2526
+ <?xml version="1.0" encoding="UTF-8"?>
2527
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>533</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:04:59</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
2528
+ stdClass Object
2529
+ (
2530
+ [RequestLineItemRedemptionResult] => stdClass Object
2531
+ (
2532
+ [standardHeader] => stdClass Object
2533
+ (
2534
+ [requestId] => 15664363
2535
+ [status] => A
2536
+ )
2537
+
2538
+ [identification] => stdClass Object
2539
+ (
2540
+ [transactionId] => 15664363
2541
+ [approvalCode] => 15664363
2542
+ [demonstration] => 0
2543
+ )
2544
+
2545
+ [expirationDate] =>
2546
+ [balances] => stdClass Object
2547
+ (
2548
+ [Balance] => Array
2549
+ (
2550
+ [0] => stdClass Object
2551
+ (
2552
+ [valueCode] => Points
2553
+ [amount] => 88.26
2554
+ [difference] => 0
2555
+ [exchangeRate] => 0
2556
+ )
2557
+
2558
+ [1] => stdClass Object
2559
+ (
2560
+ [valueCode] => Discount
2561
+ [amount] => 99.8
2562
+ [difference] => 99.8
2563
+ [exchangeRate] => 0
2564
+ )
2565
+
2566
+ [2] => stdClass Object
2567
+ (
2568
+ [valueCode] => ZAR
2569
+ [amount] => 1182.6
2570
+ [difference] => 0
2571
+ [exchangeRate] => 0
2572
+ )
2573
+
2574
+ )
2575
+
2576
+ )
2577
+
2578
+ [customerInfo] => stdClass Object
2579
+ (
2580
+ [customerType] =>
2581
+ [firstName] => Magento Lb
2582
+ [middleName] =>
2583
+ [lastName] =>
2584
+ [address1] =>
2585
+ [address2] =>
2586
+ [city] =>
2587
+ [state] =>
2588
+ [postal] =>
2589
+ [country] => 197
2590
+ [mailPref] => 0
2591
+ [phone] => 275555555555
2592
+ [isMobile] => Y
2593
+ [phonePref] => 0
2594
+ [email] => genknooz4@gmail.com
2595
+ [emailPref] => 0
2596
+ [birthday] =>
2597
+ [anniversary] =>
2598
+ [gender] => M
2599
+ )
2600
+
2601
+ [hostMessage] =>
2602
+ [amountRemaining] =>
2603
+ )
2604
+
2605
+ )
2606
+ RequestLineItemRedemption-2015-06-04 06:06:29.000000+00:00
2607
+ <?xml version="1.0" encoding="UTF-8"?>
2608
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>533</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:06:25</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
2609
+ stdClass Object
2610
+ (
2611
+ [RequestLineItemRedemptionResult] => stdClass Object
2612
+ (
2613
+ [standardHeader] => stdClass Object
2614
+ (
2615
+ [requestId] => 15664465
2616
+ [status] => A
2617
+ )
2618
+
2619
+ [identification] => stdClass Object
2620
+ (
2621
+ [transactionId] => 15664465
2622
+ [approvalCode] => 15664465
2623
+ [demonstration] => 0
2624
+ )
2625
+
2626
+ [expirationDate] =>
2627
+ [balances] => stdClass Object
2628
+ (
2629
+ [Balance] => Array
2630
+ (
2631
+ [0] => stdClass Object
2632
+ (
2633
+ [valueCode] => Points
2634
+ [amount] => 88.26
2635
+ [difference] => 0
2636
+ [exchangeRate] => 0
2637
+ )
2638
+
2639
+ [1] => stdClass Object
2640
+ (
2641
+ [valueCode] => Discount
2642
+ [amount] => 199.6
2643
+ [difference] => 199.6
2644
+ [exchangeRate] => 0
2645
+ )
2646
+
2647
+ [2] => stdClass Object
2648
+ (
2649
+ [valueCode] => ZAR
2650
+ [amount] => 1182.6
2651
+ [difference] => 0
2652
+ [exchangeRate] => 0
2653
+ )
2654
+
2655
+ )
2656
+
2657
+ )
2658
+
2659
+ [customerInfo] => stdClass Object
2660
+ (
2661
+ [customerType] =>
2662
+ [firstName] => Magento Lb
2663
+ [middleName] =>
2664
+ [lastName] =>
2665
+ [address1] =>
2666
+ [address2] =>
2667
+ [city] =>
2668
+ [state] =>
2669
+ [postal] =>
2670
+ [country] => 197
2671
+ [mailPref] => 0
2672
+ [phone] => 275555555555
2673
+ [isMobile] => Y
2674
+ [phonePref] => 0
2675
+ [email] => genknooz4@gmail.com
2676
+ [emailPref] => 0
2677
+ [birthday] =>
2678
+ [anniversary] =>
2679
+ [gender] => M
2680
+ )
2681
+
2682
+ [hostMessage] =>
2683
+ [amountRemaining] =>
2684
+ )
2685
+
2686
+ )
2687
+ Inquiry-2015-06-04 06:07:57.000000+00:00
2688
+ <?xml version="1.0" encoding="UTF-8"?>
2689
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>533</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:07:52</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>275555555555</accountId><pin></pin><entryType>W</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
2690
+ stdClass Object
2691
+ (
2692
+ [InquiryResult] => stdClass Object
2693
+ (
2694
+ [standardHeader] => stdClass Object
2695
+ (
2696
+ [requestId] => 533
2697
+ [status] => A
2698
+ )
2699
+
2700
+ [identification] => stdClass Object
2701
+ (
2702
+ [transactionId] => 15664569
2703
+ [approvalCode] => 15664569
2704
+ [demonstration] => 0
2705
+ )
2706
+
2707
+ [expirationDate] =>
2708
+ [balances] => stdClass Object
2709
+ (
2710
+ [balance] => Array
2711
+ (
2712
+ [0] => stdClass Object
2713
+ (
2714
+ [valueCode] => Points
2715
+ [amount] => 88.26
2716
+ [difference] => 0
2717
+ [exchangeRate] => 0
2718
+ )
2719
+
2720
+ [1] => stdClass Object
2721
+ (
2722
+ [valueCode] => Discount
2723
+ [amount] => 199.6
2724
+ [difference] => 0
2725
+ [exchangeRate] => 0
2726
+ )
2727
+
2728
+ [2] => stdClass Object
2729
+ (
2730
+ [valueCode] => ZAR
2731
+ [amount] => 1182.6
2732
+ [difference] => 0
2733
+ [exchangeRate] => 0
2734
+ )
2735
+
2736
+ )
2737
+
2738
+ )
2739
+
2740
+ [customerInfo] => stdClass Object
2741
+ (
2742
+ [customerType] =>
2743
+ [firstName] => Magento Lb
2744
+ [middleName] =>
2745
+ [lastName] =>
2746
+ [address1] =>
2747
+ [address2] =>
2748
+ [city] =>
2749
+ [state] =>
2750
+ [postal] =>
2751
+ [country] => 197
2752
+ [mailPref] => 0
2753
+ [phone] => 275555555555
2754
+ [isMobile] => Y
2755
+ [phonePref] => 0
2756
+ [email] => genknooz4@gmail.com
2757
+ [emailPref] => 0
2758
+ [birthday] =>
2759
+ [anniversary] =>
2760
+ [gender] => M
2761
+ )
2762
+
2763
+ [hostMessage] =>
2764
+ )
2765
+
2766
+ )
2767
+ RequestLineItemRedemption-2015-06-04 06:08:01.000000+00:00
2768
+ <?xml version="1.0" encoding="UTF-8"?>
2769
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>533</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:07:57</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
2770
+ stdClass Object
2771
+ (
2772
+ [RequestLineItemRedemptionResult] => stdClass Object
2773
+ (
2774
+ [standardHeader] => stdClass Object
2775
+ (
2776
+ [requestId] => 15664574
2777
+ [status] => A
2778
+ )
2779
+
2780
+ [identification] => stdClass Object
2781
+ (
2782
+ [transactionId] => 15664574
2783
+ [approvalCode] => 15664574
2784
+ [demonstration] => 0
2785
+ )
2786
+
2787
+ [expirationDate] =>
2788
+ [balances] => stdClass Object
2789
+ (
2790
+ [Balance] => Array
2791
+ (
2792
+ [0] => stdClass Object
2793
+ (
2794
+ [valueCode] => Points
2795
+ [amount] => 88.26
2796
+ [difference] => 0
2797
+ [exchangeRate] => 0
2798
+ )
2799
+
2800
+ [1] => stdClass Object
2801
+ (
2802
+ [valueCode] => Discount
2803
+ [amount] => 199.6
2804
+ [difference] => 199.6
2805
+ [exchangeRate] => 0
2806
+ )
2807
+
2808
+ [2] => stdClass Object
2809
+ (
2810
+ [valueCode] => ZAR
2811
+ [amount] => 1182.6
2812
+ [difference] => 0
2813
+ [exchangeRate] => 0
2814
+ )
2815
+
2816
+ )
2817
+
2818
+ )
2819
+
2820
+ [customerInfo] => stdClass Object
2821
+ (
2822
+ [customerType] =>
2823
+ [firstName] => Magento Lb
2824
+ [middleName] =>
2825
+ [lastName] =>
2826
+ [address1] =>
2827
+ [address2] =>
2828
+ [city] =>
2829
+ [state] =>
2830
+ [postal] =>
2831
+ [country] => 197
2832
+ [mailPref] => 0
2833
+ [phone] => 275555555555
2834
+ [isMobile] => Y
2835
+ [phonePref] => 0
2836
+ [email] => genknooz4@gmail.com
2837
+ [emailPref] => 0
2838
+ [birthday] =>
2839
+ [anniversary] =>
2840
+ [gender] => M
2841
+ )
2842
+
2843
+ [hostMessage] =>
2844
+ [amountRemaining] =>
2845
+ )
2846
+
2847
+ )
2848
+ Inquiry-2015-06-04 06:08:29.000000+00:00
2849
+ <?xml version="1.0" encoding="UTF-8"?>
2850
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>534</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:08:23</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>5555555555</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
2851
+ stdClass Object
2852
+ (
2853
+ [InquiryResult] => stdClass Object
2854
+ (
2855
+ [standardHeader] => stdClass Object
2856
+ (
2857
+ [requestId] => 534
2858
+ [status] => A
2859
+ )
2860
+
2861
+ [identification] => stdClass Object
2862
+ (
2863
+ [transactionId] => 15664614
2864
+ [approvalCode] => 15664614
2865
+ [demonstration] => 0
2866
+ )
2867
+
2868
+ [expirationDate] =>
2869
+ [balances] => stdClass Object
2870
+ (
2871
+ [balance] => Array
2872
+ (
2873
+ [0] => stdClass Object
2874
+ (
2875
+ [valueCode] => Points
2876
+ [amount] => 88.26
2877
+ [difference] => 0
2878
+ [exchangeRate] => 0
2879
+ )
2880
+
2881
+ [1] => stdClass Object
2882
+ (
2883
+ [valueCode] => Discount
2884
+ [amount] => 199.6
2885
+ [difference] => 0
2886
+ [exchangeRate] => 0
2887
+ )
2888
+
2889
+ [2] => stdClass Object
2890
+ (
2891
+ [valueCode] => ZAR
2892
+ [amount] => 1182.6
2893
+ [difference] => 0
2894
+ [exchangeRate] => 0
2895
+ )
2896
+
2897
+ )
2898
+
2899
+ )
2900
+
2901
+ [customerInfo] => stdClass Object
2902
+ (
2903
+ [customerType] =>
2904
+ [firstName] => Magento Lb
2905
+ [middleName] =>
2906
+ [lastName] =>
2907
+ [address1] =>
2908
+ [address2] =>
2909
+ [city] =>
2910
+ [state] =>
2911
+ [postal] =>
2912
+ [country] => 197
2913
+ [mailPref] => 0
2914
+ [phone] => 275555555555
2915
+ [isMobile] => Y
2916
+ [phonePref] => 0
2917
+ [email] => genknooz4@gmail.com
2918
+ [emailPref] => 0
2919
+ [birthday] =>
2920
+ [anniversary] =>
2921
+ [gender] => M
2922
+ )
2923
+
2924
+ [hostMessage] =>
2925
+ )
2926
+
2927
+ )
2928
+ RequestLineItemRedemption-2015-06-04 06:08:33.000000+00:00
2929
+ <?xml version="1.0" encoding="UTF-8"?>
2930
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>534</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 06:08:30</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
2931
+ stdClass Object
2932
+ (
2933
+ [RequestLineItemRedemptionResult] => stdClass Object
2934
+ (
2935
+ [standardHeader] => stdClass Object
2936
+ (
2937
+ [requestId] => 15664621
2938
+ [status] => A
2939
+ )
2940
+
2941
+ [identification] => stdClass Object
2942
+ (
2943
+ [transactionId] => 15664621
2944
+ [approvalCode] => 15664621
2945
+ [demonstration] => 0
2946
+ )
2947
+
2948
+ [expirationDate] =>
2949
+ [balances] => stdClass Object
2950
+ (
2951
+ [Balance] => Array
2952
+ (
2953
+ [0] => stdClass Object
2954
+ (
2955
+ [valueCode] => Points
2956
+ [amount] => 88.26
2957
+ [difference] => 0
2958
+ [exchangeRate] => 0
2959
+ )
2960
+
2961
+ [1] => stdClass Object
2962
+ (
2963
+ [valueCode] => Discount
2964
+ [amount] => 199.6
2965
+ [difference] => 199.6
2966
+ [exchangeRate] => 0
2967
+ )
2968
+
2969
+ [2] => stdClass Object
2970
+ (
2971
+ [valueCode] => ZAR
2972
+ [amount] => 1182.6
2973
+ [difference] => 0
2974
+ [exchangeRate] => 0
2975
+ )
2976
+
2977
+ )
2978
+
2979
+ )
2980
+
2981
+ [customerInfo] => stdClass Object
2982
+ (
2983
+ [customerType] =>
2984
+ [firstName] => Magento Lb
2985
+ [middleName] =>
2986
+ [lastName] =>
2987
+ [address1] =>
2988
+ [address2] =>
2989
+ [city] =>
2990
+ [state] =>
2991
+ [postal] =>
2992
+ [country] => 197
2993
+ [mailPref] => 0
2994
+ [phone] => 275555555555
2995
+ [isMobile] => Y
2996
+ [phonePref] => 0
2997
+ [email] => genknooz4@gmail.com
2998
+ [emailPref] => 0
2999
+ [birthday] =>
3000
+ [anniversary] =>
3001
+ [gender] => M
3002
+ )
3003
+
3004
+ [hostMessage] =>
3005
+ [amountRemaining] =>
3006
+ )
3007
+
3008
+ )
3009
+ RequestLineItemRedemption-2015-06-04 07:22:45.000000+00:00
3010
+ <?xml version="1.0" encoding="UTF-8"?>
3011
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>534</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 07:22:41</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
3012
+ stdClass Object
3013
+ (
3014
+ [RequestLineItemRedemptionResult] => stdClass Object
3015
+ (
3016
+ [standardHeader] => stdClass Object
3017
+ (
3018
+ [requestId] => 15668642
3019
+ [status] => A
3020
+ )
3021
+
3022
+ [identification] => stdClass Object
3023
+ (
3024
+ [transactionId] => 15668642
3025
+ [approvalCode] => 15668642
3026
+ [demonstration] => 0
3027
+ )
3028
+
3029
+ [expirationDate] =>
3030
+ [balances] => stdClass Object
3031
+ (
3032
+ [Balance] => Array
3033
+ (
3034
+ [0] => stdClass Object
3035
+ (
3036
+ [valueCode] => Points
3037
+ [amount] => 88.26
3038
+ [difference] => 0
3039
+ [exchangeRate] => 0
3040
+ )
3041
+
3042
+ [1] => stdClass Object
3043
+ (
3044
+ [valueCode] => Discount
3045
+ [amount] => 99.8
3046
+ [difference] => 99.8
3047
+ [exchangeRate] => 0
3048
+ )
3049
+
3050
+ [2] => stdClass Object
3051
+ (
3052
+ [valueCode] => ZAR
3053
+ [amount] => 1182.6
3054
+ [difference] => 0
3055
+ [exchangeRate] => 0
3056
+ )
3057
+
3058
+ )
3059
+
3060
+ )
3061
+
3062
+ [customerInfo] => stdClass Object
3063
+ (
3064
+ [customerType] =>
3065
+ [firstName] => Magento Lb
3066
+ [middleName] =>
3067
+ [lastName] =>
3068
+ [address1] =>
3069
+ [address2] =>
3070
+ [city] =>
3071
+ [state] =>
3072
+ [postal] =>
3073
+ [country] => 197
3074
+ [mailPref] => 0
3075
+ [phone] => 275555555555
3076
+ [isMobile] => Y
3077
+ [phonePref] => 0
3078
+ [email] => genknooz4@gmail.com
3079
+ [emailPref] => 0
3080
+ [birthday] =>
3081
+ [anniversary] =>
3082
+ [gender] => M
3083
+ )
3084
+
3085
+ [hostMessage] =>
3086
+ [amountRemaining] =>
3087
+ )
3088
+
3089
+ )
3090
+ RequestLineItemRedemption-2015-06-04 11:08:52.000000+00:00
3091
+ <?xml version="1.0" encoding="UTF-8"?>
3092
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>534</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-04 11:08:48</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
3093
+ stdClass Object
3094
+ (
3095
+ [RequestLineItemRedemptionResult] => stdClass Object
3096
+ (
3097
+ [standardHeader] => stdClass Object
3098
+ (
3099
+ [requestId] => 15676857
3100
+ [status] => A
3101
+ )
3102
+
3103
+ [identification] => stdClass Object
3104
+ (
3105
+ [transactionId] => 15676857
3106
+ [approvalCode] => 15676857
3107
+ [demonstration] => 0
3108
+ )
3109
+
3110
+ [expirationDate] =>
3111
+ [balances] => stdClass Object
3112
+ (
3113
+ [Balance] => Array
3114
+ (
3115
+ [0] => stdClass Object
3116
+ (
3117
+ [valueCode] => Points
3118
+ [amount] => 88.26
3119
+ [difference] => 0
3120
+ [exchangeRate] => 0
3121
+ )
3122
+
3123
+ [1] => stdClass Object
3124
+ (
3125
+ [valueCode] => Discount
3126
+ [amount] => 199.6
3127
+ [difference] => 199.6
3128
+ [exchangeRate] => 0
3129
+ )
3130
+
3131
+ [2] => stdClass Object
3132
+ (
3133
+ [valueCode] => ZAR
3134
+ [amount] => 1182.6
3135
+ [difference] => 0
3136
+ [exchangeRate] => 0
3137
+ )
3138
+
3139
+ )
3140
+
3141
+ )
3142
+
3143
+ [customerInfo] => stdClass Object
3144
+ (
3145
+ [customerType] =>
3146
+ [firstName] => Magento Lb
3147
+ [middleName] =>
3148
+ [lastName] =>
3149
+ [address1] =>
3150
+ [address2] =>
3151
+ [city] =>
3152
+ [state] =>
3153
+ [postal] =>
3154
+ [country] => 197
3155
+ [mailPref] => 0
3156
+ [phone] => 275555555555
3157
+ [isMobile] => Y
3158
+ [phonePref] => 0
3159
+ [email] => genknooz4@gmail.com
3160
+ [emailPref] => 0
3161
+ [birthday] =>
3162
+ [anniversary] =>
3163
+ [gender] => M
3164
+ )
3165
+
3166
+ [hostMessage] =>
3167
+ [amountRemaining] =>
3168
+ )
3169
+
3170
+ )
3171
+ Inquiry-2015-06-15 10:21:21.000000+00:00
3172
+ <?xml version="1.0" encoding="UTF-8"?>
3173
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>3204</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-15 10:21:15</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>6666333333</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
3174
+ stdClass Object
3175
+ (
3176
+ [InquiryResult] => stdClass Object
3177
+ (
3178
+ [standardHeader] => stdClass Object
3179
+ (
3180
+ [requestId] => 3204
3181
+ [status] => A
3182
+ )
3183
+
3184
+ [identification] => stdClass Object
3185
+ (
3186
+ [transactionId] => 15965572
3187
+ [approvalCode] => 15965572
3188
+ [demonstration] => 0
3189
+ )
3190
+
3191
+ [expirationDate] =>
3192
+ [balances] => stdClass Object
3193
+ (
3194
+ [balance] => Array
3195
+ (
3196
+ [0] => stdClass Object
3197
+ (
3198
+ [valueCode] => Discount
3199
+ [amount] => 0
3200
+ [difference] => 0
3201
+ [exchangeRate] => 0
3202
+ )
3203
+
3204
+ [1] => stdClass Object
3205
+ (
3206
+ [valueCode] => Points
3207
+ [amount] => 0
3208
+ [difference] => 0
3209
+ [exchangeRate] => 0
3210
+ )
3211
+
3212
+ [2] => stdClass Object
3213
+ (
3214
+ [valueCode] => ZAR
3215
+ [amount] => 0
3216
+ [difference] => 0
3217
+ [exchangeRate] => 0
3218
+ )
3219
+
3220
+ )
3221
+
3222
+ )
3223
+
3224
+ [customerInfo] => stdClass Object
3225
+ (
3226
+ [customerType] =>
3227
+ [firstName] =>
3228
+ [middleName] =>
3229
+ [lastName] =>
3230
+ [address1] =>
3231
+ [address2] =>
3232
+ [city] =>
3233
+ [state] =>
3234
+ [postal] =>
3235
+ [country] => 197
3236
+ [mailPref] => 0
3237
+ [phone] => 276666333333
3238
+ [isMobile] => 1
3239
+ [phonePref] => 0
3240
+ [email] =>
3241
+ [emailPref] => 0
3242
+ [birthday] =>
3243
+ [anniversary] =>
3244
+ [gender] => M
3245
+ )
3246
+
3247
+ [hostMessage] =>
3248
+ )
3249
+
3250
+ )
3251
+ RequestLineItemRedemption-2015-06-15 10:21:27.000000+00:00
3252
+ <?xml version="1.0" encoding="UTF-8"?>
3253
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>3204</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-15 10:21:22</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>276666333333</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
3254
+ stdClass Object
3255
+ (
3256
+ [RequestLineItemRedemptionResult] => stdClass Object
3257
+ (
3258
+ [standardHeader] => stdClass Object
3259
+ (
3260
+ [requestId] => 15965576
3261
+ [status] => A
3262
+ )
3263
+
3264
+ [identification] => stdClass Object
3265
+ (
3266
+ [transactionId] => 15965576
3267
+ [approvalCode] => 15965576
3268
+ [demonstration] => 0
3269
+ )
3270
+
3271
+ [expirationDate] =>
3272
+ [balances] => stdClass Object
3273
+ (
3274
+ [Balance] => Array
3275
+ (
3276
+ [0] => stdClass Object
3277
+ (
3278
+ [valueCode] => Points
3279
+ [amount] => 0
3280
+ [difference] => 0
3281
+ [exchangeRate] => 0
3282
+ )
3283
+
3284
+ [1] => stdClass Object
3285
+ (
3286
+ [valueCode] => ZAR
3287
+ [amount] => 0
3288
+ [difference] => 0
3289
+ [exchangeRate] => 0
3290
+ )
3291
+
3292
+ [2] => stdClass Object
3293
+ (
3294
+ [valueCode] => Discount
3295
+ [amount] => 99.8
3296
+ [difference] => 99.8
3297
+ [exchangeRate] => 0
3298
+ )
3299
+
3300
+ )
3301
+
3302
+ )
3303
+
3304
+ [customerInfo] => stdClass Object
3305
+ (
3306
+ [customerType] =>
3307
+ [firstName] =>
3308
+ [middleName] =>
3309
+ [lastName] =>
3310
+ [address1] =>
3311
+ [address2] =>
3312
+ [city] =>
3313
+ [state] =>
3314
+ [postal] =>
3315
+ [country] => 197
3316
+ [mailPref] => 0
3317
+ [phone] => 276666333333
3318
+ [isMobile] => 1
3319
+ [phonePref] => 0
3320
+ [email] =>
3321
+ [emailPref] => 0
3322
+ [birthday] =>
3323
+ [anniversary] =>
3324
+ [gender] => M
3325
+ )
3326
+
3327
+ [hostMessage] =>
3328
+ [amountRemaining] =>
3329
+ )
3330
+
3331
+ )
3332
+ Inquiry-2015-06-15 10:21:52.000000+00:00
3333
+ <?xml version="1.0" encoding="UTF-8"?>
3334
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>3205</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-15 10:21:44</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>9999999999</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
3335
+ stdClass Object
3336
+ (
3337
+ [InquiryResult] => stdClass Object
3338
+ (
3339
+ [standardHeader] => stdClass Object
3340
+ (
3341
+ [requestId] => 3205
3342
+ [status] => A
3343
+ )
3344
+
3345
+ [identification] => stdClass Object
3346
+ (
3347
+ [transactionId] => 15965604
3348
+ [approvalCode] => 15965604
3349
+ [demonstration] => 0
3350
+ )
3351
+
3352
+ [expirationDate] =>
3353
+ [balances] => stdClass Object
3354
+ (
3355
+ [balance] => Array
3356
+ (
3357
+ [0] => stdClass Object
3358
+ (
3359
+ [valueCode] => Points
3360
+ [amount] => 0
3361
+ [difference] => 0
3362
+ [exchangeRate] => 0
3363
+ )
3364
+
3365
+ [1] => stdClass Object
3366
+ (
3367
+ [valueCode] => ZAR
3368
+ [amount] => 0
3369
+ [difference] => 0
3370
+ [exchangeRate] => 0
3371
+ )
3372
+
3373
+ [2] => stdClass Object
3374
+ (
3375
+ [valueCode] => Discount
3376
+ [amount] => 139.8
3377
+ [difference] => 0
3378
+ [exchangeRate] => 0
3379
+ )
3380
+
3381
+ )
3382
+
3383
+ )
3384
+
3385
+ [customerInfo] => stdClass Object
3386
+ (
3387
+ [customerType] =>
3388
+ [firstName] =>
3389
+ [middleName] =>
3390
+ [lastName] =>
3391
+ [address1] =>
3392
+ [address2] =>
3393
+ [city] =>
3394
+ [state] =>
3395
+ [postal] =>
3396
+ [country] => 197
3397
+ [mailPref] => 0
3398
+ [phone] => 279999999999
3399
+ [isMobile] => 1
3400
+ [phonePref] => 0
3401
+ [email] =>
3402
+ [emailPref] => 0
3403
+ [birthday] =>
3404
+ [anniversary] =>
3405
+ [gender] => M
3406
+ )
3407
+
3408
+ [hostMessage] =>
3409
+ )
3410
+
3411
+ )
3412
+ RequestLineItemRedemption-2015-06-15 10:21:58.000000+00:00
3413
+ <?xml version="1.0" encoding="UTF-8"?>
3414
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>3205</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-15 10:21:53</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>279999999999</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
3415
+ stdClass Object
3416
+ (
3417
+ [RequestLineItemRedemptionResult] => stdClass Object
3418
+ (
3419
+ [standardHeader] => stdClass Object
3420
+ (
3421
+ [requestId] => 15965610
3422
+ [status] => A
3423
+ )
3424
+
3425
+ [identification] => stdClass Object
3426
+ (
3427
+ [transactionId] => 15965610
3428
+ [approvalCode] => 15965610
3429
+ [demonstration] => 0
3430
+ )
3431
+
3432
+ [expirationDate] =>
3433
+ [balances] => stdClass Object
3434
+ (
3435
+ [Balance] => Array
3436
+ (
3437
+ [0] => stdClass Object
3438
+ (
3439
+ [valueCode] => Points
3440
+ [amount] => 0
3441
+ [difference] => 0
3442
+ [exchangeRate] => 0
3443
+ )
3444
+
3445
+ [1] => stdClass Object
3446
+ (
3447
+ [valueCode] => ZAR
3448
+ [amount] => 0
3449
+ [difference] => 0
3450
+ [exchangeRate] => 0
3451
+ )
3452
+
3453
+ [2] => stdClass Object
3454
+ (
3455
+ [valueCode] => Discount
3456
+ [amount] => 99.8
3457
+ [difference] => 99.8
3458
+ [exchangeRate] => 0
3459
+ )
3460
+
3461
+ )
3462
+
3463
+ )
3464
+
3465
+ [customerInfo] => stdClass Object
3466
+ (
3467
+ [customerType] =>
3468
+ [firstName] =>
3469
+ [middleName] =>
3470
+ [lastName] =>
3471
+ [address1] =>
3472
+ [address2] =>
3473
+ [city] =>
3474
+ [state] =>
3475
+ [postal] =>
3476
+ [country] => 197
3477
+ [mailPref] => 0
3478
+ [phone] => 279999999999
3479
+ [isMobile] => 1
3480
+ [phonePref] => 0
3481
+ [email] =>
3482
+ [emailPref] => 0
3483
+ [birthday] =>
3484
+ [anniversary] =>
3485
+ [gender] => M
3486
+ )
3487
+
3488
+ [hostMessage] =>
3489
+ [amountRemaining] =>
3490
+ )
3491
+
3492
+ )
3493
+ Inquiry-2015-06-15 10:22:36.000000+00:00
3494
+ <?xml version="1.0" encoding="UTF-8"?>
3495
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>3206</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-15 10:22:28</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>5555555555</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
3496
+ stdClass Object
3497
+ (
3498
+ [InquiryResult] => stdClass Object
3499
+ (
3500
+ [standardHeader] => stdClass Object
3501
+ (
3502
+ [requestId] => 3206
3503
+ [status] => A
3504
+ )
3505
+
3506
+ [identification] => stdClass Object
3507
+ (
3508
+ [transactionId] => 15965632
3509
+ [approvalCode] => 15965632
3510
+ [demonstration] => 0
3511
+ )
3512
+
3513
+ [expirationDate] =>
3514
+ [balances] => stdClass Object
3515
+ (
3516
+ [balance] => Array
3517
+ (
3518
+ [0] => stdClass Object
3519
+ (
3520
+ [valueCode] => Discount
3521
+ [amount] => 11.045
3522
+ [difference] => 0
3523
+ [exchangeRate] => 0
3524
+ )
3525
+
3526
+ [1] => stdClass Object
3527
+ (
3528
+ [valueCode] => Points
3529
+ [amount] => 201.065
3530
+ [difference] => 0
3531
+ [exchangeRate] => 0
3532
+ )
3533
+
3534
+ [2] => stdClass Object
3535
+ (
3536
+ [valueCode] => ZAR
3537
+ [amount] => 2310.65
3538
+ [difference] => 0
3539
+ [exchangeRate] => 0
3540
+ )
3541
+
3542
+ )
3543
+
3544
+ )
3545
+
3546
+ [customerInfo] => stdClass Object
3547
+ (
3548
+ [customerType] =>
3549
+ [firstName] => Magento Lb
3550
+ [middleName] =>
3551
+ [lastName] =>
3552
+ [address1] =>
3553
+ [address2] =>
3554
+ [city] =>
3555
+ [state] =>
3556
+ [postal] =>
3557
+ [country] => 197
3558
+ [mailPref] => 0
3559
+ [phone] => 275555555555
3560
+ [isMobile] => Y
3561
+ [phonePref] => 0
3562
+ [email] => genknooz4@gmail.com
3563
+ [emailPref] => 0
3564
+ [birthday] =>
3565
+ [anniversary] =>
3566
+ [gender] => M
3567
+ )
3568
+
3569
+ [hostMessage] =>
3570
+ )
3571
+
3572
+ )
3573
+ RequestLineItemRedemption-2015-06-15 10:22:43.000000+00:00
3574
+ <?xml version="1.0" encoding="UTF-8"?>
3575
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>3206</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-15 10:22:36</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
3576
+ stdClass Object
3577
+ (
3578
+ [RequestLineItemRedemptionResult] => stdClass Object
3579
+ (
3580
+ [standardHeader] => stdClass Object
3581
+ (
3582
+ [requestId] => 15965639
3583
+ [status] => A
3584
+ )
3585
+
3586
+ [identification] => stdClass Object
3587
+ (
3588
+ [transactionId] => 15965639
3589
+ [approvalCode] => 15965639
3590
+ [demonstration] => 0
3591
+ )
3592
+
3593
+ [expirationDate] =>
3594
+ [balances] => stdClass Object
3595
+ (
3596
+ [Balance] => Array
3597
+ (
3598
+ [0] => stdClass Object
3599
+ (
3600
+ [valueCode] => Discount
3601
+ [amount] => 99.8
3602
+ [difference] => 99.8
3603
+ [exchangeRate] => 0
3604
+ )
3605
+
3606
+ [1] => stdClass Object
3607
+ (
3608
+ [valueCode] => Points
3609
+ [amount] => 201.065
3610
+ [difference] => 0
3611
+ [exchangeRate] => 0
3612
+ )
3613
+
3614
+ [2] => stdClass Object
3615
+ (
3616
+ [valueCode] => ZAR
3617
+ [amount] => 2310.65
3618
+ [difference] => 0
3619
+ [exchangeRate] => 0
3620
+ )
3621
+
3622
+ )
3623
+
3624
+ )
3625
+
3626
+ [customerInfo] => stdClass Object
3627
+ (
3628
+ [customerType] =>
3629
+ [firstName] => Magento Lb
3630
+ [middleName] =>
3631
+ [lastName] =>
3632
+ [address1] =>
3633
+ [address2] =>
3634
+ [city] =>
3635
+ [state] =>
3636
+ [postal] =>
3637
+ [country] => 197
3638
+ [mailPref] => 0
3639
+ [phone] => 275555555555
3640
+ [isMobile] => Y
3641
+ [phonePref] => 0
3642
+ [email] => genknooz4@gmail.com
3643
+ [emailPref] => 0
3644
+ [birthday] =>
3645
+ [anniversary] =>
3646
+ [gender] => M
3647
+ )
3648
+
3649
+ [hostMessage] =>
3650
+ [amountRemaining] =>
3651
+ )
3652
+
3653
+ )
3654
+ Inquiry-2015-06-15 10:22:58.000000+00:00
3655
+ <?xml version="1.0" encoding="UTF-8"?>
3656
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>3206</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-15 10:22:52</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>275555555555</accountId><pin></pin><entryType>W</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
3657
+ stdClass Object
3658
+ (
3659
+ [InquiryResult] => stdClass Object
3660
+ (
3661
+ [standardHeader] => stdClass Object
3662
+ (
3663
+ [requestId] => 3206
3664
+ [status] => A
3665
+ )
3666
+
3667
+ [identification] => stdClass Object
3668
+ (
3669
+ [transactionId] => 15965650
3670
+ [approvalCode] => 15965650
3671
+ [demonstration] => 0
3672
+ )
3673
+
3674
+ [expirationDate] =>
3675
+ [balances] => stdClass Object
3676
+ (
3677
+ [balance] => Array
3678
+ (
3679
+ [0] => stdClass Object
3680
+ (
3681
+ [valueCode] => Discount
3682
+ [amount] => 99.8
3683
+ [difference] => 0
3684
+ [exchangeRate] => 0
3685
+ )
3686
+
3687
+ [1] => stdClass Object
3688
+ (
3689
+ [valueCode] => Points
3690
+ [amount] => 201.065
3691
+ [difference] => 0
3692
+ [exchangeRate] => 0
3693
+ )
3694
+
3695
+ [2] => stdClass Object
3696
+ (
3697
+ [valueCode] => ZAR
3698
+ [amount] => 2310.65
3699
+ [difference] => 0
3700
+ [exchangeRate] => 0
3701
+ )
3702
+
3703
+ )
3704
+
3705
+ )
3706
+
3707
+ [customerInfo] => stdClass Object
3708
+ (
3709
+ [customerType] =>
3710
+ [firstName] => Magento Lb
3711
+ [middleName] =>
3712
+ [lastName] =>
3713
+ [address1] =>
3714
+ [address2] =>
3715
+ [city] =>
3716
+ [state] =>
3717
+ [postal] =>
3718
+ [country] => 197
3719
+ [mailPref] => 0
3720
+ [phone] => 275555555555
3721
+ [isMobile] => Y
3722
+ [phonePref] => 0
3723
+ [email] => genknooz4@gmail.com
3724
+ [emailPref] => 0
3725
+ [birthday] =>
3726
+ [anniversary] =>
3727
+ [gender] => M
3728
+ )
3729
+
3730
+ [hostMessage] =>
3731
+ )
3732
+
3733
+ )
3734
+ RequestLineItemRedemption-2015-06-15 10:23:04.000000+00:00
3735
+ <?xml version="1.0" encoding="UTF-8"?>
3736
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>3206</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-06-15 10:22:58</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>499.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>1</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
3737
+ stdClass Object
3738
+ (
3739
+ [RequestLineItemRedemptionResult] => stdClass Object
3740
+ (
3741
+ [standardHeader] => stdClass Object
3742
+ (
3743
+ [requestId] => 15965655
3744
+ [status] => A
3745
+ )
3746
+
3747
+ [identification] => stdClass Object
3748
+ (
3749
+ [transactionId] => 15965655
3750
+ [approvalCode] => 15965655
3751
+ [demonstration] => 0
3752
+ )
3753
+
3754
+ [expirationDate] =>
3755
+ [balances] => stdClass Object
3756
+ (
3757
+ [Balance] => Array
3758
+ (
3759
+ [0] => stdClass Object
3760
+ (
3761
+ [valueCode] => Discount
3762
+ [amount] => 99.8
3763
+ [difference] => 99.8
3764
+ [exchangeRate] => 0
3765
+ )
3766
+
3767
+ [1] => stdClass Object
3768
+ (
3769
+ [valueCode] => Points
3770
+ [amount] => 201.065
3771
+ [difference] => 0
3772
+ [exchangeRate] => 0
3773
+ )
3774
+
3775
+ [2] => stdClass Object
3776
+ (
3777
+ [valueCode] => ZAR
3778
+ [amount] => 2310.65
3779
+ [difference] => 0
3780
+ [exchangeRate] => 0
3781
+ )
3782
+
3783
+ )
3784
+
3785
+ )
3786
+
3787
+ [customerInfo] => stdClass Object
3788
+ (
3789
+ [customerType] =>
3790
+ [firstName] => Magento Lb
3791
+ [middleName] =>
3792
+ [lastName] =>
3793
+ [address1] =>
3794
+ [address2] =>
3795
+ [city] =>
3796
+ [state] =>
3797
+ [postal] =>
3798
+ [country] => 197
3799
+ [mailPref] => 0
3800
+ [phone] => 275555555555
3801
+ [isMobile] => Y
3802
+ [phonePref] => 0
3803
+ [email] => genknooz4@gmail.com
3804
+ [emailPref] => 0
3805
+ [birthday] =>
3806
+ [anniversary] =>
3807
+ [gender] => M
3808
+ )
3809
+
3810
+ [hostMessage] =>
3811
+ [amountRemaining] =>
3812
+ )
3813
+
3814
+ )
3815
+ Inquiry-2015-07-08 06:29:07.000000+00:00
3816
+ <?xml version="1.0" encoding="UTF-8"?>
3817
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>4067</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-07-08 06:29:03</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>8888888888</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
3818
+ stdClass Object
3819
+ (
3820
+ [InquiryResult] => stdClass Object
3821
+ (
3822
+ [standardHeader] => stdClass Object
3823
+ (
3824
+ [requestId] => 4067
3825
+ [status] => A
3826
+ )
3827
+
3828
+ [identification] => stdClass Object
3829
+ (
3830
+ [transactionId] => 16563452
3831
+ [approvalCode] => 16563452
3832
+ [demonstration] => 0
3833
+ )
3834
+
3835
+ [expirationDate] =>
3836
+ [balances] => stdClass Object
3837
+ (
3838
+ [balance] => Array
3839
+ (
3840
+ [0] => stdClass Object
3841
+ (
3842
+ [valueCode] => Points
3843
+ [amount] => 0
3844
+ [difference] => 0
3845
+ [exchangeRate] => 0
3846
+ )
3847
+
3848
+ [1] => stdClass Object
3849
+ (
3850
+ [valueCode] => ZAR
3851
+ [amount] => 0
3852
+ [difference] => 0
3853
+ [exchangeRate] => 0
3854
+ )
3855
+
3856
+ [2] => stdClass Object
3857
+ (
3858
+ [valueCode] => Discount
3859
+ [amount] => 139.8
3860
+ [difference] => 0
3861
+ [exchangeRate] => 0
3862
+ )
3863
+
3864
+ )
3865
+
3866
+ )
3867
+
3868
+ [customerInfo] => stdClass Object
3869
+ (
3870
+ [customerType] =>
3871
+ [firstName] => John Mick
3872
+ [middleName] =>
3873
+ [lastName] =>
3874
+ [address1] =>
3875
+ [address2] =>
3876
+ [city] =>
3877
+ [state] =>
3878
+ [postal] =>
3879
+ [country] => 197
3880
+ [mailPref] => 0
3881
+ [phone] => 278888888888
3882
+ [isMobile] => Y
3883
+ [phonePref] => 0
3884
+ [email] => genknooz4@gmail.com
3885
+ [emailPref] => 0
3886
+ [birthday] =>
3887
+ [anniversary] =>
3888
+ [gender] => M
3889
+ )
3890
+
3891
+ [hostMessage] =>
3892
+ )
3893
+
3894
+ )
3895
+ RequestLineItemRedemption-2015-07-08 06:29:13.000000+00:00
3896
+ <?xml version="1.0" encoding="UTF-8"?>
3897
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>4067</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-07-08 06:29:08</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>278888888888</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
3898
+ stdClass Object
3899
+ (
3900
+ [RequestLineItemRedemptionResult] => stdClass Object
3901
+ (
3902
+ [standardHeader] => stdClass Object
3903
+ (
3904
+ [requestId] => 16563456
3905
+ [status] => A
3906
+ )
3907
+
3908
+ [identification] => stdClass Object
3909
+ (
3910
+ [transactionId] => 16563456
3911
+ [approvalCode] => 16563456
3912
+ [demonstration] => 0
3913
+ )
3914
+
3915
+ [expirationDate] =>
3916
+ [balances] => stdClass Object
3917
+ (
3918
+ [Balance] => Array
3919
+ (
3920
+ [0] => stdClass Object
3921
+ (
3922
+ [valueCode] => Points
3923
+ [amount] => 0
3924
+ [difference] => 0
3925
+ [exchangeRate] => 0
3926
+ )
3927
+
3928
+ [1] => stdClass Object
3929
+ (
3930
+ [valueCode] => ZAR
3931
+ [amount] => 0
3932
+ [difference] => 0
3933
+ [exchangeRate] => 0
3934
+ )
3935
+
3936
+ [2] => stdClass Object
3937
+ (
3938
+ [valueCode] => Discount
3939
+ [amount] => 199.6
3940
+ [difference] => 199.6
3941
+ [exchangeRate] => 0
3942
+ )
3943
+
3944
+ )
3945
+
3946
+ )
3947
+
3948
+ [customerInfo] => stdClass Object
3949
+ (
3950
+ [customerType] =>
3951
+ [firstName] => John Mick
3952
+ [middleName] =>
3953
+ [lastName] =>
3954
+ [address1] =>
3955
+ [address2] =>
3956
+ [city] =>
3957
+ [state] =>
3958
+ [postal] =>
3959
+ [country] => 197
3960
+ [mailPref] => 0
3961
+ [phone] => 278888888888
3962
+ [isMobile] => Y
3963
+ [phonePref] => 0
3964
+ [email] => genknooz4@gmail.com
3965
+ [emailPref] => 0
3966
+ [birthday] =>
3967
+ [anniversary] =>
3968
+ [gender] => M
3969
+ )
3970
+
3971
+ [hostMessage] =>
3972
+ [amountRemaining] =>
3973
+ )
3974
+
3975
+ )
3976
+ Inquiry-2015-07-22 08:53:42.000000+00:00
3977
+ <?xml version="1.0" encoding="UTF-8"?>
3978
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:Inquiry><ns1:p_objRequest><standardHeader><requestId>79190</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-07-22 08:53:36</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></standardHeader><account><accountId>5555555555</accountId><pin></pin><entryType>K</entryType></account></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:Inquiry></SOAP-ENV:Body></SOAP-ENV:Envelope>
3979
+ stdClass Object
3980
+ (
3981
+ [InquiryResult] => stdClass Object
3982
+ (
3983
+ [standardHeader] => stdClass Object
3984
+ (
3985
+ [requestId] => 79190
3986
+ [status] => A
3987
+ )
3988
+
3989
+ [identification] => stdClass Object
3990
+ (
3991
+ [transactionId] => 16925882
3992
+ [approvalCode] => 16925882
3993
+ [demonstration] => 0
3994
+ )
3995
+
3996
+ [expirationDate] =>
3997
+ [balances] => stdClass Object
3998
+ (
3999
+ [balance] => Array
4000
+ (
4001
+ [0] => stdClass Object
4002
+ (
4003
+ [valueCode] => Discount
4004
+ [amount] => 139.8
4005
+ [difference] => 0
4006
+ [exchangeRate] => 0
4007
+ )
4008
+
4009
+ [1] => stdClass Object
4010
+ (
4011
+ [valueCode] => Points
4012
+ [amount] => 223.903
4013
+ [difference] => 0
4014
+ [exchangeRate] => 0
4015
+ )
4016
+
4017
+ [2] => stdClass Object
4018
+ (
4019
+ [valueCode] => ZAR
4020
+ [amount] => 2639.03
4021
+ [difference] => 0
4022
+ [exchangeRate] => 0
4023
+ )
4024
+
4025
+ )
4026
+
4027
+ )
4028
+
4029
+ [customerInfo] => stdClass Object
4030
+ (
4031
+ [customerType] =>
4032
+ [firstName] => Magento Lb
4033
+ [middleName] =>
4034
+ [lastName] =>
4035
+ [address1] =>
4036
+ [address2] =>
4037
+ [city] =>
4038
+ [state] =>
4039
+ [postal] =>
4040
+ [country] => 197
4041
+ [mailPref] =>
4042
+ [phone] => 275555555555
4043
+ [isMobile] => Y
4044
+ [phonePref] =>
4045
+ [email] => genknooz4@gmail.com
4046
+ [emailPref] =>
4047
+ [birthday] =>
4048
+ [anniversary] =>
4049
+ [gender] => M
4050
+ [handsetMessagesPref] =>
4051
+ )
4052
+
4053
+ [hostMessage] =>
4054
+ )
4055
+
4056
+ )
4057
+ RequestLineItemRedemption-2015-07-22 08:53:58.000000+00:00
4058
+ <?xml version="1.0" encoding="UTF-8"?>
4059
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>79190</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-07-22 08:53:53</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>998.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>2</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description></ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
4060
+ stdClass Object
4061
+ (
4062
+ [RequestLineItemRedemptionResult] => stdClass Object
4063
+ (
4064
+ [standardHeader] => stdClass Object
4065
+ (
4066
+ [requestId] => 16925895
4067
+ [status] => A
4068
+ )
4069
+
4070
+ [identification] => stdClass Object
4071
+ (
4072
+ [transactionId] => 16925895
4073
+ [approvalCode] => 16925895
4074
+ [demonstration] => 0
4075
+ )
4076
+
4077
+ [expirationDate] =>
4078
+ [balances] => stdClass Object
4079
+ (
4080
+ [Balance] => Array
4081
+ (
4082
+ [0] => stdClass Object
4083
+ (
4084
+ [valueCode] => Discount
4085
+ [amount] => 199.6
4086
+ [difference] => 199.6
4087
+ [exchangeRate] => 0
4088
+ )
4089
+
4090
+ [1] => stdClass Object
4091
+ (
4092
+ [valueCode] => Points
4093
+ [amount] => 223.903
4094
+ [difference] => 0
4095
+ [exchangeRate] => 0
4096
+ )
4097
+
4098
+ [2] => stdClass Object
4099
+ (
4100
+ [valueCode] => ZAR
4101
+ [amount] => 2639.03
4102
+ [difference] => 0
4103
+ [exchangeRate] => 0
4104
+ )
4105
+
4106
+ )
4107
+
4108
+ )
4109
+
4110
+ [customerInfo] => stdClass Object
4111
+ (
4112
+ [customerType] =>
4113
+ [firstName] => Magento Lb
4114
+ [middleName] =>
4115
+ [lastName] =>
4116
+ [address1] =>
4117
+ [address2] =>
4118
+ [city] =>
4119
+ [state] =>
4120
+ [postal] =>
4121
+ [country] => 197
4122
+ [mailPref] =>
4123
+ [phone] => 275555555555
4124
+ [isMobile] => Y
4125
+ [phonePref] =>
4126
+ [email] => genknooz4@gmail.com
4127
+ [emailPref] =>
4128
+ [birthday] =>
4129
+ [anniversary] =>
4130
+ [gender] => M
4131
+ [handsetMessagesPref] =>
4132
+ )
4133
+
4134
+ [hostMessage] =>
4135
+ [amountRemaining] =>
4136
+ )
4137
+
4138
+ )
4139
+ RequestLineItemRedemption-2015-07-22 09:00:13.000000+00:00
4140
+ <?xml version="1.0" encoding="UTF-8"?>
4141
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>79190</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-07-22 09:00:08</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>1996.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>4</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>false</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
4142
+ stdClass Object
4143
+ (
4144
+ [RequestLineItemRedemptionResult] => stdClass Object
4145
+ (
4146
+ [standardHeader] => stdClass Object
4147
+ (
4148
+ [requestId] => 16926106
4149
+ [status] => A
4150
+ )
4151
+
4152
+ [identification] => stdClass Object
4153
+ (
4154
+ [transactionId] => 16926106
4155
+ [approvalCode] => 16926106
4156
+ [demonstration] => 0
4157
+ )
4158
+
4159
+ [expirationDate] =>
4160
+ [balances] => stdClass Object
4161
+ (
4162
+ [Balance] => Array
4163
+ (
4164
+ [0] => stdClass Object
4165
+ (
4166
+ [valueCode] => Points
4167
+ [amount] => 223.903
4168
+ [difference] => 0
4169
+ [exchangeRate] => 0
4170
+ )
4171
+
4172
+ [1] => stdClass Object
4173
+ (
4174
+ [valueCode] => Discount
4175
+ [amount] => 399.2
4176
+ [difference] => 399.2
4177
+ [exchangeRate] => 0
4178
+ )
4179
+
4180
+ [2] => stdClass Object
4181
+ (
4182
+ [valueCode] => ZAR
4183
+ [amount] => 2639.03
4184
+ [difference] => 0
4185
+ [exchangeRate] => 0
4186
+ )
4187
+
4188
+ )
4189
+
4190
+ )
4191
+
4192
+ [customerInfo] => stdClass Object
4193
+ (
4194
+ [customerType] =>
4195
+ [firstName] => Magento Lb
4196
+ [middleName] =>
4197
+ [lastName] =>
4198
+ [address1] =>
4199
+ [address2] =>
4200
+ [city] =>
4201
+ [state] =>
4202
+ [postal] =>
4203
+ [country] => 197
4204
+ [mailPref] =>
4205
+ [phone] => 275555555555
4206
+ [isMobile] => Y
4207
+ [phonePref] =>
4208
+ [email] => genknooz4@gmail.com
4209
+ [emailPref] =>
4210
+ [birthday] =>
4211
+ [anniversary] =>
4212
+ [gender] => M
4213
+ [handsetMessagesPref] =>
4214
+ )
4215
+
4216
+ [hostMessage] =>
4217
+ [amountRemaining] =>
4218
+ )
4219
+
4220
+ )
4221
+ RequestLineItemRedemption-2015-07-22 09:00:18.000000+00:00
4222
+ <?xml version="1.0" encoding="UTF-8"?>
4223
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:RequestLineItemRedemption><ns1:p_objRequest><ns1:standardHeader><requestId>79190</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-07-22 09:00:13</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>K</entryType></ns1:account><ns1:activating></ns1:activating><ns1:amount><valueCode>Discount</valueCode><enteredAmount>1996.0000</enteredAmount></ns1:amount><ns1:customerInfo><customerType></customerType><firstName></firstName><middleName></middleName><lastName></lastName><address1></address1><address2></address2><city></city><state></state><postal></postal><country></country><mailPref></mailPref><phone></phone><isMobile></isMobile><phonePref></phonePref><email></email><emailPref></emailPref><birthday></birthday><anniversary></anniversary><gender></gender></ns1:customerInfo><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>4</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems><ns1:CommitTransaction>true</ns1:CommitTransaction></ns1:p_objRequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:RequestLineItemRedemption></SOAP-ENV:Body></SOAP-ENV:Envelope>
4224
+ stdClass Object
4225
+ (
4226
+ [RequestLineItemRedemptionResult] => stdClass Object
4227
+ (
4228
+ [standardHeader] => stdClass Object
4229
+ (
4230
+ [requestId] => 16926111
4231
+ [status] => A
4232
+ )
4233
+
4234
+ [identification] => stdClass Object
4235
+ (
4236
+ [transactionId] => 16926111
4237
+ [approvalCode] => 16926111
4238
+ [demonstration] => 0
4239
+ )
4240
+
4241
+ [expirationDate] =>
4242
+ [balances] => stdClass Object
4243
+ (
4244
+ [Balance] => Array
4245
+ (
4246
+ [0] => stdClass Object
4247
+ (
4248
+ [valueCode] => Points
4249
+ [amount] => 223.903
4250
+ [difference] => 0
4251
+ [exchangeRate] => 0
4252
+ )
4253
+
4254
+ [1] => stdClass Object
4255
+ (
4256
+ [valueCode] => Discount
4257
+ [amount] => 399.2
4258
+ [difference] => 0
4259
+ [exchangeRate] => 0
4260
+ )
4261
+
4262
+ [2] => stdClass Object
4263
+ (
4264
+ [valueCode] => ZAR
4265
+ [amount] => 2639.03
4266
+ [difference] => 0
4267
+ [exchangeRate] => 0
4268
+ )
4269
+
4270
+ )
4271
+
4272
+ )
4273
+
4274
+ [customerInfo] => stdClass Object
4275
+ (
4276
+ [customerType] =>
4277
+ [firstName] => Magento Lb
4278
+ [middleName] =>
4279
+ [lastName] =>
4280
+ [address1] =>
4281
+ [address2] =>
4282
+ [city] =>
4283
+ [state] =>
4284
+ [postal] =>
4285
+ [country] => 197
4286
+ [mailPref] =>
4287
+ [phone] => 275555555555
4288
+ [isMobile] => Y
4289
+ [phonePref] =>
4290
+ [email] => genknooz4@gmail.com
4291
+ [emailPref] =>
4292
+ [birthday] =>
4293
+ [anniversary] =>
4294
+ [gender] => M
4295
+ [handsetMessagesPref] =>
4296
+ )
4297
+
4298
+ [hostMessage] =>
4299
+ [amountRemaining] =>
4300
+ )
4301
+
4302
+ )
4303
+ UpdateSale-2015-07-22 09:00:23.000000+00:00
4304
+ <?xml version="1.0" encoding="UTF-8"?>
4305
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://tokenws.netgen.co.za/" xmlns:ns2="http://tempuri.org/"><SOAP-ENV:Body><ns1:UpdateSale><ns1:p_objrequest><ns1:transactionTypeId>1</ns1:transactionTypeId><ns1:tenderTypeId>1</ns1:tenderTypeId><ns1:standardHeader><requestId>79190</requestId><localeId></localeId><systemId></systemId><clientId>1784</clientId><locationId>646712</locationId><terminalId></terminalId><terminalDateTime>2015-07-22 09:00:18</terminalDateTime><initiatorType></initiatorType><initiatorId></initiatorId><initiatorPassword></initiatorPassword><externalId></externalId><batchId></batchId><batchReference></batchReference></ns1:standardHeader><ns1:account><accountId>275555555555</accountId><pin></pin><entryType>W</entryType></ns1:account><ns1:activating>Y</ns1:activating><ns1:amount><valueCode>ZAR</valueCode><enteredAmount>1816.4000</enteredAmount></ns1:amount><ns1:lineItems><ns1:LineItem><ns1:productCode>789</ns1:productCode><ns1:categoryCode>Shoes</ns1:categoryCode><ns1:qty>4</ns1:qty><ns1:price>499</ns1:price><ns1:discountedPrice>0</ns1:discountedPrice><ns1:description>Nike Shoes</ns1:description></ns1:LineItem></ns1:lineItems></ns1:p_objrequest><ns1:netCredentials><ns2:UserName>52664783</ns2:UserName><ns2:Password>sPRME29vRo</ns2:Password><ns2:Domain></ns2:Domain></ns1:netCredentials></ns1:UpdateSale></SOAP-ENV:Body></SOAP-ENV:Envelope>
4306
+ stdClass Object
4307
+ (
4308
+ [UpdateSaleResult] => stdClass Object
4309
+ (
4310
+ [standardHeader] => stdClass Object
4311
+ (
4312
+ [requestId] => 79190
4313
+ [status] => A
4314
+ )
4315
+
4316
+ [identification] => stdClass Object
4317
+ (
4318
+ [transactionId] => 16926113
4319
+ [approvalCode] => 16926113
4320
+ [demonstration] => 0
4321
+ )
4322
+
4323
+ [expirationDate] =>
4324
+ [balances] => stdClass Object
4325
+ (
4326
+ [Balance] => Array
4327
+ (
4328
+ [0] => stdClass Object
4329
+ (
4330
+ [valueCode] => Discount
4331
+ [amount] => 0
4332
+ [difference] => 0
4333
+ [exchangeRate] => 0
4334
+ )
4335
+
4336
+ [1] => stdClass Object
4337
+ (
4338
+ [valueCode] => Points
4339
+ [amount] => 405.543
4340
+ [difference] => 181.64
4341
+ [exchangeRate] => 0
4342
+ )
4343
+
4344
+ [2] => stdClass Object
4345
+ (
4346
+ [valueCode] => ZAR
4347
+ [amount] => 4455.43
4348
+ [difference] => 1816.4
4349
+ [exchangeRate] => 0
4350
+ )
4351
+
4352
+ )
4353
+
4354
+ )
4355
+
4356
+ [customerInfo] => stdClass Object
4357
+ (
4358
+ [customerType] =>
4359
+ [firstName] => Magento Lb
4360
+ [middleName] =>
4361
+ [lastName] =>
4362
+ [address1] =>
4363
+ [address2] =>
4364
+ [city] =>
4365
+ [state] =>
4366
+ [postal] =>
4367
+ [country] => 197
4368
+ [mailPref] =>
4369
+ [phone] => 275555555555
4370
+ [isMobile] => Y
4371
+ [phonePref] =>
4372
+ [email] => genknooz4@gmail.com
4373
+ [emailPref] =>
4374
+ [birthday] =>
4375
+ [anniversary] =>
4376
+ [gender] => M
4377
+ [handsetMessagesPref] =>
4378
+ )
4379
+
4380
+ [hostMessage] =>
4381
+ [amountRemaining] =>
4382
+ )
4383
+
4384
+ )
app/code/local/Lb/readme.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ File Structure for Magento Plugin:
2
+
3
+ Module xml file: Lb.xml.
4
+ path: ...\magento\app\etc\modules\Lb_all.xml
5
+
6
+ Layout xml file: lb.xml
7
+ path: ...\magento\app\design\frontend\base\default\layout\lb.xml
8
+
9
+ Template file: lbtemplate.phtml
10
+ E:\wamp\www\magento\app\design\frontend\base\default\template\lb\lbtemplate.phtml
11
+
12
+ Rest your module will be placed at: Lb(Custom Plugin directory)
13
+ Path: ...\magento\app\code\local\Lb\
14
+
app/design/frontend/base/default/layout/lb.xml ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <layout version="0.1.0">
2
+ <default>
3
+ <reference name="content">
4
+ </reference>
5
+ <reference name="head">
6
+ <action method="addJs"><script>prototype/window.js</script></action>
7
+ <!-- <action method="addJs"><script>jquery1.7.1.min.js</script></action>-->
8
+ <action method="addItem"><type>js_css</type><name>prototype/windows/themes/default.css</name></action>
9
+ <!-- <action method="addItem"><type>js_css</type><name>prototype/windows/themes/magento.css</name></action>-->
10
+ </reference>
11
+ </default>
12
+ <routeurfrontend_index_index>
13
+ <reference name="content" >
14
+ <block type="lb/lbblock" name="lbtemplate_lbblock" template="lb/lbtemplate.phtml" />
15
+ </reference>
16
+ </routeurfrontend_index_index>
17
+ <catalog_product_view>
18
+ <reference name="product.info.addtocart">
19
+ <block type="lb/lbblock" name="lbregistration_button_lbblock" template="lb/lbregistration_button.phtml" />
20
+ <reference name="content" >
21
+ <block type="lb/lbblock" name="lbregistration_popup_lbblock" template="lb/lbregistration_popup.phtml" />
22
+ </reference>
23
+ </reference>
24
+ </catalog_product_view>
25
+ <checkout_cart_index>
26
+ <reference name="checkout.cart.form.before">
27
+ <block type="lb/lbblock" name="lbregistration_button_lbblock" template="lb/lbregistration_button.phtml" />
28
+ <block type="lb/lbblock" name="lbregistration_popup_lbblock" template="lb/lbregistration_popup.phtml" />
29
+ </reference>
30
+ </checkout_cart_index>
31
+ <checkout_cart_index>
32
+ <reference name="checkout.cart.form.before">
33
+ <block type="lb/lbblock" name="lbtemplate_lbblock" template="lb/lbredeem_points.phtml" />
34
+ </reference>
35
+ </checkout_cart_index>
36
+ </layout>
app/design/frontend/base/default/template/lb/lbredeem_points.phtml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <script>window.jQuery ||
2
+ document.write("<script src='<?php echo Mage::getBaseUrl('js'); ?>jquery1.7.1.min.js'>\x3C/script>")
3
+ </script>
4
+ <?php
5
+ echo $this->redeem_points();
6
+ ?>
app/design/frontend/base/default/template/lb/lbregistration_button.phtml ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ echo $this->registration_button();
3
+ ?>
app/design/frontend/base/default/template/lb/lbregistration_popup.phtml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <script>window.jQuery ||
2
+ document.write("<script src='<?php echo Mage::getBaseUrl('js'); ?>jquery1.7.1.min.js'>\x3C/script>")
3
+ </script>
4
+ <?php
5
+ echo $this->registration_popup();
6
+ ?>
app/design/frontend/base/default/template/lb/lbtemplate.phtml ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ echo $this->registration_button();
3
+ ?>
app/etc/modules/Lb_all.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version = "1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Lb_Points>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ </Lb_Points>
8
+ </modules>
9
+ </config>
js/jquery1.7.1.min.js ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ /*! jQuery v1.7.1 jquery.com | jquery.org/license */
2
+ (function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};
3
+ f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function()
4
+ {for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);
5
+ jQuery.noConflict();
package.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>The_Loyalty_Box</name>
4
+ <version>1.0.0</version>
5
+ <stability>stable</stability>
6
+ <license>OSL</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>Providing customer loyalty programs, ensuring that your existing customers keep coming back. Programs are flexible and can be set up to suit your needs</summary>
10
+ <description>Enable loyalty programs in your Magento store with the click of a button. Programs are run by The Loyalty Box &#x2013; a specialized loyalty agency. We offer a very high degree of customization and flexibility, ensuring that you can provide loyalty, exactly as you need it. With loyalty points earning, points redemptions, vouchering and gift carding &#x2013; all right down to line item level &#x2013; you have the freedom to run the program as you see fit.</description>
11
+ <notes>The Loyalty Box &#x2013; Customer Loyalty Programs for Magento</notes>
12
+ <authors><author><name>Double-eye</name><user>loyaltybox</user><email>loyaltybox.support@double-eye.com</email></author></authors>
13
+ <date>2015-07-24</date>
14
+ <time>10:39:31</time>
15
+ <contents><target name="magelocal"><dir name="Lb"><dir name="Points"><dir name="Block"><file name="lbblock.php" hash="79551a8e1cacfb37ad212f94e4d446c9"/></dir><dir name="Helper"><file name="Data.php" hash="72baa9ea391ac9fe1c279de1d7736559"/></dir><dir name="Model"><file name="Apipassword.php" hash="5a2d31a5e5359f0a64cbb033a883da9e"/><file name="Apiusername.php" hash="3925ab00e5db6e85646ab657282e6329"/><file name="Clientid.php" hash="2e1e7775b9a590205e5e3c2149f9da55"/><file name="Locationid.php" hash="b2a0495ed10ba15ecdbbcd413da2838e"/><file name="Observer.php" hash="81439548e7a75671a857a3ca51846996"/><file name="Programname.php" hash="d6526a9362120a68f0a463da4c17e08a"/><file name="Registrationmessage.php" hash="06194cca3aaba22243060f46715b6cac"/></dir><dir name="controllers"><file name="IndexController.php" hash="6d4ae21416907a1f6e1a926599de9728"/></dir><file name="error.log" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="etc"><file name="adminhtml.xml" hash="a554833e9c00848e869673763263653f"/><file name="config.xml" hash="1027afe8f65b4a865a495a9a9f030202"/><file name="system.xml" hash="7649d219eb35fd6303e1c9a058a4204d"/></dir><file name="loyaltybox.log" hash="731ce8e9b015c7d4caf140cd9f501920"/><file name="request_log.log" hash="4fd13fd093927b3f42894884ec47a0b3"/></dir><file name="readme.md" hash="fd2279471a34b0a74577763d525f774d"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="lb.xml" hash="ce5e3020a678e43430e693c8f001ef17"/></dir><dir name="template"><dir name="lb"><file name="lbredeem_points.phtml" hash="44647b1ca7876709ced0e374763ff66d"/><file name="lbregistration_button.phtml" hash="4dc99432fdabe8054e3f46ed4278dc9e"/><file name="lbregistration_popup.phtml" hash="32901dfa865b5e451dea22a55dc54189"/><file name="lbtemplate.phtml" hash="4dc99432fdabe8054e3f46ed4278dc9e"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Lb_all.xml" hash="b52971054ab93649740c2d627f2d406e"/></dir></target><target name="mage"><dir name="js"><file name="jquery1.7.1.min.js" hash="00263d420f53a6db101ebdd11acef2f8"/></dir></target></contents>
16
+ <compatible/>
17
+ <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
+ </package>