From: Petter Reinholdtsen Date: Mon, 9 Jan 2017 09:59:21 +0000 (+0100) Subject: Generated. X-Git-Url: http://pere.pagekite.me/gitweb/homepage.git/commitdiff_plain/337f2fc102f389a7cc891d0a1961bfae666e94ec?ds=inline Generated. --- diff --git a/blog/archive/2017/01/01.rss b/blog/archive/2017/01/01.rss new file mode 100644 index 0000000000..554dc369c6 --- /dev/null +++ b/blog/archive/2017/01/01.rss @@ -0,0 +1,82 @@ + + + + Petter Reinholdtsen - Entries from January 2017 + Entries from January 2017 + http://people.skolelinux.org/pere/blog/ + + + + Introducing ical-archiver to split out old iCalendar entries + http://people.skolelinux.org/pere/blog/Introducing_ical_archiver_to_split_out_old_iCalendar_entries.html + http://people.skolelinux.org/pere/blog/Introducing_ical_archiver_to_split_out_old_iCalendar_entries.html + Wed, 4 Jan 2017 12:20:00 +0100 + <p>Do you have a large <a href="https://icalendar.org/">iCalendar</a> +file with lots of old entries, and would like to archive them to save +space and resources? At least those of us using KOrganizer know that +turning on and off an event set become slower and slower the more +entries are in the set. While working on migrating our calendars to a +<a href="http://radicale.org/">Radicale CalDAV server</a> on our +<a href="https://freedomboxfoundation.org/">Freedombox server</a/>, my +loved one wondered if I could find a way to split up the calendar file +she had in KOrganizer, and I set out to write a tool. I spent a few +days writing and polishing the system, and it is now ready for general +consumption. The +<a href="https://github.com/petterreinholdtsen/ical-archiver">code for +ical-archiver</a> is publicly available from a git repository on +github. The system is written in Python and depend on +<a href="http://eventable.github.io/vobject/">the vobject Python +module</a>.</p> + +<p>To use it, locate the iCalendar file you want to operate on and +give it as an argument to the ical-archiver script. This will +generate a set of new files, one file per component type per year for +all components expiring more than two years in the past. The vevent, +vtodo and vjournal entries are handled by the script. The remaining +entries are stored in a 'remaining' file.</p> + +<p>This is what a test run can look like: + +<p><pre> +% ical-archiver t/2004-2016.ics +Found 3612 vevents +Found 6 vtodos +Found 2 vjournals +Writing t/2004-2016.ics-subset-vevent-2004.ics +Writing t/2004-2016.ics-subset-vevent-2005.ics +Writing t/2004-2016.ics-subset-vevent-2006.ics +Writing t/2004-2016.ics-subset-vevent-2007.ics +Writing t/2004-2016.ics-subset-vevent-2008.ics +Writing t/2004-2016.ics-subset-vevent-2009.ics +Writing t/2004-2016.ics-subset-vevent-2010.ics +Writing t/2004-2016.ics-subset-vevent-2011.ics +Writing t/2004-2016.ics-subset-vevent-2012.ics +Writing t/2004-2016.ics-subset-vevent-2013.ics +Writing t/2004-2016.ics-subset-vevent-2014.ics +Writing t/2004-2016.ics-subset-vjournal-2007.ics +Writing t/2004-2016.ics-subset-vjournal-2011.ics +Writing t/2004-2016.ics-subset-vtodo-2012.ics +Writing t/2004-2016.ics-remaining.ics +% +</pre></p> + +<p>As you can see, the original file is untouched and new files are +written with names derived from the original file. If you are happy +with their content, the *-remaining.ics file can replace the original +the the others can be archived or imported as historical calendar +collections.</p> + +<p>The script should probably be improved a bit. The error handling +when discovering broken entries is not good, and I am not sure yet if +it make sense to split different entry types into separate files or +not. The program is thus likely to change. If you find it +interesting, please get in touch. :)</p> + +<p>As usual, if you use Bitcoin and want to show your support of my +activities, please send Bitcoin donations to my address +<b><a href="bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&label=PetterReinholdtsenBlog">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b</a></b>.</p> + + + + + diff --git a/blog/archive/2017/01/index.html b/blog/archive/2017/01/index.html new file mode 100644 index 0000000000..b0bd25702c --- /dev/null +++ b/blog/archive/2017/01/index.html @@ -0,0 +1,496 @@ + + + + + Petter Reinholdtsen: entries from January 2017 + + + + + + +
+

+ Petter Reinholdtsen + +

+ +
+ + +

Entries from January 2017.

+ +
+ +
+ 4th January 2017 +
+
+

Do you have a large iCalendar +file with lots of old entries, and would like to archive them to save +space and resources? At least those of us using KOrganizer know that +turning on and off an event set become slower and slower the more +entries are in the set. While working on migrating our calendars to a +Radicale CalDAV server on our +Freedombox server, my +loved one wondered if I could find a way to split up the calendar file +she had in KOrganizer, and I set out to write a tool. I spent a few +days writing and polishing the system, and it is now ready for general +consumption. The +code for +ical-archiver is publicly available from a git repository on +github. The system is written in Python and depend on +the vobject Python +module.

+ +

To use it, locate the iCalendar file you want to operate on and +give it as an argument to the ical-archiver script. This will +generate a set of new files, one file per component type per year for +all components expiring more than two years in the past. The vevent, +vtodo and vjournal entries are handled by the script. The remaining +entries are stored in a 'remaining' file.

+ +

This is what a test run can look like: + +

+% ical-archiver t/2004-2016.ics 
+Found 3612 vevents
+Found 6 vtodos
+Found 2 vjournals
+Writing t/2004-2016.ics-subset-vevent-2004.ics
+Writing t/2004-2016.ics-subset-vevent-2005.ics
+Writing t/2004-2016.ics-subset-vevent-2006.ics
+Writing t/2004-2016.ics-subset-vevent-2007.ics
+Writing t/2004-2016.ics-subset-vevent-2008.ics
+Writing t/2004-2016.ics-subset-vevent-2009.ics
+Writing t/2004-2016.ics-subset-vevent-2010.ics
+Writing t/2004-2016.ics-subset-vevent-2011.ics
+Writing t/2004-2016.ics-subset-vevent-2012.ics
+Writing t/2004-2016.ics-subset-vevent-2013.ics
+Writing t/2004-2016.ics-subset-vevent-2014.ics
+Writing t/2004-2016.ics-subset-vjournal-2007.ics
+Writing t/2004-2016.ics-subset-vjournal-2011.ics
+Writing t/2004-2016.ics-subset-vtodo-2012.ics
+Writing t/2004-2016.ics-remaining.ics
+%
+

+ +

As you can see, the original file is untouched and new files are +written with names derived from the original file. If you are happy +with their content, the *-remaining.ics file can replace the original +the the others can be archived or imported as historical calendar +collections.

+ +

The script should probably be improved a bit. The error handling +when discovering broken entries is not good, and I am not sure yet if +it make sense to split different entry types into separate files or +not. The program is thus likely to change. If you find it +interesting, please get in touch. :)

+ +

As usual, if you use Bitcoin and want to show your support of my +activities, please send Bitcoin donations to my address +15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b.

+ +
+
+ + + Tags: english, standard. + + +
+
+
+ +

RSS Feed

+ +

+ Created by Chronicle v4.6 +

+ + + diff --git a/blog/draft/2013-links.txt b/blog/draft/2013-links.txt index 48d5abee7e..9dc31a86f8 100644 --- a/blog/draft/2013-links.txt +++ b/blog/draft/2013-links.txt @@ -85,3 +85,5 @@ http://www.vg.no/nyheter/innenriks/vaepnet-politi-hentet-frisk-lege-med-helikopt http://www.vg.no/nyheter/meninger/terrorangrepet-mot-charlie-hebdo/kronikk-europas-9-11/a/23371393/ http://www.nuug.no/cgi-bin/felles-postjournal?agency=Justis-%20og%20beredskapsdepartementet&caseid=2010/3655&casedocseq=22 + +https://www.bloomberg.com/news/articles/2016-03-10/what-happens-when-the-surveillance-state-becomes-an-affordable-gadget diff --git a/blog/images/2017-01-09-www.stortinget.no-geoip-small.png b/blog/images/2017-01-09-www.stortinget.no-geoip-small.png new file mode 100644 index 0000000000..54a3f74b96 Binary files /dev/null and b/blog/images/2017-01-09-www.stortinget.no-geoip-small.png differ diff --git a/blog/images/2017-01-09-www.stortinget.no-geoip.kml b/blog/images/2017-01-09-www.stortinget.no-geoip.kml new file mode 100644 index 0000000000..01333be017 --- /dev/null +++ b/blog/images/2017-01-09-www.stortinget.no-geoip.kml @@ -0,0 +1,2045 @@ + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700, 59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700, 59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000, 59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000, 59.324699 +" + + + GeoIP position for [109.105.97.25] + 18.056000, 59.324699 +" + + + GeoIP position for as15169-te-tc1.sthix.net [192.121.80.47] + 18.049999, 59.333302 +" + + + GeoIP position for [209.85.250.192] + -97.821999, 37.750999 +" + + ajax.googleapis.com + GeoIP position for arn02s06-in-f170.1e100.net [216.58.201.170] + -122.057404, 37.419201 +" + + ajax.googleapis.com + GeoIP position for arn02s06-in-f10.1e100.net [216.58.201.170] + -122.057404,37.419201 +" +Path for ajax.googleapis.com / arn02s06-in-f10.1e100.net [216.58.201.170] + + 10.748700, 59.904999 + 10.748700, 59.904999 + 10.750000, 59.950001 + 18.056000, 59.324699 + 18.056000, 59.324699 + 18.049999, 59.333302 + -97.821999, 37.750999 + -122.057404, 37.419201 +-122.057404,37.419201 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for [109.105.97.25] + 18.056000,59.324699 +" + + + GeoIP position for as15169-te-tc1.sthix.net [192.121.80.47] + 18.049999,59.333302 +" + + + GeoIP position for [209.85.244.247] + -97.821999, 37.750999 +" + + + GeoIP position for [108.170.235.63] + -122.057404, 37.419201 +" + + ajax.googleapis.com + GeoIP position for arn09s10-in-f138.1e100.net [216.58.211.138] + -122.057404, 37.419201 +" + + ajax.googleapis.com + GeoIP position for arn09s10-in-f10.1e100.net [216.58.211.138] + -122.057404,37.419201 +" +Path for ajax.googleapis.com / arn09s10-in-f10.1e100.net [216.58.211.138] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +18.049999,59.333302 + -97.821999, 37.750999 + -122.057404, 37.419201 + -122.057404, 37.419201 +-122.057404,37.419201 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for [109.105.97.25] + 18.056000,59.324699 +" + + + GeoIP position for as15169-te-tc1.sthix.net [192.121.80.47] + 18.049999,59.333302 +" + + + GeoIP position for [209.85.244.249] + -97.821999, 37.750999 +" + + + GeoIP position for [108.170.235.65] + -122.057404, 37.419201 +" + + ajax.googleapis.com + GeoIP position for arn09s11-in-f10.1e100.net [172.217.22.170] + -122.057404, 37.419201 +" +Path for ajax.googleapis.com / arn09s11-in-f170.1e100.net [172.217.22.170] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +18.049999,59.333302 + -97.821999, 37.750999 + -122.057404, 37.419201 + -122.057404, 37.419201 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for dk-uni.nordu.net [109.105.97.10] + 18.056000, 59.324699 +" + + + GeoIP position for de-hmb.nordu.net [109.105.97.14] + 18.056000, 59.324699 +" + + + GeoIP position for de-ffm.nordu.net [109.105.97.73] + 18.056000, 59.324699 +" + + + GeoIP position for [52.95.216.56] + -122.342201, 47.634399 +" + + + GeoIP position for [54.239.107.146] + -122.334099, 47.610298 +" + + + GeoIP position for [54.239.107.65] + -122.334099, 47.610298 +" + + + GeoIP position for [54.239.43.20] + -122.334099, 47.610298 +" + + + GeoIP position for [176.32.106.157] + -6.259500, 53.338902 +" + + + GeoIP position for [52.93.7.188] + -122.342201, 47.634399 +" + + + GeoIP position for [52.93.36.51] + -122.342201, 47.634399 +" + + + GeoIP position for [52.93.36.55] + -122.342201, 47.634399 +" + + + GeoIP position for [52.93.36.56] + -122.342201, 47.634399 +" + + + GeoIP position for [176.32.107.7] + -6.259500, 53.338902 +" + + + GeoIP position for [176.32.107.11] + -6.259500, 53.338902 +" + + insights.hotjar.com + GeoIP position for ec2-52-31-235-68.eu-west-1.compute.amazonaws.com [52.31.235.68] + -6.259500, 53.338902 +" + + insights.hotjar.com + GeoIP position for ec2-52-31-235-68.eu-west-1.compute.amazonaws.com [52.31.235.68] + -6.259500,53.338902 +" +Path for insights.hotjar.com / ec2-52-31-235-68.eu-west-1.compute.amazonaws.com [52.31.235.68] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 + 18.056000, 59.324699 + 18.056000, 59.324699 + -122.342201, 47.634399 + -122.334099, 47.610298 + -122.334099, 47.610298 + -122.334099, 47.610298 + -6.259500, 53.338902 + -122.342201, 47.634399 + -122.342201, 47.634399 + -122.342201, 47.634399 + -122.342201, 47.634399 + -6.259500, 53.338902 + -6.259500, 53.338902 + -6.259500, 53.338902 +-6.259500,53.338902 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for dk-uni.nordu.net [109.105.97.10] + 18.056000,59.324699 +" + + + GeoIP position for de-hmb.nordu.net [109.105.97.14] + 18.056000,59.324699 +" + + + GeoIP position for de-ffm.nordu.net [109.105.97.73] + 18.056000,59.324699 +" + + + GeoIP position for [52.95.216.56] + -122.342201,47.634399 +" + + + GeoIP position for [54.239.107.58] + -122.334099, 47.610298 +" + + + GeoIP position for [54.239.107.43] + -122.334099, 47.610298 +" + + + GeoIP position for [54.239.43.20] + -122.334099,47.610298 +" + + + GeoIP position for [176.32.106.157] + -6.259500,53.338902 +" + + + GeoIP position for [54.239.42.141] + -122.334099, 47.610298 +" + + + GeoIP position for [52.93.36.51] + -122.342201,47.634399 +" + + + GeoIP position for [52.93.36.64] + -122.342201, 47.634399 +" + + + GeoIP position for [52.93.36.133] + -122.342201, 47.634399 +" + + + GeoIP position for [52.93.36.129] + -122.342201, 47.634399 +" + + insights.hotjar.com + GeoIP position for ec2-52-50-62-103.eu-west-1.compute.amazonaws.com [52.50.62.103] + -6.259500, 53.338902 +" +Path for insights.hotjar.com / ec2-52-50-62-103.eu-west-1.compute.amazonaws.com [52.50.62.103] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +18.056000,59.324699 +18.056000,59.324699 +-122.342201,47.634399 + -122.334099, 47.610298 + -122.334099, 47.610298 +-122.334099,47.610298 +-6.259500,53.338902 + -122.334099, 47.610298 +-122.342201,47.634399 + -122.342201, 47.634399 + -122.342201, 47.634399 + -122.342201, 47.634399 + -6.259500, 53.338902 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for dk-uni.nordu.net [109.105.97.10] + 18.056000,59.324699 +" + + + GeoIP position for de-hmb.nordu.net [109.105.97.14] + 18.056000,59.324699 +" + + + GeoIP position for de-ffm.nordu.net [109.105.97.73] + 18.056000,59.324699 +" + + + GeoIP position for [52.95.216.56] + -122.342201,47.634399 +" + + + GeoIP position for [54.239.107.124] + -122.334099, 47.610298 +" + + + GeoIP position for [54.239.107.43] + -122.334099,47.610298 +" + + + GeoIP position for [54.239.43.20] + -122.334099,47.610298 +" + + + GeoIP position for [176.32.106.157] + -6.259500,53.338902 +" + + + GeoIP position for [54.239.42.141] + -122.334099,47.610298 +" + + + GeoIP position for [52.93.7.182] + -122.342201, 47.634399 +" + + + GeoIP position for [52.93.36.40] + -122.342201, 47.634399 +" + + + GeoIP position for [52.93.36.74] + -122.342201, 47.634399 +" + + + GeoIP position for [52.93.36.171] + -122.342201, 47.634399 +" + + insights.hotjar.com + GeoIP position for ec2-52-214-182-239.eu-west-1.compute.amazonaws.com [52.214.182.239] + -6.259500, 53.338902 +" +Path for insights.hotjar.com / ec2-52-214-182-239.eu-west-1.compute.amazonaws.com [52.214.182.239] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +18.056000,59.324699 +18.056000,59.324699 +-122.342201,47.634399 + -122.334099, 47.610298 +-122.334099,47.610298 +-122.334099,47.610298 +-6.259500,53.338902 +-122.334099,47.610298 + -122.342201, 47.634399 + -122.342201, 47.634399 + -122.342201, 47.634399 + -122.342201, 47.634399 + -6.259500, 53.338902 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for se-fre.nordu.net [109.105.97.1] + 18.056000, 59.324699 +" + + + GeoIP position for s-b3-link.telia.net [213.248.97.17] + 8.000000, 47.000000 +" + + + GeoIP position for s-bb4-link.telia.net [62.115.119.110] + 8.000000, 47.000000 +" + + + GeoIP position for s-b6-link.telia.net [62.115.136.25] + 8.000000, 47.000000 +" + + + GeoIP position for as3356-1.fra.as54104.net [212.162.19.102] + -0.122400, 51.496399 +" + + script.hotjar.com + GeoIP position for 94.31.29.64.IPYX-077437-ZYO.above.net [94.31.29.64] + -0.122400, 51.496399 +" +Path for script.hotjar.com / 94.31.29.64.IPYX-077437-ZYO.above.net [94.31.29.64] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 + 8.000000, 47.000000 + 8.000000, 47.000000 + 8.000000, 47.000000 + -0.122400, 51.496399 + -0.122400, 51.496399 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for se-fre.nordu.net [109.105.97.1] + 18.056000,59.324699 +" + + + GeoIP position for s-b3-link.telia.net [213.248.97.17] + 8.000000,47.000000 +" + + + GeoIP position for s-bb4-link.telia.net [80.91.249.216] + 8.000000, 47.000000 +" + + + GeoIP position for s-b6-link.telia.net [62.115.136.37] + 8.000000, 47.000000 +" + + + GeoIP position for as3356-1.fra.as54104.net [212.162.19.102] + -0.122400,51.496399 +" + + script.hotjar.com + GeoIP position for [23.111.9.32] + -111.951897, 33.674801 +" + + script.hotjar.com + GeoIP position for [23.111.9.32] + -111.951897,33.674801 +" +Path for script.hotjar.com / [23.111.9.32] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +8.000000,47.000000 + 8.000000, 47.000000 + 8.000000, 47.000000 +-0.122400,51.496399 + -111.951897, 33.674801 +-111.951897,33.674801 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for se-fre.nordu.net [109.105.97.1] + 18.056000,59.324699 +" + + + GeoIP position for s-b3-link.telia.net [213.248.97.17] + 8.000000,47.000000 +" + + + GeoIP position for s-bb4-link.telia.net [62.115.119.110] + 8.000000,47.000000 +" + + + GeoIP position for s-b6-link.telia.net [62.115.136.25] + 8.000000,47.000000 +" + + + GeoIP position for as3356-1.fra.as54104.net [212.162.19.102] + -0.122400,51.496399 +" + + static.hotjar.com + GeoIP position for 94.31.29.64.IPYX-077437-ZYO.above.net [94.31.29.64] + -0.122400,51.496399 +" +Path for static.hotjar.com / 94.31.29.64.IPYX-077437-ZYO.above.net [94.31.29.64] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +8.000000,47.000000 +8.000000,47.000000 +8.000000,47.000000 +-0.122400,51.496399 +-0.122400,51.496399 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for se-fre.nordu.net [109.105.97.1] + 18.056000,59.324699 +" + + + GeoIP position for s-b3-link.telia.net [213.248.97.17] + 8.000000,47.000000 +" + + + GeoIP position for s-bb3-link.telia.net [62.115.137.158] + 8.000000, 47.000000 +" + + + GeoIP position for s-b6-link.telia.net [62.115.119.113] + 8.000000, 47.000000 +" + + + GeoIP position for as3356-1.fra.as54104.net [212.162.19.102] + -0.122400,51.496399 +" + + static.hotjar.com + GeoIP position for [108.161.188.192] + -118.338600, 34.130001 +" + + static.hotjar.com + GeoIP position for [108.161.188.192] + -118.338600,34.130001 +" + + static.hotjar.com + GeoIP position for [108.161.188.192] + -118.338600,34.130001 +" +Path for static.hotjar.com / [108.161.188.192] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +8.000000,47.000000 + 8.000000, 47.000000 + 8.000000, 47.000000 +-0.122400,51.496399 + -118.338600, 34.130001 +-118.338600,34.130001 +-118.338600,34.130001 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for [109.105.97.25] + 18.056000,59.324699 +" + + + GeoIP position for [72.14.196.42] + -122.057404, 37.419201 +" + + + GeoIP position for [216.239.43.122] + -118.244003, 34.054401 +" + + + GeoIP position for [209.85.254.13] + -97.821999, 37.750999 +" + + + GeoIP position for [209.85.247.89] + -97.821999, 37.750999 +" + + + GeoIP position for [72.14.236.117] + -122.057404, 37.419201 +" + + stats.g.doubleclick.net + GeoIP position for lr-in-f154.1e100.net [209.85.233.154] + -97.821999, 37.750999 +" + + stats.g.doubleclick.net + GeoIP position for lr-in-f154.1e100.net [209.85.233.154] + -97.821999,37.750999 +" +Path for stats.g.doubleclick.net / lr-in-f154.1e100.net [209.85.233.154] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 + -122.057404, 37.419201 + -118.244003, 34.054401 + -97.821999, 37.750999 + -97.821999, 37.750999 + -122.057404, 37.419201 + -97.821999, 37.750999 +-97.821999,37.750999 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for [109.105.97.25] + 18.056000,59.324699 +" + + + GeoIP position for [72.14.196.42] + -122.057404,37.419201 +" + + + GeoIP position for [209.85.250.192] + -97.821999,37.750999 +" + + + GeoIP position for [209.85.254.33] + -97.821999, 37.750999 +" + + + GeoIP position for [209.85.243.136] + -97.821999, 37.750999 +" + + + GeoIP position for [209.85.254.174] + -97.821999, 37.750999 +" + + stats.g.doubleclick.net + GeoIP position for lr-in-f156.1e100.net [209.85.233.156] + -97.821999, 37.750999 +" + + stats.g.doubleclick.net + GeoIP position for lr-in-f156.1e100.net [209.85.233.156] + -97.821999,37.750999 +" +Path for stats.g.doubleclick.net / lr-in-f156.1e100.net [209.85.233.156] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +-122.057404,37.419201 +-97.821999,37.750999 + -97.821999, 37.750999 + -97.821999, 37.750999 + -97.821999, 37.750999 + -97.821999, 37.750999 +-97.821999,37.750999 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for [109.105.97.25] + 18.056000,59.324699 +" + + + GeoIP position for as15169-te-tc1.sthix.net [192.121.80.47] + 18.049999,59.333302 +" + + + GeoIP position for [216.239.43.122] + -118.244003,34.054401 +" + + + GeoIP position for [209.85.254.33] + -97.821999,37.750999 +" + + + GeoIP position for [209.85.247.89] + -97.821999,37.750999 +" + + + GeoIP position for [72.14.236.115] + -122.057404, 37.419201 +" + + stats.g.doubleclick.net + GeoIP position for lr-in-f155.1e100.net [209.85.233.155] + -97.821999, 37.750999 +" + + stats.g.doubleclick.net + GeoIP position for lr-in-f155.1e100.net [209.85.233.155] + -97.821999,37.750999 +" +Path for stats.g.doubleclick.net / lr-in-f155.1e100.net [209.85.233.155] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +18.049999,59.333302 +-118.244003,34.054401 +-97.821999,37.750999 +-97.821999,37.750999 + -122.057404, 37.419201 + -97.821999, 37.750999 +-97.821999,37.750999 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for [109.105.97.25] + 18.056000,59.324699 +" + + + GeoIP position for as15169-te-tc1.sthix.net [192.121.80.47] + 18.049999,59.333302 +" + + + GeoIP position for [209.85.250.192] + -97.821999,37.750999 +" + + + GeoIP position for [209.85.253.180] + -97.821999, 37.750999 +" + + + GeoIP position for [209.85.247.89] + -97.821999,37.750999 +" + + + GeoIP position for [209.85.254.174] + -97.821999,37.750999 +" + + stats.g.doubleclick.net + GeoIP position for lr-in-f157.1e100.net [209.85.233.157] + -97.821999, 37.750999 +" + + stats.g.doubleclick.net + GeoIP position for lr-in-f157.1e100.net [209.85.233.157] + -97.821999,37.750999 +" +Path for stats.g.doubleclick.net / lr-in-f157.1e100.net [209.85.233.157] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +18.049999,59.333302 +-97.821999,37.750999 + -97.821999, 37.750999 +-97.821999,37.750999 +-97.821999,37.750999 + -97.821999, 37.750999 +-97.821999,37.750999 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for te3-1-2.br1.fn3.as2116.net [193.156.90.3] + 10.750000, 59.950001 +" + + + GeoIP position for he16-1-1.cr2.oslosda310.as2116.net [195.0.244.48] + 10.750000, 59.950001 +" + + + GeoIP position for ae0.ar8.oslosda310.as2116.net [195.0.242.23] + 10.750000, 59.950001 +" + + + GeoIP position for [89.191.10.146] + 10.750000, 59.950001 +" + + www.stortinget.no + GeoIP position for [85.88.67.10] + 10.748700, 59.904999 +" + + www.stortinget.no + GeoIP position for [85.88.67.10] + 10.748700,59.904999 +" +Path for www.stortinget.no / [85.88.67.10] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 + 10.750000, 59.950001 + 10.750000, 59.950001 + 10.750000, 59.950001 + 10.750000, 59.950001 + 10.748700, 59.904999 +10.748700,59.904999 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for ggc-vip.nordu.net [109.105.109.208] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for ggc-vip.nordu.net [109.105.109.208] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for ggc-vip.nordu.net [109.105.109.208] + 18.056000,59.324699 +" +Path for www.google-analytics.com / ggc-vip.nordu.net [109.105.109.208] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.229] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.229] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.229] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.227] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.227] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.227] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.227] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.234] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.234] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.234] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.234] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.241] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.241] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.241] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.241] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.251] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.251] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.251] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.251] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.238] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.238] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.238] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.238] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.249] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.249] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.249] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.249] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.245] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.245] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.245] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.245] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.216] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.216] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.216] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.216] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.218] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.218] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.218] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.218] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.219] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.219] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.219] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.219] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.212] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.212] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.212] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.212] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.240] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.240] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.240] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.240] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.230] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.230] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.230] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.230] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.223] + 18.056000, 59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.223] + 18.056000,59.324699 +" + + www.google-analytics.com + GeoIP position for [109.105.109.223] + 18.056000,59.324699 +" +Path for www.google-analytics.com / [109.105.109.223] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 + 18.056000, 59.324699 +18.056000,59.324699 +18.056000,59.324699 + + + + + + + GeoIP position for uio-gw10.uio.no [129.240.202.1] + 10.748700,59.904999 +" + + + GeoIP position for uio-gw8.uio.no [129.240.24.229] + 10.748700,59.904999 +" + + + GeoIP position for oslo-gw1.uninett.no [128.39.65.17] + 10.750000,59.950001 +" + + + GeoIP position for se-tug.nordu.net [109.105.102.108] + 18.056000,59.324699 +" + + + GeoIP position for [109.105.97.25] + 18.056000,59.324699 +" + + + GeoIP position for [72.14.196.42] + -122.057404,37.419201 +" + + + GeoIP position for [209.85.244.249] + -97.821999,37.750999 +" + + + GeoIP position for [209.85.254.33] + -97.821999,37.750999 +" + + + GeoIP position for [209.85.249.57] + -97.821999, 37.750999 +" + + + GeoIP position for [209.85.244.60] + -97.821999, 37.750999 +" + + + GeoIP position for [108.170.237.129] + -122.057404, 37.419201 +" + + + GeoIP position for [72.14.238.203] + -122.057404, 37.419201 +" + + www.googletagmanager.com + GeoIP position for [74.125.143.97] + -122.057404, 37.419201 +" +Path for www.googletagmanager.com / [74.125.143.97] + +10.748700,59.904999 +10.748700,59.904999 +10.750000,59.950001 +18.056000,59.324699 +18.056000,59.324699 +-122.057404,37.419201 +-97.821999,37.750999 +-97.821999,37.750999 + -97.821999, 37.750999 + -97.821999, 37.750999 + -122.057404, 37.419201 + -122.057404, 37.419201 + -122.057404, 37.419201 + + + + + diff --git a/blog/images/2017-01-09-www.stortinget.no-geotraceroute-kml-join.kml b/blog/images/2017-01-09-www.stortinget.no-geotraceroute-kml-join.kml new file mode 100644 index 0000000000..62f3e1c0ab --- /dev/null +++ b/blog/images/2017-01-09-www.stortinget.no-geotraceroute-kml-join.kml @@ -0,0 +1,572 @@ + + + +Generated by https://geotraceroute.com + + Hop #1: mrom-gw1.uio.no [158.36.191.131] + -,- + 10.746089935303,59.912731170654 + + + Hop #2: uio-gw7.uio.no [129.240.25.5] + -,- + 10.746089935303,59.912731170654 + + + Hop #3: uio-gw8.uio.no [129.240.25.190] + NO,Oslo + 10.746089935303,59.912731170654 + + + Path to uio-gw8.uio.no [129.240.25.190] + 10.746089935303,59.912731170654 10.746089935303,59.912731170654 + + + Hop #4: oslo-gw1.uninett.no [128.39.65.17] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #5: se-tug.nordu.net [109.105.102.108] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Path to se-tug.nordu.net [109.105.102.108] + 10.746089935303,59.912731170654 18.06489944458,59.332580566406 + + + Hop #6: 109.105.97.25 [109.105.97.25] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Path to 109.105.97.25 [109.105.97.25] + 18.06489944458,59.332580566406 4.8896899223328,52.374031066895 + + + Hop #7: as15169-te-tc1.sthix.net [192.121.80.47] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #8: 209.85.250.192 [209.85.250.192] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #9: 108.170.235.65 [108.170.235.65] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #10: arn09s11-in-f170.1e100.net [172.217.22.170] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + + Hop #1: mrom-gw1.uio.no [158.36.191.131] + -,- + 10.746089935303,59.912731170654 + + + Hop #2: uio-gw7.uio.no [129.240.25.5] + -,- + 10.746089935303,59.912731170654 + + + Hop #3: uio-gw8.uio.no [129.240.25.190] + NO,Oslo + 10.746089935303,59.912731170654 + + + Path to uio-gw8.uio.no [129.240.25.190] + 10.746089935303,59.912731170654 10.746089935303,59.912731170654 + + + Hop #4: oslo-gw1.uninett.no [128.39.65.17] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #5: se-tug.nordu.net [109.105.102.108] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Path to se-tug.nordu.net [109.105.102.108] + 10.746089935303,59.912731170654 18.06489944458,59.332580566406 + + + Hop #6: dk-uni.nordu.net [109.105.97.10] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Path to dk-uni.nordu.net [109.105.97.10] + 18.06489944458,59.332580566406 12.565529823303,55.675941467285 + + + Hop #7: de-hmb.nordu.net [109.105.97.14] + DE,Hamburg + 10.0153,53.5753 + + + Path to de-hmb.nordu.net [109.105.97.14] + 12.565529823303,55.675941467285 10.0153,53.5753 + + + Hop #8: de-ffm.nordu.net [109.105.97.73] + DE,Frankfurt + 8.68417,50.1155 + + + Path to de-ffm.nordu.net [109.105.97.73] + 10.0153,53.5753 8.68417,50.1155 + + + Hop #9: 52.95.216.56 [52.95.216.56] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #10: 54.239.107.124 [54.239.107.124] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #11: 54.239.107.131 [54.239.107.131] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #12: 54.239.43.20 [54.239.43.20] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #13: 54.239.42.88 [54.239.42.88] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #14: 52.93.7.182 [52.93.7.182] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #15: 52.93.36.55 [52.93.36.55] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #16: 52.93.36.52 [52.93.36.52] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #17: 52.93.36.85 [52.93.36.85] + DE,Frankfurt + 8.68417,50.1155 + + + Hop #18: 176.32.107.11 [176.32.107.11] + IE,Dublin + -6.2671899795532,53.343990325928 + + + Path to 176.32.107.11 [176.32.107.11] + 8.68417,50.1155 -6.2671899795532,53.343990325928 + + + + Hop #1: mrom-gw1.uio.no [158.36.191.131] + -,- + 10.746089935303,59.912731170654 + + + Hop #2: uio-gw7.uio.no [129.240.25.5] + -,- + 10.746089935303,59.912731170654 + + + Hop #3: uio-gw8.uio.no [129.240.25.190] + NO,Oslo + 10.746089935303,59.912731170654 + + + Path to uio-gw8.uio.no [129.240.25.190] + 10.746089935303,59.912731170654 10.746089935303,59.912731170654 + + + Hop #4: oslo-gw1.uninett.no [128.39.65.17] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #5: se-tug.nordu.net [109.105.102.108] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Path to se-tug.nordu.net [109.105.102.108] + 10.746089935303,59.912731170654 18.06489944458,59.332580566406 + + + Hop #6: se-fre.nordu.net [109.105.97.1] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Hop #7: s-b3-link.telia.net [213.248.97.17] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Path to s-b3-link.telia.net [213.248.97.17] + 18.06489944458,59.332580566406 12.565529823303,55.675941467285 + + + Hop #8: s-bb4-link.telia.net [62.115.119.110] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Hop #9: s-b6-link.telia.net [62.115.119.115] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Hop #10: ae34.ear2.Stockholm2.Level3.net [4.68.72.165] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Hop #11: as3356-1.fra.as54104.net [212.162.19.102] + DE,Frankfurt + 8.54306,50.0264 + + + Path to as3356-1.fra.as54104.net [212.162.19.102] + 12.565529823303,55.675941467285 8.54306,50.0264 + + + Hop #12: 23.111.9.32 [23.111.9.32] + DE,Frankfurt + 8.54306,50.0264 + + + + Hop #1: mrom-gw1.uio.no [158.36.191.131] + -,- + 10.746089935303,59.912731170654 + + + Hop #2: uio-gw7.uio.no [129.240.25.5] + -,- + 10.746089935303,59.912731170654 + + + Hop #3: uio-gw8.uio.no [129.240.25.190] + NO,Oslo + 10.746089935303,59.912731170654 + + + Path to uio-gw8.uio.no [129.240.25.190] + 10.746089935303,59.912731170654 10.746089935303,59.912731170654 + + + Hop #4: oslo-gw1.uninett.no [128.39.65.17] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #5: se-tug.nordu.net [109.105.102.108] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Path to se-tug.nordu.net [109.105.102.108] + 10.746089935303,59.912731170654 18.06489944458,59.332580566406 + + + Hop #6: se-fre.nordu.net [109.105.97.1] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Hop #7: s-b3-link.telia.net [213.248.97.17] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Path to s-b3-link.telia.net [213.248.97.17] + 18.06489944458,59.332580566406 12.565529823303,55.675941467285 + + + Hop #8: s-bb4-link.telia.net [62.115.119.110] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Hop #9: s-b6-link.telia.net [62.115.139.107] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Hop #10: ae34.ear2.Stockholm2.Level3.net [4.68.72.165] + DK,Copenhagen + 12.565529823303,55.675941467285 + + + Hop #11: as3356-1.fra.as54104.net [212.162.19.102] + DE,Frankfurt + 8.54306,50.0264 + + + Path to as3356-1.fra.as54104.net [212.162.19.102] + 12.565529823303,55.675941467285 8.54306,50.0264 + + + Hop #12: 108.161.188.192 [108.161.188.192] + DE,Frankfurt + 8.54306,50.0264 + + + + Hop #1: mrom-gw1.uio.no [158.36.191.131] + -,- + 10.746089935303,59.912731170654 + + + Hop #2: uio-gw7.uio.no [129.240.25.5] + -,- + 10.746089935303,59.912731170654 + + + Hop #3: uio-gw8.uio.no [129.240.25.190] + NO,Oslo + 10.746089935303,59.912731170654 + + + Path to uio-gw8.uio.no [129.240.25.190] + 10.746089935303,59.912731170654 10.746089935303,59.912731170654 + + + Hop #4: oslo-gw1.uninett.no [128.39.65.17] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #5: se-tug.nordu.net [109.105.102.108] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Path to se-tug.nordu.net [109.105.102.108] + 10.746089935303,59.912731170654 18.06489944458,59.332580566406 + + + Hop #6: 109.105.97.25 [109.105.97.25] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Path to 109.105.97.25 [109.105.97.25] + 18.06489944458,59.332580566406 4.8896899223328,52.374031066895 + + + Hop #7: as15169-te-tc1.sthix.net [192.121.80.47] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #8: 209.85.250.192 [209.85.250.192] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #9: 209.85.254.33 [209.85.254.33] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #10: 209.85.243.138 [209.85.243.138] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #11: 216.239.41.196 [216.239.41.196] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #12: lq-in-f157.1e100.net [173.194.73.157] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + + Hop #1: mrom-gw1.uio.no [158.36.191.131] + -,- + 10.746089935303,59.912731170654 + + + Hop #2: uio-gw7.uio.no [129.240.25.5] + -,- + 10.746089935303,59.912731170654 + + + Hop #3: uio-gw8.uio.no [129.240.25.190] + NO,Oslo + 10.746089935303,59.912731170654 + + + Path to uio-gw8.uio.no [129.240.25.190] + 10.746089935303,59.912731170654 10.746089935303,59.912731170654 + + + Hop #4: oslo-gw1.uninett.no [128.39.65.17] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #5: se-tug.nordu.net [109.105.102.108] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Path to se-tug.nordu.net [109.105.102.108] + 10.746089935303,59.912731170654 18.06489944458,59.332580566406 + + + Hop #6: 109.105.109.238 [109.105.109.238] + SE,Stockholm + 18.06489944458,59.332580566406 + + + + Hop #1: mrom-gw1.uio.no [158.36.191.131] + -,- + 10.746089935303,59.912731170654 + + + Hop #2: uio-gw7.uio.no [129.240.25.5] + -,- + 10.746089935303,59.912731170654 + + + Hop #3: uio-gw8.uio.no [129.240.25.190] + NO,Oslo + 10.746089935303,59.912731170654 + + + Path to uio-gw8.uio.no [129.240.25.190] + 10.746089935303,59.912731170654 10.746089935303,59.912731170654 + + + Hop #4: oslo-gw1.uninett.no [128.39.65.17] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #5: se-tug.nordu.net [109.105.102.108] + SE,Stockholm + 18.06489944458,59.332580566406 + + + Path to se-tug.nordu.net [109.105.102.108] + 10.746089935303,59.912731170654 18.06489944458,59.332580566406 + + + Hop #6: 109.105.97.25 [109.105.97.25] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Path to 109.105.97.25 [109.105.97.25] + 18.06489944458,59.332580566406 4.8896899223328,52.374031066895 + + + Hop #7: 72.14.196.42 [72.14.196.42] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #8: 209.85.244.249 [209.85.244.249] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #9: 209.85.254.33 [209.85.254.33] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #10: 209.85.241.192 [209.85.241.192] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #11: 209.85.244.58 [209.85.244.58] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #12: 108.170.234.219 [108.170.234.219] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + Hop #13: 173.194.79.97 [173.194.79.97] + NL,Amsterdam + 4.8896899223328,52.374031066895 + + + + Hop #1: uio-gw7.uio.no [129.240.25.5] + -,- + 10.746089935303,59.912731170654 + + + Hop #2: uio-gw8.uio.no [129.240.25.190] + NO,Oslo + 10.746089935303,59.912731170654 + + + Path to uio-gw8.uio.no [129.240.25.190] + 10.746089935303,59.912731170654 10.746089935303,59.912731170654 + + + Hop #3: oslo-gw1.uninett.no [128.39.65.17] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #4: te3-1-2.br1.fn3.as2116.net [193.156.90.3] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #5: he16-1-1.cr1.san110.as2116.net [195.0.244.234] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #6: ae0.ar8.oslosda310.as2116.net [195.0.242.23] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #7: 89.191.10.146 [89.191.10.146] + NO,Oslo + 10.746089935303,59.912731170654 + + + Hop #8: 85.88.67.10 [85.88.67.10] + NO,Oslo + 10.746089935303,59.912731170654 + + + diff --git a/blog/images/2017-01-09-www.stortinget.no-geotraceroute-kml-join.png b/blog/images/2017-01-09-www.stortinget.no-geotraceroute-kml-join.png new file mode 100644 index 0000000000..fa7ac66fd7 Binary files /dev/null and b/blog/images/2017-01-09-www.stortinget.no-geotraceroute-kml-join.png differ diff --git a/blog/images/2017-01-09-www.stortinget.no-geotraceroute-small.png b/blog/images/2017-01-09-www.stortinget.no-geotraceroute-small.png new file mode 100644 index 0000000000..ead08776f1 Binary files /dev/null and b/blog/images/2017-01-09-www.stortinget.no-geotraceroute-small.png differ diff --git a/blog/images/2017-01-09-www.stortinget.no-scapy-small.png b/blog/images/2017-01-09-www.stortinget.no-scapy-small.png new file mode 100644 index 0000000000..f9c5abbf96 Binary files /dev/null and b/blog/images/2017-01-09-www.stortinget.no-scapy-small.png differ diff --git a/blog/images/2017-01-09-www.stortinget.no-scapy.svg b/blog/images/2017-01-09-www.stortinget.no-scapy.svg new file mode 100644 index 0000000000..472320efb2 --- /dev/null +++ b/blog/images/2017-01-09-www.stortinget.no-scapy.svg @@ -0,0 +1,1186 @@ + + + + + + +trace + +cluster_224 + +224 +[UNINETT UNINETT, The Norwegian University & Research Network, NO] + +cluster_15169 + +15169 +[GOOGLE - Google Inc., US] + +cluster_2116 + +2116 +[ASN-CATCHCOM , NO] + +cluster_2603 + +2603 +[NORDUNET , NO] + +cluster_1299 + +1299 +[TELIANET , SE] + +cluster_34100 + +34100 +[STORTINGET-AS , NO] + +cluster_54104 + +54104 +[AS-NETDNA - netDNA, US] + +cluster_AS16509 + +AS16509 +[Amazon NA prefix] + +cluster_3356 + +3356 +[LEVEL3 - Level 3 Communications, Inc., US] + +cluster_16509 + +16509 +[AMAZON-02 - Amazon.com, Inc., US] + + +128.39.65.17 + +128.39.65.17 + + +193.156.90.3 + +193.156.90.3 + + +128.39.65.17->193.156.90.3 + + + + +128.39.65.17->193.156.90.3 + + + + +109.105.102.108 + +109.105.102.108 + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +128.39.65.17->109.105.102.108 + + + + +195.0.244.48 + +195.0.244.48 + + +193.156.90.3->195.0.244.48 + + + + +193.156.90.3->195.0.244.48 + + + + +129.240.24.229 + +129.240.24.229 + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.24.229->128.39.65.17 + + + + +129.240.202.1 + +129.240.202.1 + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +129.240.202.1->129.240.24.229 + + + + +209.85.244.130 + +209.85.244.130 + + +209.85.244.140 + +209.85.244.140 + + +209.85.244.130->209.85.244.140 + + + + +172.217.22.170 + +172.217.22.170 + +http SA + +https SA + + +209.85.241.192 + +209.85.241.192 + + +72.14.233.212 + +72.14.233.212 + + +209.85.241.192->72.14.233.212 + + + + +209.85.254.174 + +209.85.254.174 + + +unk2 + +unk2 + + +209.85.254.174->unk2 + + + + +72.14.236.117 + +72.14.236.117 + + +unk8 + +unk8 + + +72.14.236.117->unk8 + + + + +72.14.238.203 + +72.14.238.203 + + +unk1 + +unk1 + + +72.14.238.203->unk1 + + + + +209.85.254.170 + +209.85.254.170 + + +72.14.233.212->209.85.254.170 + + + + +209.85.253.180 + +209.85.253.180 + + +209.85.253.180->209.85.241.192 + + + + +209.85.249.57 + +209.85.249.57 + + +209.85.253.180->209.85.249.57 + + + + +216.239.43.33 + +216.239.43.33 + + +209.85.253.180->216.239.43.33 + + + + +209.85.249.229 + +209.85.249.229 + + +209.85.253.180->209.85.249.229 + + + + +209.85.244.140->72.14.238.203 + + + + +72.14.196.42 + +72.14.196.42 + + +209.85.244.247 + +209.85.244.247 + + +72.14.196.42->209.85.244.247 + + + + +209.85.244.249 + +209.85.244.249 + + +72.14.196.42->209.85.244.249 + + + + +216.239.43.122 + +216.239.43.122 + + +72.14.196.42->216.239.43.122 + + + + +209.85.244.247->209.85.253.180 + + + + +209.85.244.249->209.85.253.180 + + + + +108.170.235.65 + +108.170.235.65 + + +209.85.244.249->108.170.235.65 + + + + +209.85.244.249->108.170.235.65 + + + + +209.85.233.155 + +209.85.233.155 + +http SA + +https SA + + +209.85.249.57->209.85.244.130 + + + + +216.239.43.33->72.14.236.117 + + + + +unk4 + +unk4 + + +209.85.254.170->unk4 + + + + +209.85.250.192 + +209.85.250.192 + + +209.85.250.192->209.85.253.180 + + + + +74.125.128.97 + +74.125.128.97 + +http SA + +https SA + + +216.239.43.122->209.85.253.180 + + + + +108.170.235.65->172.217.22.170:T80 + + + + +108.170.235.65->172.217.22.170:T443 + + + + +209.85.249.229->209.85.254.174 + + + + +89.191.10.146 + +89.191.10.146 + + +85.88.67.10 + +85.88.67.10 + +http SA + +https SA + + +89.191.10.146->85.88.67.10:T80 + + + + +89.191.10.146->85.88.67.10:T443 + + + + +195.0.242.39 + +195.0.242.39 + + +195.0.242.39->89.191.10.146 + + + + +195.0.242.23 + +195.0.242.23 + + +195.0.242.23->89.191.10.146 + + + + +195.0.244.48->195.0.242.39 + + + + +195.0.244.48->195.0.242.23 + + + + +109.105.109.245 + +109.105.109.245 + +http SA + +https SA + + +109.105.97.14 + +109.105.97.14 + + +109.105.97.73 + +109.105.97.73 + + +109.105.97.14->109.105.97.73 + + + + +109.105.97.14->109.105.97.73 + + + + +52.95.216.56 + +52.95.216.56 + + +109.105.97.73->52.95.216.56 + + + + +109.105.97.73->52.95.216.56 + + + + +109.105.97.10 + +109.105.97.10 + + +109.105.97.10->109.105.97.14 + + + + +109.105.97.10->109.105.97.14 + + + + +109.105.102.108->109.105.109.245:T80 + + + + +109.105.102.108->109.105.109.245:T443 + + + + +109.105.102.108->109.105.97.10 + + + + +109.105.102.108->109.105.97.10 + + + + +109.105.97.1 + +109.105.97.1 + + +109.105.102.108->109.105.97.1 + + + + +109.105.102.108->109.105.97.1 + + + + +109.105.97.25 + +109.105.97.25 + + +109.105.102.108->109.105.97.25 + + + + +109.105.102.108->109.105.97.25 + + + + +109.105.102.108->109.105.97.25 + + + + +109.105.102.108->109.105.97.25 + + + + +109.105.102.108->109.105.97.25 + + + + +109.105.102.108->109.105.97.25 + + + + +213.248.97.17 + +213.248.97.17 + + +109.105.97.1->213.248.97.17 + + + + +109.105.97.1->213.248.97.17 + + + + +109.105.97.25->72.14.196.42 + + + + +109.105.97.25->72.14.196.42 + + + + +109.105.97.25->72.14.196.42 + + + + +192.121.80.47 + +192.121.80.47 + + +109.105.97.25->192.121.80.47 + + + + +109.105.97.25->192.121.80.47 + + + + +109.105.97.25->192.121.80.47 + + + + +62.115.141.205 + +62.115.141.205 + + +62.115.141.201 + +62.115.141.201 + + +62.115.137.158 + +62.115.137.158 + + +62.115.136.35 + +62.115.136.35 + + +62.115.137.158->62.115.136.35 + + + + +80.91.249.218 + +80.91.249.218 + + +4.68.72.165 + +4.68.72.165 + + +62.115.136.35->4.68.72.165 + + + + +213.248.97.17->62.115.137.158 + + + + +62.115.119.108 + +62.115.119.108 + + +213.248.97.17->62.115.119.108 + + + + +62.115.136.23 + +62.115.136.23 + + +62.115.119.108->62.115.136.23 + + + + +62.115.136.23->4.68.72.165 + + + + +94.31.29.64 + +94.31.29.64 + +http SA + +https SA + + +54.239.107.131 + +54.239.107.131 + + +54.239.43.20 + +54.239.43.20 + + +54.239.107.131->54.239.43.20 + + + + +52.93.7.188 + +52.93.7.188 + + +52.93.7.190 + +52.93.7.190 + + +52.93.7.188->52.93.7.190 + + + + +54.239.42.88 + +54.239.42.88 + + +54.239.43.20->54.239.42.88 + + + + +54.239.43.20->54.239.42.88 + + + + +54.239.107.14 + +54.239.107.14 + + +52.95.216.56->54.239.107.14 + + + + +54.239.107.146 + +54.239.107.146 + + +52.95.216.56->54.239.107.146 + + + + +54.239.107.21 + +54.239.107.21 + + +54.239.107.14->54.239.107.21 + + + + +52.93.36.38 + +52.93.36.38 + + +52.93.36.141 + +52.93.36.141 + + +52.93.36.38->52.93.36.141 + + + + +54.239.107.146->54.239.107.131 + + + + +52.93.36.73 + +52.93.36.73 + + +52.93.36.73->52.93.36.38 + + + + +52.93.7.190->52.93.36.73 + + + + +52.93.36.68 + +52.93.36.68 + + +52.93.7.190->52.93.36.68 + + + + +52.93.36.133 + +52.93.36.133 + + +52.93.36.68->52.93.36.133 + + + + +54.239.42.88->52.93.7.188 + + + + +54.239.42.88->52.93.7.190 + + + + +54.239.107.21->54.239.43.20 + + + + +178.236.1.189 + +178.236.1.189 + + +52.93.36.133->178.236.1.189 + + + + +52.93.36.135 + +52.93.36.135 + + +unk0 + +unk0 + + +52.93.36.135->unk0 + + + + +unk6 + +unk6 + + +4.68.72.165->unk6 + + + + +unk7 + +unk7 + + +4.68.72.165->unk7 + + + + +212.162.19.102 + +212.162.19.102 + + +212.162.19.102->94.31.29.64:T443 + + + + +212.162.19.102->94.31.29.64:T80 + + + + +unk3 + +unk3 + + +178.236.1.189->unk3 + + + + +52.50.62.103 + +52.50.62.103 + +http SA + +https SA + + +52.93.36.141->52.93.36.135 + + + + +unk0->52.50.62.103:T443 + + + + +192.121.80.47->209.85.244.249 + + + + +192.121.80.47->209.85.244.249 + + + + +192.121.80.47->209.85.250.192 + + + + +unk1->74.125.128.97:T443 + + + + +unk2->209.85.233.155:T80 + + + + +unk3->52.50.62.103:T80 + + + + +unk5 + +unk5 + + +unk4->unk5 + + + + +unk5->74.125.128.97:T80 + + + + +unk6->212.162.19.102 + + + + +unk7->212.162.19.102 + + + + +unk8->209.85.233.155:T443 + + + + +