-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathawstats062021.canadaviajes.com.py.txt
1262 lines (1233 loc) · 45.4 KB
/
awstats062021.canadaviajes.com.py.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
AWSTATS DATA FILE 7.7 (build 20180105)
# If you remove this file, all statistics for date 202106 will be lost/reset.
# Last config file used to build this data file was /home2/canadavi/tmp/awstats/awstats.canadaviajes.com.py.conf.
# Position (offset in bytes) in this file for beginning of each section for
# direct I/O access. If you made changes somewhere in this file, you should
# also remove completely the MAP section (AWStats will rewrite it at next
# update).
BEGIN_MAP 28
POS_GENERAL 2017
POS_TIME 2699
POS_VISITOR 25713
POS_DAY 43729
POS_DOMAIN 3621
POS_LOGIN 4328
POS_ROBOT 4483
POS_WORMS 5272
POS_EMAILSENDER 5403
POS_EMAILRECEIVER 5546
POS_SESSION 44612
POS_SIDER 44820
POS_FILETYPES 5681
POS_DOWNLOADS 5943
POS_OS 6150
POS_BROWSER 6534
POS_SCREENSIZE 8717
POS_UNKNOWNREFERER 8791
POS_UNKNOWNREFERERBROWSER 9465
POS_ORIGIN 9997
POS_SEREFERRALS 10142
POS_PAGEREFS 10366
POS_SEARCHWORDS 11649
POS_KEYWORDS 11801
POS_MISC 2363
POS_ERRORS 11860
POS_CLUSTER 4184
POS_SIDER_404 12023
END_MAP
# LastLine = Date of last record processed - Last record line number in last log - Last record offset in last log - Last record signature value
# FirstTime = Date of first visit for history file
# LastTime = Date of last visit for history file
# LastUpdate = Date of last update - Nb of parsed records - Nb of parsed old records - Nb of parsed new records - Nb of parsed corrupted - Nb of parsed dropped
# TotalVisits = Number of visits
# TotalUnique = Number of unique visitors
# MonthHostsKnown = Number of hosts known
# MonthHostsUnKnown = Number of hosts unknown
BEGIN_GENERAL 8
LastLine 20210701000607 318 89745 14205352521648
FirstTime 20210601004820
LastTime 20210630210716
LastUpdate 20210701074914 318 0 317 0 0
TotalVisits 470
TotalUnique 385
MonthHostsKnown 0
MonthHostsUnknown 488
END_GENERAL
# Misc ID - Pages - Hits - Bandwidth
BEGIN_MISC 10
RealPlayerSupport 0 0 0
FlashSupport 0 0 0
TotalMisc 0 0 0
PDFSupport 0 0 0
JavaEnabled 0 0 0
AddToFavourites 0 0 0
DirectorSupport 0 0 0
WindowsMediaPlayerSupport 0 0 0
JavascriptDisabled 0 0 0
QuickTimeSupport 0 0 0
END_MISC
# Hour - Pages - Hits - Bandwidth - Not viewed Pages - Not viewed Hits - Not viewed Bandwidth
BEGIN_TIME 24
0 13 14 1382436 35 449 51434372
1 19 210 33769804 20 339 17696904
2 19 185 35817067 31 82 1680646
3 26 321 54063002 33 82 867990
4 21 344 67822657 21 72 673243
5 16 23 2237950 25 62 2004494
6 17 250 40853104 15 80 998677
7 33 646 107262470 20 233 2754246
8 26 971 205605950 33 156 2404246
9 33 661 121981331 25 162 735302
10 23 341 67487688 60 118 595395
11 21 182 34569460 38 231 2316477
12 37 363 77877477 65 113 702651
13 207 526 70351751 23 129 495730
14 44 496 113079139 73 135 1892664
15 36 1034 194409382 40 249 3731647
16 19 649 126631058 24 92 3279765
17 31 841 195828101 27 91 493128
18 21 181 34728891 19 70 1504422
19 29 501 102170086 37 332 34659729
20 16 147 20718710 17 61 432341
21 11 12 1027218 17 77 796320
22 27 161 47157754 24 250 33908567
23 14 160 25082550 27 259 35880404
END_TIME
# Domain - Pages - Hits - Bandwidth
# The 25 first Pages must be first (order not required for others)
BEGIN_DOMAIN 30
us 415 4402 883672737
ua 164 164 16260116
py 30 1459 267719224
pk 23 339 66043645
ar 21 810 145038863
cn 16 351 69926940
ru 11 11 457813
gr 10 10 1003510
ca 7 333 66674212
ma 6 325 67226644
se 6 6 114364
br 6 6 279082
in 6 136 19195510
de 6 166 33356383
tr 5 165 33275620
co 5 166 33467975
hn 4 117 39032271
pl 3 163 33236430
gb 2 2 119946
au 2 2 37462
mx 2 58 3722664
no 2 2 200702
id 1 1 100351
cl 1 1 100351
ve 1 18 1013935
bo 1 1 19595
fr 1 1 19595
cr 0 1 376981
cw 1 1 100351
nl 1 2 121764
END_DOMAIN
# Cluster ID - Pages - Hits - Bandwidth
BEGIN_CLUSTER 0
END_CLUSTER
# Login - Pages - Hits - Bandwidth - Last visit
# The 10 first Pages must be first (order not required for others)
BEGIN_LOGIN 0
END_LOGIN
# Robot ID - Hits - Bandwidth - Last visit - Hits on robots.txt
# The 25 first Hits must be first (order not required for others)
BEGIN_ROBOT 17
Googlebot\-Image/ 632 70615798 20210630195613 0
Googlebot/ 322 4131668 20210630222423 0
baidu 318 66370658 20210622230707 0
crawl 149 32729102 20210616184116 0
bingpreview 135 2816733 20210624072905 0
bingbot/ 54 13085398 20210630204808 0
Applebot/ 20 242912 20210623143529 0
facebookexternalhit/ 17 1143379 20210628084209 0
YandexBot/ 16 294617 20210628194557 0
no_user_agent 15 886314 20210629160202 0
Dalvik/ 6 117570 20210627091054 0
MixrankBot 6 80727 20210618195438 0
oBot/ 4 78380 20210625201618 0
DuckDuckGo\-Favicons\-Bot/ 4 94854 20210619201609 0
discover 2 39190 20210625040416 0
curl 1 19595 20210604074237 0
YandexImages/ 1 0 20210617092436 0
END_ROBOT
# Worm ID - Hits - Bandwidth - Last visit
# The 5 first Hits must be first (order not required for others)
BEGIN_WORMS 0
END_WORMS
# EMail - Hits - Bandwidth - Last visit
# The 20 first Hits must be first (order not required for others)
BEGIN_EMAILSENDER 0
END_EMAILSENDER
# EMail - Hits - Bandwidth - Last visit
# The 20 first hits must be first (order not required for others)
BEGIN_EMAILRECEIVER 0
END_EMAILRECEIVER
# Files type - Hits - Bandwidth - Bandwidth without compression - Bandwidth after compression
BEGIN_FILETYPES 10
css 661 3617424 0 0
gif 100 34545951 0 0
pdf 20 6264585 0 0
php 2 14 0 0
woff2 77 4501440 0 0
js 1129 8599972 0 0
cgi 2 1384 0 0
png 1358 20298332 0 0
html 678 34491011 0 0
jpg 5192 1669594923 0 0
END_FILETYPES
# Downloads - Hits - Bandwidth
BEGIN_DOWNLOADS 4
/img/visa/requisitosvisaaustralia.pdf 8 0 1494112
/img/visa/imm5257e2.pdf 6 0 4000920
/img/visa/nuevazelanda.pdf 6 0 1983720
/img/visa/imm5645e.pdf 6 0 412278
END_DOWNLOADS
# OS ID - Hits
BEGIN_OS ID - Hits - Pages 24
macosx8 2 2
winunknown 3 3
linux 1104 165
macosx9 3 3
win7 1151 44
winnt 23 23
winxp 89 88
win95 12 12
winme 3 3
win2003 21 21
win2000 17 17
macosx 994 69
macosx12 1 1
winlong 41 2
ios_iphone 541 15
macosx10 2 2
win8 3 3
win98 2 2
Unknown 32 32
win8.1 301 10
win10 3560 197
linuxandroid 1302 33
macosx11 6 6
win16 6 6
END_OS
# Browser ID - Hits - Pages
BEGIN_BROWSER 104
firefox11.0 1 0
chrome27.0.1453.93 1 1
chrome91.0.4472.101 1104 22
chrome66.0.3359.181 58 58
firefox68.0 1 1
chrome78.0.3904.62 28 1
chrome90.0.4430.210 174 5
firefox89.0 165 5
safari14.0.3 1 1
chrome26.0.1410.65 1 1
chrome91.0.4472.77 1263 22
webcapture 3 3
chrome66.0.3359.117 3 3
chrome36.0.1985.125 1 1
opera8.00 3 3
chrome70.0.3538.102 322 4
safari13.1.2 59 3
chrome32.0.1664.3 1 1
chrome77.0.3865.120 1 1
chrome83.0.4103.116 310 3
opera9.01 3 3
safari14.0.2 167 4
chrome35.0.2117.157 1 1
firefox59.0 1 1
msie5.5 17 17
firefox82.0 8 4
chrome91.0.4472.88 1 0
safari14.0 133 3
msie6.0 99 99
chrome91.0.4472.124 163 3
chrome85.0.4183.121 8 8
chrome74.0.3729.169 1 1
Unknown 25 25
mozilla 7 7
chrome73.0.3683.86 1 1
msie7.0 3 3
chrome33.0.1750.517 4 4
firefox72.0 1 1
chrome63.0.3239.84 1 1
chrome79.0.3945.136 161 2
safari 165 5
chrome35.0.1916.47 3 3
firefox81.0 7 7
chrome78.0.3904.108 14 12
chrome62.0.3202.84 1 1
chrome84.0.4147.105 9 9
chrome87.0.4280.141 172 7
chrome85.0.4183.83 2 2
firefox57.0 5 5
edge12 1 1
firefox15.0.1 1 1
opera9.00 3 3
chrome41.0.2228.0 1 1
chrome75.0.3770.100 1 1
opera7.60 9 9
opera6.0 3 3
netscape4.76 2 2
opera7.02 3 3
chrome64.0.3282.140 485 6
msie4.01 6 6
msie11.0 1 1
chrome41.0.2227.1 1 1
chrome89.0.4389.114 10 10
firefox65.0 1 1
chrome29.0.1547.62 1 1
chrome35.0.2309.372 1 1
chrome34.0.1847.116 1 1
netscape3.0 3 3
chrome90.0.4430.212 334 9
firefox 2 2
chrome51.0.2704.84 1 1
chrome91.0.4472.120 1 0
chrome83.0.4103.61 3 3
chrome88.0.4240.193 14 14
iphone 74 2
chrome72.0.3626.109 166 6
msie9.0 58 1
chrome78.0.3904.87 3 3
chrome37.0.2049.0 1 1
chrome41.0.2226.0 1 1
msie5.0 7 7
chrome75.0.3770.90 796 10
chrome83.0.4103.44 1 1
chrome57.0.2987.133 555 41
chrome31.0.3165.45 1 1
chrome41.0.2225.0 1 1
chrome90.0.4430.93 489 9
firefox41.0 1 1
chrome47.0.2526.106 5 5
chrome83.0.4103.97 306 146
firefox88.0 488 8
chrome43.0.2376.69 18 18
firefox53.0 1 1
safari14.1.1 328 7
chrome71.0.3578.98 3 3
firefox40.1 2 2
chrome89.0.4389.105 1 0
chrome73.0.3683.90 4 4
opera53.0.2907.99 1 1
chrome80.0.3987.87 162 2
chrome79.0.3945.130 163 4
msie2.0 6 6
chrome63.0.3239.132 2 2
chrome36.0.1985.67 3 3
END_BROWSER
# Screen size - Hits
BEGIN_SCREENSIZE 0
END_SCREENSIZE
# Unknown referer OS - Last visit date
BEGIN_UNKNOWNREFERER 5
User-Agent\ 20210611095401
Mozilla/5.0_(compatible;_woorankreview/2.0;__https://www.woorank.com/) 20210606130336
Mozilla/5.0_(compatible;_ips-agent) 20210611025831
Expanse,_a_Palo_Alto_Networks_company,_searches_across_the_global_IPv4_space_multiple_times_per_day_to_identify_customers'_presences_on_the_Internet._If_you_would_like_to_be_excluded_from_our_scans,_please_send_IP_addresses/domains_to:_scaninfo@paloaltonetworks.com 20210630101148
NetSystemsResearch_studies_the_availability_of_various_services_across_the_internet._Our_website_is_netsystemsresearch.com 20210629011233
END_UNKNOWNREFERER
# Unknown referer Browser - Last visit date
BEGIN_UNKNOWNREFERERBROWSER 3
User-Agent\ 20210611095401
Expanse,_a_Palo_Alto_Networks_company,_searches_across_the_global_IPv4_space_multiple_times_per_day_to_identify_customers'_presences_on_the_Internet._If_you_would_like_to_be_excluded_from_our_scans,_please_send_IP_addresses/domains_to:_scaninfo@paloaltonetworks.com 20210630101148
NetSystemsResearch_studies_the_availability_of_various_services_across_the_internet._Our_website_is_netsystemsresearch.com 20210629011233
END_UNKNOWNREFERERBROWSER
# Origin - Pages - Hits
BEGIN_ORIGIN 6
From0 450 652
From1 0 0
From2 28 35
From3 154 154
From4 127 8378
From5 0 0
END_ORIGIN
# Search engine referers ID - Pages - Hits
BEGIN_SEREFERRALS 4
youtube 11 11
www_google_com_py 4 5
r_search_yahoo_com 1 1
www_google_com 12 18
END_SEREFERRALS
# External page referers - Pages - Hits
# The 25 first Pages must be first (order not required for others)
BEGIN_PAGEREFS 40
https://xxxhdvideo.site 12 12
https://dverirespekt.ru 9 9
https://avtoskorost.com.ua 6 6
https://komputers-best.ru 6 6
https://palmira-clinic.com.ua 6 6
https://medtest-clinic.ru 6 6
https://gorses.online 6 6
https://pornoinn.com 6 6
https://xxxasianporn.net 6 6
https://stk-vrn.ru 6 6
https://megapoliscom.com 5 5
https://www.etsy.com/shop/SulaevaArt 4 4
https://pornohub.me 3 3
https://sesru.ru 3 3
https://uzporno.mobi 3 3
https://exci.ru 3 3
https://www.voyage-to.me 3 3
https://subject-book.com 3 3
https://termik18.ru 3 3
https://slovar-sinonimov.com 3 3
https://ekocenr.ru 3 3
https://greenshop.su 3 3
https://www.book-bets.com 3 3
https://seksphoto.ru 3 3
https://sexkvartal.com 3 3
https://l.instagram.com 1 1
https://sexkvartal.com 2 2
https://jobgirl24.ru 2 2
http://webcamtalk.net 3 3
http://www.bingblog.top 1 1
https://zerkolov.ru 3 3
https://avtolombard-voronezh.ru 3 3
https://xn--80atua3d.xn--p1ai 3 3
https://skinali.photo-clip.ru 3 3
http://regionshop.biz 3 3
http://www.webwiki.es/www.canadaviajes.com.py 1 1
https://zagadki-rebusy.com 3 3
https://instajust.com 3 3
https://rupostindex.com 3 3
https://18ps.ru 3 3
END_PAGEREFS
# Search keyphrases - Number of search
# The 10 first number of search must be first (order not required for others)
BEGIN_SEARCHWORDS 0
END_SEARCHWORDS
# Search keywords - Number of search
# The 25 first number of search must be first (order not required for others)
BEGIN_KEYWORDS 0
END_KEYWORDS
# Errors - Hits - Bandwidth
BEGIN_ERRORS 7
409 60 4980
101 2 0
406 697 157522
301 2 477
206 40 2383424
403 2 268
404 1346 6645794
END_ERRORS
# URL with 404 errors - Hits - Last URL referrer
BEGIN_SIDER_404 261
/img/descubripaises/ca/bannerbo.jpg 7 http://www.canadaviajes.com.py/en/
/img/sujetoadisponibilidad/brasil/brasilimbatible.jpg 6 http://www.canadaviajes.com.py/en/
/wp1/ 4 -
/new/wp-admin/setup-config.php 1 -
/en/galerialink 1 http://www.canadaviajes.com.py/en/index.html
/img/sujetoadisponibilidad/argentina/calafate.jpg 6 http://www.canadaviajes.com.py/en/
/blog/ 4 -
/phpmyadmin/ 1 -
/img/galeria/machupichu/machupichu.jpg 7 http://www.canadaviajes.com.py/en/
/+595981602583 8 http://canadaviajes.com.py/
//wp-admin/setup-config.php 1 -
/web2015/promo/Promos2016/v4/fitpat_2016-1.jpg 1 -
/.env.development.local 1 -
/html/Congreso/pdf/PAYMENT%20PROCEDURES.pdf 1 -
/img/salidasgarantizadas/cancun-sg/cancunbanner.jpg 6 http://www.canadaviajes.com.py/en/
/html/Congreso/html/formulario-pago.htm 1 -
/web2015/html/Congreso/html/contactenos.htm 2 -
/apple-touch-icon-precomposed.png 1 -
/img/toursdestacados/perutd/CUSCOVINIVUNCA.jpg 4 http://www.canadaviajes.com.py/en/
/wp-content/plugins/apikey/apikey.php.suspected 1 -
/web/ 4 -
/pma/ 1 -
/apple-touch-icon-152x152.png 1 -
/old/wp-admin/install.php 1 -
/en/img/toursdestacados/perutd/CUSCOVINIVUNCA.jpg 1 http://www.canadaviajes.com.py/en/index.html
/web2015/html/inicio.htm 3 -
/web2015/html/qsomos.htm 2 -
/en/img/sujetoadisponibilidad/caribe/SAMANA.jpg 1 http://www.canadaviajes.com.py/en/index.html
/img/toursdestacados/perutd/CUSCOMACHUPICHU.jpg 4 http://www.canadaviajes.com.py/en/
/old/wp-admin/setup-config.php 1 -
/img/sujetoadisponibilidad/caribe/SanAndrestodoela%C3%B1o.jpg 5 http://www.canadaviajes.com.py/en/
/img/galeria/japon/japon2.jpg 1 http://www.canadaviajes.com.py/en/index.html
/README.txt 1 -
/blog/wp-includes/wlwmanifest.xml 1 -
/img/sujetoadisponibilidad/canada/canada3.jpg 6 http://www.canadaviajes.com.py/en/
/main/ 4 -
/img/sujetoadisponibilidad/canada/estecanadiensecanada.jpg 6 http://www.canadaviajes.com.py/en/
/img/galeria/japon/japon3.jpg 1 http://www.canadaviajes.com.py/en/index.html
/images/ 1 -
/html/cir_esp-mc.htm 1 -
/db/ 1 -
/cms/ 4 -
/img/salidasgarantizadas/brasil-sg/riodejaneiro2019.jpg 1 -
//wp-admin/install.php 1 -
/img/salidasgarantizadas/cancun-sg/cancunanonuevo.jpg 6 http://www.canadaviajes.com.py/en/
/js/mage/cookies.js 1 canadaviajes.com.py
/img/sujetoadisponibilidad/canada/canada4.jpg 6 http://www.canadaviajes.com.py/en/
/html/Congreso/html/programa.htm 2 -
/wp-login.php 1 -
/img/sujetoadisponibilidad/argentina/bariloche2.jpg 7 http://www.canadaviajes.com.py/en/
/wordpress/wp-content/plugins/ioptimization/IOptimize.php 1 -
/web2015/html/arme_circuito.htm 11 -
/img/galeria/japon/japon.jpg 6 http://www.canadaviajes.com.py/en/
/en/tel:+59581970815 1 http://www.canadaviajes.com.py/en/index.html
/img/salidasgarantizadas/argentina-sg/buenosaires.jpg 6 http://www.canadaviajes.com.py/en/
/old/ 4 -
/img/descubripaises/ce/pages/3-thumb.jpg 1 -
/app-ads.txt 4 -
/img/salidasgarantizadas/argentina-sg/gar5.jpg 4 http://canadaviajes.com.py
/img/salidasgarantizadas/brasil-sg/natalsg.jpg 6 http://www.canadaviajes.com.py/en/
/blog/wp-admin/setup-config.php 1 -
/mysqladmin/ 1 -
/web2015/html/servicios.htm 2 -
/e/data/js/ajax.js 2 -
/index.rdf 1 -
/wp/ 4 -
/sql.php 1 -
/img/salidasgarantizadas/brasilbus-sg/bannerbrasilbus.jpg 7 -
/site/ 4 -
/web2015/html/Congreso/pdf/Pre-Tour%20Pantal%20World%20Congress%202015%20Santa%20Gertrudis%20%2017%20-%2022%20Mai%2015%20starting%20at%20Facenda%20San%20Francisco.pdf 1 -
/html/recomendaciones/RecomendacionesMSPBS.pdf 1 -
/img/galeria/bariloche/.jpg 5 http://canadaviajes.com.py
/img/salidasgarantizadas/otrasplayas-sg/otrasplayasbanner.jpg 7 http://www.canadaviajes.com.py/en/
/wp-content/ 1 -
/myadmin/ 1 -
/apple-touch-icon-152x152-precomposed.png 1 -
/img/salidasgarantizadas/otrasplayas-sg/arubaenero2019.jpg 6 http://www.canadaviajes.com.py/en/
/data/admin/allowurl.txt 2 -
/img/toursdestacados/puntacatd/pujene.jpg 5 http://www.canadaviajes.com.py/en/
/img/galeria/cuba/cuba2.jpg 1 http://www.canadaviajes.com.py/en/index.html
/img/toursdestacados/puntacatd/puntacanafeb.jpg 5 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/argentina-sg/gar4.jpg 4 http://canadaviajes.com.py
/.env.production.local 1 -
/img/toursdestacados/argentinatd/puertomont.jpg 6 http://www.canadaviajes.com.py/en/
/web2015/html/exc_nac.htm 3 -
/img/salidasgarantizadas/cancun-sg/cancunotrassg3.jpg 6 http://www.canadaviajes.com.py/en/
/wp/wp-admin/setup-config.php 1 -
/img/salidasgarantizadas/brasilbus-sg/CAIOBATERRESTRE.jpg 6 http://www.canadaviajes.com.py/en/
/ads.txt 9 -
/mysql/ 1 -
/img/galeria/otawa/otawa2.jpg 1 http://www.canadaviajes.com.py/en/index.html
/wp-content/plugins/apikey/apikey.php 1 -
/wordpress/wp-content/plugins/ioptimization/IOptimizes.php 1 -
/img/toursdestacados/europatd/europatd.jpg 7 http://www.canadaviajes.com.py/en/
/new/wp-admin/install.php 1 -
/img/sujetoadisponibilidad/caribe/COSTARICAtodoela%C3%B1o.jpg 5 http://www.canadaviajes.com.py/en/
/img/quienes-somos2.jpg 1 http://www.canadaviajes.com.py/en/
/vendor/phpunit/phpunit/LICENSE 7 -
/img/salidasgarantizadas/brasil-sg/maragogisg.jpg 7 http://www.canadaviajes.com.py/en/
/img/toursdestacados/puntacatd/pujfeb.jpg 5 http://www.canadaviajes.com.py/en/
/img/galeria/bolivia/bolivia.jpg 7 http://www.canadaviajes.com.py/en/
/database/ 1 -
/en/img/sujetoadisponibilidad/caribe/COSTARICAtodoela%C3%B1o.jpg 1 http://www.canadaviajes.com.py/en/index.html
/img/salidasgarantizadas/otrasplayas-sg/sanandresotrasg.jpg 7 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/brasil-sg/salvadorbahia.jpg 6 http://www.canadaviajes.com.py/en/
/vendor/phpunit/phpunit/src/Util/PHP/ 1 -
/backup/ 4 -
/img/sujetoadisponibilidad/europa/europa1.jpg 6 http://www.canadaviajes.com.py/en/
/img/sujetoadisponibilidad/canada/canada5.jpg 6 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/cancun-sg/cancundeciembre.jpg 7 http://www.canadaviajes.com.py/en/
/admin.php 3 www.google.com
/img/galeria/machupichu/machupichu2.jpg 1 http://www.canadaviajes.com.py/en/index.html
/en/img/toursdestacados/perutd/CUSCOMACHUPICHU.jpg 1 http://www.canadaviajes.com.py/en/index.html
/img/galeria/cuba/cuba.jpg 7 -
/test/wp-admin/install.php 1 -
/apple-touch-icon.png 1 -
/img/salidasgarantizadas/brasilbus-sg/CAMBOIUTERRESTRE.jpg 7 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/brasil-sg/brasilalnatalinclusive.jpg 6 http://www.canadaviajes.com.py/en/
//vendor/phpunit/phpunit/phpunit.xsd 2 -
/wp/wp-content/plugins/ioptimization/IOptimizes.php 1 -
/bak/ 4 -
/wp/wp-content/plugins/ioptimizations/IOptimizes.php 1 -
/wp-content/themes/twentyfourteen/404.php 1 -
/test/wp-admin/setup-config.php 1 -
/img/toursdestacados/europatd/europavacacionestd.jpg 60 http://www.canadaviajes.com.py/
/wp-content/themes/twentyeleven/404.php 1 -
/img/toursdestacados/puntacatd/punfeb.jpg 5 http://www.canadaviajes.com.py/en/
/media/system/js/core.js 1 -
/v2/ 4 -
/wp2/ 4 -
/CHANGELOG.txt 1 -
/wp/wp-content/plugins/ioptimization/IOptimize.php 1 -
/img/salidasgarantizadas/brasil-sg/maceiosg.jpg 7 http://www.canadaviajes.com.py/en/
/web2015/html/formularios.htm 3 -
/humans.txt 3 -
/index.html 13 -
/fotos/chaco/148-150.jpg 1 -
/wp-json/oembed/1.0/embed 4 -
/2019/ 4 -
/img/galeria/southafrica/southafrica.jpg 6 http://www.canadaviajes.com.py/en/
/new-site/ 4 -
/wordpress/wp-admin/install.php 1 -
/img/salidasgarantizadas/argentina-sg/gar1.jpg 64 http://www.canadaviajes.com.py/
/pics/logo_aero/logo8.jpg 1 -
/web2015/html/Congreso/html/programa.htm 1 -
/img/galeria/otawa/otawa.jpg 7 http://www.canadaviajes.com.py/en/
/img/galeria/southafrica/southafrica2.jpg 1 http://www.canadaviajes.com.py/en/index.html
/temp/ 4 -
/owa/auth/logon.aspx 3 -
/wp/wp-login.php 1 -
/web2015/html/Congreso/pdf/progrma%20santa%20gertrudis.pdf 1 -
/tel:+59521211192 4 http://canadaviajes.com.py
/index.rss 1 -
/tel:+59571127188 4 http://canadaviajes.com.py
/wp-admin/admin-ajax.php 2 -
/feeds 1 -
/img/sujetoadisponibilidad/canada/ESENCIASDELOESTECANADA.jpg 7 -
/robots.txt 141 -
/.env.live 1 -
/img/salidasgarantizadas/otrasplayas-sg/cartagenaybarusg.jpg 6 http://www.canadaviajes.com.py/en/
/wp-content/plugins/ioptimization/IOptimizes.php 1 -
/blog/wp-content/plugins/ioptimization/IOptimizes.php 1 -
/v1/ 4 -
/.env.stage 1 -
/wp/wp-admin/install.php 1 -
/.env.local 1 -
/demo/ 4 -
/img/toursdestacados/puntacatd/puntacanatd.jpg 6 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/cancun-sg/CANCUNENE19.jpg 6 http://www.canadaviajes.com.py/en/
/img/toursdestacados/argentinatd/ushtd.jpg 6 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/brasilbus-sg/FLNTERRESTRE.jpg 6 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/argentina-sg/gar3.jpg 65 http://www.canadaviajes.com.py/
/blog/wp-content/plugins/ioptimizations/IOptimizes.php 1 -
/tel:+59581970815 4 http://canadaviajes.com.py
/fotos/atyra/foto2.jpg 1 -
/en/img/toursdestacados/perutd/perutd2.jpg 1 http://www.canadaviajes.com.py/en/index.html
/img/sujetoadisponibilidad/europa/europa3.jpg 6 http://www.canadaviajes.com.py/en/
/.env.prod.local 1 -
/img/toursdestacados/puntacatd/pujjan.jpg 5 http://www.canadaviajes.com.py/en/
/img/sujetoadisponibilidad/argentina/USHUAIA2.jpg 6 http://www.canadaviajes.com.py/en/
/mewebmail/Mondo/lang/sys/login.aspx 1 -
/blog/wp-content/plugins/ioptimization/IOptimize.php 1 -
/web2015/html/contactenos.htm 49 -
/wp-content/plugins/ioptimization/IOptimize.php 1 -
/img/toursdestacados/puntacatd/puntanatd2.jpg 5 http://www.canadaviajes.com.py/en/
/wordpress/wp-admin/setup-config.php 1 -
/dev/ 4 -
/img/galeria/bolivia/bolivia2.jpg 1 http://www.canadaviajes.com.py/en/index.html
/web2015/html/sudamerica.html 1 -
/en/img/sujetoadisponibilidad/caribe/SanAndrestodoela%C3%B1o.jpg 1 http://www.canadaviajes.com.py/en/index.html
/img/sujetoadisponibilidad/brasil/costadesauipebra.jpg 6 http://www.canadaviajes.com.py/en/
/img/toursdestacados/europatd/semanasantaeuropa2019.jpg 60 http://www.canadaviajes.com.py/
/license.txt 1 -
/bk/ 4 -
/img/toursdestacados/puntacatd/caaribeec.jpg 5 http://www.canadaviajes.com.py/en/
/img/toursdestacados/puntacatd/pujfebrero.jpg 5 http://www.canadaviajes.com.py/en/
/web2015/html/medio_oriente.html 2 -
/wp-content/themes/twentynineteen/404.php 1 -
/feed 1 -
/img/salidasgarantizadas/argentina-sg/gar2.jpg 62 http://www.canadaviajes.com.py/
/web2015/html/Congreso/pdf/PAYMENT%20PROCEDURES.pdf 1 -
/old-site/ 4 -
/img/toursdestacados/argentinatd/mendoza.jpg 6 http://www.canadaviajes.com.py/en/
/img/sujetoadisponibilidad/brasil/brasil-natal.jpg 9 http://www.canadaviajes.com.py/en/
/old-wp/ 4 -
/img/galeria/bolivia/bolivia3.jpg 1 http://www.canadaviajes.com.py/en/index.html
/img/sujetoadisponibilidad/caribe/SAMANA.jpg 6 http://www.canadaviajes.com.py/en/
/web2015/html/Congreso/html/acreditacion.htm 1 -
/img/sujetoadisponibilidad/canada/otawa1.jpg 6 http://www.canadaviajes.com.py/en/
/tmp/ 4 -
/install/ 4 -
/img/galeria/japon/japon4.jpg 1 http://www.canadaviajes.com.py/en/index.html
/home/ 4 -
/img/salidasgarantizadas/brasil-sg/natalsg2.jpg 6 http://www.canadaviajes.com.py/en/
/index.xml 1 -
/wp-includes 3 www.google.com
/admin 1 -
/img/salidasgarantizadas/brasilbus-sg/RIOTERRESTRE.jpg 6 http://www.canadaviajes.com.py/en/
/fotos/chaco/26%20-%20Isal%20Poi-150.jpg 1 -
/blog/wp-admin/install.php 1 -
/Mondo/lang/sys/Login.aspx 1 -
/2020/ 4 -
/wp-json/wp/v2/users/ 6 -
/wordpress/ 4 -
/img/toursdestacados/perutd/perutd2.jpg 5 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/argentina-sg/arg.jpg 6 http://www.canadaviajes.com.py/en/
/img/salidasgarantizadas/cancun-sg/cancunotrassg.jpg 6 http://www.canadaviajes.com.py/en/
/rss.xml 1 -
/2018/ 4 -
/plugins/content/apismtp/apismtp.php 1 -
/en/tel:+59571127188 1 http://www.canadaviajes.com.py/en/index.html
/img/galeria/southafrica/southafrica3.jpg 1 http://www.canadaviajes.com.py/en/index.html
/fotos/chaco/Salazar%20027-150.jpg 1 -
/web2015/html/informaciones.htm 2 -
/img/salidasgarantizadas/cancun-sg/cancunotrassg2.jpg 6 http://www.canadaviajes.com.py/en/
/plugins/content/apismtp/apismtp.php.suspected 1 -
/img/descubripaises/ar2/ar.html 6 http://canadaviajes.com.py
/wp-content/plugins/ioptimizations/IOptimizes.php 1 -
/en/+595981602583 1 http://www.canadaviajes.com.py/en/index.html
/wp-content/themes/twentysixteen/404.php 1 -
/en/tel:+59521211192 1 http://www.canadaviajes.com.py/en/index.html
/img/toursdestacados/argentinatd/ushtd2.jpg 7 http://www.canadaviajes.com.py/en/
/test/ 4 -
/img/salidasgarantizadas/brasil-sg/barasil0.jpg 6 http://www.canadaviajes.com.py/en/
/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php 2 www.google.com
/img/sujetoadisponibilidad/argentina/calafate2.jpg 15 -
/wordpress/wp-content/plugins/ioptimizations/IOptimizes.php 1 -
/img/salidasgarantizadas/brasilbus-sg/GUAATUBATERRESTRE.jpg 6 http://www.canadaviajes.com.py/en/
/img/sujetoadisponibilidad/canada/canada.jpg 6 http://www.canadaviajes.com.py/en/
/adminer.php 1 -
/img/sujetoadisponibilidad/europa/europa2.jpg 15 -
/dup-installer/main.installer.php 1 -
/.env.dev.local 1 -
/img/sujetoadisponibilidad/canada/rockymountaineer.jpg 7 http://www.canadaviajes.com.py/en/
/img/sujetoadisponibilidad/brasil/brasil1.jpg 6 http://www.canadaviajes.com.py/en/
/phpMyAdmin/ 1 -
/sql/ 1 -
/img/sujetoadisponibilidad/canada/canada2.jpg 6 http://www.canadaviajes.com.py/en/
/pics/logo_aero/logo11.jpg 1 -
/wp-includes/wlwmanifest.xml 14 -
/new/ 4 -
END_SIDER_404
# Host - Pages - Hits - Bandwidth - Last visit date - [Start date of last visit] - [Last page of last visit]
# [Start date of last visit] and [Last page of last visit] are saved only if session is not finished
# The 25 first Hits must be first (order not required for others)
BEGIN_VISITOR 488
195.123.209.118 54 54 5418954 20210628200450
5.34.180.192 48 48 4816848 20210629221521
111.119.187.26 23 339 66043645 20210607134552
37.229.198.180 23 23 2308073 20210630210716
178.150.47.62 21 21 2071435 20210611112417
52.34.76.65 12 652 136095208 20210601082653
40.117.129.12 10 10 1003510 20210624024632
5.248.164.213 10 10 1003510 20210621060015
35.236.212.169 9 9 903159 20210605111218
66.115.173.166 8 140 45169296 20210630141801
161.97.131.4 8 140 45169296 20210610174410
104.168.82.18 8 140 45169296 20210615223312
173.213.84.204 7 11 1349767 20210614190300
190.112.168.39 6 154 8396552 20210628071040
5.248.239.18 6 6 602106 20210614002834
181.122.204.194 5 165 33226630 20210612091353
159.242.228.48 5 5 501755 20210628052442
18.116.24.90 5 5 501755 20210610040403
186.114.10.182 5 166 33467975 20210608114224
35.227.24.99 4 320 65887490 20210624165314
72.140.89.148 4 169 33245292 20210604175325
188.194.14.25 4 164 33236437 20210606141906
190.112.168.49 4 167 35520689 20210611193305
191.102.135.135 4 117 39032271 20210617122335
113.195.167.237 4 4 78380 20210622070310
207.46.13.184 0 3 7237
18.237.127.248 1 1 19595 20210610131436
190.104.174.220 3 163 33236430 20210628073741
40.94.30.221 0 5 2450425
54.190.150.125 1 1 19595 20210630130935
34.221.155.79 1 1 19595 20210606132532
54.245.27.36 1 1 19595 20210623131414
69.171.251.2 0 1 113880
34.78.64.164 1 1 100351 20210618185227
35.161.169.182 1 1 19595 20210620132308
40.94.30.212 1 23 2300887 20210603165957
40.94.29.99 0 26 5977349
18.236.111.64 2 2 39190 20210611131340
54.70.53.60 2 162 34002022 20210601084243
18.236.80.130 1 1 19595 20210607132315
69.171.251.117 0 3 241485
34.77.162.8 1 1 100351 20210625095508
40.94.20.57 0 25 4678651
54.184.201.132 1 1 19595 20210617132528
54.244.71.41 1 1 19595 20210607133210
77.74.177.113 1 1 19595 20210609151242
52.34.253.52 1 1 100351 20210619054751
54.188.77.81 1 1 19595 20210626131957
34.215.225.100 1 1 19595 20210622132340
18.236.200.242 1 1 19595 20210602132714
136.244.97.1 1 1 19595 20210619163056
104.223.37.153 1 1 100351 20210602155548
40.94.31.7 1 23 3268387 20210601133645
40.94.29.23 1 20 1746359 20210602155550
144.126.139.255 1 1 19595 20210624191920
34.220.208.104 1 1 19595 20210612143343
50.112.19.133 1 1 19595 20210620133359
40.94.29.28 0 1 27832
54.184.114.180 2 2 39190 20210628133726
66.249.85.82 0 1 378904
54.208.13.120 2 2 39190 20210606125126
185.213.155.163 2 2 39190 20210601010809
181.124.176.251 2 133 20803046 20210613231042
40.94.20.66 0 26 4998162
52.13.90.44 1 1 19595 20210604130622
35.161.90.42 1 1 19595 20210630132056
69.171.251.6 0 9 187759
181.94.225.75 3 151 30934959 20210614193324
181.124.60.68 1 1 19595 20210608133055
40.94.29.9 0 9 3545453
40.77.167.5 0 1 349
52.34.88.13 1 1 19595 20210611131433
54.189.127.99 1 1 19595 20210610132306
181.238.201.201 0 1 481653
54.218.247.178 2 2 39190 20210624130629
92.118.160.41 1 1 100351 20210614195557
40.94.25.222 0 1 27832
134.119.184.170 2 2 200702 20210605053327
40.94.29.58 0 10 4034638
54.185.68.69 2 2 39190 20210618131555
52.37.206.66 1 1 19595 20210610131317
54.170.107.240 1 1 19595 20210608063600
40.94.31.25 0 26 5080408
69.171.251.15 1 1 77160 20210607043529
157.55.39.101 0 2 4684
35.195.62.89 1 1 100351 20210627064740
68.169.44.133 1 1 100351 20210608074703
52.33.245.195 1 1 19595 20210608130721
34.219.21.13 1 1 19595 20210612131451
157.55.39.96 0 2 4682
199.217.102.5 1 1 100351 20210601103704
34.215.69.55 1 1 19595 20210614055622
104.247.226.236 0 1 192490
187.66.239.83 1 1 100351 20210629162605
216.104.38.108 1 1 100351 20210604095518
40.94.29.75 1 31 5587934 20210602155601
34.221.171.136 1 1 19595 20210614122321
54.187.77.172 1 1 19595 20210612130730
190.128.183.14 3 133 19678209 20210629095419
54.188.175.21 1 1 19595 20210609132358
34.222.16.62 1 1 19595 20210605134805
34.241.254.249 2 2 39190 20210619172626
34.220.129.142 1 1 19595 20210624130703
34.220.186.68 1 1 100351 20210615150944
54.189.108.36 1 1 19595 20210616131032
201.141.113.54 2 58 3722664 20210609123803
3.142.94.174 3 38 310485 20210630073107
69.171.251.10 0 2 783518
34.221.139.101 2 2 39190 20210604131509
128.14.209.234 1 1 19595 20210627103430
69.171.251.13 0 2 2766
184.94.240.92 2 2 200702 20210614220032
104.197.165.66 2 2 39190 20210603123054
118.81.3.162 1 1 100351 20210610155241
40.94.33.99 0 27 5426966
212.90.39.68 2 2 39190 20210627055243
54.201.227.155 1 1 19595 20210627131802
18.237.97.127 1 1 19595 20210608130743
23.98.149.218 2 2 200702 20210606050452
54.244.42.248 1 1 19595 20210626132038
190.2.133.224 1 1 100351 20210605013740
209.177.157.148 1 1 100351 20210603165954
18.236.153.9 2 2 39190 20210622131722
103.96.149.124 1 1 19595 20210628131243
34.86.35.15 1 1 100351 20210618190910
40.94.31.31 0 78 16533999
69.171.251.19 0 11 883471
35.162.60.218 1 1 19595 20210628131838
42.192.184.76 0 4 647019
190.171.219.58 1 1 19595 20210614181127
95.79.202.108 1 1 100351 20210629202854
62.76.233.88 1 1 19595 20210609074734
34.96.130.12 1 1 100351 20210624185327
40.94.29.74 0 44 7472778
54.178.182.46 1 1 19595 20210620034330
40.94.29.29 0 26 6100735
35.167.241.203 1 1 19595 20210607133229
34.222.57.131 1 1 19595 20210603132303
50.112.172.11 1 1 19595 20210613013737
34.212.20.186 1 1 19595 20210623134154
34.212.150.251 1 1 19595 20210603134953
54.149.152.120 1 1 19595 20210625142747
1.15.175.155 0 2 1107045
34.217.112.86 1 1 19595 20210628133657
34.221.191.179 1 1 19595 20210621133420
54.189.52.33 1 1 19595 20210614131642
52.89.245.24 1 1 19595 20210618140745
69.171.251.118 0 41 11760562
92.118.160.61 2 2 200702 20210619185203
5.2.69.42 1 1 100351 20210605200258
54.191.43.96 1 1 19595 20210628133145
52.192.73.251 1 1 19595 20210609005446
18.237.211.90 1 1 19595 20210608130748
52.26.58.233 1 1 19595 20210605131322
92.118.160.5 1 1 100351 20210619071828
207.46.13.35 0 1 37130
18.184.155.204 1 1 19595 20210605114407
176.88.131.38 3 163 33236430 20210628043229
34.247.40.147 1 1 19595 20210611193242
40.94.29.24 0 10 3601313
5.188.62.140 1 1 19595 20210613091147
194.5.53.86 1 1 100351 20210628214634
52.41.17.166 1 1 19595 20210610132031
40.94.29.79 0 21 2096079
35.163.2.202 1 1 19595 20210621132858
40.94.25.225 1 23 5337210 20210608075119
35.163.8.239 1 1 19595 20210614121743
40.94.30.214 0 18 3024781
54.184.173.46 1 1 19595 20210624130554
185.180.143.16 1 1 19595 20210623130253
34.78.173.112 1 1 100351 20210612095045
54.213.103.21 1 1 19595 20210605132100
40.94.30.139 0 31 6690691
69.171.251.4 0 2 7020
54.212.110.174 1 1 19595 20210609131929
54.214.228.26 1 1 19595 20210624134646
35.162.172.220 1 1 19595 20210605134448
40.94.25.195 0 20 4508474
35.160.223.71 1 1 19595 20210615134519
34.77.162.22 2 2 200702 20210630101148
181.215.176.137 1 1 100351 20210609184056
46.45.185.190 1 1 19595 20210615051757
40.94.33.35 1 18 4192676 20210602155608
181.94.209.207 3 161 32983110 20210604155950
54.237.197.98 1 1 19595 20210615064435
54.191.79.118 1 1 100351 20210625114407
34.223.113.82 1 1 19595 20210603132209
35.166.149.157 1 1 19595 20210605131342
40.94.31.28 0 69 11823412
40.94.33.65 0 27 4732898
42.193.23.126 0 3 561158
54.244.175.203 3 3 58785 20210607132926
54.245.27.206 1 1 19595 20210613131511
54.245.200.140 1 1 19595 20210617131413
191.97.126.230 3 163 33236430 20210605143629
3.238.50.60 1 1 19595 20210627070327
34.77.200.174 1 1 100351 20210624104533
35.187.17.25 1 1 100351 20210621144528
52.42.79.222 1 1 19595 20210618105345
157.55.39.158 0 1 31902
40.94.31.9 0 11 3671107
34.75.175.220 2 158 32942256 20210608154940
54.200.82.21 1 1 19595 20210626132003
34.77.162.33 1 1 100351 20210602013702
54.202.28.248 1 1 19595 20210622131914
40.94.31.33 0 4 30313
34.222.167.169 1 1 19595 20210613013700
34.221.176.171 2 2 39190 20210610134914
45.129.18.52 1 1 0 20210629130838
54.190.0.238 1 1 19595 20210610131353
40.94.31.93 0 28 6101747
34.216.62.92 1 1 19595 20210627131714
192.171.233.186 1 1 19595 20210615220956
181.122.97.52 2 74 6597499 20210602065210
40.94.25.134 0 38 6135844
13.232.96.15 1 1 19595 20210611091612
34.215.199.165 1 1 19595 20210603132157
113.31.114.242 3 3 58785 20210627151517
54.191.140.221 1 1 19595 20210611150840
69.171.251.112 0 13 6270253
18.203.81.194 1 1 19595 20210614172612
212.129.152.41 0 1 21413
35.162.15.95 1 1 19595 20210614122307
103.221.234.144 1 2 499099 20210614120453
52.41.18.51 1 1 19595 20210629141308
54.190.199.237 2 2 39190 20210626131339
100.21.218.158 2 4 94854 20210622034550
34.211.144.0 1 1 19595 20210619131141
34.212.40.152 1 1 19595 20210610132024
34.86.35.13 2 2 200702 20210622041543
54.203.73.198 1 2 47427 20210601012835
40.94.30.151 0 5 45684
34.216.131.177 1 1 19595 20210622132750
40.94.29.64 0 16 2479617
54.187.84.128 1 1 19595 20210603131554
54.190.1.210 1 1 19595 20210621133033
34.222.71.136 1 1 19595 20210617131707
13.236.114.230 1 1 19595 20210617120025
54.188.234.253 1 1 19595 20210623134133
35.231.133.197 2 160 32943745 20210630023456
54.244.99.128 1 1 19595 20210626131420
34.221.36.78 1 1 19595 20210618131627
40.94.29.82 0 9 3694676
40.94.33.79 0 29 6153394
181.124.174.72 0 1 137987
54.245.213.163 1 1 19595 20210601150052
51.89.228.207 1 1 19595 20210628221758
34.213.179.31 1 1 19595 20210630132453
35.232.55.37 3 3 58785 20210617153420
54.190.144.39 1 1 19595 20210602131728
40.94.33.44 0 6 27075
34.222.1.208 1 1 19595 20210601132408
185.180.143.147 1 1 19595 20210613002450
34.214.159.56 1 1 19595 20210621131622
34.217.145.237 1 1 19595 20210620044327
69.171.251.8 1 3 53035 20210607043525
181.122.153.220 3 162 32993357 20210621163608
54.218.103.119 1 1 19595 20210608131353
92.118.160.9 2 2 200702 20210629011233
181.124.169.148 3 133 19490794 20210626205039
34.221.3.229 1 1 19595 20210613131133
40.94.33.76 0 24 5181182
181.94.231.62 0 1 279364
18.236.94.166 1 1 19595 20210620132105
20.64.168.7 1 1 100351 20210601184027
54.184.226.90 1 1 19595 20210622132408
199.244.88.132 2 2 0 20210606020543
54.213.137.175 1 1 19595 20210622134205
157.55.39.20 0 3 9753
54.201.254.48 3 3 58785 20210622131750
52.34.241.138 1 1 19595 20210620133320
40.94.33.41 0 29 6643768
54.71.35.131 1 1 19595 20210628140004
54.78.87.209 1 1 100351 20210610183657
34.214.117.48 1 1 19595 20210611131420
18.222.217.225 1 1 19595 20210613064613
35.162.156.112 1 1 19595 20210611131421
40.94.31.49 0 18 4256185
34.209.26.161 1 1 19595 20210630144159
34.216.229.44 1 1 19595 20210623144049
54.71.187.124 3 163 34023802 20210601085847
69.171.251.9 0 15 1853953
23.100.232.233 1 40 2077472 20210622011806
40.94.30.169 0 5 2485617
93.158.91.205 2 2 39190 20210615103523
186.185.223.220 1 18 1013935 20210601092904
54.186.51.254 1 1 0 20210602165820
34.216.153.50 1 1 19595 20210601132650