forked from laurawilsonri/1300ABTesting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mylog.txt
1501 lines (1501 loc) · 248 KB
/
mylog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Logged in as joshua_baum@brown.edu
2020-10-21T13:09:37.125341+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=6780b94f-fd9c-463f-b5b3-1e21d4874d55 fwd="71.117.132.74" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:09:39.029520+00:00 app[web.1]: AB_TESTING: B 1603285770101 1603285778760 mp2 gcwegwncl
2020-10-21T13:09:39.030219+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:39] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:39.032152+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5b1dfecc-25b2-40e1-9769-faacda8d4a40 fwd="71.117.132.74" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:09:39.211410+00:00 app[web.1]: AB_TESTING: B 1603285770101 1603285778938 mp2 gcwegwncl
2020-10-21T13:09:39.212171+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:39] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:39.216382+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=26cda2a3-f507-410a-abe9-9d2d70d81c3d fwd="71.117.132.74" dyno=web.1 connect=3ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:09:40.776590+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:40] "[37mGET /checkout?version=B&mp1=2&mp4=2&mp3=2&mp2=2 HTTP/1.1[0m" 200 -
2020-10-21T13:09:40.779494+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=2&mp4=2&mp3=2&mp2=2" host=pacific-dawn-35735.herokuapp.com request_id=976cc47b-e1df-4be0-aff8-596e70a9671a fwd="71.117.132.74" dyno=web.1 connect=1ms service=12ms status=200 bytes=5236 protocol=https
2020-10-21T13:09:40.963178+00:00 app[web.1]: AB_TESTING: C 1603285780655 0 0 gcwegwncl
2020-10-21T13:09:40.963996+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:40.965229+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=27cff3b6-77e9-471d-9efd-301c5b9145b9 fwd="71.117.132.74" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:09:46.153140+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:46] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:09:46.154976+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=9dc90fba-7a67-46c2-b1ad-f6a509341938 fwd="71.117.132.74" dyno=web.1 connect=1ms service=26ms status=200 bytes=9711 protocol=https
2020-10-21T13:09:46.564731+00:00 app[web.1]: AB_TESTING: A 1603285786291 0 0 gcwegwncl
2020-10-21T13:09:46.567294+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:46] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:46.571596+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=221bccbc-7595-4ae1-9bfc-6f3168b9765c fwd="71.117.132.74" dyno=web.1 connect=4ms service=10ms status=200 bytes=155 protocol=https
2020-10-21T13:09:47.856093+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285787580 mp1 gcwegwncl
2020-10-21T13:09:47.857575+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:47] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:47.858997+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=71373efc-4565-41fe-add4-4a65212e3aab fwd="71.117.132.74" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:09:48.071846+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285787781 mp1 gcwegwncl
2020-10-21T13:09:48.072537+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:48.078765+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3cd787b0-856a-49ef-ac68-c3bdcd1636cb fwd="71.117.132.74" dyno=web.1 connect=1ms service=11ms status=200 bytes=155 protocol=https
2020-10-21T13:09:48.244105+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285787859 mp1 gcwegwncl
2020-10-21T13:09:48.244869+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:48.246399+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a095b5fb-fb78-4b4c-9292-7fa26161084c fwd="71.117.132.74" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:09:48.980847+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285788703 mp2 gcwegwncl
2020-10-21T13:09:48.982499+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:48.984144+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=d5d3bfe8-d9d5-478e-8f4b-319ea7164a84 fwd="71.117.132.74" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:09:49.163320+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285788880 mp2 gcwegwncl
2020-10-21T13:09:49.164143+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:49] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:49.165344+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=cce924ce-554d-47e6-a4ea-b7f3c954ede7 fwd="71.117.132.74" dyno=web.1 connect=2ms service=9ms status=200 bytes=155 protocol=https
2020-10-21T13:09:49.842503+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285789565 mp3 gcwegwncl
2020-10-21T13:09:49.843301+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:49] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:49.845003+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=6c36e66a-b33a-48c8-b5a0-5ed43fe289c7 fwd="71.117.132.74" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:09:49.979496+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285789702 mp3 gcwegwncl
2020-10-21T13:09:49.981555+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:49] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:49.983522+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=42da2326-b7dd-482c-90d6-b29a97cc771b fwd="71.117.132.74" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:09:50.640391+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285790360 mp4 gcwegwncl
2020-10-21T13:09:50.641110+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:50] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:50.655895+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3c83e405-925a-46f9-98e3-efdc3e2bd7fc fwd="71.117.132.74" dyno=web.1 connect=1ms service=28ms status=200 bytes=155 protocol=https
2020-10-21T13:09:50.884209+00:00 app[web.1]: AB_TESTING: A 1603285786291 1603285790552 mp4 gcwegwncl
2020-10-21T13:09:50.885132+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:50] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:50.886576+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=510746fa-abea-41f4-9e3e-ac41b8ea2d3a fwd="71.117.132.74" dyno=web.1 connect=1ms service=9ms status=200 bytes=155 protocol=https
2020-10-21T13:09:52.916409+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:52] "[37mGET /checkout?version=A&mp1=3&mp2=2&mp3=2&mp4=2 HTTP/1.1[0m" 200 -
2020-10-21T13:09:52.917721+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=3&mp2=2&mp3=2&mp4=2" host=pacific-dawn-35735.herokuapp.com request_id=0c05c369-2709-46f8-85ce-5cf975a3e6f2 fwd="71.117.132.74" dyno=web.1 connect=1ms service=6ms status=200 bytes=5236 protocol=https
2020-10-21T13:09:53.103753+00:00 app[web.1]: AB_TESTING: C 1603285792741 0 0 gcwegwncl
2020-10-21T13:09:53.104657+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:53] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:53.106163+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=7d1f5f8e-248c-4632-93a6-21afe3e59326 fwd="71.117.132.74" dyno=web.1 connect=3ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:09:55.553617+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:55] "[37mGET /?version=A&mp1=3&mp2=2&mp3=2&mp4=2 HTTP/1.1[0m" 200 -
2020-10-21T13:09:55.555310+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=3&mp2=2&mp3=2&mp4=2" host=pacific-dawn-35735.herokuapp.com request_id=c64a7b8b-faf8-4b4e-9261-f66adf5a5c8c fwd="71.117.132.74" dyno=web.1 connect=2ms service=24ms status=200 bytes=9711 protocol=https
2020-10-21T13:09:55.702292+00:00 app[web.1]: AB_TESTING: A 1603285795363 0 0 gcwegwncl
2020-10-21T13:09:55.703077+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:09:55] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:09:55.704218+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9b4a5bf0-87fb-4a0f-86a8-a390f32134d2 fwd="71.117.132.74" dyno=web.1 connect=2ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:11:19.158722+00:00 app[web.1]: 10.35.227.185 - - [21/Oct/2020 13:11:19] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:11:19.169259+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=aa53d670-2aca-4786-bb4a-3b5d9892f630 fwd="211.212.65.20" dyno=web.1 connect=1ms service=3ms status=200 bytes=9763 protocol=https
2020-10-21T13:11:19.390078+00:00 app[web.1]: 10.35.227.185 - - [21/Oct/2020 13:11:19] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:11:19.393399+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=b6a073f5-3c63-4242-aeeb-2af83c0f817c fwd="211.212.65.20" dyno=web.1 connect=1ms service=7ms status=200 bytes=1228 protocol=https
2020-10-21T13:11:19.408562+00:00 app[web.1]: 10.63.193.41 - - [21/Oct/2020 13:11:19] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:11:19.427451+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=b5f7e685-430b-4447-b845-209ca527db85 fwd="211.212.65.20" dyno=web.1 connect=1ms service=23ms status=200 bytes=243856 protocol=https
2020-10-21T13:11:19.596864+00:00 app[web.1]: 10.35.227.185 - - [21/Oct/2020 13:11:19] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:19.616712+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=fb0e11d3-e158-4522-89de-2f0ed3dd80ab fwd="211.212.65.20" dyno=web.1 connect=1ms service=26ms status=200 bytes=160216 protocol=https
2020-10-21T13:11:19.792654+00:00 app[web.1]: AB_TESTING: B 1603285879543 0 0 xmptcvyhl
2020-10-21T13:11:19.793401+00:00 app[web.1]: 10.33.232.252 - - [21/Oct/2020 13:11:19] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:19.796476+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:11:19] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:19.797086+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=1f937419-3c10-4fb3-9343-064b8c4126d3 fwd="211.212.65.20" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:11:19.805318+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=cb7a3197-43c8-427a-80d9-e4a13c104911 fwd="211.212.65.20" dyno=web.1 connect=1ms service=9ms status=200 bytes=132444 protocol=https
2020-10-21T13:11:19.806808+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:19] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:19.837967+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=bd317e2d-97e2-42be-ac16-f572660e53cb fwd="211.212.65.20" dyno=web.1 connect=1ms service=31ms status=200 bytes=618300 protocol=https
2020-10-21T13:11:21.238674+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:21] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:11:21.241842+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=898fa4d7-3541-4f3b-9395-fe76c2763e45 fwd="211.212.65.20" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T13:11:21.948738+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285881843 mp1 xmptcvyhl
2020-10-21T13:11:21.949618+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:21] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:21.953401+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=c68609fb-fd69-4581-b193-a8b11dc54f2b fwd="211.212.65.20" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:11:22.204858+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285882061 mp1 xmptcvyhl
2020-10-21T13:11:22.205724+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:22.208734+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=10345beb-232e-4a6d-b8ca-8e3297e6634e fwd="211.212.65.20" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:22.439538+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285882316 mp1 xmptcvyhl
2020-10-21T13:11:22.440262+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:22.447232+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=e264831d-186b-4b4e-a4c5-ac4ca5e9a0ca fwd="211.212.65.20" dyno=web.1 connect=1ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T13:11:22.681945+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285882560 mp1 xmptcvyhl
2020-10-21T13:11:22.682734+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:22.685898+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=4421b489-827d-4693-8d13-9db03e9cd50f fwd="211.212.65.20" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:22.916678+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285882793 mp1 xmptcvyhl
2020-10-21T13:11:22.917533+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:22.920494+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=93a64f3d-40d9-4580-8344-c38e95dea0b3 fwd="211.212.65.20" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:23.148749+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285883028 mp1 xmptcvyhl
2020-10-21T13:11:23.149295+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:23.152256+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=7798b7c6-fd74-4707-92ef-e1289e4e4ca4 fwd="211.212.65.20" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:11:23.382293+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285883259 mp1 xmptcvyhl
2020-10-21T13:11:23.383607+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:23.386617+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=885d09c8-0ddb-4b6f-920c-13a5444deb64 fwd="211.212.65.20" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:11:23.616507+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285883493 mp1 xmptcvyhl
2020-10-21T13:11:23.617440+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:23.623445+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3c2631f4-4349-4f6f-b711-bb040a82a36c fwd="211.212.65.20" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:11:23.847939+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285883727 mp1 xmptcvyhl
2020-10-21T13:11:23.848708+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:23.851719+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=d97f1dd6-263f-42e8-9a50-b296e7d978e0 fwd="211.212.65.20" dyno=web.1 connect=2ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:24.081720+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285883959 mp1 xmptcvyhl
2020-10-21T13:11:24.082788+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:24.086008+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=940381cb-f549-404c-9e7a-b6c51fd88b01 fwd="211.212.65.20" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:11:24.315610+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285884193 mp1 xmptcvyhl
2020-10-21T13:11:24.316371+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:24.322036+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=160f9db3-3aa4-452b-a7d0-8aee988ace6c fwd="211.212.65.20" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:11:24.555463+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285884429 mp1 xmptcvyhl
2020-10-21T13:11:24.556247+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:24.559383+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=b6a1cb06-e8b5-4e80-b53a-932fff6e0fb6 fwd="211.212.65.20" dyno=web.1 connect=2ms service=9ms status=200 bytes=155 protocol=https
2020-10-21T13:11:24.788130+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285884667 mp1 xmptcvyhl
2020-10-21T13:11:24.789259+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:24.792206+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=578fcfd4-66fe-4ca6-b8db-5a7431b67594 fwd="211.212.65.20" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:25.028068+00:00 app[web.1]: AB_TESTING: B 1603285879543 1603285884899 mp1 xmptcvyhl
2020-10-21T13:11:25.028804+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:25] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:25.032502+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=4041d26b-7df8-4fe4-815a-e61f2bbc16dc fwd="211.212.65.20" dyno=web.1 connect=3ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:11:25.280403+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:25] "[37mGET /checkout?version=B&mp1=14&mp4=0&mp3=0&mp2=0 HTTP/1.1[0m" 200 -
2020-10-21T13:11:25.283948+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=14&mp4=0&mp3=0&mp2=0" host=pacific-dawn-35735.herokuapp.com request_id=3cfb92dd-0703-431a-a58c-14a64cca82d3 fwd="211.212.65.20" dyno=web.1 connect=2ms service=12ms status=200 bytes=5236 protocol=https
2020-10-21T13:11:25.583375+00:00 app[web.1]: AB_TESTING: C 1603285885477 0 0 xmptcvyhl
2020-10-21T13:11:25.584783+00:00 app[web.1]: 10.33.250.117 - - [21/Oct/2020 13:11:25] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:25.588397+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=63c1bd56-eba0-4520-9806-09f487f9aad5 fwd="211.212.65.20" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:11:30.606063+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 13:11:30] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:11:30.608476+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=96713803-df7a-4c4c-b53a-f276f720925a fwd="138.16.128.0" dyno=web.1 connect=0ms service=3ms status=200 bytes=9763 protocol=https
2020-10-21T13:11:31.036089+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 13:11:31] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.038758+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=3618d105-e666-4e16-a7ed-b4221605a4a3 fwd="138.16.128.0" dyno=web.1 connect=0ms service=4ms status=200 bytes=1228 protocol=https
2020-10-21T13:11:31.164168+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 13:11:31] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.167580+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=6bf89c3e-8197-4fa8-ae8a-e4ff79ad5b84 fwd="63.88.73.75" dyno=web.1 connect=1ms service=3ms status=200 bytes=9763 protocol=https
2020-10-21T13:11:31.432439+00:00 app[web.1]: 10.13.235.87 - - [21/Oct/2020 13:11:31] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.439047+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=a9953e56-09f1-4eac-b896-1a3b50730bf5 fwd="63.88.73.75" dyno=web.1 connect=0ms service=3ms status=200 bytes=1228 protocol=https
2020-10-21T13:11:31.439250+00:00 app[web.1]: 10.5.177.43 - - [21/Oct/2020 13:11:31] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.442016+00:00 app[web.1]: 10.35.254.83 - - [21/Oct/2020 13:11:31] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.444389+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=9a473c37-aae8-4d32-9e5f-5bb89117a9d1 fwd="63.88.73.75" dyno=web.1 connect=0ms service=14ms status=200 bytes=160216 protocol=https
2020-10-21T13:11:31.444551+00:00 app[web.1]: 10.37.232.57 - - [21/Oct/2020 13:11:31] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.469567+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=763d8197-d0d2-43cb-aba1-7ad3b23037e6 fwd="63.88.73.75" dyno=web.1 connect=1ms service=25ms status=200 bytes=243856 protocol=https
2020-10-21T13:11:31.470345+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=771352d2-0484-4697-9c46-3bbccc591b60 fwd="63.88.73.75" dyno=web.1 connect=1ms service=29ms status=200 bytes=618300 protocol=https
2020-10-21T13:11:31.539798+00:00 app[web.1]: 10.31.72.133 - - [21/Oct/2020 13:11:31] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.556008+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=c67014de-340e-41b9-b145-4ccb5eefd0fd fwd="63.88.73.75" dyno=web.1 connect=1ms service=16ms status=200 bytes=132444 protocol=https
2020-10-21T13:11:31.740014+00:00 app[web.1]: AB_TESTING: B 1603285890579 0 0 ujojmtx
2020-10-21T13:11:31.743893+00:00 app[web.1]: 10.81.161.51 - - [21/Oct/2020 13:11:31] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.744867+00:00 app[web.1]: 10.69.234.207 - - [21/Oct/2020 13:11:31] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.747667+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 13:11:31] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:11:31.749623+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=8361c808-3374-447f-88e3-c05afdc35a38 fwd="63.88.73.75" dyno=web.1 connect=1ms service=9ms status=200 bytes=155 protocol=https
2020-10-21T13:11:31.753974+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=72cace88-5d34-48e8-85ef-84ae683317ef fwd="138.16.128.0" dyno=web.1 connect=0ms service=12ms status=200 bytes=160216 protocol=https
2020-10-21T13:11:31.760781+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=96bf8cd7-caed-41eb-95fb-7e367f518c17 fwd="138.16.128.0" dyno=web.1 connect=0ms service=20ms status=200 bytes=243856 protocol=https
2020-10-21T13:11:32.589054+00:00 app[web.1]: AB_TESTING: B 1603285891918 0 0 fppdk
2020-10-21T13:11:32.590274+00:00 app[web.1]: 10.45.113.223 - - [21/Oct/2020 13:11:32] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:32.590690+00:00 app[web.1]: 10.63.192.219 - - [21/Oct/2020 13:11:32] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:32.595820+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=1148439b-91aa-47a0-bd43-093fabc33d10 fwd="138.16.128.0" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:11:32.600674+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=3c2d365b-e0f6-4327-bacc-ea1bd618838d fwd="138.16.128.0" dyno=web.1 connect=1ms service=13ms status=200 bytes=132444 protocol=https
2020-10-21T13:11:33.224144+00:00 app[web.1]: 10.69.234.207 - - [21/Oct/2020 13:11:33] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:33.246331+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=ffc1c43d-19a1-46a7-b536-21b2026815d7 fwd="138.16.128.0" dyno=web.1 connect=0ms service=23ms status=200 bytes=618300 protocol=https
2020-10-21T13:11:35.793634+00:00 app[web.1]: 10.69.234.207 - - [21/Oct/2020 13:11:35] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:11:35.796419+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=55d6a9e1-ea73-4925-8e52-735ec7da5838 fwd="138.16.128.0" dyno=web.1 connect=0ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T13:11:38.310388+00:00 app[web.1]: 10.69.173.87 - - [21/Oct/2020 13:11:38] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:11:38.313460+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=0b54db14-ab36-4cbe-8c60-9278dba137be fwd="171.98.73.78" dyno=web.1 connect=0ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T13:11:38.597878+00:00 app[web.1]: 10.69.173.87 - - [21/Oct/2020 13:11:38] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:11:38.601290+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=d41253c7-09bf-479d-a509-9b206058ae30 fwd="171.98.73.78" dyno=web.1 connect=0ms service=4ms status=200 bytes=1228 protocol=https
2020-10-21T13:11:38.604552+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:38] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:38.624682+00:00 app[web.1]: 10.11.215.82 - - [21/Oct/2020 13:11:38] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:11:38.646305+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=fabcb202-a8f6-42a1-8bbf-4f306fbba4a5 fwd="171.98.73.78" dyno=web.1 connect=1ms service=27ms status=200 bytes=243856 protocol=https
2020-10-21T13:11:38.651322+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=36a1f3d2-e9b7-464f-a5cd-80d04c31c894 fwd="171.98.73.78" dyno=web.1 connect=1ms service=47ms status=200 bytes=618300 protocol=https
2020-10-21T13:11:38.874873+00:00 app[web.1]: 10.69.173.87 - - [21/Oct/2020 13:11:38] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:38.882021+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=b72cf7ef-d065-4494-b31d-fb2b7db6fa50 fwd="171.98.73.78" dyno=web.1 connect=1ms service=11ms status=200 bytes=132444 protocol=https
2020-10-21T13:11:39.116127+00:00 app[web.1]: AB_TESTING: A 1603285898773 0 0 suuuqugh
2020-10-21T13:11:39.116764+00:00 app[web.1]: 10.61.214.174 - - [21/Oct/2020 13:11:39] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:39.119655+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=2023c1f2-0f7b-4aa6-8e96-1587a254dd88 fwd="171.98.73.78" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:39.180682+00:00 app[web.1]: 10.109.220.238 - - [21/Oct/2020 13:11:39] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:39.196183+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=180aab3e-faae-41a7-aeee-4a45f4237e28 fwd="171.98.73.78" dyno=web.1 connect=1ms service=17ms status=200 bytes=160216 protocol=https
2020-10-21T13:11:40.504331+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:40] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:11:40.509612+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=48ede25e-a56d-4f84-b89e-a7894504233f fwd="171.98.73.78" dyno=web.1 connect=1ms service=6ms status=404 bytes=394 protocol=https
2020-10-21T13:11:41.037627+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285900903 mp2 suuuqugh
2020-10-21T13:11:41.038581+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:41] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:41.041918+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=fa0bb8dd-c4de-451e-9489-b6f4faa4280f fwd="171.98.73.78" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:11:41.341372+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285901183 mp2 suuuqugh
2020-10-21T13:11:41.342243+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:41] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:41.348216+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=8e47ff8b-5368-407a-b541-6b51a9a500fa fwd="171.98.73.78" dyno=web.1 connect=1ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T13:11:41.631898+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285901489 mp2 suuuqugh
2020-10-21T13:11:41.635443+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:41] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:41.643968+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=11b0a6b6-0d0c-4036-ae6c-7d388b084f98 fwd="171.98.73.78" dyno=web.1 connect=1ms service=12ms status=200 bytes=155 protocol=https
2020-10-21T13:11:41.917907+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285901780 mp2 suuuqugh
2020-10-21T13:11:41.919866+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:41] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:41.923062+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9ab03189-c83b-4ef5-9bac-e0e28da2fcab fwd="171.98.73.78" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:11:42.200664+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285902063 mp2 suuuqugh
2020-10-21T13:11:42.201279+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:42] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:42.204702+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=d431fd84-f66b-4a28-978b-fa8750a22d09 fwd="171.98.73.78" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:42.484345+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285902344 mp2 suuuqugh
2020-10-21T13:11:42.485331+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:42] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:42.488567+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=19d965fa-b396-4bd4-b22e-464334db9962 fwd="171.98.73.78" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:11:42.770563+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285902629 mp2 suuuqugh
2020-10-21T13:11:42.771291+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:42] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:42.774337+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=36a50fe5-9ae6-4c66-bdd2-e9a5fbd665de fwd="171.98.73.78" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:11:43.054443+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285902915 mp2 suuuqugh
2020-10-21T13:11:43.055331+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:43] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:43.058434+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=6dc3043f-6df4-4d22-8f3b-d9f049e23afe fwd="171.98.73.78" dyno=web.1 connect=2ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:11:43.340128+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285903198 mp2 suuuqugh
2020-10-21T13:11:43.341367+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:43] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:43.345111+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f5f17a8f-55a3-4872-8085-ce9943c027db fwd="171.98.73.78" dyno=web.1 connect=1ms service=10ms status=200 bytes=155 protocol=https
2020-10-21T13:11:43.624335+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285903485 mp2 suuuqugh
2020-10-21T13:11:43.625268+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:43] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:43.629894+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a10ff100-0392-4c60-89a3-316359af5933 fwd="171.98.73.78" dyno=web.1 connect=1ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T13:11:43.912163+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285903771 mp2 suuuqugh
2020-10-21T13:11:43.913176+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:43] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:43.920763+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=63c0cc50-b555-41dc-a5c9-5ee4cf4e581c fwd="171.98.73.78" dyno=web.1 connect=1ms service=10ms status=200 bytes=155 protocol=https
2020-10-21T13:11:44.197925+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285904059 mp2 suuuqugh
2020-10-21T13:11:44.198963+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:44] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:44.202546+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=915ef44b-debd-47c4-b75c-d71415e09329 fwd="171.98.73.78" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:11:44.479173+00:00 app[web.1]: AB_TESTING: A 1603285898773 1603285904342 mp2 suuuqugh
2020-10-21T13:11:44.479852+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:44] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:44.483050+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=710432e7-b262-447d-b5f1-ae2975aa13db fwd="171.98.73.78" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:45.927928+00:00 app[web.1]: 10.52.9.178 - - [21/Oct/2020 13:11:45] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:11:45.931578+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=d97db519-2008-456c-9c92-08427e6c397b fwd="100.40.50.177" dyno=web.1 connect=1ms service=4ms status=200 bytes=9711 protocol=https
2020-10-21T13:11:46.003540+00:00 app[web.1]: 10.52.9.178 - - [21/Oct/2020 13:11:46] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:11:46.006290+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=aa2125e5-985b-4088-88c9-22bcf4f02def fwd="100.40.50.177" dyno=web.1 connect=1ms service=5ms status=200 bytes=1228 protocol=https
2020-10-21T13:11:46.033103+00:00 app[web.1]: 10.52.9.178 - - [21/Oct/2020 13:11:46] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:11:46.058842+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=4849fe49-e548-4497-8497-12fbcb4aac39 fwd="100.40.50.177" dyno=web.1 connect=1ms service=28ms status=200 bytes=243856 protocol=https
2020-10-21T13:11:46.067712+00:00 app[web.1]: 10.47.167.186 - - [21/Oct/2020 13:11:46] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:46.070540+00:00 app[web.1]: 10.11.162.79 - - [21/Oct/2020 13:11:46] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:46.074298+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:46] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:11:46.091804+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=01bc6f18-0dd3-48d5-9c62-99875bc8b6c9 fwd="100.40.50.177" dyno=web.1 connect=3ms service=29ms status=200 bytes=160216 protocol=https
2020-10-21T13:11:46.093179+00:00 app[web.1]: AB_TESTING: A 1603285905696 0 0 tcmcitn
2020-10-21T13:11:46.093657+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=fb09dacf-3e9f-4798-9921-9e0ec58fc458 fwd="100.40.50.177" dyno=web.1 connect=3ms service=30ms status=200 bytes=132444 protocol=https
2020-10-21T13:11:46.094035+00:00 app[web.1]: 10.102.224.122 - - [21/Oct/2020 13:11:46] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:46.097418+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=c8cce28c-2414-4bb5-9966-3657bf223a4e fwd="100.40.50.177" dyno=web.1 connect=4ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:46.151618+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=3a49e160-794e-42b0-b670-cbdfd78c0065 fwd="100.40.50.177" dyno=web.1 connect=3ms service=89ms status=200 bytes=618300 protocol=https
2020-10-21T13:11:46.239166+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:46] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:11:46.241933+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=1e4441b7-b1e8-4343-8ef5-e81439cf32d0 fwd="100.40.50.177" dyno=web.1 connect=0ms service=5ms status=404 bytes=394 protocol=https
2020-10-21T13:11:46.362865+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:46] "[37mGET /checkout?version=A&mp1=0&mp2=13&mp3=0&mp4=0 HTTP/1.1[0m" 200 -
2020-10-21T13:11:46.368074+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=0&mp2=13&mp3=0&mp4=0" host=pacific-dawn-35735.herokuapp.com request_id=308d17f9-7e08-40a0-b273-46ede0350c4d fwd="171.98.73.78" dyno=web.1 connect=3ms service=11ms status=200 bytes=5236 protocol=https
2020-10-21T13:11:46.696389+00:00 app[web.1]: AB_TESTING: C 1603285906551 0 0 suuuqugh
2020-10-21T13:11:46.697196+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:46] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:46.700804+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f90a69d0-8e31-4bfe-91be-8c092f8aa5e1 fwd="171.98.73.78" dyno=web.1 connect=1ms service=14ms status=200 bytes=155 protocol=https
2020-10-21T13:11:47.422824+00:00 app[web.1]: AB_TESTING: A 1603285905696 1603285907022 mp1 tcmcitn
2020-10-21T13:11:47.423584+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:47] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:47.426458+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=be0a649d-79a9-413d-af87-79af329223a4 fwd="100.40.50.177" dyno=web.1 connect=2ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:11:47.646256+00:00 app[web.1]: AB_TESTING: A 1603285905696 1603285907250 mp1 tcmcitn
2020-10-21T13:11:47.647057+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:47] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:47.653043+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=e87ce518-71d2-4ffa-a6cf-f0b7ca0d84a2 fwd="100.40.50.177" dyno=web.1 connect=2ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:11:47.986582+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:47] "[37mGET /?version=A&mp1=0&mp2=13&mp3=0&mp4=0 HTTP/1.1[0m" 200 -
2020-10-21T13:11:47.996299+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=0&mp2=13&mp3=0&mp4=0" host=pacific-dawn-35735.herokuapp.com request_id=f22131cd-9ece-4258-86a4-48013e4b958d fwd="171.98.73.78" dyno=web.1 connect=3ms service=12ms status=200 bytes=9711 protocol=https
2020-10-21T13:11:48.287368+00:00 app[web.1]: AB_TESTING: A 1603285905696 1603285907887 mp2 tcmcitn
2020-10-21T13:11:48.287693+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:48.290387+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a3bb50bc-2dcd-4c72-a443-001d0ff09fb7 fwd="100.40.50.177" dyno=web.1 connect=2ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:48.302064+00:00 app[web.1]: AB_TESTING: A 1603285908164 0 0 suuuqugh
2020-10-21T13:11:48.302750+00:00 app[web.1]: 10.31.251.32 - - [21/Oct/2020 13:11:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:48.308334+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a0c103c9-ff0c-4d05-ba52-a3a500315053 fwd="171.98.73.78" dyno=web.1 connect=2ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:11:48.452198+00:00 app[web.1]: AB_TESTING: A 1603285905696 1603285908053 mp2 tcmcitn
2020-10-21T13:11:48.453261+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:48.456233+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=ba19ae93-6190-4e31-a7d0-e627822b7fd1 fwd="100.40.50.177" dyno=web.1 connect=0ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:49.633637+00:00 app[web.1]: AB_TESTING: A 1603285905696 1603285909238 mp3 tcmcitn
2020-10-21T13:11:49.634611+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:49] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:49.639264+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3007e2f0-6a2a-4ea7-aff3-8f83aad20644 fwd="100.40.50.177" dyno=web.1 connect=0ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:49.967966+00:00 app[web.1]: AB_TESTING: A 1603285905696 1603285909577 mp3 tcmcitn
2020-10-21T13:11:49.968945+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:49] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:49.971552+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3cab07c9-afe0-497c-bc23-ce150ec29786 fwd="100.40.50.177" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:11:50.348837+00:00 app[web.1]: AB_TESTING: A 1603285905696 1603285909944 mp3 tcmcitn
2020-10-21T13:11:50.350573+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:50] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:50.353601+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=fc48234e-36c5-4510-928b-dd1a47ec17ce fwd="100.40.50.177" dyno=web.1 connect=0ms service=11ms status=200 bytes=155 protocol=https
2020-10-21T13:11:51.129543+00:00 app[web.1]: AB_TESTING: A 1603285905696 1603285910740 mp4 tcmcitn
2020-10-21T13:11:51.130212+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:51] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:51.133030+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=6e172961-c35a-493a-9c1b-f4ec9b418ab7 fwd="100.40.50.177" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:11:52.096810+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:52] "[37mGET /checkout?version=A&mp1=2&mp2=2&mp3=3&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T13:11:52.099612+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=2&mp2=2&mp3=3&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=8b947156-251d-4c72-a5ac-b50f50adafa1 fwd="100.40.50.177" dyno=web.1 connect=0ms service=4ms status=200 bytes=5236 protocol=https
2020-10-21T13:11:52.263004+00:00 app[web.1]: AB_TESTING: C 1603285911867 0 0 tcmcitn
2020-10-21T13:11:52.263640+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:52] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:52.266181+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=1e8a1638-b515-4d9f-9827-b14a10e85f60 fwd="100.40.50.177" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:11:53.286726+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:53] "[37mGET /?version=A&mp1=2&mp2=2&mp3=3&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T13:11:53.289343+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=2&mp2=2&mp3=3&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=7f6b0b9f-7bbf-4f3d-be7b-011b1a8fe051 fwd="100.40.50.177" dyno=web.1 connect=0ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T13:11:53.344526+00:00 app[web.1]: AB_TESTING: A 1603285912952 0 0 tcmcitn
2020-10-21T13:11:53.345132+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:11:53] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:11:53.347641+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3d349060-8979-4426-a4be-7c6bdd2357d8 fwd="100.40.50.177" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:12:49.625663+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:12:49] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:12:49.628893+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=b404961c-47c3-45a3-b64b-3d6c3b7c9173 fwd="134.56.60.118" dyno=web.1 connect=1ms service=4ms status=200 bytes=9711 protocol=https
2020-10-21T13:12:49.742600+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:12:49] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:12:49.745476+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=97bd341a-853e-453d-bf29-0408e5324f67 fwd="134.56.60.118" dyno=web.1 connect=1ms service=3ms status=200 bytes=1228 protocol=https
2020-10-21T13:12:49.950252+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:12:49] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:12:49.952169+00:00 app[web.1]: 10.47.221.227 - - [21/Oct/2020 13:12:49] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:12:49.968230+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=68f16ab8-0e29-43c7-89d8-6361afb748b7 fwd="134.56.60.118" dyno=web.1 connect=1ms service=18ms status=200 bytes=243856 protocol=https
2020-10-21T13:12:49.976287+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=9d294eaa-f1f3-4e33-b936-3b81fc303746 fwd="134.56.60.118" dyno=web.1 connect=1ms service=27ms status=200 bytes=618300 protocol=https
2020-10-21T13:12:50.028026+00:00 app[web.1]: 10.51.131.88 - - [21/Oct/2020 13:12:50] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:12:50.034943+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=18ebc0ce-59e1-4e86-9343-e96b4ebb06bb fwd="134.56.60.118" dyno=web.1 connect=0ms service=8ms status=200 bytes=132444 protocol=https
2020-10-21T13:12:50.080675+00:00 app[web.1]: AB_TESTING: A 1603285970015 0 0 zsyvkk
2020-10-21T13:12:50.081209+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:12:50] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:12:50.084302+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=1c90b122-1575-435a-9dc9-d7305209ef63 fwd="134.56.60.118" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:12:50.160509+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:12:50] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:12:50.170767+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=5c0f22fa-9804-445a-9a58-eeb1ddec7fe5 fwd="134.56.60.118" dyno=web.1 connect=1ms service=15ms status=200 bytes=160216 protocol=https
2020-10-21T13:12:50.827277+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:12:50] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:12:50.830092+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=aed50379-9b9a-42b7-a53e-eb1cab3e7a2b fwd="134.56.60.118" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T13:12:56.901589+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:12:56] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:12:56.904536+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=54cbcc1d-c04c-476b-85a6-799913d43752 fwd="36.230.72.211" dyno=web.1 connect=1ms service=4ms status=200 bytes=9711 protocol=https
2020-10-21T13:12:57.432093+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:12:57] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:12:57.434351+00:00 app[web.1]: 10.13.211.10 - - [21/Oct/2020 13:12:57] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:12:57.435019+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=80650bcd-9a04-4b5b-808a-c241000bc842 fwd="36.230.72.211" dyno=web.1 connect=6ms service=7ms status=200 bytes=1228 protocol=https
2020-10-21T13:12:57.454626+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=560f5f29-224f-4717-9422-4ba703787a1f fwd="36.230.72.211" dyno=web.1 connect=2ms service=29ms status=200 bytes=243856 protocol=https
2020-10-21T13:12:57.672358+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:12:57] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:12:57.717621+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=c6d84bca-f0b6-4dfd-81cd-be5bb329f782 fwd="36.230.72.211" dyno=web.1 connect=1ms service=54ms status=200 bytes=618300 protocol=https
2020-10-21T13:12:58.048106+00:00 app[web.1]: AB_TESTING: A 1603285977754 0 0 bsbbdrtah
2020-10-21T13:12:58.048945+00:00 app[web.1]: 10.43.152.156 - - [21/Oct/2020 13:12:58] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:12:58.051518+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=0c71201d-41b8-4df3-8975-f35f863a31fe fwd="36.230.72.211" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:12:58.054310+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 13:12:58] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:12:58.055848+00:00 app[web.1]: 10.101.144.240 - - [21/Oct/2020 13:12:58] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:12:58.065353+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=df6ba196-cf97-49bc-97e1-7aa9a343b8a0 fwd="36.230.72.211" dyno=web.1 connect=1ms service=14ms status=200 bytes=132444 protocol=https
2020-10-21T13:12:58.071045+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=8e438605-3739-4ee9-aace-95289494cebc fwd="36.230.72.211" dyno=web.1 connect=1ms service=17ms status=200 bytes=160216 protocol=https
2020-10-21T13:13:00.153244+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:00] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:13:00.160156+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=339e074c-5c41-4e12-b935-fba3dbb5eef2 fwd="36.230.72.211" dyno=web.1 connect=1ms service=7ms status=404 bytes=394 protocol=https
2020-10-21T13:13:00.416213+00:00 app[web.1]: AB_TESTING: A 1603285977754 1603285980306 mp1 bsbbdrtah
2020-10-21T13:13:00.419585+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:00] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:00.425760+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f6f6ad85-8c9c-4639-b6f3-4a87fc6e0873 fwd="36.230.72.211" dyno=web.1 connect=1ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T13:13:01.884915+00:00 app[web.1]: AB_TESTING: A 1603285977754 1603285981773 mp2 bsbbdrtah
2020-10-21T13:13:01.885529+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:01] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:01.887912+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=8bc261ef-ccb1-4a55-931f-c822931b4ba3 fwd="36.230.72.211" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:13:02.159280+00:00 app[web.1]: AB_TESTING: A 1603285977754 1603285982048 mp2 bsbbdrtah
2020-10-21T13:13:02.160256+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:02] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:02.162820+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=95fad7ab-2b10-48ff-9769-67cafce9b126 fwd="36.230.72.211" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:13:03.253599+00:00 app[web.1]: AB_TESTING: A 1603285977754 1603285983142 mp3 bsbbdrtah
2020-10-21T13:13:03.254343+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:03] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:03.257504+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=e1506306-f56f-4745-9f2e-ab2455ed3729 fwd="36.230.72.211" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:13:03.516699+00:00 app[web.1]: AB_TESTING: A 1603285977754 1603285983369 mp3 bsbbdrtah
2020-10-21T13:13:03.520462+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:03] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:03.523180+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=1d9a4215-cd35-4e6a-b589-680b18206311 fwd="36.230.72.211" dyno=web.1 connect=1ms service=9ms status=200 bytes=155 protocol=https
2020-10-21T13:13:03.780263+00:00 app[web.1]: AB_TESTING: A 1603285977754 1603285983636 mp3 bsbbdrtah
2020-10-21T13:13:03.781338+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:03] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:03.786308+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=7d56eaeb-1a9f-4539-b78b-a50e052dd635 fwd="36.230.72.211" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:13:04.019920+00:00 app[web.1]: AB_TESTING: A 1603285977754 1603285983898 mp3 bsbbdrtah
2020-10-21T13:13:04.020759+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:04] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:04.023211+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=d78d2bb7-8d92-4f11-b0b8-42c773a05c3e fwd="36.230.72.211" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:13:06.824148+00:00 app[web.1]: AB_TESTING: A 1603285977754 1603285986711 mp4 bsbbdrtah
2020-10-21T13:13:06.824966+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:06] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:06.829768+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=309c48b1-f9bc-48fa-8002-9806e80e0f20 fwd="36.230.72.211" dyno=web.1 connect=1ms service=11ms status=200 bytes=155 protocol=https
2020-10-21T13:13:08.001271+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:08] "[37mGET /checkout?version=A&mp1=1&mp2=2&mp3=4&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T13:13:08.003945+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=1&mp2=2&mp3=4&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=708a3e11-95ed-48d6-b4f2-22d650013bf3 fwd="36.230.72.211" dyno=web.1 connect=1ms service=5ms status=200 bytes=5236 protocol=https
2020-10-21T13:13:08.419894+00:00 app[web.1]: AB_TESTING: C 1603285988299 0 0 bsbbdrtah
2020-10-21T13:13:08.420824+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:08] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:08.423317+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=7b8000aa-9c80-48c8-9f1e-ddd76ca40f66 fwd="36.230.72.211" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:13:10.107289+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:10] "[37mGET /?version=A&mp1=1&mp2=2&mp3=4&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T13:13:10.110087+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=1&mp2=2&mp3=4&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=2255a137-a871-4fe0-befb-51f681bdfbed fwd="36.230.72.211" dyno=web.1 connect=1ms service=4ms status=200 bytes=9711 protocol=https
2020-10-21T13:13:10.532603+00:00 app[web.1]: AB_TESTING: A 1603285990392 0 0 bsbbdrtah
2020-10-21T13:13:10.533608+00:00 app[web.1]: 10.81.229.85 - - [21/Oct/2020 13:13:10] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:10.536693+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9bea2e7b-d283-4998-837b-1a76dae59781 fwd="36.230.72.211" dyno=web.1 connect=1ms service=17ms status=200 bytes=155 protocol=https
2020-10-21T13:13:32.412928+00:00 app[web.1]: AB_TESTING: A 1603285970015 1603286012390 mp3 zsyvkk
2020-10-21T13:13:32.413693+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:32] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:32.417056+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5a2a4320-37d8-40e0-b924-9acde1bd7ef3 fwd="134.56.60.118" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:13:35.323973+00:00 app[web.1]: AB_TESTING: A 1603285970015 1603286015296 mp1 zsyvkk
2020-10-21T13:13:35.324511+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:35] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:35.338031+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=b8fa595b-a354-4614-ba8b-86eab9898f71 fwd="134.56.60.118" dyno=web.1 connect=6ms service=11ms status=200 bytes=155 protocol=https
2020-10-21T13:13:36.914798+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:36] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:13:36.918830+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=ce2d0100-cd5e-4583-b794-c3c4a76d79c7 fwd="211.110.91.174" dyno=web.1 connect=1ms service=5ms status=200 bytes=9711 protocol=https
2020-10-21T13:13:37.175527+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:37] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:13:37.179505+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=b156d8c1-e1e2-497e-b4d5-544a24c3e28a fwd="211.110.91.174" dyno=web.1 connect=1ms service=6ms status=200 bytes=1228 protocol=https
2020-10-21T13:13:37.210220+00:00 app[web.1]: 10.79.206.66 - - [21/Oct/2020 13:13:37] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:13:37.223153+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=f55f0248-380f-49df-a900-61e37d861b44 fwd="211.110.91.174" dyno=web.1 connect=2ms service=14ms status=200 bytes=243856 protocol=https
2020-10-21T13:13:37.376611+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:37] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:13:37.411049+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=078c5a02-4612-4ac9-8eff-ecb696991541 fwd="211.110.91.174" dyno=web.1 connect=1ms service=35ms status=200 bytes=618300 protocol=https
2020-10-21T13:13:37.593540+00:00 app[web.1]: 10.113.192.240 - - [21/Oct/2020 13:13:37] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:13:37.601518+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=287e6313-9898-4286-864d-e4187b9f7a7e fwd="211.110.91.174" dyno=web.1 connect=2ms service=9ms status=200 bytes=132444 protocol=https
2020-10-21T13:13:37.603150+00:00 app[web.1]: 10.152.193.4 - - [21/Oct/2020 13:13:37] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:13:37.617008+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=361c7b0c-a138-4742-8ed0-f8d02781b418 fwd="211.110.91.174" dyno=web.1 connect=1ms service=16ms status=200 bytes=160216 protocol=https
2020-10-21T13:13:37.684171+00:00 app[web.1]: AB_TESTING: A 1603286017563 0 0 shm
2020-10-21T13:13:37.685028+00:00 app[web.1]: 10.159.227.245 - - [21/Oct/2020 13:13:37] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:37.688723+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=0fb25b6d-8cdf-4fc0-a95d-bda8191d77cc fwd="211.110.91.174" dyno=web.1 connect=2ms service=9ms status=200 bytes=155 protocol=https
2020-10-21T13:13:38.646453+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:38] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:13:38.650286+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=833f6497-cbaf-42e4-95fa-7573a302d2de fwd="211.110.91.174" dyno=web.1 connect=1ms service=4ms status=404 bytes=394 protocol=https
2020-10-21T13:13:39.841930+00:00 app[web.1]: AB_TESTING: A 1603286017563 1603286019737 mp4 shm
2020-10-21T13:13:39.842931+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:39] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:39.846774+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=d3e031bc-0f6a-4ef7-878c-753e90f6e729 fwd="211.110.91.174" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:13:40.059224+00:00 app[web.1]: AB_TESTING: A 1603285970015 1603286020037 mp4 zsyvkk
2020-10-21T13:13:40.060005+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:40.062906+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=0860c180-4160-4d11-8d0d-de95e3358cd9 fwd="134.56.60.118" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:13:40.079955+00:00 app[web.1]: AB_TESTING: A 1603286017563 1603286019957 mp4 shm
2020-10-21T13:13:40.080781+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:40.085916+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=293f1699-48e3-4c77-811b-a8180908bbed fwd="211.110.91.174" dyno=web.1 connect=1ms service=10ms status=200 bytes=155 protocol=https
2020-10-21T13:13:40.246812+00:00 app[web.1]: AB_TESTING: A 1603285970015 1603286020228 mp4 zsyvkk
2020-10-21T13:13:40.247541+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:40.250294+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=42ed087a-6e95-4bb2-b7c1-074415db171f fwd="134.56.60.118" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:13:40.293846+00:00 app[web.1]: AB_TESTING: A 1603286017563 1603286020188 mp4 shm
2020-10-21T13:13:40.294912+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:40.299271+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a9720fe4-f323-48cc-b28d-1a7b487188fb fwd="211.110.91.174" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:13:40.506011+00:00 app[web.1]: AB_TESTING: A 1603286017563 1603286020400 mp4 shm
2020-10-21T13:13:40.506976+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:40.511966+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a4422287-7be0-4e35-8853-af6d90c521a3 fwd="211.110.91.174" dyno=web.1 connect=2ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:13:40.723837+00:00 app[web.1]: AB_TESTING: A 1603286017563 1603286020615 mp4 shm
2020-10-21T13:13:40.724615+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:40.728696+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9fd00a28-81d8-43a7-87e0-77c821cd8d96 fwd="211.110.91.174" dyno=web.1 connect=1ms service=11ms status=200 bytes=155 protocol=https
2020-10-21T13:13:40.840776+00:00 app[web.1]: AB_TESTING: A 1603285970015 1603286020820 mp4 zsyvkk
2020-10-21T13:13:40.841498+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:40.844371+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=fedaa430-2fab-4459-bd30-22f0b25142bd fwd="134.56.60.118" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:13:42.239624+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:42] "[37mGET /checkout?version=A&mp1=0&mp2=0&mp3=0&mp4=5 HTTP/1.1[0m" 200 -
2020-10-21T13:13:42.245196+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=0&mp2=0&mp3=0&mp4=5" host=pacific-dawn-35735.herokuapp.com request_id=c7ab671b-de3b-44ce-b13c-6d32466df18b fwd="211.110.91.174" dyno=web.1 connect=1ms service=7ms status=200 bytes=5236 protocol=https
2020-10-21T13:13:42.536428+00:00 app[web.1]: AB_TESTING: C 1603286022435 0 0 shm
2020-10-21T13:13:42.537324+00:00 app[web.1]: 10.63.70.171 - - [21/Oct/2020 13:13:42] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:42.541301+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=83e93858-4132-405c-8141-51bdfb3d4bf4 fwd="211.110.91.174" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:13:48.462604+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:48] "[37mGET /checkout?version=A&mp1=1&mp2=0&mp3=1&mp4=3 HTTP/1.1[0m" 200 -
2020-10-21T13:13:48.465523+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=1&mp2=0&mp3=1&mp4=3" host=pacific-dawn-35735.herokuapp.com request_id=a3cfb48e-70cb-42ac-ba9b-a8d1b8598473 fwd="134.56.60.118" dyno=web.1 connect=1ms service=4ms status=200 bytes=5236 protocol=https
2020-10-21T13:13:48.744960+00:00 app[web.1]: AB_TESTING: C 1603286028724 0 0 zsyvkk
2020-10-21T13:13:48.745964+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:48.748935+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=01bbb5da-961e-432d-a1f8-c5fbe200f99f fwd="134.56.60.118" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:13:50.261241+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:50] "[37mGET /?version=A&mp1=1&mp2=0&mp3=1&mp4=3 HTTP/1.1[0m" 200 -
2020-10-21T13:13:50.264859+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=1&mp2=0&mp3=1&mp4=3" host=pacific-dawn-35735.herokuapp.com request_id=99f65ed1-a1ff-43ab-9429-6db07bac329b fwd="134.56.60.118" dyno=web.1 connect=1ms service=6ms status=200 bytes=9711 protocol=https
2020-10-21T13:13:50.500847+00:00 app[web.1]: AB_TESTING: A 1603286030479 0 0 zsyvkk
2020-10-21T13:13:50.501795+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:50] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:50.504729+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=62c50d5f-145d-4273-9f06-147cc513bc48 fwd="134.56.60.118" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:13:51.517897+00:00 app[web.1]: AB_TESTING: A 1603286030479 1603286031494 mp1 zsyvkk
2020-10-21T13:13:51.520787+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:51] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:51.525207+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=c07e4f23-3463-4eaf-a785-34d55fb0d8ca fwd="134.56.60.118" dyno=web.1 connect=1ms service=9ms status=200 bytes=155 protocol=https
2020-10-21T13:13:52.211821+00:00 app[web.1]: AB_TESTING: A 1603286030479 1603286032188 mp1 zsyvkk
2020-10-21T13:13:52.212759+00:00 app[web.1]: 10.5.206.253 - - [21/Oct/2020 13:13:52] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:13:52.216580+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=2014fbf3-531f-433e-a619-379d0887fd98 fwd="134.56.60.118" dyno=web.1 connect=1ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T13:14:18.938745+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 13:14:18] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:14:18.942771+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=f0381fb2-96a1-4146-a350-1c47c4c28d42 fwd="68.9.28.44" dyno=web.1 connect=0ms service=4ms status=200 bytes=9763 protocol=https
2020-10-21T13:14:19.004932+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 13:14:19] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:14:19.008793+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=3620d027-df66-4f18-94ca-36929b0ab476 fwd="68.9.28.44" dyno=web.1 connect=1ms service=9ms status=200 bytes=1228 protocol=https
2020-10-21T13:14:19.037983+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 13:14:19] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:14:19.043714+00:00 app[web.1]: 10.9.158.174 - - [21/Oct/2020 13:14:19] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:14:19.054833+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=e5799d3f-0f00-4c13-b626-2c38b3e44d55 fwd="68.9.28.44" dyno=web.1 connect=0ms service=17ms status=200 bytes=243856 protocol=https
2020-10-21T13:14:19.061128+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=6542622e-9346-4a68-b7fe-299bbe6560b6 fwd="68.9.28.44" dyno=web.1 connect=1ms service=26ms status=200 bytes=160216 protocol=https
2020-10-21T13:14:19.100606+00:00 app[web.1]: 10.29.116.130 - - [21/Oct/2020 13:14:19] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:14:19.103331+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:19] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:14:19.110986+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=20d0005a-fdbb-43a7-a6d6-c105bd73e494 fwd="68.9.28.44" dyno=web.1 connect=0ms service=11ms status=200 bytes=132444 protocol=https
2020-10-21T13:14:19.145318+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=e511801a-bcad-4213-b0be-e666035c0d56 fwd="68.9.28.44" dyno=web.1 connect=1ms service=43ms status=200 bytes=618300 protocol=https
2020-10-21T13:14:19.150205+00:00 app[web.1]: AB_TESTING: B 1603286059072 0 0 kjhjmiqrlj
2020-10-21T13:14:19.150916+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 13:14:19] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:19.154516+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a2f6d5a9-ba41-418b-ae84-f26e589eb42c fwd="68.9.28.44" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:14:19.298533+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:19] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:14:19.301897+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=0e50b46c-0910-4022-91ac-45ed83836412 fwd="68.9.28.44" dyno=web.1 connect=1ms service=5ms status=404 bytes=394 protocol=https
2020-10-21T13:14:20.235413+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286060203 mp1 kjhjmiqrlj
2020-10-21T13:14:20.236031+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:20] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:20.239533+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=ff6ead17-c3f0-47e6-a589-af81682c6c9c fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:21.130482+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286061097 mp4 kjhjmiqrlj
2020-10-21T13:14:21.131231+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:21] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:21.135085+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=55dd1261-2c24-4798-9b71-bd0bc840997c fwd="68.9.28.44" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:14:22.017719+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286061985 mp2 kjhjmiqrlj
2020-10-21T13:14:22.018428+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:22.021781+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=e90c05fa-913e-4599-b6f3-fa8dabee7b0f fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:22.883160+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286062851 mp3 kjhjmiqrlj
2020-10-21T13:14:22.884176+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:22.887635+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9bf9f1aa-01e9-4cdc-921d-55762b6722f7 fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:23.085147+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286063053 mp3 kjhjmiqrlj
2020-10-21T13:14:23.085981+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.089602+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a1184b8b-e71e-42ff-a889-73a383c41676 fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:23.219704+00:00 app[web.1]: 10.30.108.123 - - [21/Oct/2020 13:14:23] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.222643+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=b5c1206c-82ab-4206-8d85-656e7c445672 fwd="121.157.46.8" dyno=web.1 connect=0ms service=9ms status=200 bytes=9763 protocol=https
2020-10-21T13:14:23.278018+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286063246 mp3 kjhjmiqrlj
2020-10-21T13:14:23.278890+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.282543+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f4dd34d7-dbfd-4897-9d42-f606b1e1858c fwd="68.9.28.44" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:14:23.474080+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286063442 mp3 kjhjmiqrlj
2020-10-21T13:14:23.474978+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.477624+00:00 app[web.1]: 10.30.108.123 - - [21/Oct/2020 13:14:23] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.478596+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=24442a2a-b346-4c60-beb8-903c12b0d029 fwd="68.9.28.44" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:14:23.480978+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=3b73d67e-38ae-4245-b2b3-87e33c472408 fwd="121.157.46.8" dyno=web.1 connect=0ms service=4ms status=200 bytes=1228 protocol=https
2020-10-21T13:14:23.519590+00:00 app[web.1]: 10.45.5.181 - - [21/Oct/2020 13:14:23] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.535036+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=2878f639-5d66-47bb-856f-c86946be25b6 fwd="121.157.46.8" dyno=web.1 connect=1ms service=17ms status=200 bytes=243856 protocol=https
2020-10-21T13:14:23.676362+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286063642 mp3 kjhjmiqrlj
2020-10-21T13:14:23.676947+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.680533+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9b8352a7-9766-4239-9813-339504716564 fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:23.701089+00:00 app[web.1]: 10.30.108.123 - - [21/Oct/2020 13:14:23] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.709538+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=8b93e5b0-7d3e-46cf-b13f-024eeb1d6f42 fwd="121.157.46.8" dyno=web.1 connect=0ms service=9ms status=200 bytes=160216 protocol=https
2020-10-21T13:14:23.898164+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286063862 mp3 kjhjmiqrlj
2020-10-21T13:14:23.898861+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.902565+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=86c45ce8-4efc-472d-b445-1c5b21f7d21f fwd="68.9.28.44" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:14:23.936905+00:00 app[web.1]: AB_TESTING: B 1603286063652 0 0 qwznvkneg
2020-10-21T13:14:23.937655+00:00 app[web.1]: 10.63.237.123 - - [21/Oct/2020 13:14:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.939420+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3ff3d742-ceb3-494f-95f6-ecbdee31ceea fwd="121.157.46.8" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:23.941689+00:00 app[web.1]: 10.61.214.174 - - [21/Oct/2020 13:14:23] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:14:23.952830+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=fc052218-8ee1-4250-a71f-56a72ff0334f fwd="121.157.46.8" dyno=web.1 connect=1ms service=12ms status=200 bytes=132444 protocol=https
2020-10-21T13:14:24.046029+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:24] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:14:24.086523+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286064055 mp3 kjhjmiqrlj
2020-10-21T13:14:24.087271+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:24.087938+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=82745364-e402-447e-8073-1bf0cb1a14d4 fwd="121.157.46.8" dyno=web.1 connect=2ms service=42ms status=200 bytes=618300 protocol=https
2020-10-21T13:14:24.091072+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=27a43e63-142c-46de-9c62-ec225e73923d fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:24.263909+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286064232 mp3 kjhjmiqrlj
2020-10-21T13:14:24.264760+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:24.268683+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=481d4f7c-7cf7-40d0-a7cf-80e462649512 fwd="68.9.28.44" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:14:24.929525+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286064894 mp2 kjhjmiqrlj
2020-10-21T13:14:24.930429+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:24.934113+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=1aa0186c-a2f8-46bd-9dde-0ee59bbb84d7 fwd="68.9.28.44" dyno=web.1 connect=2ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:14:25.128198+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286065096 mp2 kjhjmiqrlj
2020-10-21T13:14:25.129120+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:25] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:25.132614+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5cfddb2a-36d5-4131-9ffc-78287947b473 fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:25.315910+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286065281 mp2 kjhjmiqrlj
2020-10-21T13:14:25.316542+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:25] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:25.319916+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=eb0b3ebd-ccb7-4dc7-9b0e-d2c6a0ad4d3a fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:25.481075+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:25] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:14:25.484997+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=efae5648-a77e-4a55-ae28-ecc751fcf18d fwd="121.157.46.8" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T13:14:26.124881+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286066090 mp4 kjhjmiqrlj
2020-10-21T13:14:26.125646+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:26] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:26.129363+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=eeec7b24-fb48-4a33-aa5b-dd2a2003e7ba fwd="68.9.28.44" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:14:26.311391+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286066274 mp4 kjhjmiqrlj
2020-10-21T13:14:26.312334+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:26] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:26.316726+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=41a9fb82-89c6-44b6-bde7-c3e200c8eeca fwd="68.9.28.44" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:14:26.475925+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286066445 mp4 kjhjmiqrlj
2020-10-21T13:14:26.477044+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:26] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:26.480805+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=bfb52b19-f6bd-4ea6-a23f-0862b432f10c fwd="68.9.28.44" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:14:26.662824+00:00 app[web.1]: AB_TESTING: B 1603286059072 1603286066622 mp4 kjhjmiqrlj
2020-10-21T13:14:26.663125+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:26] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:26.666664+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=7f598760-0c48-4f1e-a74b-61dd7ddef15d fwd="68.9.28.44" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:27.835873+00:00 app[web.1]: AB_TESTING: B 1603286063652 1603286067727 mp2 qwznvkneg
2020-10-21T13:14:27.836492+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:27] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:27.845500+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3d278dfe-62d6-472e-a57e-6988da8d0f15 fwd="121.157.46.8" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:28.552778+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:28] "[37mGET /checkout?version=B&mp1=1&mp4=5&mp3=8&mp2=4 HTTP/1.1[0m" 200 -
2020-10-21T13:14:28.562781+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=1&mp4=5&mp3=8&mp2=4" host=pacific-dawn-35735.herokuapp.com request_id=fdb563fe-45a3-4a76-80d4-f1aa1cc9b8f6 fwd="68.9.28.44" dyno=web.1 connect=2ms service=14ms status=200 bytes=5236 protocol=https
2020-10-21T13:14:28.761616+00:00 app[web.1]: AB_TESTING: C 1603286068723 0 0 kjhjmiqrlj
2020-10-21T13:14:28.763845+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 13:14:28] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:28.767815+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=33a4090b-364b-4a4a-ad60-9ad8b10bea0e fwd="68.9.28.44" dyno=web.1 connect=1ms service=12ms status=200 bytes=155 protocol=https
2020-10-21T13:14:29.854606+00:00 app[web.1]: AB_TESTING: B 1603286063652 1603286069739 mp2 qwznvkneg
2020-10-21T13:14:29.855455+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:29] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:29.861075+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5ef72344-51b1-41a3-9dd6-9128245cd0db fwd="121.157.46.8" dyno=web.1 connect=1ms service=12ms status=200 bytes=155 protocol=https
2020-10-21T13:14:31.710302+00:00 app[web.1]: AB_TESTING: B 1603286063652 1603286071598 mp3 qwznvkneg
2020-10-21T13:14:31.711608+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:31] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:31.715402+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5bcdf7d5-5346-479f-8ac8-d5f704772bde fwd="121.157.46.8" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:14:33.571394+00:00 app[web.1]: AB_TESTING: B 1603286063652 1603286073460 mp3 qwznvkneg
2020-10-21T13:14:33.572327+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:33] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:33.575965+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=d1ba8dfa-6cb4-4539-a889-0a14d0338326 fwd="121.157.46.8" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:14:34.800563+00:00 app[web.1]: AB_TESTING: B 1603286063652 1603286074692 mp4 qwznvkneg
2020-10-21T13:14:34.801477+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:34] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:34.805052+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3a0a6ffa-faca-4524-ad35-91aa6648a397 fwd="121.157.46.8" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:35.476722+00:00 app[web.1]: AB_TESTING: B 1603286063652 1603286075359 mp4 qwznvkneg
2020-10-21T13:14:35.477533+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:35] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:35.480973+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=2acd659d-ba79-48ec-b44c-815003b65819 fwd="121.157.46.8" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:14:37.377891+00:00 app[web.1]: AB_TESTING: B 1603286063652 1603286077264 mp3 qwznvkneg
2020-10-21T13:14:37.378642+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:37] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:37.382457+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=fb8485a7-763a-4c59-89d3-bb368d1498b9 fwd="121.157.46.8" dyno=web.1 connect=1ms service=9ms status=200 bytes=155 protocol=https
2020-10-21T13:14:39.100511+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:39] "[37mGET /checkout?version=B&mp1=0&mp4=2&mp3=3&mp2=2 HTTP/1.1[0m" 200 -
2020-10-21T13:14:39.104685+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=0&mp4=2&mp3=3&mp2=2" host=pacific-dawn-35735.herokuapp.com request_id=0c1cff1d-6158-4ad9-bd3c-07b0b4dbfaf8 fwd="121.157.46.8" dyno=web.1 connect=1ms service=11ms status=200 bytes=5236 protocol=https
2020-10-21T13:14:39.427620+00:00 app[web.1]: AB_TESTING: C 1603286079314 0 0 qwznvkneg
2020-10-21T13:14:39.428475+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:39] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:39.432526+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5f786017-8453-4e4f-a2b1-206648166e40 fwd="121.157.46.8" dyno=web.1 connect=3ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:14:41.309072+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:41] "[37mGET /?version=B&mp1=0&mp4=2&mp3=3&mp2=2 HTTP/1.1[0m" 200 -
2020-10-21T13:14:41.312395+00:00 heroku[router]: at=info method=GET path="/?version=B&mp1=0&mp4=2&mp3=3&mp2=2" host=pacific-dawn-35735.herokuapp.com request_id=705d85ec-29e6-43bc-a4f6-c4d211867f5a fwd="121.157.46.8" dyno=web.1 connect=1ms service=8ms status=200 bytes=9763 protocol=https
2020-10-21T13:14:41.626420+00:00 app[web.1]: AB_TESTING: B 1603286081515 0 0 qwznvkneg
2020-10-21T13:14:41.627295+00:00 app[web.1]: 10.95.209.15 - - [21/Oct/2020 13:14:41] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:14:41.631311+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=82c538e6-0b7b-4cc8-a2be-a4a324355f47 fwd="121.157.46.8" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:15:44.243685+00:00 app[web.1]: AB_TESTING: B 1603285891918 1603286143197 mp3 fppdk
2020-10-21T13:15:44.246809+00:00 app[web.1]: 10.63.251.11 - - [21/Oct/2020 13:15:44] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:15:44.254610+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=ff9645cf-9415-4c97-b1f2-9faf4f24cf64 fwd="138.16.128.0" dyno=web.1 connect=1ms service=13ms status=200 bytes=155 protocol=https
2020-10-21T13:15:44.590257+00:00 app[web.1]: AB_TESTING: B 1603285891918 1603286144300 mp4 fppdk
2020-10-21T13:15:44.591265+00:00 app[web.1]: 10.63.251.11 - - [21/Oct/2020 13:15:44] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:15:44.595656+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=bc103375-91b0-43bd-b4d9-e39b279190e5 fwd="138.16.128.0" dyno=web.1 connect=1ms service=10ms status=200 bytes=155 protocol=https
2020-10-21T13:15:45.063805+00:00 app[web.1]: AB_TESTING: B 1603285891918 1603286144867 mp3 fppdk
2020-10-21T13:15:45.076925+00:00 app[web.1]: 10.63.251.11 - - [21/Oct/2020 13:15:45] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:15:45.086394+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=76aa3c92-c914-4b6d-a00c-c36b3f625105 fwd="138.16.128.0" dyno=web.1 connect=1ms service=35ms status=200 bytes=155 protocol=https
2020-10-21T13:15:46.262773+00:00 app[web.1]: AB_TESTING: B 1603285891918 1603286146050 mp1 fppdk
2020-10-21T13:15:46.263747+00:00 app[web.1]: 10.63.251.11 - - [21/Oct/2020 13:15:46] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:15:46.268655+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3d8dd7d6-d32e-4823-b918-fcfcf3f1aac6 fwd="138.16.128.0" dyno=web.1 connect=1ms service=38ms status=200 bytes=155 protocol=https
2020-10-21T13:15:47.660688+00:00 app[web.1]: AB_TESTING: B 1603285891918 1603286147476 mp2 fppdk
2020-10-21T13:15:47.661512+00:00 app[web.1]: 10.63.251.11 - - [21/Oct/2020 13:15:47] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:15:47.674099+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=0ddb594d-d487-4746-9de5-ba9d1eae1fb0 fwd="138.16.128.0" dyno=web.1 connect=1ms service=14ms status=200 bytes=155 protocol=https
2020-10-21T13:15:49.512784+00:00 app[web.1]: 10.63.251.11 - - [21/Oct/2020 13:15:49] "[37mGET /checkout?version=B&mp1=1&mp4=1&mp3=2&mp2=1 HTTP/1.1[0m" 200 -
2020-10-21T13:15:49.516554+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=1&mp4=1&mp3=2&mp2=1" host=pacific-dawn-35735.herokuapp.com request_id=677924c5-548a-4bdf-a1cd-eb53f03cbcf6 fwd="138.16.128.0" dyno=web.1 connect=1ms service=10ms status=200 bytes=5236 protocol=https
2020-10-21T13:15:50.080210+00:00 app[web.1]: AB_TESTING: C 1603286149875 0 0 fppdk
2020-10-21T13:15:50.083243+00:00 app[web.1]: 10.63.251.11 - - [21/Oct/2020 13:15:50] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:15:50.087103+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=14688146-4de2-4c28-80aa-074fb561763d fwd="138.16.128.0" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:18:36.296593+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:18:36] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:18:36.300033+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=d778fd8d-253a-4f45-97ed-883cff459bba fwd="116.204.255.36" dyno=web.1 connect=1ms service=3ms status=200 bytes=9763 protocol=https
2020-10-21T13:18:38.063428+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:18:38] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:18:38.067403+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=15ce70a0-5ece-407a-b95c-55ab7e365568 fwd="116.204.255.36" dyno=web.1 connect=1ms service=6ms status=200 bytes=1228 protocol=https
2020-10-21T13:18:38.309260+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 13:18:38] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:18:38.328178+00:00 app[web.1]: 10.183.68.6 - - [21/Oct/2020 13:18:38] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:18:38.328859+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=44181c61-6127-4959-bedf-87a745930b0c fwd="116.204.255.36" dyno=web.1 connect=1ms service=20ms status=200 bytes=243856 protocol=https
2020-10-21T13:18:38.335140+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=ddefaf9c-b71d-461f-a708-f0329266a046 fwd="116.204.255.36" dyno=web.1 connect=0ms service=9ms status=200 bytes=160216 protocol=https
2020-10-21T13:18:38.355409+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:18:38] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:18:38.365146+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=f5b88c48-a963-46d4-a7e0-56817eae71d3 fwd="116.204.255.36" dyno=web.1 connect=1ms service=10ms status=200 bytes=132444 protocol=https
2020-10-21T13:18:39.091033+00:00 app[web.1]: AB_TESTING: B 1603286292464 0 0 pfyxsxbzf
2020-10-21T13:18:39.092035+00:00 app[web.1]: 10.37.168.207 - - [21/Oct/2020 13:18:39] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:18:39.098020+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f15951c2-a14a-4548-858b-547620031cc4 fwd="116.204.255.36" dyno=web.1 connect=0ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T13:18:45.842798+00:00 app[web.1]: 10.183.68.6 - - [21/Oct/2020 13:18:45] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:18:45.874067+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=dc6f547a-fa7c-4065-bf67-7a084cffa23d fwd="116.204.255.36" dyno=web.1 connect=0ms service=39ms status=200 bytes=618300 protocol=https
2020-10-21T13:19:17.005583+00:00 app[web.1]: AB_TESTING: B 1603286292464 1603286330947 mp4 pfyxsxbzf
2020-10-21T13:19:17.006456+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:17] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:17.009996+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=bf3d60c5-d078-42b1-9242-ac3acc077cf5 fwd="116.204.255.36" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:19:18.815730+00:00 app[web.1]: AB_TESTING: B 1603286292464 1603286332762 mp1 pfyxsxbzf
2020-10-21T13:19:18.816638+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:18] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:18.820086+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=177a8456-fbbd-47e5-9984-b6c5269f3cd4 fwd="116.204.255.36" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:19:19.575903+00:00 app[web.1]: AB_TESTING: B 1603286292464 1603286333522 mp3 pfyxsxbzf
2020-10-21T13:19:19.576711+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:19] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:19.582864+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=97f1eef2-e3d0-4ab6-8104-da8eb50ddba8 fwd="116.204.255.36" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:19:20.588389+00:00 app[web.1]: AB_TESTING: B 1603286292464 1603286334513 mp2 pfyxsxbzf
2020-10-21T13:19:20.589129+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:20] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:20.592425+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a78d191a-03f4-4f17-bcb0-7c2b85fadb74 fwd="116.204.255.36" dyno=web.1 connect=2ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:19:21.502003+00:00 app[web.1]: AB_TESTING: B 1603286292464 1603286335450 mp2 pfyxsxbzf
2020-10-21T13:19:21.502607+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:21] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:21.505653+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=4ff9d80b-56b3-40d3-95a9-bf82e4fa9ed1 fwd="116.204.255.36" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:19:25.293727+00:00 app[web.1]: AB_TESTING: B 1603286292464 1603286339239 mp4 pfyxsxbzf
2020-10-21T13:19:25.294746+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:25] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:25.298238+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=7aba4e48-85a1-4eda-aa0e-c73f852ea225 fwd="116.204.255.36" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:19:28.718823+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:28] "[37mGET /checkout?version=B&mp1=1&mp4=2&mp3=1&mp2=2 HTTP/1.1[0m" 200 -
2020-10-21T13:19:28.721980+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=1&mp4=2&mp3=1&mp2=2" host=pacific-dawn-35735.herokuapp.com request_id=886daa9c-f667-464d-9b85-2441cb1354f5 fwd="116.204.255.36" dyno=web.1 connect=1ms service=3ms status=200 bytes=5236 protocol=https
2020-10-21T13:19:29.560341+00:00 app[web.1]: AB_TESTING: C 1603286343502 0 0 pfyxsxbzf
2020-10-21T13:19:29.561303+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:29] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:29.564575+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=547a5071-07f4-43b1-9c57-b776503f215a fwd="116.204.255.36" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:19:30.023748+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:30] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:19:30.026907+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=5abd4f1a-373e-45f3-b289-b12006328277 fwd="116.204.255.36" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T13:19:31.850221+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:31] "[37mGET /?version=B&mp1=1&mp4=2&mp3=1&mp2=2 HTTP/1.1[0m" 200 -
2020-10-21T13:19:31.853543+00:00 heroku[router]: at=info method=GET path="/?version=B&mp1=1&mp4=2&mp3=1&mp2=2" host=pacific-dawn-35735.herokuapp.com request_id=acaa1acd-8296-4863-8a76-1ec6514c5cfa fwd="116.204.255.36" dyno=web.1 connect=1ms service=4ms status=200 bytes=9763 protocol=https
2020-10-21T13:19:32.588511+00:00 app[web.1]: 10.150.246.196 - - [21/Oct/2020 13:19:32] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 206 -
2020-10-21T13:19:32.695828+00:00 app[web.1]: AB_TESTING: B 1603286346629 0 0 pfyxsxbzf
2020-10-21T13:19:32.696409+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 13:19:32] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:32.701981+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f62a1e4f-cf7c-4767-b1d0-570d5070fcfe fwd="116.204.255.36" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:19:33.031984+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 13:19:33] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 206 -
2020-10-21T13:19:33.039875+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=88cc1bb1-c171-4378-b6b2-0c3efe20ac9d fwd="116.204.255.36" dyno=web.1 connect=7ms service=7ms status=206 bytes=92396 protocol=https
2020-10-21T13:19:36.942698+00:00 app[web.1]: AB_TESTING: B 1603286346629 1603286350888 mp3 pfyxsxbzf
2020-10-21T13:19:36.943607+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 13:19:36] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:36.948991+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=739e9d04-e141-43bb-abd6-6a7ffcdae0d4 fwd="116.204.255.36" dyno=web.1 connect=1ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T13:19:39.185818+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 13:19:39] "[37mGET /checkout?version=B&mp1=1&mp4=2&mp3=2&mp2=2 HTTP/1.1[0m" 200 -
2020-10-21T13:19:39.189542+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=1&mp4=2&mp3=2&mp2=2" host=pacific-dawn-35735.herokuapp.com request_id=a6280bec-0602-48fb-95b0-4cf6bceacee3 fwd="116.204.255.36" dyno=web.1 connect=1ms service=4ms status=200 bytes=5236 protocol=https
2020-10-21T13:19:39.690311+00:00 app[web.1]: AB_TESTING: C 1603286353636 0 0 pfyxsxbzf
2020-10-21T13:19:39.691111+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 13:19:39] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:19:39.694686+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=e8308486-e1d3-4a66-9ea9-0459d5a3f61c fwd="116.204.255.36" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:27:22.164832+00:00 app[web.1]: 10.45.127.204 - - [21/Oct/2020 13:27:22] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T13:27:22.169161+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=8f110b70-87b3-44de-9704-d908a34a8beb fwd="96.30.103.210" dyno=web.1 connect=1ms service=5ms status=200 bytes=9763 protocol=https
2020-10-21T13:27:22.593089+00:00 app[web.1]: 10.45.127.204 - - [21/Oct/2020 13:27:22] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T13:27:22.597130+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=fc9587a3-f53c-4dac-9143-95487edfc85b fwd="96.30.103.210" dyno=web.1 connect=1ms service=9ms status=200 bytes=1228 protocol=https
2020-10-21T13:27:22.921160+00:00 app[web.1]: 10.45.127.204 - - [21/Oct/2020 13:27:22] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T13:27:22.955749+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=d6ed9aa1-7206-4b8f-9e62-7ba242580429 fwd="96.30.103.210" dyno=web.1 connect=2ms service=36ms status=200 bytes=243856 protocol=https
2020-10-21T13:27:22.981647+00:00 app[web.1]: 10.63.23.236 - - [21/Oct/2020 13:27:22] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:27:22.994204+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=e4ae9640-8f9f-47aa-aa05-efd0f10e3b2a fwd="96.30.103.210" dyno=web.1 connect=1ms service=14ms status=200 bytes=160216 protocol=https
2020-10-21T13:27:23.618140+00:00 app[web.1]: 10.123.144.18 - - [21/Oct/2020 13:27:23] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:27:23.633717+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=c58392b5-f762-46a7-a185-17fa5d372360 fwd="96.30.103.210" dyno=web.1 connect=1ms service=23ms status=200 bytes=132444 protocol=https
2020-10-21T13:27:23.984575+00:00 app[web.1]: AB_TESTING: B 1603286843743 0 0 npaqrwc
2020-10-21T13:27:23.985449+00:00 app[web.1]: 10.45.127.204 - - [21/Oct/2020 13:27:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:27:23.990153+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f2d09a21-9c31-4e1d-b300-c15e84535226 fwd="96.30.103.210" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T13:27:24.303579+00:00 app[web.1]: 10.45.127.204 - - [21/Oct/2020 13:27:24] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T13:27:24.346505+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=85bdda75-6b74-459b-948e-55447ba52e87 fwd="96.30.103.210" dyno=web.1 connect=1ms service=48ms status=200 bytes=618300 protocol=https
2020-10-21T13:27:25.443564+00:00 app[web.1]: 10.45.127.204 - - [21/Oct/2020 13:27:25] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T13:27:25.447027+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=220e887f-2bd8-4661-a689-b7156b5b6426 fwd="96.30.103.210" dyno=web.1 connect=1ms service=4ms status=404 bytes=394 protocol=https
2020-10-21T13:29:39.825442+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286978586 mp2 npaqrwc
2020-10-21T13:29:39.826374+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:39] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:39.831096+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=1ebe2a86-edc6-43f3-9325-08ac4d412e8d fwd="96.30.103.210" dyno=web.1 connect=1ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T13:29:40.505654+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286980080 mp3 npaqrwc
2020-10-21T13:29:40.508185+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:40.513426+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f01ca4ca-eec2-4200-baf8-c139d189838c fwd="96.30.103.210" dyno=web.1 connect=1ms service=7ms status=200 bytes=155 protocol=https
2020-10-21T13:29:41.014377+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286980768 mp4 npaqrwc
2020-10-21T13:29:41.015512+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:41] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:41.020613+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=b8405e59-048b-4736-8f45-31088ce1628b fwd="96.30.103.210" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:29:41.500375+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286981205 mp4 npaqrwc
2020-10-21T13:29:41.503501+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:41] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:41.511084+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=aac208d0-0f08-44c1-9073-2d7aaefb2fd8 fwd="96.30.103.210" dyno=web.1 connect=3ms service=13ms status=200 bytes=155 protocol=https
2020-10-21T13:29:42.001773+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286981748 mp4 npaqrwc
2020-10-21T13:29:42.002609+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:42] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:42.007567+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=ed1cd787-59e4-46c0-bff8-9cdda12daced fwd="96.30.103.210" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:29:42.540565+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286982245 mp4 npaqrwc
2020-10-21T13:29:42.541279+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:42] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:42.546482+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=eca67f9e-4322-4901-942d-2c5922bd89b5 fwd="96.30.103.210" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:29:43.050907+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286982793 mp4 npaqrwc
2020-10-21T13:29:43.051960+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:43] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:43.056554+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f8bbc40a-c1ec-4730-af52-70998645f4a8 fwd="96.30.103.210" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:29:43.368846+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286983194 mp4 npaqrwc
2020-10-21T13:29:43.369561+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:43] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:43.374298+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=fd77e2ee-9722-4ca0-8f8b-8ebb1ec79b8e fwd="96.30.103.210" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T13:29:43.839978+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286983519 mp4 npaqrwc
2020-10-21T13:29:43.840622+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:43] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:43.845565+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=af6e5793-d8b1-4335-9d02-811a35cb6ceb fwd="96.30.103.210" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T13:29:44.661550+00:00 app[web.1]: AB_TESTING: B 1603286843743 1603286984512 mp4 npaqrwc
2020-10-21T13:29:44.662440+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:44] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:44.667173+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9fc0a7d4-3898-43bf-9b3b-7828896ed9ca fwd="96.30.103.210" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T13:29:46.943518+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:46] "[37mGET /checkout?version=B&mp1=0&mp4=8&mp3=1&mp2=1 HTTP/1.1[0m" 200 -
2020-10-21T13:29:46.948972+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=0&mp4=8&mp3=1&mp2=1" host=pacific-dawn-35735.herokuapp.com request_id=73bdee93-183f-4e8c-9d97-e2b4c8f98f01 fwd="96.30.103.210" dyno=web.1 connect=1ms service=3ms status=200 bytes=5236 protocol=https
2020-10-21T13:29:48.976439+00:00 app[web.1]: AB_TESTING: C 1603286988775 0 0 npaqrwc
2020-10-21T13:29:48.977213+00:00 app[web.1]: 10.29.25.131 - - [21/Oct/2020 13:29:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T13:29:48.982176+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5f177c3b-4814-448e-97d0-4730c62d15af fwd="96.30.103.210" dyno=web.1 connect=1ms service=5ms status=200 bytes=155 protocol=https
2020-10-21T14:03:49.974808+00:00 heroku[web.1]: Idling
2020-10-21T14:03:49.977329+00:00 heroku[web.1]: State changed from up to down
2020-10-21T14:03:51.240921+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2020-10-21T14:03:51.381134+00:00 heroku[web.1]: Process exited with status 0
2020-10-21T19:15:41.187993+00:00 heroku[web.1]: Unidling
2020-10-21T19:15:41.189944+00:00 heroku[web.1]: State changed from down to starting
2020-10-21T19:15:44.816018+00:00 heroku[web.1]: Starting process with command `python app.py`
2020-10-21T19:15:47.503891+00:00 app[web.1]: version pageLoadTime clickTime clickHTMLElementId UniqueSession
2020-10-21T19:15:47.510037+00:00 app[web.1]: * Serving Flask app "app" (lazy loading)
2020-10-21T19:15:47.510073+00:00 app[web.1]: * Environment: production
2020-10-21T19:15:47.510131+00:00 app[web.1]: WARNING: This is a development server. Do not use it in a production deployment.
2020-10-21T19:15:47.510197+00:00 app[web.1]: Use a production WSGI server instead.
2020-10-21T19:15:47.510234+00:00 app[web.1]: * Debug mode: on
2020-10-21T19:15:47.518009+00:00 app[web.1]: * Running on http://0.0.0.0:47086/ (Press CTRL+C to quit)
2020-10-21T19:15:47.518755+00:00 app[web.1]: * Restarting with stat
2020-10-21T19:15:47.770461+00:00 app[web.1]: version pageLoadTime clickTime clickHTMLElementId UniqueSession
2020-10-21T19:15:47.781398+00:00 app[web.1]: * Debugger is active!
2020-10-21T19:15:47.782655+00:00 app[web.1]: * Debugger PIN: 714-745-788
2020-10-21T19:15:49.033438+00:00 heroku[web.1]: State changed from starting to up
2020-10-21T19:15:50.249124+00:00 app[web.1]: 10.7.193.239 - - [21/Oct/2020 19:15:50] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T19:15:50.273841+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=068c1fe9-7d7d-4442-87b6-2975381b4226 fwd="211.176.125.70" dyno=web.1 connect=1ms service=10ms status=200 bytes=9763 protocol=http
2020-10-21T19:50:33.224833+00:00 heroku[web.1]: Idling
2020-10-21T19:50:33.226895+00:00 heroku[web.1]: State changed from up to down
2020-10-21T19:50:34.420278+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2020-10-21T19:50:34.689583+00:00 heroku[web.1]: Process exited with status 0
2020-10-21T21:35:58.030430+00:00 heroku[web.1]: Unidling
2020-10-21T21:35:58.032696+00:00 heroku[web.1]: State changed from down to starting
2020-10-21T21:36:02.743032+00:00 heroku[web.1]: Starting process with command `python app.py`
2020-10-21T21:36:04.641203+00:00 app[web.1]: version pageLoadTime clickTime clickHTMLElementId UniqueSession
2020-10-21T21:36:04.646334+00:00 app[web.1]: * Serving Flask app "app" (lazy loading)
2020-10-21T21:36:04.646373+00:00 app[web.1]: * Environment: production
2020-10-21T21:36:04.646426+00:00 app[web.1]: WARNING: This is a development server. Do not use it in a production deployment.
2020-10-21T21:36:04.646462+00:00 app[web.1]: Use a production WSGI server instead.
2020-10-21T21:36:04.646494+00:00 app[web.1]: * Debug mode: on
2020-10-21T21:36:04.653988+00:00 app[web.1]: * Running on http://0.0.0.0:25231/ (Press CTRL+C to quit)
2020-10-21T21:36:04.655080+00:00 app[web.1]: * Restarting with stat
2020-10-21T21:36:04.905693+00:00 app[web.1]: version pageLoadTime clickTime clickHTMLElementId UniqueSession
2020-10-21T21:36:04.917372+00:00 app[web.1]: * Debugger is active!
2020-10-21T21:36:04.918558+00:00 app[web.1]: * Debugger PIN: 144-127-140
2020-10-21T21:36:04.976077+00:00 heroku[web.1]: State changed from starting to up
2020-10-21T21:36:06.089777+00:00 app[web.1]: 10.97.137.170 - - [21/Oct/2020 21:36:06] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T21:36:06.093118+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=2a442f78-b4f0-4820-a6d8-8ee626d1519d fwd="71.117.174.64" dyno=web.1 connect=0ms service=9ms status=200 bytes=9711 protocol=https
2020-10-21T21:36:06.226106+00:00 app[web.1]: 10.97.137.170 - - [21/Oct/2020 21:36:06] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T21:36:06.233544+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=062a2ff7-0452-4569-b2ff-d9d494b65ff4 fwd="71.117.174.64" dyno=web.1 connect=0ms service=3ms status=200 bytes=1228 protocol=https
2020-10-21T21:36:06.417673+00:00 app[web.1]: 10.97.137.170 - - [21/Oct/2020 21:36:06] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T21:36:06.418430+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 21:36:06] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:06.432555+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=d504c584-3afb-4d52-be38-f3d41c8f66a0 fwd="71.117.174.64" dyno=web.1 connect=0ms service=16ms status=200 bytes=243856 protocol=https
2020-10-21T21:36:06.446472+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=47003022-b8e7-43ea-a2ee-ef9d5ec22f93 fwd="71.117.174.64" dyno=web.1 connect=0ms service=30ms status=200 bytes=618300 protocol=https
2020-10-21T21:36:06.594684+00:00 app[web.1]: 10.97.137.170 - - [21/Oct/2020 21:36:06] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:06.601359+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=3cbc03b4-e3f0-45b8-bde3-541b3b52ff3f fwd="71.117.174.64" dyno=web.1 connect=0ms service=6ms status=200 bytes=132444 protocol=https
2020-10-21T21:36:06.871077+00:00 app[web.1]: AB_TESTING: A 1603316166252 0 0 jntzhfwx
2020-10-21T21:36:06.871650+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 21:36:06] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:06.876786+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=05971772-b799-4278-963f-d31d6187df81 fwd="71.117.174.64" dyno=web.1 connect=0ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:36:06.959831+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 21:36:06] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:06.968068+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=3a06cd5a-5637-4cc8-8f7a-ca6d5dd1c449 fwd="71.117.174.64" dyno=web.1 connect=0ms service=7ms status=200 bytes=160216 protocol=https
2020-10-21T21:36:08.935157+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 21:36:08] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:36:08.938486+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=d0af5e0e-1db1-4781-82d3-9c4c0ea5c872 fwd="71.117.174.64" dyno=web.1 connect=0ms service=2ms status=404 bytes=394 protocol=https
2020-10-21T21:36:18.624631+00:00 app[web.1]: AB_TESTING: A 1603316166252 1603316178006 mp1 jntzhfwx
2020-10-21T21:36:18.625170+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 21:36:18] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:18.628494+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=777a4fd2-48bd-46cf-9301-65914af29955 fwd="71.117.174.64" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:36:20.828916+00:00 app[web.1]: AB_TESTING: A 1603316166252 1603316180220 mp1 jntzhfwx
2020-10-21T21:36:20.829498+00:00 app[web.1]: 10.69.229.167 - - [21/Oct/2020 21:36:20] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:20.832631+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=79954948-dd8f-46cd-8a66-eef2680d4283 fwd="71.117.174.64" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:36:21.917534+00:00 app[web.1]: 10.45.241.211 - - [21/Oct/2020 21:36:21] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T21:36:21.920170+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=bc4c9a32-0acb-466b-a6fd-b38cda9a71c9 fwd="96.238.8.31" dyno=web.1 connect=1ms service=5ms status=200 bytes=9763 protocol=https
2020-10-21T21:36:21.955838+00:00 app[web.1]: 10.45.241.211 - - [21/Oct/2020 21:36:21] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T21:36:21.958281+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=7b74f2cc-32ea-46a8-b9f8-8b8a1008fa41 fwd="96.238.8.31" dyno=web.1 connect=1ms service=3ms status=200 bytes=1228 protocol=https
2020-10-21T21:36:21.980303+00:00 app[web.1]: 10.37.168.207 - - [21/Oct/2020 21:36:21] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:21.981242+00:00 app[web.1]: 10.45.241.211 - - [21/Oct/2020 21:36:21] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T21:36:21.993834+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=6d5cb5ad-0a0d-4103-bb66-080d92ac3cf0 fwd="96.238.8.31" dyno=web.1 connect=0ms service=15ms status=200 bytes=160216 protocol=https
2020-10-21T21:36:21.996508+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=a9e63092-e277-4977-bf44-b6e3b73ea010 fwd="96.238.8.31" dyno=web.1 connect=1ms service=18ms status=200 bytes=243856 protocol=https
2020-10-21T21:36:22.017776+00:00 app[web.1]: 10.73.248.115 - - [21/Oct/2020 21:36:22] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:22.018655+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 21:36:22] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:22.034986+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=67f1715d-f420-41e5-a28d-f5bf3b6caa9b fwd="96.238.8.31" dyno=web.1 connect=0ms service=18ms status=200 bytes=132444 protocol=https
2020-10-21T21:36:22.050619+00:00 app[web.1]: AB_TESTING: B 1603316170901 0 0 gxnotxk
2020-10-21T21:36:22.052278+00:00 app[web.1]: 10.45.241.211 - - [21/Oct/2020 21:36:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:22.054787+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f63a06e1-91c2-4542-91fe-d1806362ea8f fwd="96.238.8.31" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:36:22.055093+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=67dbf4d0-ed87-4ed0-9c8d-447cd26bfcc6 fwd="96.238.8.31" dyno=web.1 connect=0ms service=35ms status=200 bytes=618300 protocol=https
2020-10-21T21:36:22.134735+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 21:36:22] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:36:22.138176+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=b7cd6832-4b8f-415e-b7f4-1bebda161856 fwd="96.238.8.31" dyno=web.1 connect=0ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T21:36:22.773608+00:00 app[web.1]: AB_TESTING: B 1603316170901 1603316171646 mp1 gxnotxk
2020-10-21T21:36:22.774369+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 21:36:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:22.777778+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=c01b9717-63de-4b42-937a-88105fc2ee6e fwd="96.238.8.31" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:36:23.089204+00:00 app[web.1]: AB_TESTING: B 1603316170901 1603316171958 mp4 gxnotxk
2020-10-21T21:36:23.089906+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 21:36:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:23.098558+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a4b3a99c-18f1-466d-a0bf-6cbf4d1e8919 fwd="96.238.8.31" dyno=web.1 connect=1ms service=2ms status=200 bytes=155 protocol=https
2020-10-21T21:36:23.548932+00:00 app[web.1]: AB_TESTING: B 1603316170901 1603316172413 mp2 gxnotxk
2020-10-21T21:36:23.549452+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 21:36:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:23.558849+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9b2ec128-cb9c-4dc8-8c89-317358df1148 fwd="96.238.8.31" dyno=web.1 connect=0ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T21:36:24.046125+00:00 app[web.1]: AB_TESTING: B 1603316170901 1603316172917 mp3 gxnotxk
2020-10-21T21:36:24.046618+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 21:36:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:24.052132+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=8c8db125-e502-44ba-bbd1-985b90b09693 fwd="96.238.8.31" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:36:24.205129+00:00 app[web.1]: AB_TESTING: B 1603316170901 1603316173077 mp3 gxnotxk
2020-10-21T21:36:24.205662+00:00 app[web.1]: 10.71.137.172 - - [21/Oct/2020 21:36:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:24.209148+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=cfb033de-ccdb-4935-9c1e-1fc9e22b28ac fwd="96.238.8.31" dyno=web.1 connect=0ms service=2ms status=200 bytes=155 protocol=https
2020-10-21T21:36:51.670282+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:36:51] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T21:36:51.673907+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=7d5226f3-2f64-4f6b-9c4b-a01033d80512 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T21:36:51.743364+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:36:51] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T21:36:51.747338+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=2dc8aa43-46dd-44ce-8545-ae1f5f9813b2 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=1228 protocol=https
2020-10-21T21:36:51.840311+00:00 app[web.1]: 10.35.227.185 - - [21/Oct/2020 21:36:51] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T21:36:51.842171+00:00 app[web.1]: AB_TESTING: A 1603316211824 0 0 vnskbanl
2020-10-21T21:36:51.843407+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:36:51] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:51.846768+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=678da6a1-4616-4af7-868b-8c28941803ad fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:36:51.858819+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=986b1e9f-68f2-4aab-b0bf-1ed6b336cfd9 fwd="72.82.21.117" dyno=web.1 connect=1ms service=19ms status=200 bytes=243856 protocol=https
2020-10-21T21:36:51.860378+00:00 app[web.1]: 10.29.170.202 - - [21/Oct/2020 21:36:51] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:51.872535+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=21018e7e-1288-429a-ab0e-590dcaa9054c fwd="72.82.21.117" dyno=web.1 connect=2ms service=12ms status=200 bytes=132444 protocol=https
2020-10-21T21:36:51.877390+00:00 app[web.1]: 10.43.250.98 - - [21/Oct/2020 21:36:51] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:51.877941+00:00 app[web.1]: 10.45.241.211 - - [21/Oct/2020 21:36:51] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:36:51.890163+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=48ca9c39-4b79-47fe-9446-5cf3c915c604 fwd="72.82.21.117" dyno=web.1 connect=1ms service=14ms status=200 bytes=160216 protocol=https
2020-10-21T21:36:51.919763+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=02c82c23-c9a6-41d5-97de-3cfa5b333dcc fwd="72.82.21.117" dyno=web.1 connect=1ms service=43ms status=200 bytes=618300 protocol=https
2020-10-21T21:36:53.402289+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 21:36:53] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:36:53.404802+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=59d9e2fb-d011-4b8a-a3c1-e21b850acb16 fwd="72.82.21.117" dyno=web.1 connect=1ms service=2ms status=404 bytes=394 protocol=https
2020-10-21T21:36:57.394346+00:00 app[web.1]: AB_TESTING: A 1603316211824 1603316217341 mp1 vnskbanl
2020-10-21T21:36:57.394814+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:36:57] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:36:57.398692+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=47bdb464-d99e-4f0c-aeab-9ad13da83cb9 fwd="72.82.21.117" dyno=web.1 connect=4ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:37:08.522536+00:00 app[web.1]: AB_TESTING: A 1603316211824 1603316228509 mp2 vnskbanl
2020-10-21T21:37:08.523172+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:08] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:08.526381+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=b5b008af-833b-4554-8b8b-062be0f98b7b fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:11.067921+00:00 app[web.1]: AB_TESTING: A 1603316211824 1603316231049 mp3 vnskbanl
2020-10-21T21:37:11.069882+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:11] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:11.073215+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=324659d5-6d21-45ec-969a-09b218ae5011 fwd="72.82.21.117" dyno=web.1 connect=1ms service=8ms status=200 bytes=155 protocol=https
2020-10-21T21:37:13.040724+00:00 app[web.1]: 10.102.241.133 - - [21/Oct/2020 21:37:13] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T21:37:13.044465+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=88e67311-fb05-4a67-a5ff-d381761dda22 fwd="68.9.28.134" dyno=web.1 connect=0ms service=3ms status=200 bytes=9763 protocol=https
2020-10-21T21:37:13.139994+00:00 app[web.1]: 10.102.241.133 - - [21/Oct/2020 21:37:13] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T21:37:13.143444+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=d8ff6486-0a36-481e-ae04-a2f21eff0e8c fwd="68.9.28.134" dyno=web.1 connect=0ms service=3ms status=200 bytes=1228 protocol=https
2020-10-21T21:37:13.408157+00:00 app[web.1]: 10.102.241.133 - - [21/Oct/2020 21:37:13] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T21:37:13.419675+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=53ab51cf-8dcd-46ab-a654-9258ab008c9e fwd="68.9.28.134" dyno=web.1 connect=0ms service=11ms status=200 bytes=243856 protocol=https
2020-10-21T21:37:13.477709+00:00 app[web.1]: 10.30.91.53 - - [21/Oct/2020 21:37:13] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:37:13.481430+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:13] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:37:13.484904+00:00 app[web.1]: 10.142.192.223 - - [21/Oct/2020 21:37:13] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:37:13.503321+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=02b1d2f1-5257-4667-b7bb-4f4a162942fb fwd="68.9.28.134" dyno=web.1 connect=1ms service=32ms status=200 bytes=160216 protocol=https
2020-10-21T21:37:13.506776+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=02eee0df-8b88-4725-9e09-66b846dc16a1 fwd="68.9.28.134" dyno=web.1 connect=1ms service=33ms status=200 bytes=132444 protocol=https
2020-10-21T21:37:13.517456+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=e6eefa2a-42bc-4f77-b120-f965060f7766 fwd="68.9.28.134" dyno=web.1 connect=1ms service=43ms status=200 bytes=618300 protocol=https
2020-10-21T21:37:13.522383+00:00 app[web.1]: AB_TESTING: B 1603316233822 0 0 arej
2020-10-21T21:37:13.535054+00:00 app[web.1]: 10.102.241.133 - - [21/Oct/2020 21:37:13] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:13.538578+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=e4c4dd49-e0c1-49d6-a7b2-229bd28da92a fwd="68.9.28.134" dyno=web.1 connect=1ms service=30ms status=200 bytes=155 protocol=https
2020-10-21T21:37:13.744529+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:13] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:37:13.748443+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=377eb77b-bd01-45ef-9e61-f1bdc1d605ff fwd="68.9.28.134" dyno=web.1 connect=1ms service=12ms status=404 bytes=394 protocol=https
2020-10-21T21:37:13.781397+00:00 app[web.1]: AB_TESTING: A 1603316211824 1603316233745 mp4 vnskbanl
2020-10-21T21:37:13.783145+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:13] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:13.786743+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=da72025a-2ea0-4a20-8929-d3d23e1eaf50 fwd="72.82.21.117" dyno=web.1 connect=1ms service=10ms status=200 bytes=155 protocol=https
2020-10-21T21:37:15.112639+00:00 app[web.1]: AB_TESTING: B 1603316233822 1603316235405 mp1 arej
2020-10-21T21:37:15.113335+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:15] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:15.118694+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=c4733c13-84bf-4fdd-9780-9b910123badf fwd="68.9.28.134" dyno=web.1 connect=1ms service=44ms status=200 bytes=155 protocol=https
2020-10-21T21:37:15.660282+00:00 app[web.1]: AB_TESTING: B 1603316233822 1603316235993 mp4 arej
2020-10-21T21:37:15.661092+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:15] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:15.666203+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5de81029-7929-4786-b415-24d075200605 fwd="68.9.28.134" dyno=web.1 connect=1ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T21:37:17.362818+00:00 app[web.1]: AB_TESTING: B 1603316233822 1603316237694 mp2 arej
2020-10-21T21:37:17.363396+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:17] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:17.366403+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=0b83a7fc-0683-4d1b-a735-17d41e09e168 fwd="68.9.28.134" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:18.010487+00:00 app[web.1]: AB_TESTING: B 1603316233822 1603316238345 mp4 arej
2020-10-21T21:37:18.011054+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:18] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:18.013998+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=2009bfbb-d083-4145-9d9e-94f7750460da fwd="68.9.28.134" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:18.251561+00:00 app[web.1]: AB_TESTING: B 1603316233822 1603316238578 mp4 arej
2020-10-21T21:37:18.252110+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:18] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:18.256801+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a55b4577-a437-4c7c-b6e0-f30a2507d80b fwd="68.9.28.134" dyno=web.1 connect=5ms service=6ms status=200 bytes=155 protocol=https
2020-10-21T21:37:18.555344+00:00 app[web.1]: AB_TESTING: B 1603316233822 1603316238892 mp1 arej
2020-10-21T21:37:18.555934+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:18] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:18.559091+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5b8398dd-4ad4-4adf-9599-e0213f33af67 fwd="68.9.28.134" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:19.792487+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:19] "[37mGET /checkout?version=B&mp1=2&mp4=3&mp3=0&mp2=1 HTTP/1.1[0m" 200 -
2020-10-21T21:37:19.797586+00:00 heroku[router]: at=info method=GET path="/checkout?version=B&mp1=2&mp4=3&mp3=0&mp2=1" host=pacific-dawn-35735.herokuapp.com request_id=4c313075-f1fb-42da-a2b2-127af0751795 fwd="68.9.28.134" dyno=web.1 connect=1ms service=6ms status=200 bytes=5236 protocol=https
2020-10-21T21:37:19.862369+00:00 app[web.1]: AB_TESTING: A 1603316211824 1603316239823 mp1 vnskbanl
2020-10-21T21:37:19.862958+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:19] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:19.866291+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=3e0f1324-bdd9-4f72-b324-f85d1b7aa9d4 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:19.973059+00:00 app[web.1]: AB_TESTING: C 1603316240307 0 0 arej
2020-10-21T21:37:19.973625+00:00 app[web.1]: 10.28.44.109 - - [21/Oct/2020 21:37:19] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:19.976564+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a8f5ffb7-c22c-4273-8fe0-7447730378fe fwd="68.9.28.134" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:21.165281+00:00 app[web.1]: AB_TESTING: A 1603316211824 1603316241110 mp2 vnskbanl
2020-10-21T21:37:21.165901+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:21] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:21.174517+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=e822f078-78e1-41f4-923c-b0ac62d18f19 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:21.776364+00:00 app[web.1]: AB_TESTING: A 1603316211824 1603316241749 mp2 vnskbanl
2020-10-21T21:37:21.776963+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:21] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:21.780253+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=858e3ff0-78a3-4af2-b8c8-1ce27c9dbfbd fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:22.960226+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:22] "[37mGET /checkout?version=A&mp1=2&mp2=3&mp3=1&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T21:37:22.963490+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=2&mp2=3&mp3=1&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=3b5973dc-bf42-4835-b5ba-996a92cc0ccd fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=5236 protocol=https
2020-10-21T21:37:23.053269+00:00 app[web.1]: AB_TESTING: C 1603316243040 0 0 vnskbanl
2020-10-21T21:37:23.053871+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:23] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:23.057034+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=4bc4bd9e-2280-4720-be51-f4cac6183905 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:23.111493+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 21:37:23] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:37:23.113849+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=6b0695d8-dd56-4414-ab6d-1d04b1d95a4e fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T21:37:24.122356+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:24] "[37mGET /?version=A&mp1=2&mp2=3&mp3=1&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T21:37:24.125767+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=2&mp2=3&mp3=1&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=3f7c3882-96b1-47d4-88d0-a009d0206f99 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T21:37:24.208261+00:00 app[web.1]: AB_TESTING: A 1603316244168 0 0 vnskbanl
2020-10-21T21:37:24.208968+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:24] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:24.212372+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=253c1bc8-e486-4060-8982-7d93ba7dc162 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:24.276646+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 21:37:24] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:37:24.279150+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=99c4763c-0acf-4b5b-a6ff-3ea869f5ea57 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T21:37:25.093766+00:00 app[web.1]: AB_TESTING: A 1603316244168 1603316245082 mp1 vnskbanl
2020-10-21T21:37:25.094779+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:25] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:25.097615+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=d50958e3-81db-473b-a1ca-aab361b8235b fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:25.388760+00:00 app[web.1]: AB_TESTING: A 1603316244168 1603316245368 mp1 vnskbanl
2020-10-21T21:37:25.389330+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:25] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:25.392419+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5075c6d2-4fc8-41b7-8ec3-1697a6537151 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:26.357649+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:26] "[37mGET /checkout?version=A&mp1=4&mp2=3&mp3=1&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T21:37:26.360941+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=4&mp2=3&mp3=1&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=fcf65695-5e58-413c-aca7-112636b16a18 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=5236 protocol=https
2020-10-21T21:37:26.411128+00:00 app[web.1]: AB_TESTING: C 1603316246401 0 0 vnskbanl
2020-10-21T21:37:26.411784+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:26] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:26.414949+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=58d37e58-2340-4a09-adf3-d0b361e1ed80 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:26.461454+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 21:37:26] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:37:26.463798+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=836672b2-0fb6-47be-bb47-f75c2c7c5391 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T21:37:27.373977+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:27] "[37mGET /?version=A&mp1=4&mp2=3&mp3=1&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T21:37:27.377640+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=4&mp2=3&mp3=1&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=44c177f9-2a3f-4ee8-813c-f9ced4f1e71a fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T21:37:27.430764+00:00 app[web.1]: AB_TESTING: A 1603316247420 0 0 vnskbanl
2020-10-21T21:37:27.431870+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:27] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:27.435024+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=f9e05d46-3971-4fb7-90fc-81db01eea08c fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:27.511457+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 21:37:27] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:37:27.513878+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=d01c4a2e-f390-4a8f-928c-1f7fac6f8e5a fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T21:37:28.288331+00:00 app[web.1]: AB_TESTING: A 1603316247420 1603316248279 mp2 vnskbanl
2020-10-21T21:37:28.289109+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:28] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:28.292687+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=b192cdcf-be2f-4230-b006-e21d7cf6169c fwd="72.82.21.117" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:37:30.998986+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:30] "[37mGET /checkout?version=A&mp1=4&mp2=4&mp3=1&mp4=1 HTTP/1.1[0m" 200 -
2020-10-21T21:37:31.005201+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=4&mp2=4&mp3=1&mp4=1" host=pacific-dawn-35735.herokuapp.com request_id=ce131fe3-444e-4d87-94c9-10d2063ae0f8 fwd="72.82.21.117" dyno=web.1 connect=1ms service=6ms status=200 bytes=5236 protocol=https
2020-10-21T21:37:31.076319+00:00 app[web.1]: AB_TESTING: C 1603316251065 0 0 vnskbanl
2020-10-21T21:37:31.076844+00:00 app[web.1]: 10.9.226.141 - - [21/Oct/2020 21:37:31] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:31.080191+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=b307adf0-3bd7-473e-95f2-b657bc8de12e fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:31.139053+00:00 app[web.1]: 10.31.64.150 - - [21/Oct/2020 21:37:31] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:37:31.141461+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=104569a2-a3b2-4681-8491-80c9b4a7a5c2 fwd="72.82.21.117" dyno=web.1 connect=1ms service=3ms status=404 bytes=394 protocol=https
2020-10-21T21:37:36.051662+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:36] "[37mGET /checkout?version=A&mp1=2&mp2=0&mp3=0&mp4=0 HTTP/1.1[0m" 200 -
2020-10-21T21:37:36.052204+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=2&mp2=0&mp3=0&mp4=0" host=pacific-dawn-35735.herokuapp.com request_id=1ccd17c3-3a29-40e5-b08a-70097d921771 fwd="71.117.174.64" dyno=web.1 connect=1ms service=2ms status=200 bytes=5236 protocol=https
2020-10-21T21:37:36.308774+00:00 app[web.1]: AB_TESTING: C 1603316255707 0 0 jntzhfwx
2020-10-21T21:37:36.309348+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:36] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:36.310150+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=b8907a6f-53d3-4a95-a961-173f6aa101d9 fwd="71.117.174.64" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:37:37.638403+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:37] "[37mGET /?version=A&mp1=2&mp2=0&mp3=0&mp4=0 HTTP/1.1[0m" 200 -
2020-10-21T21:37:37.639121+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=2&mp2=0&mp3=0&mp4=0" host=pacific-dawn-35735.herokuapp.com request_id=a2694482-c8f3-4e06-923b-b67bcbaef292 fwd="71.117.174.64" dyno=web.1 connect=1ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T21:37:37.892778+00:00 app[web.1]: AB_TESTING: A 1603316257289 0 0 jntzhfwx
2020-10-21T21:37:37.893394+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:37] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:37.894045+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=25862c5c-fd53-4aa8-aec4-4e72585c960b fwd="71.117.174.64" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:40.024077+00:00 app[web.1]: AB_TESTING: A 1603316257289 1603316259414 mp4 jntzhfwx
2020-10-21T21:37:40.024886+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:40.025598+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=6864fbed-5192-4136-8c57-c9607b3c0cec fwd="71.117.174.64" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:37:40.922796+00:00 app[web.1]: AB_TESTING: A 1603316257289 1603316260302 mp4 jntzhfwx
2020-10-21T21:37:40.923373+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:40] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:40.924150+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=cb2e4fb7-ce1a-4be4-b846-d1e88c9fc598 fwd="71.117.174.64" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:42.417283+00:00 app[web.1]: AB_TESTING: A 1603316257289 1603316261802 mp3 jntzhfwx
2020-10-21T21:37:42.417831+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:42] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:42.418542+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=548a3398-3373-4bce-84aa-6f72be0319f6 fwd="71.117.174.64" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:43.104324+00:00 app[web.1]: AB_TESTING: A 1603316257289 1603316262499 mp3 jntzhfwx
2020-10-21T21:37:43.104836+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:43] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:43.105183+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=a37a2b16-701c-46b2-8360-fe747f78e782 fwd="71.117.174.64" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:44.491766+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:44] "[37mGET /checkout?version=A&mp1=2&mp2=0&mp3=2&mp4=2 HTTP/1.1[0m" 200 -
2020-10-21T21:37:44.492372+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=2&mp2=0&mp3=2&mp4=2" host=pacific-dawn-35735.herokuapp.com request_id=8738f79b-459b-496c-b4c6-e89fc8882930 fwd="71.117.174.64" dyno=web.1 connect=1ms service=3ms status=200 bytes=5236 protocol=https
2020-10-21T21:37:44.713036+00:00 app[web.1]: AB_TESTING: C 1603316264109 0 0 jntzhfwx
2020-10-21T21:37:44.714751+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:44] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:44.715348+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=9c544d98-e335-4150-bf8f-408d44d45c02 fwd="71.117.174.64" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:37:48.193602+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:48] "[37mGET /?version=A&mp1=2&mp2=0&mp3=2&mp4=2 HTTP/1.1[0m" 200 -
2020-10-21T21:37:48.194143+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=2&mp2=0&mp3=2&mp4=2" host=pacific-dawn-35735.herokuapp.com request_id=337a15a8-90f0-4a74-9fe9-ad107d00e67b fwd="71.117.174.64" dyno=web.1 connect=1ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T21:37:48.415951+00:00 app[web.1]: AB_TESTING: A 1603316267810 0 0 jntzhfwx
2020-10-21T21:37:48.416506+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:48] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:48.417159+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=ab015853-2366-4da2-8b72-aab761789dda fwd="71.117.174.64" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:37:50.054746+00:00 app[web.1]: AB_TESTING: A 1603316267810 1603316269449 mp2 jntzhfwx
2020-10-21T21:37:50.055383+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:50] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:50.055970+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=8f6577b8-10a0-46db-86c5-b55dbd13e2ae fwd="71.117.174.64" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:51.682991+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:37:51] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T21:37:51.688483+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=b1735d07-3e7a-479c-b196-b5893534e646 fwd="172.58.206.232" dyno=web.1 connect=0ms service=5ms status=200 bytes=9711 protocol=https
2020-10-21T21:37:52.239757+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:37:52] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T21:37:52.246454+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=acf00d9b-ce30-4b05-b4f7-582fe12f9fa9 fwd="172.58.206.232" dyno=web.1 connect=1ms service=7ms status=200 bytes=1228 protocol=https
2020-10-21T21:37:52.417746+00:00 app[web.1]: 10.35.222.75 - - [21/Oct/2020 21:37:52] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:37:52.428944+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=fc0647a3-cf83-410d-9f2a-4fc816a3685e fwd="172.58.206.232" dyno=web.1 connect=1ms service=12ms status=200 bytes=160216 protocol=https
2020-10-21T21:37:52.456607+00:00 app[web.1]: AB_TESTING: A 1603316272348 0 0 ypudzqmuk
2020-10-21T21:37:52.457298+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:37:52] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:52.459642+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=b799d279-055d-4ae2-982d-834b3300ec90 fwd="172.58.206.232" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:52.527204+00:00 app[web.1]: 10.35.179.103 - - [21/Oct/2020 21:37:52] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:37:52.529677+00:00 app[web.1]: 10.43.182.207 - - [21/Oct/2020 21:37:52] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:37:52.541671+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=3c859150-385e-4aaa-b40d-515f84085268 fwd="172.58.206.232" dyno=web.1 connect=1ms service=13ms status=200 bytes=132444 protocol=https
2020-10-21T21:37:52.547380+00:00 app[web.1]: 10.31.87.172 - - [21/Oct/2020 21:37:52] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T21:37:52.563383+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=a73adda3-7533-4c22-a207-7f1d57f0d65c fwd="172.58.206.232" dyno=web.1 connect=0ms service=15ms status=200 bytes=243856 protocol=https
2020-10-21T21:37:52.577570+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=59f08b22-a588-4ffd-a80f-bd0f7f9e53cd fwd="172.58.206.232" dyno=web.1 connect=0ms service=49ms status=200 bytes=618300 protocol=https
2020-10-21T21:37:52.808863+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:52] "[37mGET /checkout?version=A&mp1=2&mp2=1&mp3=2&mp4=2 HTTP/1.1[0m" 200 -
2020-10-21T21:37:52.812044+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=2&mp2=1&mp3=2&mp4=2" host=pacific-dawn-35735.herokuapp.com request_id=14cb1a3a-8e03-4a46-9de0-157c22e99cbf fwd="71.117.174.64" dyno=web.1 connect=1ms service=6ms status=200 bytes=5236 protocol=https
2020-10-21T21:37:53.051279+00:00 app[web.1]: AB_TESTING: C 1603316272443 0 0 jntzhfwx
2020-10-21T21:37:53.051958+00:00 app[web.1]: 10.47.180.171 - - [21/Oct/2020 21:37:53] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:53.058834+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=ccc2e97b-8e87-48c4-9c9d-128d098b6cda fwd="71.117.174.64" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:37:53.742894+00:00 app[web.1]: 10.138.162.166 - - [21/Oct/2020 21:37:53] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:37:53.746225+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=59d9c2b2-7234-4b99-b6ca-fada8ff49270 fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=404 bytes=394 protocol=https
2020-10-21T21:37:54.451301+00:00 app[web.1]: AB_TESTING: A 1603316272348 1603316274364 mp4 ypudzqmuk
2020-10-21T21:37:54.451840+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:37:54] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:54.453975+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=98d93625-25f1-4994-bef3-66398764d68d fwd="172.58.206.232" dyno=web.1 connect=0ms service=14ms status=200 bytes=155 protocol=https
2020-10-21T21:37:54.624901+00:00 app[web.1]: AB_TESTING: A 1603316272348 1603316274549 mp4 ypudzqmuk
2020-10-21T21:37:54.625377+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:37:54] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:54.627645+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=76809bd5-311b-4f69-bdb5-86ccb9c9ae26 fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=200 bytes=155 protocol=https
2020-10-21T21:37:54.795598+00:00 app[web.1]: AB_TESTING: A 1603316272348 1603316274697 mp4 ypudzqmuk
2020-10-21T21:37:54.796338+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:37:54] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:54.798687+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=721f224b-51c3-4b74-a8f2-242304fe6f33 fwd="172.58.206.232" dyno=web.1 connect=1ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:55.044618+00:00 app[web.1]: AB_TESTING: A 1603316272348 1603316274951 mp4 ypudzqmuk
2020-10-21T21:37:55.045473+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:37:55] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:55.047852+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=4507cdd5-6e18-4f12-a879-b50fa81a6d95 fwd="172.58.206.232" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:37:55.223399+00:00 app[web.1]: AB_TESTING: A 1603316272348 1603316275141 mp4 ypudzqmuk
2020-10-21T21:37:55.224003+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:37:55] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:37:55.226217+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=21ddc494-09fd-497a-b57b-d718667afb10 fwd="172.58.206.232" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:38:03.282936+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:03] "[37mGET /checkout?version=A&mp1=0&mp2=0&mp3=0&mp4=5 HTTP/1.1[0m" 200 -
2020-10-21T21:38:03.289621+00:00 heroku[router]: at=info method=GET path="/checkout?version=A&mp1=0&mp2=0&mp3=0&mp4=5" host=pacific-dawn-35735.herokuapp.com request_id=96081f70-7e0a-4c26-a318-d6da5be9a18a fwd="172.58.206.232" dyno=web.1 connect=0ms service=7ms status=200 bytes=5236 protocol=https
2020-10-21T21:38:03.546802+00:00 app[web.1]: AB_TESTING: C 1603316283456 0 0 ypudzqmuk
2020-10-21T21:38:03.547392+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:03] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:38:03.549584+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=4a1af29a-d893-4286-b963-8670b53cb420 fwd="172.58.206.232" dyno=web.1 connect=0ms service=10ms status=200 bytes=155 protocol=https
2020-10-21T21:38:03.619530+00:00 app[web.1]: 10.138.162.166 - - [21/Oct/2020 21:38:03] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:38:03.622673+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=99fe110b-088a-4e63-bb32-927015ca6fcb fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=404 bytes=394 protocol=https
2020-10-21T21:38:05.134903+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:05] "[37mGET /?version=A&mp1=0&mp2=0&mp3=0&mp4=5 HTTP/1.1[0m" 200 -
2020-10-21T21:38:05.137526+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=0&mp2=0&mp3=0&mp4=5" host=pacific-dawn-35735.herokuapp.com request_id=63efb9ba-cca3-45d6-958c-98e9939249ad fwd="172.58.206.232" dyno=web.1 connect=0ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T21:38:05.461881+00:00 app[web.1]: AB_TESTING: A 1603316285375 0 0 ypudzqmuk
2020-10-21T21:38:05.462438+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:05] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:38:05.464722+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=d41af4f9-f10a-4e31-8ff8-0fe9ddbb3dbe fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=200 bytes=155 protocol=https
2020-10-21T21:38:05.547175+00:00 app[web.1]: 10.138.162.166 - - [21/Oct/2020 21:38:05] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2020-10-21T21:38:05.550391+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=pacific-dawn-35735.herokuapp.com request_id=59a740fd-9d9c-4c9d-8ac8-9a8e256af403 fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=404 bytes=394 protocol=https
2020-10-21T21:38:07.505016+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:07] "[37mGET /?version=A&mp1=0&mp2=0&mp3=0&mp4=5 HTTP/1.1[0m" 200 -
2020-10-21T21:38:07.507596+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=0&mp2=0&mp3=0&mp4=5" host=pacific-dawn-35735.herokuapp.com request_id=34f3d465-343c-4629-873b-ebac38ef91e2 fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=200 bytes=9711 protocol=https
2020-10-21T21:38:07.754937+00:00 app[web.1]: AB_TESTING: A 1603316287674 0 0 ypudzqmuk
2020-10-21T21:38:07.755632+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:07] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:38:07.757878+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=5ba00cf6-6680-44c9-a1aa-b99af91521bc fwd="172.58.206.232" dyno=web.1 connect=0ms service=3ms status=200 bytes=155 protocol=https
2020-10-21T21:38:08.985082+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:08] "[37mGET /?version=A&mp1=0&mp2=0&mp3=0&mp4=5 HTTP/1.1[0m" 200 -
2020-10-21T21:38:08.987859+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=0&mp2=0&mp3=0&mp4=5" host=pacific-dawn-35735.herokuapp.com request_id=82dc43c9-d475-477f-9cf2-a495c6ac4787 fwd="172.58.206.232" dyno=web.1 connect=0ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T21:38:09.244646+00:00 app[web.1]: AB_TESTING: A 1603316289159 0 0 ypudzqmuk
2020-10-21T21:38:09.245185+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:09] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:38:09.247458+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=cc55af44-9843-439e-aa6b-2d93dbcf57c0 fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=200 bytes=155 protocol=https
2020-10-21T21:38:10.386158+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:10] "[37mGET /?version=A&mp1=0&mp2=0&mp3=0&mp4=5 HTTP/1.1[0m" 200 -
2020-10-21T21:38:10.388467+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=0&mp2=0&mp3=0&mp4=5" host=pacific-dawn-35735.herokuapp.com request_id=889bd439-9225-4211-9404-6b60667ffb9d fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=200 bytes=9711 protocol=https
2020-10-21T21:38:10.653811+00:00 app[web.1]: AB_TESTING: A 1603316290549 0 0 ypudzqmuk
2020-10-21T21:38:10.654321+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:10] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:38:10.658790+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=e630a6d0-8331-4d03-9087-ee7314c13c5a fwd="172.58.206.232" dyno=web.1 connect=0ms service=14ms status=200 bytes=155 protocol=https
2020-10-21T21:38:11.354818+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:11] "[37mGET /?version=A&mp1=0&mp2=0&mp3=0&mp4=5 HTTP/1.1[0m" 200 -
2020-10-21T21:38:11.363683+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=0&mp2=0&mp3=0&mp4=5" host=pacific-dawn-35735.herokuapp.com request_id=4505f6b4-ff86-4d28-849d-0d0d34045475 fwd="172.58.206.232" dyno=web.1 connect=0ms service=9ms status=200 bytes=9711 protocol=https
2020-10-21T21:38:11.605802+00:00 app[web.1]: AB_TESTING: A 1603316291518 0 0 ypudzqmuk
2020-10-21T21:38:11.606299+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:11] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:38:11.608509+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=70325111-7e89-4506-ab4a-504d66f6f134 fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=200 bytes=155 protocol=https
2020-10-21T21:38:12.055617+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:12] "[37mGET /?version=A&mp1=0&mp2=0&mp3=0&mp4=5 HTTP/1.1[0m" 200 -
2020-10-21T21:38:12.057994+00:00 heroku[router]: at=info method=GET path="/?version=A&mp1=0&mp2=0&mp3=0&mp4=5" host=pacific-dawn-35735.herokuapp.com request_id=9ffb68f6-09fe-432d-84d5-0fd234fa7407 fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=200 bytes=9711 protocol=https
2020-10-21T21:38:12.334841+00:00 app[web.1]: AB_TESTING: A 1603316292251 0 0 ypudzqmuk
2020-10-21T21:38:12.335445+00:00 app[web.1]: 10.171.230.57 - - [21/Oct/2020 21:38:12] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:38:12.340210+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=28509a90-0ee3-4b30-bd11-adf506572e91 fwd="172.58.206.232" dyno=web.1 connect=0ms service=2ms status=200 bytes=155 protocol=https
2020-10-21T21:38:22.486998+00:00 app[web.1]: 10.69.85.146 - - [21/Oct/2020 21:38:22] "[37mGET / HTTP/1.1[0m" 200 -
2020-10-21T21:38:22.490321+00:00 heroku[router]: at=info method=GET path="/" host=pacific-dawn-35735.herokuapp.com request_id=ac5e043c-dc1c-43d1-8717-c6076695d78b fwd="146.115.72.176" dyno=web.1 connect=0ms service=3ms status=200 bytes=9711 protocol=https
2020-10-21T21:38:22.532914+00:00 app[web.1]: 10.69.85.146 - - [21/Oct/2020 21:38:22] "[37mGET /static/main.css HTTP/1.1[0m" 200 -
2020-10-21T21:38:22.536312+00:00 heroku[router]: at=info method=GET path="/static/main.css" host=pacific-dawn-35735.herokuapp.com request_id=acb35804-e7f4-405d-bdcf-2cc019bb50c1 fwd="146.115.72.176" dyno=web.1 connect=0ms service=3ms status=200 bytes=1228 protocol=https
2020-10-21T21:38:22.545031+00:00 app[web.1]: 10.51.205.51 - - [21/Oct/2020 21:38:22] "[37mGET /static/coppercombo.png HTTP/1.1[0m" 200 -
2020-10-21T21:38:22.558284+00:00 heroku[router]: at=info method=GET path="/static/coppercombo.png" host=pacific-dawn-35735.herokuapp.com request_id=fa948348-b518-47f9-af26-1d777de93af2 fwd="146.115.72.176" dyno=web.1 connect=0ms service=12ms status=200 bytes=243856 protocol=https
2020-10-21T21:38:22.566352+00:00 app[web.1]: 10.69.85.146 - - [21/Oct/2020 21:38:22] "[37mGET /static/geoprickly.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:38:22.587557+00:00 heroku[router]: at=info method=GET path="/static/geoprickly.jpg" host=pacific-dawn-35735.herokuapp.com request_id=666de1bf-bdde-4d2f-b0bf-629703cecff2 fwd="146.115.72.176" dyno=web.1 connect=0ms service=21ms status=200 bytes=618300 protocol=https
2020-10-21T21:38:22.596904+00:00 app[web.1]: 10.31.120.51 - - [21/Oct/2020 21:38:22] "[37mGET /static/garden.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:38:22.599820+00:00 app[web.1]: 10.43.250.98 - - [21/Oct/2020 21:38:22] "[37mGET /static/garden-combo.jpg HTTP/1.1[0m" 200 -
2020-10-21T21:38:22.611140+00:00 app[web.1]: AB_TESTING: A 1603316302372 0 0 ywxtrkic
2020-10-21T21:38:22.611788+00:00 app[web.1]: 10.63.193.41 - - [21/Oct/2020 21:38:22] "[37mPOST /data HTTP/1.1[0m" 200 -
2020-10-21T21:38:22.614083+00:00 heroku[router]: at=info method=GET path="/static/garden-combo.jpg" host=pacific-dawn-35735.herokuapp.com request_id=6b5627db-6e1e-4e22-92e6-eef0402d4762 fwd="146.115.72.176" dyno=web.1 connect=1ms service=15ms status=200 bytes=160216 protocol=https
2020-10-21T21:38:22.614532+00:00 heroku[router]: at=info method=POST path="/data" host=pacific-dawn-35735.herokuapp.com request_id=7dada72a-b733-4d2f-98cf-a67689da21e2 fwd="146.115.72.176" dyno=web.1 connect=1ms service=4ms status=200 bytes=155 protocol=https
2020-10-21T21:38:22.614782+00:00 heroku[router]: at=info method=GET path="/static/garden.jpg" host=pacific-dawn-35735.herokuapp.com request_id=450d5f22-2a1e-440f-aa3f-f611617acdfd fwd="146.115.72.176" dyno=web.1 connect=1ms service=10ms status=200 bytes=132444 protocol=https
2020-10-21T21:38:22.724743+00:00 app[web.1]: 10.31.120.51 - - [21/Oct/2020 21:38:22] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -