-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch_log_session_3_CLEAN.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
13049 lines (13049 loc) · 791 KB
/
search_log_session_3_CLEAN.csv
File metadata and controls
13049 lines (13049 loc) · 791 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id;uuid;session_id;utm_source;utm_medium;utm_campaign
4255;1534019404.1726608826;1726610240;;;(not set)
4257;1544215904.1725304369;1726613742;google;organic;(not set)
4258;2122792873.1726614284;1726614307;google;cpc;(not set)
4259;85389975.1726614091;1726614366;google;cpc;(not set)
4260;85389975.1726614091;1726618263;google;cpc;(not set)
4261;1484598938.1722411850;1726622070;;;(not set)
4262;957366568.1714088217;1726627204;l.facebook.com;referral;(not set)
4263;499388700.1726628127;1726628166;google;organic;(not set)
4264;887256123.1718476756;1726629503;google;cpc;(not set)
4265;1623560660.1713989532;1726630482;;;(not set)
4266;970010414.1721850204;1726630663;;;(not set)
4267;1623560660.1713989532;1726630743;;;(not set)
4268;1623560660.1713989532;1726631349;;;(not set)
4269;2145309317.1726631555;1726631604;;;(not set)
4270;493090045.1726632992;1726633048;;;(not set)
4271;1728527294.1726633327;1726633388;google;cpc;(not set)
4272;218822339.1726633440;1726633533;google;cpc;(not set)
4273;1684514725.1726633574;1726633597;;;(not set)
4274;1181902011.1721457838;1726633868;(direct);(none);(not set)
4275;1538208220.1721451668;1726633981;facebook;cpc;campaign_1
4276;1462885325.1726634368;1726634526;;;(not set)
4277;439205377.1726634344;1726634649;;;(not set)
4278;1971804983.1726634508;1726634662;;;(not set)
4279;919535513.1726634607;1726634838;(direct);(none);(not set)
4280;604876604.1721536488;1726635021;google;cpc;(not set)
4281;1218103037.1726634932;1726635022;google;cpc;(not set)
4282;836310086.1714714301;1726635133;;;(not set)
4283;1035466907.1720186912;1726635824;google;cpc;(not set)
4284;1817262108.1726148817;1726636152;google;cpc;(not set)
4286;1225513416.1725006719;1726637018;facebook;cpc;campaign_1
4287;1605045502.1726637015;1726637056;google;cpc;(not set)
4288;1602427976.1726636968;1726637117;;;(not set)
4289;1165632336.1726199126;1726637232;facebook;cpc;campaign_1
4290;1889930189.1724078980;1726637312;;;(not set)
4291;1797841328.1726637146;1726637372;;;(not set)
4292;1068486913.1726637351;1726637394;google;cpc;(not set)
4293;888771995.1726637288;1726637417;;;(not set)
4294;884002205.1726633136;1726637650;google;cpc;(not set)
4295;1845768392.1726637863;1726637901;google;organic;(not set)
4296;384819886.1716989033;1726637970;;;(not set)
4297;942542722.1726516756;1726638048;google;cpc;(not set)
4298;27690155.1726638032;1726638062;facebook;cpc;campaign_1
4299;112414870.1726638306;1726638345;facebook;cpc;campaign_1
4300;1235998633.1726638525;1726638574;google;cpc;(not set)
4301;1302856589.1714026790;1726638748;;;(not set)
4302;728484058.1726638513;1726638764;;;(not set)
4303;603246760.1724768295;1726638912;google;cpc;(not set)
4304;952516587.1715600009;1726638921;facebook;cpc;campaign_1
4305;1963866598.1725453955;1726638967;;;(not set)
4306;132363178.1726639065;1726639292;;;(not set)
4307;476285663.1726639319;1726639381;google;cpc;(not set)
4308;1243768431.1725602996;1726639589;facebook;cpc;campaign_1
4309;979456052.1725548715;1726639885;google;cpc;(not set)
4310;1713733553.1725002515;1726640006;google;cpc;(not set)
4311;188168072.1724318235;1726640058;google;cpc;(not set)
4312;235913246.1722156616;1726640142;;;(not set)
4313;532166978.1726640220;1726640245;google;cpc;(not set)
4314;1642810897.1721646769;1726640386;google;cpc;hu_brand
4315;417955797.1726634072;1726640402;;;(not set)
4316;536454427.1726640277;1726640405;;;(not set)
4317;2029133184.1726640463;1726640531;(direct);(none);(not set)
4318;eb846ea9-74a1-4c93-9607-0a0fc235d5b2;1726641009;(direct);(none);(not set)
4319;44d9e7a6-e572-446e-aa65-b21e50cf62a9;1726641009;(direct);(none);(not set)
4320;9ad16e34-3d6f-4bf8-9e55-bcf84c72eb10;1726641009;(direct);(none);(not set)
4321;9933b3b7-8e72-48be-b429-7d91e94ef51a;1726641009;(direct);(none);(not set)
4322;448695851.1726641029;1726641180;;;(not set)
4323;954228396.1726641128;1726641226;google;cpc;(not set)
4325;c40e835a-c2ca-4118-9d53-0cac42444cc5;1726641009;(direct);(none);(not set)
4326;33e258da-1607-4d19-a5bf-2ec714faab48;1726641009;(direct);(none);(not set)
4327;19664f84-d7a1-4092-b774-31cda2cc84ef;1726641009;google;organic;(not set)
4328;1953759129.1726641561;1726641604;google;cpc;(not set)
4329;59d3213d-37a2-4c84-be6e-74a06ce8fdcf;1726641634;(direct);(none);(not set)
4330;1495489132.1723753501;1726641838;;;(not set)
4331;1240901162.1726641839;1726641879;google;organic;(not set)
4332;1700226634.1726642053;1726642122;google;cpc;(not set)
4333;a197f224-62ff-40fd-8f21-26f55807306a;1726641009;google;organic;(not set)
4334;17bab3e7-6d15-4c9a-bdd3-336ce8259db5;1726642647;google;cpc;(not set)
4335;1464761280.1726642655;1726642647;google;cpc;(not set)
4336;769663059.1726642950;1726642983;redir.d-edgeconnect.media;referral;(not set)
4337;763676192.1726642679;1726642986;;;(not set)
4338;1922410557.1720163693;1726643068;;;(not set)
4339;218822339.1726633440;1726643090;google;cpc;(not set)
4340;2113315578.1720030897;1726643206;;;(not set)
4341;1941241187.1726236793;1726643641;;;(not set)
4342;1981076210.1714022124;1726643704;;;(not set)
4344;1899618999.1714015295;1726644004;google;organic;(not set)
4346;574828767.1724829557;1726644023;google;cpc;(not set)
4347;199236435.1726643863;1726644279;google;cpc;(not set)
4350;1388332849.1726042229;1726645756;google;cpc;(not set)
4351;1289188088.1721736041;1726645880;google;cpc;(not set)
4352;12787948.1715181120;1726646066;google;cpc;(not set)
4353;1073066060.1726646032;1726646280;;;(not set)
4354;1550594793.1714028899;1726646285;;;(not set)
4355;2020026522.1726646605;1726646647;google;cpc;(not set)
4356;260642298.1725548205;1726646761;google;cpc;(not set)
4357;1873498610.1726314254;1726646893;;;(not set)
4358;59312769.1726646837;1726646905;google;cpc;(not set)
4359;1048996059.1726646825;1726647013;;;(not set)
4360;639eb898-0e12-446f-9fc6-5cc21c5ce3a6;1726647086;google;cpc;(not set)
4361;907634214.1726647061;1726647087;google;cpc;(not set)
4362;285247133.1726647083;1726647102;google;organic;(not set)
4363;75912636.1726647154;1726647175;google;organic;(not set)
4364;1066515433.1726647432;1726647432;live;organic;(not set)
4365;1868748768.1725863138;1726647502;google;organic;(not set)
4366;1716012950.1711040902;1726647607;hotelcms.hu;referral;(not set)
4367;2071211918.1726647652;1726647730;google;cpc;(not set)
4368;2014207231.1726642950;1726647784;google;cpc;(not set)
4370;1971804983.1726634508;1726647840;;;(not set)
4371;329337488.1726647797;1726647849;;;(not set)
4372;192467191.1726647644;1726648296;google;cpc;(not set)
4373;fe3ac779-c00c-4a9f-b6cb-2bcc652c4ebe;1726648405;google;cpc;(not set)
4374;4b0f7573-acec-47dd-b98b-f6e4ad049fc8;1726648405;google;cpc;(not set)
4375;320824436.1726648475;1726648523;google;cpc;(not set)
4376;641532353.1726510067;1726648781;google;cpc;(not set)
4377;712515966.1726648988;1726648923;google;cpc;(not set)
4378;636540922.1726577647;1726649105;google;cpc;(not set)
4379;2083278935.1726648448;1726649202;;;(not set)
4380;1010412519.1726566873;1726649238;google;organic;(not set)
4381;3063382.1726649263;1726649310;google;cpc;(not set)
4382;1253302892.1726231007;1726649449;facebook;cpc;campaign_1
4383;373840101.1726644590;1726649506;google;cpc;(not set)
4384;784574589.1726649441;1726649518;google;cpc;(not set)
4385;1310977452.1726649514;1726649551;facebook;cpc;campaign_1
4386;1484555549.1726649373;1726649592;google;cpc;(not set)
4387;785870542.1726649879;1726649945;live;organic;(not set)
4388;605928605.1726647758;1726650168;google;cpc;(not set)
4389;883289746.1726650061;1726650172;google;cpc;(not set)
4390;1077327452.1726650220;1726650260;google;cpc;(not set)
4391;1804284048.1726650222;1726650314;;;(not set)
4392;954709922.1726650221;1726650356;google;cpc;(not set)
4393;471601185.1726650320;1726650363;google;cpc;(not set)
4394;128410831.1726650376;1726650389;google;cpc;(not set)
4395;491583136.1726492707;1726650573;google;cpc;(not set)
4396;1363289854.1726650551;1726650595;facebook;cpc;campaign_1
4397;1579123358.1726650725;1726650757;google;cpc;(not set)
4398;53929241.1713808359;1726650903;live;organic;(not set)
4403;674217773.1725619711;1726651641;redir.d-edgeconnect.media;referral;(not set)
4404;2094638630.1726651743;1726651811;google;cpc;(not set)
4405;447198934.1724667102;1726651858;google;cpc;(not set)
4406;2136182393.1722859364;1726652003;l.instagram.com;referral;(not set)
4408;1582461412.1716829339;1726652169;l.facebook.com;referral;(not set)
4409;276531283.1726651957;1726652205;;;(not set)
4410;554837453.1725777605;1726652212;facebook;cpc;campaign_1
4411;447198934.1724667102;1726652244;redir.d-edgeconnect.media;referral;(not set)
4412;269800609.1726652221;1726652266;;;(not set)
4413;1088921417.1725528361;1726652276;google;cpc;(not set)
4414;308002027.1726488621;1726652601;google;cpc;(not set)
4415;1631793533.1726652599;1726652670;;;(not set)
4416;954709922.1726650221;1726653040;google;cpc;(not set)
4417;56184053.1726653118;1726653205;;;(not set)
4418;b0405f3d-c9f9-4028-abd2-0aa2344b833b;1726653211;redir.d-edgeconnect.media;referral;(not set)
4419;97131264-2811-4ba3-afad-b69286b87d06;1726653211;redir.d-edgeconnect.media;referral;(not set)
4420;1644406876.1726653263;1726653461;google;cpc;(not set)
4421;2006995398.1726653393;1726653556;(direct);(none);(not set)
4422;498056633.1726652892;1726653651;google;cpc;(not set)
4423;687497279.1726653601;1726653678;;;(not set)
4424;469612258.1725360457;1726654045;google;cpc;(not set)
4425;1061072490.1726653989;1726654082;google;cpc;(not set)
4426;1385768052.1726654086;1726654331;(direct);(none);(not set)
4427;1879846432.1726653799;1726654519;;;(not set)
4428;1472272554.1725973543;1726655078;;;(not set)
4429;1638881644.1726655031;1726655193;google;cpc;(not set)
4430;1077327452.1726650220;1726655202;google;cpc;(not set)
4431;6d91af03-3b61-4f0d-b413-0083018c785b;1726655547;facebook;cpc;campaign_1
4432;515653507.1726655553;1726655547;facebook;cpc;campaign_1
4433;874398879.1726654885;1726655721;google;cpc;(not set)
4434;1614074142.1726651907;1726655892;google;cpc;(not set)
4435;707679566.1726655715;1726656043;;;(not set)
4436;1562536017.1726656078;1726656195;google;organic;(not set)
4437;420714742.1726651277;1726656512;google;cpc;(not set)
4439;1679305588.1724743423;1726656682;google;organic;(not set)
4440;1292321669.1726656729;1726656739;google;organic;(not set)
4442;1022819362.1726654389;1726657166;google;cpc;hu_brand
4443;937042715.1726657221;1726657243;google;cpc;(not set)
4444;1804703864.1726641669;1726657291;redir.d-edgeconnect.media;referral;(not set)
4445;1211636493.1726657288;1726657474;google;cpc;(not set)
4446;2110594522.1726657152;1726657589;;;(not set)
4447;294515010.1725277747;1726657640;;;(not set)
4448;1022819362.1726654389;1726658063;google;cpc;(not set)
4449;56571486.1726658288;1726658345;live;organic;(not set)
4450;1630217811.1726658394;1726658485;google;cpc;(not set)
4451;907181584.1726657993;1726658528;google;organic;(not set)
4452;1373444346.1718512106;1726658858;(direct);(none);(not set)
4453;1602478294.1714129316;1726659057;google;organic;(not set)
4454;58406317.1725262825;1726659369;www.saferpay.com;referral;(not set)
4455;97190141.1724334921;1726659495;google;cpc;(not set)
4456;1041529805.1726647427;1726659502;google;cpc;(not set)
4457;485131463.1726659656;1726659671;;;(not set)
4459;1191100425.1724068825;1726660068;google;cpc;(not set)
4460;460269785.1726660067;1726660218;google;cpc;(not set)
4461;611348756.1726660269;1726660308;google;cpc;(not set)
4462;700952275.1719659062;1726660398;google;cpc;(not set)
4463;1306467371.1726660432;1726660506;google;cpc;(not set)
4464;1714046726.1726237667;1726660833;facebook;cpc;campaign_1
4465;1424391172.1726609297;1726660880;google;cpc;(not set)
4466;1629065953.1726660493;1726661215;;;(not set)
4467;1629065953.1726660493;1726661486;;;(not set)
4468;667234042.1726658228;1726661494;google;cpc;(not set)
4469;528337376.1724333036;1726661509;www.saferpay.com;referral;(not set)
4470;1375309937.1726661649;1726661687;google;cpc;(not set)
4471;2131342941.1726122158;1726661709;;;(not set)
4472;1982076664.1719410084;1726661876;google;cpc;(not set)
4473;390577555.1726501954;1726661938;facebook;cpc;campaign_1
4474;1110662854.1716838195;1726661970;;;(not set)
4475;1886370373.1724082826;1726662098;;;(not set)
4476;1049584862.1726662344;1726662468;google;cpc;(not set)
4477;983362637.1726662792;1726662892;facebook;cpc;campaign_1
4478;1103919569.1726433038;1726663107;google;cpc;(not set)
4479;1795682355.1726663121;1726663165;google;cpc;(not set)
4480;2096196732.1714381976;1726663245;google;cpc;(not set)
4481;194327735.1725980154;1726663266;google;organic;(not set)
4482;902475900.1726663376;1726663461;google;cpc;(not set)
4483;588935067.1726663042;1726663469;;;(not set)
4484;1111374310.1726663553;1726663596;google;cpc;(not set)
4485;33438575.1723726489;1726663659;google;organic;(not set)
4486;1281348164.1724932850;1726663752;google;cpc;(not set)
4487;1153768265.1726664075;1726664102;google;cpc;(not set)
4488;333401966.1725529867;1726664302;google;cpc;(not set)
4489;1524762920.1725540701;1726664307;google;cpc;(not set)
4490;132200216.1726664325;1726664371;google;cpc;(not set)
4491;613526431.1726664486;1726664533;google;cpc;(not set)
4492;1583295213.1726664874;1726664893;google;cpc;(not set)
4493;824061198.1726601076;1726664930;google;cpc;(not set)
4494;340235474.1726664748;1726664958;google;cpc;(not set)
4495;1129279880.1726664882;1726665183;google;cpc;(not set)
4496;661361995.1726665050;1726665187;;;(not set)
4497;1140534648.1713990720;1726665302;redir.d-edgeconnect.media;referral;(not set)
4498;1120677006.1726665373;1726665408;google;cpc;(not set)
4499;216254397.1726665440;1726665454;(direct);(none);(not set)
4500;342028065.1726665820;1726665861;google;organic;(not set)
4501;1775894570.1706695336;1726666038;google;cpc;(not set)
4502;102643333.1726504697;1726666046;google;cpc;(not set)
4503;974898421.1726666410;1726666449;google;cpc;(not set)
4504;168171791.1726666275;1726666610;;;(not set)
4505;2050528524.1714038759;1726666621;facebook;cpc;campaign_1
4506;469612258.1725360457;1726666651;google;cpc;(not set)
4507;918268112.1726666670;1726666735;google;cpc;(not set)
4508;1983721288.1726666699;1726666770;google;cpc;(not set)
4509;56571486.1726658288;1726666911;live;organic;(not set)
4510;1122544709.1726666882;1726666978;facebook;cpc;campaign_1
4511;116144818.1726302268;1726667163;facebook;cpc;campaign_1
4512;894442213.1725446975;1726667165;google;cpc;(not set)
4513;786798245.1726667197;1726667223;google;cpc;(not set)
4514;1239570548.1726667235;1726667267;google;cpc;(not set)
4515;1506539649.1726667418;1726667495;google;cpc;(not set)
4516;1297828117.1726667634;1726667681;redir.d-edgeconnect.media;referral;(not set)
4517;1427841735.1726667823;1726667868;google;organic;(not set)
4518;659229605.1726667801;1726667882;google;cpc;(not set)
4519;475665027.1726146818;1726667910;google;cpc;(not set)
4520;106141308.1720704975;1726667982;bing;cpc;campaign_2
4521;78967978.1726667666;1726667990;google;cpc;(not set)
4522;452125472.1726668071;1726668168;(direct);(none);(not set)
4523;1455640632.1726146053;1726668230;redir.d-edgeconnect.media;referral;(not set)
4524;695481844.1726668250;1726668321;google;cpc;(not set)
4525;733739381.1726668361;1726668387;google;cpc;(not set)
4526;1900819926.1724412572;1726668578;google;cpc;(not set)
4527;2037214368.1716235827;1726668612;;;(not set)
4528;2037214368.1716235827;1726668770;google;organic;(not set)
4529;2171969.1725994020;1726669080;facebook;cpc;campaign_1
4530;371718159.1719219281;1726669232;google;organic;(not set)
4531;1802285759.1724589706;1726669283;live;organic;(not set)
4532;499388700.1726628127;1726669351;google;cpc;(not set)
4533;585463036.1726669426;1726669514;google;cpc;(not set)
4534;980544792.1726667897;1726669514;google;cpc;(not set)
4535;1156970476.1726669485;1726669541;(direct);(none);(not set)
4536;2035423916.1726669287;1726669655;google;organic;(not set)
4537;991040640.1726669934;1726669973;google;cpc;(not set)
4538;1116820482.1726512378;1726670075;google;organic;(not set)
4539;750035043.1726670092;1726670184;(direct);(none);(not set)
4540;162471183.1726670172;1726670252;google;cpc;(not set)
4541;741127891.1726670512;1726670536;google;cpc;(not set)
4544;814039845.1726670858;1726670922;google;cpc;(not set)
4545;887256123.1718476756;1726671123;google;cpc;(not set)
4546;947498088.1726671224;1726671228;redir.d-edgeconnect.media;referral;(not set)
4547;402218551.1726671536;1726671550;facebook;cpc;campaign_1
4548;499388700.1726628127;1726672343;google;cpc;(not set)
4549;1573379588.1726671999;1726672600;google;organic;(not set)
4550;1801879186.1726672506;1726672607;google;cpc;(not set)
4551;1996424358.1726672582;1726672622;facebook;cpc;campaign_1
4552;146910611.1720677952;1726672656;google;cpc;(not set)
4553;218318408.1726672819;1726672855;bing;cpc;HU
4554;1192045696.1721760628;1726672985;google;cpc;hu_brand
4555;1630845790.1717334526;1726673288;;;(not set)
4556;733739381.1726668361;1726673621;google;cpc;(not set)
4557;53584330.1718794965;1726673913;facebook;cpc;campaign_1
4558;582047278.1719745621;1726674823;facebook;cpc;campaign_1
4559;811340626.1726674834;1726675021;google;cpc;(not set)
4560;654897914.1724932269;1726675211;google;cpc;(not set)
4561;1374503601.1726668644;1726675333;google;cpc;(not set)
4562;1237958735.1724788044;1726675763;google;cpc;(not set)
4563;245375090.1726675758;1726675794;google;cpc;(not set)
4564;1007694494.1726676415;1726676493;google;organic;(not set)
4565;294496795.1726676697;1726676727;google;cpc;(not set)
4566;1065959163.1726676685;1726676809;;;(not set)
4567;1638558266.1716133170;1726676858;;;(not set)
4568;549348729.1726677291;1726677430;google;cpc;(not set)
4569;396051485.1726493252;1726677480;google;cpc;(not set)
4570;1236499032.1726490972;1726677674;google;organic;(not set)
4571;460184982.1721398706;1726678239;facebook;cpc;campaign_1
4572;1662435520.1726678292;1726678332;google;organic;(not set)
4573;441938477.1725910890;1726678334;;;(not set)
4574;575315590.1726678645;1726678705;google;cpc;(not set)
4575;233428222.1726415146;1726678742;;;(not set)
4576;1741448238.1726678870;1726678926;google;cpc;(not set)
4577;834385037.1726678992;1726679187;;;(not set)
4578;126715463.1714668133;1726679405;;;(not set)
4579;1125289764.1726679084;1726679496;google;cpc;(not set)
4580;1693648135.1726679382;1726679669;google;cpc;(not set)
4581;166467093.1726679879;1726679966;google;cpc;(not set)
4582;626500874.1726604947;1726680028;;;(not set)
4583;311338134.1726680159;1726680198;google;cpc;(not set)
4584;1285987037.1726680077;1726680249;(direct);(none);(not set)
4585;1705059803.1726680303;1726680375;google;cpc;(not set)
4586;1178455393.1714567527;1726680496;;;(not set)
4587;1952616285.1726666359;1726680526;google;cpc;(not set)
4588;1760858015.1726680601;1726680619;google;cpc;(not set)
4589;1762505071.1721236904;1726680801;;;(not set)
4590;1168034004.1714331970;1726680979;google;cpc;(not set)
4591;1760654526.1726680819;1726681035;l.instagram.com;referral;(not set)
4593;2043832354.1726648176;1726681103;;;(not set)
4594;2009914806.1726681045;1726681205;google;cpc;(not set)
4595;1700226634.1726642053;1726681221;google;cpc;(not set)
4596;1103919569.1726433038;1726681232;;;(not set)
4597;1300492524.1726681235;1726681302;google;cpc;(not set)
4598;1701944460.1717081890;1726681503;;;(not set)
4599;1955808171.1725648120;1726681506;source_1;referral;(not set)
4601;1701944460.1717081890;1726681739;;;(not set)
4602;1174419281.1724858868;1726681867;securepay.simplepay.hu;referral;(not set)
4603;584519461.1726681827;1726681882;facebook;cpc;campaign_1
4604;2036297230.1726681589;1726681937;google;cpc;(not set)
4605;450530000.1714287733;1726682116;;;(not set)
4606;2093739679.1726682936;1726682956;google;organic;(not set)
4607;1701944460.1717081890;1726683045;;;(not set)
4608;225741555.1726682978;1726683050;google;cpc;(not set)
4609;188168072.1724318235;1726683300;google;cpc;(not set)
4611;887256123.1718476756;1726683718;google;cpc;(not set)
4612;1987639517.1726683907;1726683960;;;(not set)
4613;1360755164.1714418829;1726683987;facebook;cpc;campaign_1
4614;707760954.1720088048;1726684015;facebook;cpc;campaign_1
4615;1708905844.1726683787;1726684018;(direct);(none);(not set)
4616;1973902628.1726684222;1726684282;google;cpc;(not set)
4617;1906495683.1726684298;1726684332;google;cpc;(not set)
4618;1235508386.1726684369;1726684470;google;cpc;(not set)
4619;1942239002.1726684438;1726684597;google;organic;(not set)
4620;1397019767.1726685308;1726685358;google;cpc;(not set)
4621;1835570403.1726685426;1726685493;facebook;cpc;campaign_1
4622;721681927.1726685396;1726685505;google;cpc;(not set)
4623;629668278.1723931789;1726685602;google;cpc;(not set)
4624;1374503601.1726668644;1726685832;google;cpc;(not set)
4625;1163725701.1724692086;1726686285;google;cpc;(not set)
4626;942201327.1726686071;1726686408;google;organic;(not set)
4627;1250998674.1726686439;1726686493;redir.d-edgeconnect.media;referral;(not set)
4628;1161620425.1725109605;1726686515;google;cpc;(not set)
4629;438496759.1725997780;1726686552;google;cpc;(not set)
4630;1946788945.1726686587;1726686646;google;cpc;(not set)
4631;92631409.1725679586;1726686799;bing;cpc;campaign_2
4632;161094948.1726686790;1726686816;google;cpc;(not set)
4633;1413975714.1726578402;1726686946;google;cpc;(not set)
4634;851407364.1726686818;1726686956;google;cpc;(not set)
4635;1288787096.1724600315;1726686979;google;cpc;(not set)
4636;602702079.1726686931;1726687019;google;cpc;(not set)
4637;1679792748.1726687061;1726687104;google;cpc;(not set)
4639;1463132122.1726687601;1726687702;(direct);(none);(not set)
4640;1278456450.1726687663;1726687756;google;cpc;(not set)
4641;1714074507.1726687413;1726688031;facebook;cpc;campaign_1
4642;233025392.1726687977;1726688113;google;cpc;(not set)
4643;460761242.1722078582;1726688155;google;cpc;(not set)
4644;1626179.1726688263;1726688378;;;(not set)
4645;16291198.1726688351;1726688399;(direct);(none);(not set)
4646;2011067689.1726688404;1726688504;google;cpc;(not set)
4647;1858794051.1724910885;1726688548;google;cpc;(not set)
4648;1024299705.1726688681;1726688713;google;cpc;(not set)
4649;1870433323.1726688736;1726688743;google;cpc;(not set)
4650;1131130030.1725904041;1726688752;;;(not set)
4651;578435203.1714058232;1726688850;google;organic;(not set)
4652;722972156.1726689019;1726689060;google;cpc;(not set)
4653;804904432.1726688994;1726689090;;;(not set)
4654;950334778.1713952880;1726689264;;;(not set)
4655;887256123.1718476756;1726689283;google;cpc;(not set)
4656;1244545058.1718829611;1726689337;facebook;cpc;campaign_1
4657;8ecbfd82-ca33-49a5-a346-19eb96dde241;1726689506;facebook;cpc;campaign_1
4658;f3739c58-5a0c-4913-af61-a77919f9afa9;1726689506;facebook;cpc;campaign_1
4659;6376f16c-34b3-4bad-a78d-6d5c4b724202;1726689506;facebook;cpc;campaign_1
4660;438496759.1725997780;1726689761;google;cpc;(not set)
4661;624411316.1726689802;1726690068;google;cpc;(not set)
4662;2029951080.1726690086;1726690223;google;cpc;(not set)
4663;239952139.1726083498;1726690630;facebook;cpc;campaign_1
4664;54946082.1726344722;1726691339;facebook;cpc;campaign_1
4665;1589721620.1726644228;1726691546;;;(not set)
4666;114949254.1726691587;1726691616;facebook;cpc;campaign_1
4667;1076122849.1726691630;1726691649;live;organic;(not set)
4668;240276471.1726691753;1726691767;m.facebook.com;referral;(not set)
4669;807541127.1726307189;1726691784;facebook;cpc;campaign_1
4670;551683828.1726691740;1726691851;google;cpc;(not set)
4671;360039227.1726691850;1726691881;facebook;cpc;campaign_1
4672;1928721990.1726691904;1726692096;google;cpc;(not set)
4673;443037902.1726608231;1726692640;google;cpc;(not set)
4674;1940005281.1726001344;1726693152;facebook;cpc;campaign_1
4675;1479697218.1726693140;1726693357;google;cpc;(not set)
4676;1517015591.1726693434;1726693549;facebook;cpc;campaign_1
4677;1092536609.1724678028;1726693814;google;cpc;(not set)
4911;1296728328.1726695295;1726695384;;;(not set)
5021;1362423387.1726696410;1726696479;facebook;cpc;campaign_1
5022;2091321107.1726696561;1726696661;google;cpc;(not set)
5023;889287396.1726698490;1726698516;google;cpc;(not set)
5024;156502160.1726703080;1726703120;google;cpc;(not set)
5025;632614146.1722900246;1726703475;google;cpc;(not set)
5026;1670851488.1726709379;1726709488;google;cpc;(not set)
5027;646817589.1726710210;1726710813;google;cpc;(not set)
5028;887256123.1718476756;1726716062;google;cpc;(not set)
5029;428729543.1726544804;1726717602;facebook;cpc;campaign_1
5030;512393338.1726717524;1726717644;;;(not set)
5031;1112412872.1713983541;1726718021;google;cpc;(not set)
5032;1447378532.1721478671;1726718152;;;(not set)
5033;352030708.1726718169;1726718187;google;cpc;(not set)
5034;1092536609.1724678028;1726718260;google;cpc;(not set)
5036;801412616.1725595738;1726718753;;;(not set)
5037;1351113721.1726371843;1726718907;google;cpc;(not set)
5038;1045528459.1724344544;1726719364;google;cpc;(not set)
5039;1068486913.1726637351;1726719406;google;cpc;(not set)
5040;1057770067.1726674453;1726720657;google;cpc;(not set)
5041;1620121009.1726720747;1726720891;google;cpc;(not set)
5042;1300861313.1726721329;1726721495;google;cpc;(not set)
5043;218822339.1726633440;1726721595;google;cpc;(not set)
5044;1049044794.1726721784;1726721801;google;cpc;(not set)
5045;584570904.1722147819;1726722318;l.instagram.com;referral;(not set)
5046;2031424730.1726723274;1726723603;;;(not set)
5047;1734253892.1714650475;1726723706;;;(not set)
5048;212402537.1726723778;1726723791;google;cpc;(not set)
5049;1714474595.1725630814;1726723861;google;cpc;(not set)
5050;2107203593.1726723802;1726723988;;;(not set)
5051;1570127713.1725012694;1726724422;;;(not set)
5052;1778702270.1726724598;1726724612;google;cpc;(not set)
5053;218822339.1726633440;1726724717;google;cpc;(not set)
5054;459950103.1723147404;1726725009;;;(not set)
5055;2129980201.1726725025;1726725062;google;cpc;(not set)
5057;2d6c94db-6b88-48e9-a164-908def31640f;1726725292;facebook;cpc;campaign_1
5058;59805108.1724612330;1726725338;google;cpc;(not set)
5059;1736786241.1726725142;1726725887;google;cpc;(not set)
5060;1112479044.1726725964;1726726006;google;cpc;(not set)
5061;918565424.1726726049;1726726315;google;cpc;(not set)
5062;1306623235.1726726890;1726727079;facebook;cpc;campaign_1
5063;1224830762.1721330555;1726727100;google;cpc;(not set)
5064;2085604041.1714284295;1726727562;google;cpc;(not set)
5065;1999550454.1726583919;1726727593;google;cpc;(not set)
5066;1900819926.1724412572;1726727862;google;cpc;(not set)
5067;350202983.1726470725;1726727936;google;cpc;(not set)
5068;460761242.1722078582;1726728293;;;(not set)
5069;1164057841.1726728735;1726729037;google;cpc;(not set)
5070;1789920109.1726729085;1726729185;google;cpc;(not set)
5071;617877349.1726728961;1726729216;google;cpc;(not set)
5072;1594747803.1726297888;1726729598;;;(not set)
5073;1969264415.1726728699;1726729763;;;(not set)
5074;1404145214.1726730051;1726730064;google;cpc;(not set)
5075;1830078824.1726730438;1726730469;facebook;cpc;campaign_1
5076;141920647.1726730384;1726730498;google;cpc;(not set)
5077;1951080249.1726730338;1726730597;google;cpc;(not set)
5079;1981076210.1714022124;1726730677;google;cpc;(not set)
5080;175555347.1714195889;1726730847;facebook;cpc;campaign_1
5081;968436309.1726730497;1726730998;google;cpc;(not set)
5082;866524165.1726730416;1726731247;(direct);(none);(not set)
5083;640446325.1715272641;1726731415;;;(not set)
5084;1305166541.1726731486;1726731498;(direct);(none);(not set)
5085;1250254325.1726731591;1726731659;google;cpc;(not set)
5086;27739399.1726731832;1726732026;(direct);(none);(not set)
5087;481359660.1726732299;1726732378;google;cpc;(not set)
5089;473338367.1726732750;1726732786;redir.d-edgeconnect.media;referral;(not set)
5090;854915154.1726732418;1726732809;google;cpc;(not set)
5091;2014207231.1726642950;1726732830;google;organic;(not set)
5092;181535119.1725457296;1726733242;google;cpc;(not set)
5093;1917664719.1726733404;1726733514;google;cpc;(not set)
5094;1899618999.1714015295;1726733726;;;(not set)
5095;941969069.1726733727;1726733760;;;(not set)
5096;869253062.1724324536;1726733872;google;organic;(not set)
5097;342232698.1726733743;1726733915;(direct);(none);(not set)
5098;1194762651.1717080234;1726733931;hirlevel_s1;ct;hirlevel_c1
5099;463043324.1726587215;1726733962;(direct);(none);(not set)
5100;1832992960.1720508463;1726734016;google;cpc;(not set)
5101;2136791837.1726733483;1726734077;redir.d-edgeconnect.media;referral;(not set)
5102;28735121.1726649912;1726734211;(direct);(none);(not set)
5103;762465824.1714387417;1726734222;google;organic;(not set)
5104;1706124060.1720809897;1726734409;google;cpc;(not set)
5105;1462115587.1719406668;1726734463;google;cpc;(not set)
5106;1790570549.1719855730;1726734513;google;organic;(not set)
5107;1139494889.1725160099;1726734540;google;organic;(not set)
5108;1451950110.1715761022;1726734557;(direct);(none);(not set)
5109;1584481106.1726734270;1726734579;google;cpc;(not set)
5110;1617196796.1716298328;1726734619;google;cpc;(not set)
5111;2077801891.1726557555;1726734619;google;organic;(not set)
5112;1546062200.1726734529;1726734632;facebook;cpc;campaign_1
5113;1475675097.1726734578;1726734637;google;organic;(not set)
5114;440089475.1726734256;1726734709;(direct);(none);(not set)
5115;86734626.1726734672;1726734757;google;cpc;(not set)
5116;470080704.1716361325;1726734877;google;cpc;(not set)
5117;1562973040.1726735000;1726735063;google;cpc;(not set)
5118;1115711498.1726735081;1726735118;google;cpc;(not set)
5119;263873834.1726057079;1726735141;google;cpc;(not set)
5120;2076027929.1724856629;1726735243;hirlevel_s1;ct;hirlevel_c1
5121;1656059345.1726734975;1726735249;google;organic;(not set)
5122;1162830032.1726565958;1726735292;google;cpc;(not set)
5123;1075066721.1726735263;1726735312;google;cpc;(not set)
5124;233825688.1721818480;1726735324;google;cpc;(not set)
5125;898749488.1726735241;1726735325;(direct);(none);(not set)
5126;1968807148.1725997340;1726735391;google;cpc;(not set)
5127;1474919771.1714133979;1726735398;google;organic;(not set)
5128;117805451.1726325121;1726735427;google;cpc;(not set)
5129;1319058258.1726735457;1726735476;google;cpc;(not set)
5130;1034120950.1726735513;1726735559;(direct);(none);(not set)
5131;528742280.1726735424;1726735613;google;organic;(not set)
5132;1882360332.1726735747;1726735774;google;cpc;(not set)
5133;521382063.1726735750;1726735807;l.facebook.com;referral;(not set)
5134;1239225213.1726735809;1726735824;google;cpc;(not set)
5135;1167294552.1726609275;1726735882;;;(not set)
5136;597648657.1726735784;1726736074;webmail.telekom.hu;referral;(not set)
5137;501295767.1726735795;1726736089;(direct);(none);(not set)
5138;1584142218.1726214937;1726736114;google;cpc;(not set)
5139;1116967665.1726729913;1726736159;google;cpc;(not set)
5140;1763589355.1726736142;1726736220;(direct);(none);(not set)
5141;952697467.1726586401;1726736257;(direct);(none);(not set)
5142;1e0e2329-fd70-4991-946d-3ee9881e882e;1726736309;google;organic;(not set)
5143;975733065.1726510810;1726736661;google;cpc;(not set)
5144;16309755.1726736624;1726736711;google;organic;(not set)
5145;887256123.1718476756;1726736731;google;cpc;(not set)
5146;1450643156.1719676129;1726736887;google;organic;(not set)
5147;594112583.1726736945;1726736951;live;organic;(not set)
5148;1250254325.1726731591;1726737013;google;cpc;(not set)
5150;533274830.1726334342;1726737134;hirlevel_s2;ct;campaign_4
5151;1826382132.1726737131;1726737161;(direct);(none);(not set)
5152;1381869927.1722319650;1726737262;google;cpc;(not set)
5153;554837453.1725777605;1726737383;facebook;cpc;campaign_1
5154;1539872242.1722358799;1726737697;;;(not set)
5155;d1eba4ce-9adf-43b3-94a2-9ae96d4bbd4e;1726737983;;;(not set)
5156;912316763.1726737989;1726737983;;;(not set)
5157;1819291167.1726737967;1726738066;google;cpc;(not set)
5158;1242106055.1726738021;1726738078;(direct);(none);(not set)
5159;1793292611.1726738145;1726738188;google;cpc;(not set)
5160;1147978372.1726738161;1726738222;google;cpc;(not set)
5161;248121422.1726738235;1726738252;facebook;cpc;campaign_1
5162;238646321.1726738229;1726738283;(direct);(none);(not set)
5163;572352595.1723209031;1726738496;;;(not set)
5164;1929139052.1726738520;1726738541;;;(not set)
5165;723685906.1721886015;1726738606;bing;cpc;campaign_5
5166;1043318383.1725268166;1726738748;live;organic;(not set)
5167;1584160807.1723364470;1726738916;google;organic;(not set)
5168;1903040628.1726738865;1726738947;google;organic;(not set)
5169;1288328521.1726738991;1726739024;l.instagram.com;referral;(not set)
5170;370311665.1726739038;1726739132;(direct);(none);(not set)
5171;850841848.1725105816;1726739160;bing;cpc;campaign_2
5172;378802750.1723539653;1726739301;redir.d-edgeconnect.media;referral;(not set)
5173;218822339.1726633440;1726739343;google;cpc;(not set)
5174;1021419457.1726739336;1726739407;google;organic;(not set)
5175;398266366.1726739241;1726739411;(direct);(none);(not set)
5176;377843704.1726739708;1726739724;(direct);(none);(not set)
5179;1475675097.1726734578;1726740077;google;organic;(not set)
5180;497569401.1726740286;1726740306;google;cpc;(not set)
5182;1153991322.1726740553;1726740569;google;cpc;(not set)
5183;904366864.1726740555;1726740597;google;cpc;(not set)
5184;298588204.1726740651;1726740656;(direct);(none);(not set)
5185;39702431.1714046471;1726740882;google;cpc;(not set)
5186;442354000.1726740911;1726740934;google;cpc;(not set)
5187;1584257113.1726414948;1726741109;(direct);(none);(not set)
5188;763411350.1726741838;1726741850;google;cpc;(not set)
5189;152667948.1726741891;1726741927;redir.d-edgeconnect.media;referral;(not set)
5190;1367672768.1726741893;1726741960;google;cpc;(not set)
5191;1065871616.1726510958;1726742001;google;cpc;(not set)
5192;214751600.1726741807;1726742038;google;cpc;(not set)
5193;1570127713.1725012694;1726742205;;;(not set)
5194;925161409.1714578464;1726742343;google;cpc;(not set)
5195;1949843518.1724156876;1726742355;google;organic;(not set)
5196;404022648.1726742321;1726742556;(direct);(none);(not set)
5197;1045528459.1724344544;1726742594;google;cpc;(not set)
5198;1476334979.1726460681;1726742635;hirlevel_s2;ct;campaign_4
5199;1962324328.1723566360;1726742841;google;organic;(not set)
5200;1544215904.1725304369;1726742998;google;cpc;(not set)
5201;176696874.1719918928;1726743031;google;organic;(not set)
5202;1889930189.1724078980;1726743046;;;(not set)
5203;2097969717.1726743034;1726743168;(direct);(none);(not set)
5204;812687903.1726743162;1726743198;(direct);(none);(not set)
5205;144574145.1726743127;1726743211;(direct);(none);(not set)
5206;147427810.1726743253;1726743314;l.instagram.com;referral;(not set)
5207;33438575.1723726489;1726743478;google;organic;(not set)
5208;597648657.1726735784;1726743540;;;(not set)
5209;1609918343.1726743293;1726743595;(direct);(none);(not set)
5210;1962032747.1726743609;1726743642;google;cpc;(not set)
5211;1748454306.1726743405;1726743658;google;cpc;(not set)
5213;314746169.1726736728;1726743947;google;cpc;(not set)
5216;474230595.1716472297;1726744157;bing;cpc;HU
5217;2091680149.1725901948;1726744183;www.connexservice.com;referral;(not set)
5218;547673353.1726743423;1726744312;google;organic;(not set)
5219;319417494.1726744214;1726744354;facebook;cpc;campaign_1
5221;475889052.1726744604;1726744671;google;cpc;(not set)
5222;1950981520.1720283672;1726744776;google;organic;(not set)
5223;1911661012.1721735365;1726744867;webmail.telekom.hu;referral;(not set)
5224;719809514.1726744823;1726744887;(direct);(none);(not set)
5225;1222143193.1726745042;1726745184;google;organic;(not set)
5226;97190141.1724334921;1726745293;google;cpc;(not set)
5227;601968995.1722286768;1726745375;google;cpc;(not set)
5228;351637729.1719484620;1726745641;live;organic;(not set)
5229;984852357.1726745668;1726745755;google;cpc;(not set)
5230;802992099.1714242855;1726745976;google;organic;(not set)
5231;1836191311.1726746180;1726746202;google;cpc;(not set)
5232;1631232372.1726746238;1726746279;www.youtube.com;referral;(not set)
5233;2115250824.1726746250;1726746302;google;cpc;(not set)
5234;1585085706.1726746385;1726746469;google;cpc;(not set)
5235;164908.1726746505;1726746568;google;cpc;(not set)
5236;1783522552.1705478058;1726746748;live;organic;(not set)
5237;239696302.1726746873;1726746907;google;cpc;(not set)
5238;1009175096.1714393989;1726746935;google;organic;(not set)
5239;340770546.1726746946;1726746990;google;cpc;(not set)
5240;700637319.1714558585;1726747175;;;(not set)
5241;239696302.1726746873;1726747202;;;(not set)
5242;1436114532.1726747176;1726747222;(direct);(none);(not set)
5243;2022681571.1726747176;1726747329;live;organic;(not set)
5244;1733495263.1726747289;1726747447;;;(not set)
5245;353057083.1713954397;1726747500;google;organic;(not set)
5246;948054.1717265694;1726747552;google;cpc;(not set)
5247;2104141053.1717782993;1726747555;;;(not set)
5248;399925952.1726748138;1726748154;google;cpc;(not set)
5249;91109837.1726748240;1726748339;;;(not set)
5250;1472272554.1725973543;1726748508;;;(not set)
5251;1647814327.1726748371;1726748634;(direct);(none);(not set)
5252;947875961.1726748585;1726748714;google;cpc;(not set)
5253;1362164980.1726748369;1726748970;(direct);(none);(not set)
5254;1402477370.1726748923;1726749003;(direct);(none);(not set)
5255;1581639532.1726749100;1726749158;google;organic;(not set)
5256;2139143886.1715780641;1726749227;google;cpc;(not set)
5257;1521165252.1726749473;1726749605;google;cpc;(not set)
5258;885563643.1726589718;1726749685;;;(not set)
5259;1609422878.1726626176;1726749827;google;cpc;(not set)
5260;1899618999.1714015295;1726750179;google;organic;(not set)
5261;1885390365.1726750111;1726750199;facebook;cpc;campaign_1
5262;2131342941.1726122158;1726750276;;;(not set)
5263;389716591.1726750230;1726750284;facebook;cpc;campaign_1
5264;1206344671.1726750260;1726750316;google;cpc;(not set)
5265;918565424.1726726049;1726750398;google;cpc;(not set)
5266;922327602.1726750302;1726750462;google;cpc;(not set)
5267;2128698478.1726750287;1726750466;source_4;referral;(not set)
5268;1172753574.1726750610;1726750623;google;cpc;(not set)
5269;1909105090.1726750669;1726750723;google;cpc;(not set)
5270;1622886343.1726150629;1726750915;google;cpc;(not set)
5271;2107761556.1722685857;1726750920;google;cpc;(not set)
5272;461472835.1726750877;1726750955;(direct);(none);(not set)
5273;1787845015.1726751131;1726751181;l.instagram.com;referral;(not set)
5274;1300662189.1725981317;1726751401;google;cpc;(not set)
5275;1996424358.1726672582;1726751416;facebook;cpc;campaign_1
5276;870281414.1726399876;1726751546;facebook;cpc;campaign_1
5277;904039908.1726241503;1726751589;google;cpc;(not set)
5278;1300861313.1726721329;1726751737;google;organic;(not set)
5279;1579123358.1726650725;1726751744;google;cpc;(not set)
5280;1656601309.1724069305;1726751950;google;cpc;(not set)
5281;60188272.1726751904;1726752000;google;cpc;(not set)
5282;2100978424.1726751910;1726752035;(direct);(none);(not set)
5283;1201593551.1724924020;1726752059;google;organic;(not set)
5284;304349660.1726751907;1726752128;google;cpc;(not set)
5285;716156169.1726752118;1726752164;google;cpc;(not set)
5286;1112412872.1713983541;1726752600;google;cpc;(not set)
5287;375397347.1726741500;1726753262;(direct);(none);(not set)
5288;1400638307.1722264054;1726753508;;;(not set)
5289;1104527325.1726754026;1726753924;google;cpc;(not set)
5290;d478c6e2-b334-41c1-ba33-8b979591ad1c;1726753939;google;organic;(not set)
5291;1949547235.1726753828;1726753994;(direct);(none);(not set)
5292;1451772150.1726754088;1726754106;(direct);(none);(not set)
5293;939716750.1726754116;1726754163;google;cpc;(not set)
5294;409332845.1726754073;1726754167;(direct);(none);(not set)
5295;572311071.1726754043;1726754219;instagram.com;referral;(not set)
5296;831740868.1717062606;1726754250;bing;cpc;campaign_2
5297;2134923796.1723319966;1726754476;;;(not set)
5298;679725823.1726754403;1726754492;google;cpc;(not set)
5299;516016759.1726754449;1726754493;google;cpc;(not set)
5300;798035351.1726514437;1726754755;facebook;cpc;campaign_1
5301;1332993155.1726755166;1726755211;google;cpc;(not set)
5303;2123155083.1726755281;1726755319;google;cpc;(not set)
5304;2121419588.1726478484;1726755639;google;cpc;(not set)
5305;1045305451.1726756115;1726756228;(direct);(none);(not set)
5306;25602958.1726756196;1726756300;google;cpc;(not set)
5307;665761292.1726756281;1726756347;google;cpc;(not set)
5308;742062010.1726756495;1726756572;google;cpc;(not set)
5309;2077853245.1725004737;1726756855;google;organic;(not set)
5310;1635892795.1726756909;1726756933;google;cpc;(not set)
5313;860112601.1726758079;1726758101;google;cpc;(not set)
5314;2102411195.1726309623;1726758116;(direct);(none);(not set)
5315;952697467.1726586401;1726758322;;;(not set)
5316;1442192875.1720435465;1726758414;source_5;referral;(not set)
5317;2094806884.1719160392;1726758560;google;cpc;(not set)
5318;593804976.1714592192;1726758613;hirlevel_s2;ct;campaign_6
5319;322543.1726600795;1726758691;google;organic;(not set)
5320;180783710.1726759079;1726759202;;;(not set)
5321;419734567.1726758126;1726759259;(direct);(none);(not set)
5322;268940561.1726759450;1726759486;google;organic;(not set)
5323;421970079.1726759442;1726759487;google;organic;(not set)
5324;285838035.1726759648;1726759695;(direct);(none);(not set)
5325;2013628143.1726745141;1726759951;(direct);(none);(not set)
5326;1476334979.1726460681;1726759989;hirlevel_s2;ct;campaign_4
5327;1156901987.1726760134;1726760148;(direct);(none);(not set)
5328;1354291648.1717162113;1726760198;google;cpc;(not set)
5329;494204727.1726760520;1726760553;google;cpc;(not set)
5330;1847109891.1726760387;1726760619;google;cpc;(not set)
5331;460184982.1721398706;1726761511;l.facebook.com;referral;(not set)
5332;330217492.1726761658;1726761749;google;cpc;(not set)
5333;152960302.1726761772;1726761864;google;cpc;(not set)
5334;953525498.1720540637;1726761979;;;(not set)
5335;1891729690.1726762059;1726762260;google;cpc;(not set)
5336;2047220495.1726762176;1726762293;google;cpc;(not set)
5337;2102411195.1726309623;1726762373;(direct);(none);(not set)
5338;1708985095.1726762596;1726762789;m.facebook.com;referral;(not set)
5339;1570127713.1725012694;1726762904;;;(not set)
5340;521589683.1726762702;1726762975;google;cpc;(not set)
5341;1574220020.1726763164;1726763183;l.instagram.com;referral;(not set)
5342;1691279687.1726763130;1726763210;google;cpc;(not set)
5343;1024930100.1726763196;1726763225;google;cpc;(not set)
5344;489603788.1726763361;1726763594;google;cpc;(not set)
5345;1316967956.1713977122;1726763608;facebook;cpc;campaign_1
5346;168939366.1726763813;1726763874;google;cpc;(not set)
5347;1041255677.1726763953;1726763963;google;cpc;(not set)
5348;940931548.1726763986;1726764030;google;cpc;(not set)
5349;1151331931.1726764037;1726764085;(direct);(none);(not set)
5350;726034268.1725566031;1726764101;google;cpc;
5351;1301390263.1713365231;1726764156;;;(not set)
5352;164784028.1726164113;1726764246;google;cpc;(not set)
5353;2068164378.1723233337;1726764509;google;organic;(not set)
5354;644109017.1725632340;1726764617;google;organic;(not set)
5355;736724519.1726764587;1726764621;google;cpc;(not set)
5356;1532144891.1726764462;1726764640;google;cpc;(not set)
5357;1222143193.1726745042;1726764664;google;organic;(not set)
5358;1517869494.1726764758;1726764788;google;cpc;(not set)
5359;1811938223.1726765087;1726765223;google;cpc;(not set)
5360;1762587214.1726759351;1726765432;google;cpc;(not set)
5361;305371014.1726765383;1726765463;google;cpc;(not set)
5362;733739381.1726668361;1726766176;;;(not set)
5363;1848858313.1726766477;1726766486;google;organic;(not set)
5364;1419003784.1726766543;1726766555;google;cpc;(not set)
5365;1371320703.1721218654;1726766556;;;(not set)
5366;1253256163.1726766336;1726766763;(direct);(none);(not set)
5368;627805844.1726510496;1726767283;google;cpc;(not set)
5369;368940743.1726767315;1726767345;(direct);(none);(not set)
5370;2109778868.1726767226;1726767387;google;cpc;(not set)
5371;1003319122.1726767362;1726767453;(direct);(none);(not set)
5372;1470321787.1722440726;1726767453;facebook;cpc;campaign_1
5373;580148805.1713989556;1726767609;google;organic;(not set)
5374;887256123.1718476756;1726767771;google;organic;(not set)
5376;734014082.1726767917;1726767937;redir.d-edgeconnect.media;referral;(not set)
5377;2028200901.1721923736;1726767966;google;cpc;(not set)
5378;407101794.1726767981;1726768008;google;organic;(not set)
5379;2085311596.1721846348;1726768260;google;cpc;(not set)
5380;576161847.1726767963;1726768269;google;cpc;(not set)
5381;365423184.1726768355;1726768374;google;cpc;(not set)
5382;261707183.1726768356;1726768390;google;organic;(not set)
5383;49010763.1726768355;1726768494;google;cpc;(not set)
5384;377016605.1726768367;1726768499;google;cpc;(not set)
5385;501937186.1726417552;1726768607;instagram.com;referral;(not set)
5386;1684761252.1726768625;1726768670;google;cpc;(not set)
5387;1200781698.1726768681;1726768778;facebook;cpc;campaign_1
5388;1962324328.1723566360;1726768780;google;organic;(not set)
5389;626500874.1726604947;1726768902;;;(not set)
5390;358495943.1726768843;1726768955;facebook;cpc;campaign_1
5391;1894514539.1726768947;1726769017;google;cpc;(not set)
5392;233391821.1726768399;1726769061;(direct);(none);(not set)
5393;1673618294.1726423245;1726769156;google;cpc;(not set)
5394;1923360389.1726769274;1726769445;google;cpc;(not set)
5395;952175170.1726769563;1726769639;google;cpc;(not set)
5396;1237218830.1726770210;1726770228;;;(not set)
5397;1606735077.1718949904;1726770295;google;cpc;(not set)
5398;2131342941.1726122158;1726770337;;;(not set)
5399;1023644137.1726770556;1726770655;google;cpc;(not set)
5400;1250492069.1726771215;1726771134;google;cpc;(not set)
5401;1293105640.1726770866;1726771189;(direct);(none);(not set)
5402;1311863087.1726771469;1726771534;;;(not set)
5403;52199428.1726771517;1726771588;google;cpc;(not set)
5404;1357551812.1726771678;1726771713;l.instagram.com;referral;(not set)
5405;226671501.1726771805;1726771850;;;(not set)
5406;718242199.1726771347;1726771901;google;cpc;(not set)
5407;2054199184.1726771760;1726772009;google;organic;(not set)
5408;1954593700.1714539869;1726772019;google;organic;(not set)
5409;734092576.1714416180;1726772034;facebook;cpc;campaign_1
5410;ecf5b63c-0880-4794-8f59-7bc741714748;1726772149;facebook;cpc;campaign_1
5411;878090815.1726772105;1726772156;google;cpc;(not set)
5412;421602525.1726512510;1726772347;google;cpc;(not set)
5414;1115566167.1726772648;1726772666;(direct);(none);(not set)
5415;111629863.1714592176;1726772686;live;organic;(not set)
5416;2025916095.1726772693;1726772853;l.instagram.com;referral;(not set)
5418;429733986.1726773050;1726773111;google;cpc;(not set)
5419;1215218470.1726772787;1726773158;google;cpc;(not set)
5420;1375498901.1726773109;1726773188;facebook;cpc;campaign_1
5421;188168072.1724318235;1726773231;google;cpc;(not set)
5422;1833088553.1726582000;1726773276;google;cpc;(not set)
5423;1527743975.1726773262;1726773511;google;organic;(not set)
5424;675832989.1721536769;1726773761;google;cpc;(not set)
5425;1196060655.1725696325;1726773927;google;cpc;(not set)
5426;1923360389.1726769274;1726773949;google;cpc;(not set)
5427;959438160.1726542851;1726774148;m.facebook.com;referral;(not set)
5428;680931371.1726773993;1726774251;(direct);(none);(not set)
5429;1337960629.1715897675;1726774260;;;(not set)
5430;1051058081.1726774891;1726774961;(direct);(none);(not set)
5431;1691230338.1726775007;1726775073;google;cpc;(not set)
5432;1043804745.1726774963;1726775126;l.instagram.com;referral;(not set)
5433;2081792483.1726775174;1726775322;facebook;cpc;campaign_1
5434;828630716.1725908153;1726775392;;;(not set)
5435;2764332.1726775360;1726775407;m.facebook.com;referral;(not set)
5436;268502338.1726775396;1726775466;l.facebook.com;referral;(not set)
5437;401757389.1726775488;1726775636;(direct);(none);(not set)
5438;1052911470.1726775735;1726775813;google;cpc;(not set)
5439;1244727113.1726776410;1726776426;google;cpc;(not set)
5440;1586662927.1726776852;1726776865;google;cpc;(not set)
5460;1086057589.1726776995;1726777083;(direct);(none);(not set)
5463;181535119.1725457296;1726777193;google;cpc;(not set)
5465;138258270.1726511155;1726777313;facebook;cpc;campaign_1
5466;65840663.1726775518;1726777396;google;cpc;(not set)
5467;346695188.1726777600;1726777635;google;cpc;(not set)
5468;453109157.1726777835;1726777891;(direct);(none);(not set)
5469;1473553821.1726777919;1726777947;(direct);(none);(not set)
5470;eda11ea0-a04e-4556-9a74-c88445695a45;1726778016;facebook;cpc;campaign_1
5471;38814025.1726778026;1726778045;(direct);(none);(not set)
5472;1924050391.1726778022;1726778016;facebook;cpc;campaign_1
5473;1962032747.1726743609;1726779187;google;cpc;(not set)
5474;776935554.1726669327;1726779369;google;cpc;hu_brand
5475;754220147.1726779497;1726779509;redir.d-edgeconnect.media;referral;(not set)
5476;1218562347.1725908207;1726779863;;;(not set)
5478;1962032747.1726743609;1726779960;google;cpc;(not set)
5501;2028291526.1726403040;1726780665;google;cpc;(not set)
5762;2107345155.1726781492;1726781563;google;cpc;(not set)
5802;0edecaca-2402-47d9-a74d-f9092e69dfbe;1726782091;redir.d-edgeconnect.media;referral;(not set)
5803;32584894.1714571545;1726782098;google;cpc;(not set)
5821;4162dfbb-fef1-4642-b3c8-0d7e3935e1db;1726782424;google;organic;(not set)
5822;1585274322.1726782405;1726782431;facebook;cpc;campaign_1
5834;742729420.1726782584;1726782767;(direct);(none);(not set)
5835;1262827487.1726783773;1726783836;bing;cpc;HU
5836;326849200.1726794089;1726794157;facebook;cpc;campaign_1
5837;2067665561.1726799759;1726799855;instagram.com;referral;(not set)
5838;887256123.1718476756;1726802457;google;cpc;(not set)
5839;1675345578.1726802931;1726803049;google;cpc;(not set)
5840;838747195.1726804028;1726804189;facebook;cpc;campaign_1
5841;1644727784.1726804272;1726804293;google;organic;(not set)
5842;116216171.1725820403;1726805682;facebook;cpc;campaign_1
5843;218822339.1726633440;1726806193;google;cpc;(not set)
5844;1027454837.1723178365;1726807232;google;organic;(not set)
5845;262039330.1726807710;1726807897;l.instagram.com;referral;(not set)
5846;1762354650.1715196081;1726808874;google;organic;(not set)
5848;1675330814.1725995094;1726809430;;;(not set)
5849;156399212.1726809332;1726809588;facebook;cpc;campaign_1
5850;869276315.1726810655;1726810706;google;cpc;(not set)
5851;679725823.1726754403;1726811078;google;cpc;(not set)
5852;1099374773.1726811179;1726811241;(direct);(none);(not set)
5853;1024325368.1726811386;1726811429;facebook;cpc;campaign_1
5854;685191448.1726811841;1726811995;;;(not set)
5855;1519923693.1726811988;1726812014;google;cpc;(not set)
5856;679725823.1726754403;1726812091;;;(not set)
5857;736971376.1726812303;1726812351;google;cpc;(not set)
5858;187340637.1726812583;1726812610;google;cpc;(not set)
5859;291836696.1726812657;1726812704;google;organic;(not set)
5860;39702431.1714046471;1726812751;google;cpc;(not set)
5861;625627934.1714479317;1726812818;(direct);(none);(not set)
5862;1086057589.1726776995;1726813000;(direct);(none);(not set)
5863;646642182.1726672285;1726813031;;;(not set)
5865;742323589.1726813273;1726813403;google;cpc;(not set)
5866;1600399205.1726813327;1726813431;google;cpc;(not set)
5867;1934089921.1726813734;1726813853;google;organic;(not set)
5868;2044980539.1726814395;1726814498;google;organic;(not set)
5869;97190141.1724334921;1726814573;google;cpc;(not set)
5870;1551502153.1726814619;1726814670;instagram.com;referral;(not set)
5872;1845710745.1726814966;1726814994;google;cpc;(not set)
5873;706675a7-4eac-4df1-a6d2-04f44dfaa8b5;1726815031;;;(not set)
5874;1071261776.1726815000;1726815039;google;cpc;(not set)
5875;613993606.1726815355;1726815364;(direct);(none);(not set)
5876;87106834.1726815661;1726815706;google;cpc;(not set)
5877;180724858.1726815690;1726815742;google;cpc;(not set)
5878;704992070.1726816029;1726816108;live;organic;(not set)
5879;1467807263.1714410012;1726816318;google;cpc;(not set)
5880;727951988.1726816310;1726816329;live;organic;(not set)
5881;39702431.1714046471;1726816388;google;cpc;(not set)
5882;1438215725.1726038077;1726816427;google;cpc;(not set)
5883;670740434.1722160613;1726816843;google;cpc;(not set)
5884;1314581915.1726816750;1726817036;google;cpc;(not set)
5885;1175287427.1726816605;1726817106;google;organic;(not set)
5886;1115412784.1719389231;1726817421;google;cpc;(not set)
5887;1340898472.1726817784;1726817836;google;cpc;(not set)
5888;1264325554.1726569593;1726817980;(direct);(none);(not set)
5889;367151288.1726817865;1726818072;google;organic;(not set)
5890;1067274202.1726818293;1726818336;google;cpc;(not set)
5891;121862921.1726052111;1726818641;(direct);(none);(not+set)
5892;905682922.1722502810;1726818701;live;organic;(not set)
5893;1699983741.1726818771;1726818802;google;cpc;(not set)
5894;704056117.1722843725;1726818882;google;cpc;(not set)
5895;2136145075.1726212879;1726818977;google;cpc;(not set)
5897;2008048320.1726815753;1726819137;google;cpc;(not set)
5898;204995838.1726819186;1726819386;(direct);(none);(not set)
5899;692221701.1724922455;1726819569;;;(not set)
5900;2102411195.1726309623;1726819622;(direct);(none);(not set)
5901;121153755.1726819479;1726819642;google;cpc;(not set)
5902;1393949875.1726819900;1726819984;google;cpc;(not set)
5903;932635550.1726820418;1726820449;google;cpc;(not set)
5904;218822339.1726633440;1726820650;google;cpc;(not set)
5905;199626853.1726820809;1726820840;google;cpc;(not set)
5906;1797934475.1702980824;1726821055;live;organic;(not set)
5907;336515569.1726821157;1726821198;live;organic;(not set)
5908;460998027.1726763483;1726822011;redir.d-edgeconnect.media;referral;(not set)
5909;1764786103.1726409152;1726822288;google;cpc;(not set)
5910;1541575380.1725434367;1726822298;google;cpc;(not set)
5911;1568343390.1726822538;1726822582;google;cpc;(not set)
5912;1651554042.1722154852;1726822858;google;organic;(not set)
5913;324524425.1719222542;1726822949;google;cpc;(not set)
5914;867673197.1726821830;1726823030;google;cpc;(not set)
5915;1820709492.1725514482;1726823379;google;cpc;(not set)
5916;1660838233.1726823366;1726823415;google;organic;(not set)
5917;1039821275.1726823629;1726823674;www.wellcard.at;referral;(not set)
5918;142059135.1726471123;1726823891;;;(not set)
5919;1817507426.1726823962;1726823994;redir.d-edgeconnect.media;referral;(not set)
5920;1154656997.1726823923;1726824240;google;cpc;(not set)
5921;369971958.1726812104;1726824277;;;(not set)
5922;1107372688.1726824245;1726824325;google;cpc;(not set)
5923;617124369.1726051241;1726824750;google;organic;(not set)
5925;1822727338.1726638594;1726825015;bing;cpc;AT
5926;817210168.1726150272;1726825040;google;cpc;(not set)
5927;1097345776.1726824966;1726825117;google;cpc;(not set)
5928;1541575380.1725434367;1726825171;google;cpc;(not set)
5929;1089045955.1726416680;1726825499;facebook;cpc;campaign_1
5930;1927458708.1726825695;1726825745;l.instagram.com;referral;(not set)
5932;1629197696.1726825713;1726825786;google;organic;(not set)
5933;94649952.1726826174;1726826193;(direct);(none);(not set)
5934;1325398065.1726826147;1726826314;google;organic;(not set)
5935;699544623.1726826016;1726826413;google;organic;(not set)
5936;26863734.1719315540;1726826454;google;cpc;(not set)
5938;866365019.1721828289;1726826715;;;(not set)
5939;2003728456.1726826722;1726826751;redir.d-edgeconnect.media;referral;(not set)
5940;1112412872.1713983541;1726827074;google;cpc;(not set)
5941;277035365.1726827060;1726827100;facebook;cpc;campaign_1
5942;2088302858.1726827117;1726827163;(direct);(none);(not set)
5943;1314581915.1726816750;1726827350;google;cpc;(not set)
5944;1412024018.1726827627;1726827708;;;(not set)
5945;376735644.1726827744;1726827776;live;organic;(not set)
5946;775571789.1726736530;1726827870;(direct);(none);(not set)
5947;869253062.1724324536;1726828196;google;organic;(not set)
5948;218822339.1726633440;1726828248;google;cpc;(not set)
5949;219061748.1724503766;1726828496;google;cpc;(not set)
5950;1517110102.1726828211;1726828631;google;organic;(not set)
5951;252927262.1724918394;1726829672;google;cpc;(not set)
5952;1696678188.1726830307;1726830362;;;(not set)
5953;292931713.1726830172;1726830636;google;cpc;(not set)
5954;953525498.1720540637;1726830919;;;(not set)
5955;1560241016.1726830961;1726831005;(direct);(none);(not set)
5956;1008887273.1726830909;1726831081;google;cpc;(not set)
5957;2102224130.1726831214;1726831241;google;cpc;(not set)
5958;804157491.1726508455;1726831431;;;(not set)
5959;1644338836.1725369156;1726831585;google;cpc;(not set)
5960;1314581915.1726816750;1726831693;google;cpc;(not set)
5961;2095561158.1726206129;1726832913;live;organic;(not set)
5962;137971261.1726832890;1726832959;google;cpc;(not set)
5963;578656450.1726833219;1726833318;facebook;cpc;campaign_1
5964;1088921417.1725528361;1726833675;google;cpc;(not set)
5965;594280939.1726831342;1726833691;google;organic;(not set)
5966;1088921417.1725528361;1726834079;;;(not set)
5967;502493525.1723200735;1726834118;google;organic;(not set)
5968;2097450730.1726834431;1726834507;live;organic;(not set)
5969;1035466907.1720186912;1726834833;google;cpc;(not set)
5970;2140834124.1723201362;1726834936;google;cpc;(not set)
5971;1157436688.1714250317;1726835031;google;cpc;(not set)
5972;1885208814.1714250449;1726835600;facebook;cpc;campaign_1
5973;1960979794.1726835675;1726835702;l.instagram.com;referral;(not set)
5974;1652693829.1726047285;1726835857;google;cpc;(not set)
5976;429261807.1726835977;1726836014;google;organic;(not set)
5977;60322917.1726836014;1726836082;google;cpc;(not set)
5978;733739381.1726668361;1726836210;;;(not set)
5979;125102545.1726836205;1726836268;google;organic;(not set)
5980;1381157517.1725221913;1726836374;google;cpc;(not set)
5981;124484489.1726835733;1726836447;(direct);(none);(not set)
5982;1029812844.1726836735;1726836870;fb;paid;campaign_7
5983;1778438845.1726837148;1726837159;(direct);(none);(not set)
5984;1700238754.1726837103;1726837162;google;organic;(not set)
5985;1415576067.1726835278;1726837427;google;organic;(not set)
5986;926570289.1721498719;1726837558;google;cpc;(not set)
5987;1309646826.1726837810;1726837841;(direct);(none);(not set)
5988;280844693.1725525085;1726837873;google;organic;(not set)
5989;64644351.1726838317;1726838339;;;(not set)
5990;1074936197.1726838857;1726838869;facebook;cpc;campaign_1
5991;370309800.1724956263;1726839023;google;cpc;(not set)
5992;1310390433.1725304267;1726839187;google;cpc;(not set)
5993;521382063.1726735750;1726839284;l.facebook.com;referral;(not set)
5994;1176802015.1714034786;1726839286;google;cpc;(not set)
5995;126659443.1726469239;1726839592;google;cpc;(not set)
5996;2062115155.1726839529;1726839628;google;cpc;(not set)
5997;952516587.1715600009;1726839868;google;cpc;(not set)
5998;1087359708.1719051360;1726840065;facebook;cpc;campaign_1
5999;705644423.1726840238;1726840301;google;cpc;(not set)
6000;1034822974.1726840414;1726840478;m.facebook.com;referral;(not set)
6002;771528038.1726840496;1726840699;facebook;cpc;campaign_1
6003;1196754524.1726841057;1726841130;google;cpc;(not set)
6004;257146022.1726841580;1726841631;google;cpc;(not set)
6005;1783193085.1723043849;1726841719;google;cpc;(not set)
6006;887256123.1718476756;1726843212;google;cpc;(not set)
6007;439198342.1726843766;1726843819;facebook;cpc;campaign_1
6008;2002192746.1726603377;1726843856;m.facebook.com;referral;(not set)
6009;1029428050.1726843844;1726843992;google;cpc;(not set)
6010;51441891.1726843995;1726844013;(direct);(none);(not set)
6011;950334778.1713952880;1726844185;;;(not set)
6012;2122906870.1726844460;1726844553;google;cpc;(not set)
6013;7679caeb-65b4-4aef-8802-59ee6614202d;1726844795;facebook;cpc;campaign_1
6015;1173820454.1726845063;1726845132;google;organic;(not set)
6016;823363803.1726845281;1726845301;google;cpc;(not set)
6017;17045537.1726815643;1726845618;google;organic;(not set)
6018;302912089.1726845696;1726845808;google;organic;(not set)