tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
September 2014
- 22 participants
- 980 discussions
commit 20d7f9d13cbc183d33a129324137b06d2aaeb313
Author: Damian Johnson <atagar(a)torproject.org>
Date: Mon Sep 1 15:43:39 2014 -0700
Adding proc.get_file_descriptors_used
Just a little helper for getting the number of file descriptors a process is
using.
---
docs/change_log.rst | 1 +
stem/util/proc.py | 38 +++++++++++++++++++++++++++++++++-----
test/unit/util/proc.py | 31 +++++++++++++++++++++++++++++++
3 files changed, 65 insertions(+), 5 deletions(-)
diff --git a/docs/change_log.rst b/docs/change_log.rst
index 2b6964c..24e39f0 100644
--- a/docs/change_log.rst
+++ b/docs/change_log.rst
@@ -54,6 +54,7 @@ The following are only available within Stem's `git repository
* Added support for directories to :func:`stem.util.conf.Config.load`.
* Changed :func:`stem.util.conf.uses_settings` to only provide a 'config' keyword arument if the decorated function would accept it.
* Added :func:`stem.util.str_tools.crop`
+ * Added :func:`stem.util.proc.get_file_descriptors_used`
* **Interpreter**
diff --git a/stem/util/proc.py b/stem/util/proc.py
index 62b7a5e..f9b2a59 100644
--- a/stem/util/proc.py
+++ b/stem/util/proc.py
@@ -26,6 +26,7 @@ future, use them at your own risk.**
get_uid - provides the user id a process is running under
get_memory_usage - provides the memory usage of a process
get_stats - queries statistics about a process
+ get_file_descriptors_used - number of file descriptors used by a process
get_connections - provides the connections made by a process
.. data:: Stat (enum)
@@ -292,6 +293,31 @@ def get_stats(pid, *stat_types):
return tuple(results)
+def get_file_descriptors_used(pid):
+ """
+ Provides the number of file descriptors currently being used by a process.
+
+ :param int pid: process id of the process to be queried
+
+ :returns: **int** of the number of file descriptors used
+
+ :raises: **IOError** if it can't be determined
+ """
+
+ try:
+ pid = int(pid)
+
+ if pid < 0:
+ raise IOError("Process pids can't be negative: %s" % pid)
+ except (ValueError, TypeError):
+ raise IOError('Process pid was non-numeric: %s' % pid)
+
+ try:
+ return len(os.listdir('/proc/%i/fd' % pid))
+ except Exception as exc:
+ raise IOError("Unable to check number of file descriptors used: %s" % exc)
+
+
def get_connections(pid):
"""
Queries connection related information from the proc contents. This provides
@@ -307,11 +333,13 @@ def get_connections(pid):
:raises: **IOError** if it can't be determined
"""
- if isinstance(pid, str):
- try:
- pid = int(pid)
- except ValueError:
- raise IOError('Process pid was non-numeric: %s' % pid)
+ try:
+ pid = int(pid)
+
+ if pid < 0:
+ raise IOError("Process pids can't be negative: %s" % pid)
+ except (ValueError, TypeError):
+ raise IOError('Process pid was non-numeric: %s' % pid)
if pid == 0:
return []
diff --git a/test/unit/util/proc.py b/test/unit/util/proc.py
index c682853..1786a99 100644
--- a/test/unit/util/proc.py
+++ b/test/unit/util/proc.py
@@ -144,6 +144,37 @@ class TestProc(unittest.TestCase):
self.assertEquals(response, proc.get_stats(0, *args))
@patch('os.listdir')
+ def test_get_file_descriptors_used(self, listdir_mock):
+ """
+ Tests the get_file_descriptors_used function.
+ """
+
+ # check that we reject bad pids
+
+ for arg in (None, -100, 'hello',):
+ self.assertRaises(IOError, proc.get_file_descriptors_used, arg)
+
+ # when proc directory doesn't exist
+
+ error_msg = "OSError: [Errno 2] No such file or directory: '/proc/2118/fd'"
+ listdir_mock.side_effect = OSError(error_msg)
+
+ try:
+ proc.get_file_descriptors_used(2118)
+ self.fail("We should raise when listdir() fails")
+ except IOError as exc:
+ expected = "Unable to check number of file descriptors used: %s" % error_msg
+ self.assertEqual(expected, str(exc))
+
+ # successful calls
+
+ listdir_mock.return_value = ['0', '1', '2', '3', '4', '5']
+ listdir_mock.side_effect = None
+
+ self.assertEqual(6, proc.get_file_descriptors_used(2118))
+ self.assertEqual(6, proc.get_file_descriptors_used('2118'))
+
+ @patch('os.listdir')
@patch('os.readlink')
@patch('stem.util.proc.open', create = True)
def test_get_connections(self, open_mock, readlink_mock, listdir_mock):
1
0

02 Sep '14
commit d220b901851db31758e4f38703b31e090cbb471b
Author: Damian Johnson <atagar(a)torproject.org>
Date: Mon Sep 1 14:34:11 2014 -0700
connection_time() method for the BaseController
Adding a connection_time() to our ControlSocket and BaseController to provide
when we either connected or disconnected from the socket.
---
docs/change_log.rst | 4 ++++
run_tests.py | 2 ++
stem/control.py | 12 ++++++++++++
stem/socket.py | 16 +++++++++++++++
test/integ/socket/control_socket.py | 37 +++++++++++++++++++++++++++++++++++
5 files changed, 71 insertions(+)
diff --git a/docs/change_log.rst b/docs/change_log.rst
index 0e605ca..2b6964c 100644
--- a/docs/change_log.rst
+++ b/docs/change_log.rst
@@ -40,6 +40,10 @@ Unreleased
The following are only available within Stem's `git repository
<download.html>`_.
+ * **Controller**
+
+ * Added :func:`~stem.control.BaseController.connection_time` to the :class:`~stem.control.BaseController`
+
* **Descriptors**
* Improved speed for parsing consensus documents by around 30% (:trac:`12859`)
diff --git a/run_tests.py b/run_tests.py
index 3c91513..2d73457 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -279,7 +279,9 @@ def main():
except OSError:
error_tracker.register_error()
finally:
+ println()
integ_runner.stop()
+ println()
if skipped_targets:
println()
diff --git a/stem/control.py b/stem/control.py
index e2f133d..8571a7f 100644
--- a/stem/control.py
+++ b/stem/control.py
@@ -478,6 +478,18 @@ class BaseController(object):
return self._socket.is_alive()
+ def connection_time(self):
+ """
+ Provides the unix timestamp for when our socket was either connected or
+ disconnected. That is to say, the time we connected if we're presently
+ connected and the time we disconnected if we're not connected.
+
+ :returns: **float** for when we last connected or disconnected, zero if
+ we've never connected
+ """
+
+ return self._socket.connection_time()
+
def is_authenticated(self):
"""
Checks if our socket is both connected and authenticated.
diff --git a/stem/socket.py b/stem/socket.py
index 1d664c0..e25f385 100644
--- a/stem/socket.py
+++ b/stem/socket.py
@@ -72,6 +72,7 @@ from __future__ import absolute_import
import re
import socket
import threading
+import time
import stem.prereq
import stem.response
@@ -93,6 +94,7 @@ class ControlSocket(object):
def __init__(self):
self._socket, self._socket_file = None, None
self._is_alive = False
+ self._connection_time = 0.0 # time when we last connected or disconnected
# Tracks sending and receiving separately. This should be safe, and doing
# so prevents deadlock where we block writes because we're waiting to read
@@ -203,6 +205,18 @@ class ControlSocket(object):
return False
+ def connection_time(self):
+ """
+ Provides the unix timestamp for when our socket was either connected or
+ disconnected. That is to say, the time we connected if we're presently
+ connected and the time we disconnected if we're not connected.
+
+ :returns: **float** for when we last connected or disconnected, zero if
+ we've never connected
+ """
+
+ return self._connection_time
+
def connect(self):
"""
Connects to a new socket, closing our previous one if we're already
@@ -223,6 +237,7 @@ class ControlSocket(object):
self._socket = self._make_socket()
self._socket_file = self._socket.makefile(mode = 'rwb')
self._is_alive = True
+ self._connection_time = time.time()
# It's possible for this to have a transient failure...
# SocketError: [Errno 4] Interrupted system call
@@ -273,6 +288,7 @@ class ControlSocket(object):
self._socket = None
self._socket_file = None
self._is_alive = False
+ self._connection_time = time.time()
if is_change:
self._close()
diff --git a/test/integ/socket/control_socket.py b/test/integ/socket/control_socket.py
index 7d7b84f..f0f2e40 100644
--- a/test/integ/socket/control_socket.py
+++ b/test/integ/socket/control_socket.py
@@ -8,6 +8,7 @@ those focus on parsing and correctness of the content these are more concerned
with the behavior of the socket itself.
"""
+import time
import unittest
import stem.connection
@@ -17,6 +18,42 @@ import test.runner
class TestControlSocket(unittest.TestCase):
+ def test_connection_time(self):
+ """
+ Checks that our connection_time method tracks when our state's changed.
+ """
+
+ if test.runner.require_control(self):
+ return
+
+ test_start = time.time()
+ runner = test.runner.get_runner()
+
+ with runner.get_tor_socket() as control_socket:
+ connection_time = control_socket.connection_time()
+
+ # connection time should be between our tests start and now
+
+ self.assertTrue(test_start <= connection_time <= time.time())
+
+ # connection time should be absolute (shouldn't change as time goes on)
+
+ time.sleep(0.1)
+ self.assertEqual(connection_time, control_socket.connection_time())
+
+ # should change to the disconnection time if we detactch
+
+ control_socket.close()
+ disconnection_time = control_socket.connection_time()
+ self.assertTrue(connection_time < disconnection_time <= time.time())
+
+ # then change again if we reconnect
+
+ time.sleep(0.1)
+ control_socket.connect()
+ reconnection_time = control_socket.connection_time()
+ self.assertTrue(disconnection_time < reconnection_time <= time.time())
+
def test_send_buffered(self):
"""
Sends multiple requests before receiving back any of the replies.
1
0

02 Sep '14
Author: phobos
Date: 2014-09-02 03:40:33 +0000 (Tue, 02 Sep 2014)
New Revision: 26938
Modified:
website/trunk/include/mirrors-table.wmi
website/trunk/include/tor-mirrors.csv
Log:
update mirror status.
Modified: website/trunk/include/mirrors-table.wmi
===================================================================
--- website/trunk/include/mirrors-table.wmi 2014-09-02 03:32:00 UTC (rev 26937)
+++ website/trunk/include/mirrors-table.wmi 2014-09-02 03:40:33 UTC (rev 26938)
@@ -1,1020 +0,0 @@
-
-<tr>
-
- <td>NO</td>
-
- <td>MultiNet AS</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.multinet.no/dist/">http</a></td>
- <td><a href="http://tor.multinet.no/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>ES</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.zilog.es/dist/">http</a></td>
- <td><a href="http://tor.zilog.es/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://199.175.55.215/dist/">http</a></td>
- <td><a href="http://199.175.55.215/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>EE</td>
-
- <td>CyberSIDE</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://cyberside.net.ee/tor/">http</a></td>
- <td><a href="http://cyberside.planet.ee/tor/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>IS</td>
-
- <td>torproject.is</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://torproject.is/dist/">http</a></td>
- <td><a href="http://torproject.is/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>spline</td>
-
- <td>Up to date</td>
-
- <td><a href="ftp://ftp.spline.de/pub/tor">ftp</a></td>
- <td><a href="http://tor.spline.de/dist/">http</a></td>
- <td><a href="http://tor.spline.de/">http</a></td>
- <td><a href="https://tor.spline.inf.fu-berlin.de/dist/">https</a></td>
- <td><a href="https://tor.spline.inf.fu-berlin.de/">https</a></td>
- <td><a href="rsync://ftp.spline.de/tor/dist">rsync</a></td>
- <td><a href="rsync://ftp.spline.de/tor">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>RO</td>
-
- <td>me0w.cc</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.me0w.cc/dist/">http</a></td>
- <td><a href="http://tor.me0w.cc/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>borgmann.tv</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.borgmann.tv/dist/">http</a></td>
- <td><a href="http://tor.borgmann.tv/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>AT</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.dont-know-me.at/dist/">http</a></td>
- <td><a href="http://tor.dont-know-me.at/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>INT</td>
-
- <td>CoralCDN</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://www.torproject.org.nyud.net/dist/">http</a></td>
- <td><a href="http://www.torproject.org.nyud.net/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>AT</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://torproject.ph3x.at/dist/">http</a></td>
- <td><a href="http://torproject.ph3x.at/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>BE</td>
-
- <td>teambelgium</td>
-
- <td>Up to date</td>
-
- <td><a href="ftp://tor.teambelgium.net:2121/torproject/">ftp</a></td>
- <td><a href="http://tor.teambelgium.net:8080/dist/">http</a></td>
- <td><a href="http://tor.teambelgium.net:8080/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>beme it</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.beme-it.de/dist/">http</a></td>
- <td><a href="http://tor.beme-it.de/">http</a></td>
- <td><a href="https://tor.beme-it.de/dist/">https</a></td>
- <td><a href="https://tor.beme-it.de/">https</a></td>
- <td><a href="rsync://tor.beme-it.de/tor/dist">rsync</a></td>
- <td><a href="rsync://tor.beme-it.de/tor">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>MX</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://fbnaia.homelinux.net/torproject/dist/">http</a></td>
- <td><a href="http://fbnaia.homelinux.net/torproject/">http</a></td>
- <td><a href="https://fbnaia.homelinux.net/torproject/dist/">https</a></td>
- <td><a href="https://fbnaia.homelinux.net/torproject/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>AskApache</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.askapache.com/dist/">http</a></td>
- <td><a href="http://tor.askapache.com/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>FR</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.mirror.chekanov.net/dist/">http</a></td>
- <td><a href="http://tor.mirror.chekanov.net/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>AT</td>
-
- <td>TechAsk.IT</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://www.unicorncloud.org/public/torproject.org/dist">http</a></td>
- <td><a href="http://www.unicorncloud.org/public/torproject.org/">http</a></td>
- <td><a href="https://www.unicorncloud.org/public/torproject.org/dist">https</a></td>
- <td><a href="https://www.unicorncloud.org/public/torproject.org/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>NL</td>
-
- <td>Amorphis</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.amorphis.eu/dist/">http</a></td>
- <td><a href="http://tor.amorphis.eu/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>HackThisSite.org</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://mirror.hackthissite.org/tor">http</a></td>
- <td><a href="http://tor.hackthissite.org/">http</a></td>
- <td><a href="https://mirror.hackthissite.org/tor">https</a></td>
- <td><a href="https://tor.hackthissite.org/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.linuxlounge.net/dist/">http</a></td>
- <td><a href="http://tor.linuxlounge.net/">http</a></td>
- <td><a href="https://tor.linuxlounge.net/dist/">https</a></td>
- <td><a href="https://tor.linuxlounge.net/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>AU</td>
-
- <td>CoffsWiFi</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://torproject.coffswifi.net/dist">http</a></td>
- <td><a href="http://torproject.coffswifi.net">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>AT</td>
-
- <td>cyberarmy</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td> - </td>
- <td><a href="http://tor.cyberarmy.at/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://torproject.cryptowars.info/dist/">http</a></td>
- <td><a href="http://torproject.cryptowars.info/">http</a></td>
- <td><a href="https://torproject.cryptowars.info/dist/">https</a></td>
- <td><a href="https://torproject.cryptowars.info/">https</a></td>
- <td> - </td>
- <td><a href="rsync://torproject.cryptowars.info/">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>IS</td>
-
- <td>TheOnionRouter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://theonionrouter.com/dist/">http</a></td>
- <td><a href="http://theonionrouter.com/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>crazyhaze.de</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.crazyhaze.de/dist/">http</a></td>
- <td><a href="http://tor.crazyhaze.de/">http</a></td>
- <td><a href="https://tor.crazyhaze.de/dist/">https</a></td>
- <td><a href="https://tor.crazyhaze.de/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>chaos darmstadt</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://mirrors.chaos-darmstadt.de/tor-mirror/dist/">http</a></td>
- <td><a href="http://mirrors.chaos-darmstadt.de/tor-mirror/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>RU</td>
-
- <td>Soviet Anonymous</td>
-
- <td>Up to date</td>
-
- <td><a href="ftp://creep.im/mirrors/tor">ftp</a></td>
- <td><a href="http://creep.im/tor/dist/">http</a></td>
- <td><a href="http://creep.im/tor">http</a></td>
- <td><a href="https://creep.im/tor/dist/">https</a></td>
- <td><a href="https://creep.im/tor">https</a></td>
- <td><a href="rsync://creep.im/tor-dist">rsync</a></td>
- <td><a href="rsync://creep.im/tor">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>torservers</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://www.torservers.net/mirrors/torproject.org/dist/">http</a></td>
- <td><a href="http://www.torservers.net/mirrors/torproject.org/">http</a></td>
- <td><a href="https://www.torservers.net/mirrors/torproject.org/dist/">https</a></td>
- <td><a href="https://www.torservers.net/mirrors/torproject.org/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>GB</td>
-
- <td>torland</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://mirror.torland.me/torproject.org/dist/">http</a></td>
- <td><a href="http://mirror.torland.me/torproject.org/">http</a></td>
- <td><a href="https://mirror.torland.me/torproject.org/dist/">https</a></td>
- <td><a href="https://mirror.torland.me/torproject.org/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>CZ</td>
-
- <td>Lightning-bolt.net</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://torproject.lightning-bolt.net/dist/">http</a></td>
- <td><a href="http://torproject.lightning-bolt.net/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>IS</td>
-
- <td>myRL.net</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.myrl.net/dist/">http</a></td>
- <td><a href="http://tor.myrl.net/">http</a></td>
- <td><a href="https://tor.myrl.net/dist/">https</a></td>
- <td><a href="https://tor.myrl.net/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>Userzap</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://torprojekt.userzap.de/dist/">http</a></td>
- <td><a href="http://torprojekt.userzap.de">http</a></td>
- <td><a href="https://torprojekt.userzap.de/dist/">https</a></td>
- <td><a href="https://torprojekt.userzap.de">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>EPRCI</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.eprci.net/dist/">http</a></td>
- <td><a href="http://tor.eprci.net/">http</a></td>
- <td><a href="https://www.eprci.com/tor/dist/">https</a></td>
- <td><a href="https://www.eprci.com/tor/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>CA</td>
-
- <td>tor(a)les.net</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.les.net/dist">http</a></td>
- <td><a href="http://tor.les.net/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>PW</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.pw.is/dist/">http</a></td>
- <td><a href="http://tor.pw.is/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>FR</td>
-
- <td>stalkr.net</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.stalkr.net/dist/">http</a></td>
- <td><a href="http://tor.stalkr.net/">http</a></td>
- <td><a href="https://tor.stalkr.net/dist/">https</a></td>
- <td><a href="https://tor.stalkr.net/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>cYbergueRrilLa AnonyMous NeXus</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="https://tor-mirror.cyberguerrilla.org/dist/">http</a></td>
- <td><a href="https://tor-mirror.cyberguerrilla.org">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>Gtor</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://torproject.gtor.org/dist/">http</a></td>
- <td><a href="http://torproject.gtor.org/">http</a></td>
- <td><a href="https://torproject.gtor.org/dist/">https</a></td>
- <td><a href="https://torproject.gtor.org/">https</a></td>
- <td><a href="rsync://torproject.gtor.org/website-mirror/dist/">rsync</a></td>
- <td><a href="rsync://torproject.gtor.org/website-mirror/">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>SDL</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://torproject.nexiom.net">http</a></td>
- <td><a href="http://torproject.nexiom.net">http</a></td>
- <td><a href="https://torproject.nexiom.net/dist">https</a></td>
- <td><a href="https://torproject.nexiom.net">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://mirror.velcommuta.de/tor/dist/">http</a></td>
- <td><a href="http://mirror.velcommuta.de/tor/">http</a></td>
- <td><a href="https://mirror.velcommuta.de/tor/dist/">https</a></td>
- <td><a href="https://mirror.velcommuta.de/tor/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>EFF</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="https://tor.eff.org/dist/">http</a></td>
- <td><a href="https://tor.eff.org">http</a></td>
- <td><a href="https://tor.eff.org/dist/">https</a></td>
- <td><a href="https://tor.eff.org">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>GR</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="https://tor.void.gr/dist/">http</a></td>
- <td><a href="https://tor.void.gr">http</a></td>
- <td><a href="https://tor.void.gr/dist/">https</a></td>
- <td><a href="https://tor.void.gr">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://reichster.de/mirrors/torproject.org/dist/">http</a></td>
- <td><a href="http://reichster.de/mirrors/torproject.org/">http</a></td>
- <td><a href="https://reichster.de/mirrors/torproject.org/dist/">https</a></td>
- <td><a href="https://reichster.de/mirrors/torproject.org">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>Evil Routers</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor1.evilrouters.net/dist/">http</a></td>
- <td><a href="http://tor1.evilrouters.net/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.miglix.eu/dist/">http</a></td>
- <td><a href="http://tor.miglix.eu">http</a></td>
- <td><a href="https://tor.miglix.eu/dist/">https</a></td>
- <td><a href="https://tor.miglix.eu">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>AT</td>
-
- <td>TorNinurtaName</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.ninurta.name/dist/">http</a></td>
- <td><a href="http://tor.ninurta.name/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>FR</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.fr33tux.org/dist/">http</a></td>
- <td><a href="http://tor.fr33tux.org">http</a></td>
- <td><a href="https://tor.fr33tux.org/dist/">https</a></td>
- <td><a href="https://tor.fr33tux.org">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>PL</td>
-
- <td>Sebastian M. Bobrecki</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.iv.net.pl/dist/">http</a></td>
- <td><a href="http://tor.iv.net.pl">http</a></td>
- <td><a href="https://tor.iv.net.pl/dist/">https</a></td>
- <td><a href="https://tor.iv.net.pl">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>FR</td>
-
- <td>d0wn.biz</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.static.lu/dist/">http</a></td>
- <td><a href="http://tor.static.lu">http</a></td>
- <td><a href="https://tor.static.lu/dist/">https</a></td>
- <td><a href="https://tor.static.lu">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>moparisthebest.com</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://www.moparisthebest.com/tor/dist/">http</a></td>
- <td><a href="http://www.moparisthebest.com/tor/">http</a></td>
- <td><a href="https://www.moparisthebest.com/tor/dist/">https</a></td>
- <td><a href="https://www.moparisthebest.com/tor/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>NL</td>
-
- <td>Maxanoo</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.maxanoo.com/dist/">http</a></td>
- <td><a href="http://tor.maxanoo.com/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>IS</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://ayo.tl/tor/dist/">http</a></td>
- <td><a href="http://ayo.tl/tor/">http</a></td>
- <td><a href="https://ayo.tl/tor/dist/">https</a></td>
- <td><a href="https://ayo.tl/tor/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>IT</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td> - </td>
- <td><a href="http://tor.stefanof.com">http</a></td>
- <td> - </td>
- <td> - </td>
- <td><a href="http://tor.stefanof.com/dist">rsync</a></td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>Anatomical Networks</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.ventricle.us/dist/">http</a></td>
- <td><a href="http://tor.ventricle.us/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>NL</td>
-
- <td>Hackabit.nl</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://hackabit.nl/tor/dist/">http</a></td>
- <td><a href="http://hackabit.nl/tor/">http</a></td>
- <td><a href="https://hackabit.nl/tor/dist/">https</a></td>
- <td><a href="https://hackabit.nl/tor/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>NL</td>
-
- <td>BBLN</td>
-
- <td>Up to date</td>
-
- <td><a href="ftp://mirror2.bbln.org/torproject/">ftp</a></td>
- <td><a href="http://mirror2.bbln.org/torproject/dist/">http</a></td>
- <td><a href="http://mirror2.bbln.org/torproject/">http</a></td>
- <td><a href="https://mirror2.bbln.org/torproject/dist/">https</a></td>
- <td><a href="https://mirror2.bbln.org/torproject/">https</a></td>
- <td><a href="rsync://mirror2.bbln.org/torproject/dist/">rsync</a></td>
- <td><a href="rsync://mirror2.bbln.org/torproject/">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>FR</td>
-
- <td>BBLN</td>
-
- <td>Up to date</td>
-
- <td><a href="ftp://mirror.bbln.org/torproject/">ftp</a></td>
- <td><a href="http://mirror.bbln.org/torproject/dist/">http</a></td>
- <td><a href="http://mirror.bbln.org/torproject/">http</a></td>
- <td><a href="https://mirror.bbln.org/torproject/dist/">https</a></td>
- <td><a href="https://mirror.bbln.org/torproject/">https</a></td>
- <td><a href="rsync://mirror.bbln.org/torproject/dist/">rsync</a></td>
- <td><a href="rsync://mirror.bbln.org/torproject/">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>Ramos Research</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.ramosresearch.com/dist/">http</a></td>
- <td><a href="http://tor.ramosresearch.com/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>DE</td>
-
- <td>Tor Supporter</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://tor.euve33747.vserver.de/dist">http</a></td>
- <td><a href="http://tor.euve33747.vserver.de/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>NL</td>
-
- <td>sky-ip.org</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td><a href="http://beautiful-mind.sky-ip.org/dist/">http</a></td>
- <td><a href="http://beautiful-mind.sky-ip.org/">http</a></td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td> - </td>
-</tr>
Modified: website/trunk/include/tor-mirrors.csv
===================================================================
--- website/trunk/include/tor-mirrors.csv 2014-09-02 03:32:00 UTC (rev 26937)
+++ website/trunk/include/tor-mirrors.csv 2014-09-02 03:40:33 UTC (rev 26938)
@@ -1,90 +1,90 @@
-"adminContact"," orgName"," isoCC"," subRegion"," region"," ipv4"," ipv6"," loadBalanced"," httpWebsiteMirror"," httpsWebsiteMirror"," rsyncWebsiteMirror"," ftpWebsiteMirror"," httpDistMirror"," httpsDistMirror"," rsyncDistMirror"," hiddenServiceMirror"," updateDate"
-"Tor Fan"," Tor Supporter"," US"," United States"," US"," TRUE"," TRUE"," No"," http://tor.loritsu.com/"," "," "," "," http://tor.loritsu.com/dist/"," "," "," "," "
-"Tor Fan"," Tor Supporter"," LU"," Luxemborg"," LU"," TRUE"," FALSE"," No"," http://torproject.adamas.ai/"," "," "," "," http://torproject.adamas.ai/dist/"," "," "," "," "
-"Tor Fan"," Tor Supporter"," UA"," Ukraine"," UA"," TRUE"," FALSE"," No"," http://torua.reactor-xg.kiev.ua/"," "," "," "," http://torua.reactor-xg.kiev.ua/dist/"," "," "," "," "
-"Tor Fan"," Tor Supporter"," FR"," France"," FR"," TRUE"," FALSE"," No"," http://37.187.0.127/tormirror/"," "," "," "," http://37.187.0.127/tormirror/dist/"," "," "," "," "
-"Tor Fan"," Tor Supporter"," US"," United States"," US"," TRUE"," FALSE"," No"," http://tor.minibofh.org/"," "," "," "," http://tor.minibofh.org/dist/"," "," "," "," "
-"Tor Fan"," Tor Supporter"," UK"," United Kingdom"," UK"," TRUE"," FALSE"," No"," http://tor.mage.me.uk/"," "," "," "," http://tor.mage.me.uk/dist/"," "," "," "," "
-"nsane2307 eml cc"," tor-mirror.de"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://tor-mirror.de/"," https://tor-mirror.de/"," "," "," http://tor-mirror.de/dist/"," https://tor-mirror.de/dist/"," "," "," "
-"citizen428 AT gmail DOT com"," [[:bbs:]]"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://tor.blingblingsquad.net/"," https://tor.blingblingsquad.net/"," "," "," http://tor.blingblingsquad.net/dist/"," https://tor.blingblingsquad.net/dist/"," "," "," "
-"Tor Fan"," Tor Supporter"," US"," United States"," US"," TRUE"," FALSE"," No"," "," "," "," "," http://www.netgull.com/torproject/"," "," "," "," "
-"Tor Fan"," NW Linux"," US"," WA"," US"," TRUE"," FALSE"," No"," http://torproject.nwlinux.us/"," "," rsync://nwlinux.us/tor-web"," "," http://torproject.nwlinux.us/dist/"," "," rsync://nwlinux.us/tor-dist"," "," "
-"Tor Fan"," Tor Supporter"," NL"," The Netherlands"," NL"," TRUE"," FALSE"," No"," "," "," "," "," "," https://www.coevoet.nl/tor/dist/"," "," "," "
-"Tor Fan"," LazyTiger"," FR"," France"," FR"," TRUE"," FALSE"," No"," http://tor.taiga-san.net/"," "," "," "," http://tor.taiga-san.net/dist/"," "," "," "," "
-"Tor Fan"," Tor Supporter"," EE"," Estonia"," EE"," TRUE"," FALSE"," No"," http://tor.li/"," https://tor.li/"," "," "," http://tor.li/dist/"," https://tor.li/dist/"," "," "," "
-"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," FALSE"," NO"," http://tor.externenprüfung-nichtschüler.de/"," "," "," "," http://tor.externenprüfung-nichtschüler.de/dist/"," "," "," "," "
-"mirror-service(a)netcologne.de"," NetCologne GmbH"," DE"," NRW"," TRUE"," TRUE"," No"," http://mirror.netcologne.de/torproject.org"," "," rsync://mirror.netcologne.de/torproject.org"," ftp://mirror.netcologne.de/torproject.org/"," http://mirror.netcologne.de/torproject.org/dist"," "," rsync://mirror.netcologne.de/torproject.org/dist"," "," "," "
-"admin AT netgull DOT com"," NetGull"," US"," United States"," North America"," TRUE"," TRUE"," No"," "," "," "," "," http://www.netgull.com/torproject/"," "," "," "," "
-"mirrors[at]ip-connect[dot]vn[dot]ua"," IP-Connect LLC"," UA"," VN"," TRUE"," TRUE"," Yes"," http://torproject.ip-connect.vn.ua"," "," rsync://torproject.ip-connect.vn.ua/torproject"," ftp://torproject.ip-connect.vn.ua/mirror/torproject/"," http://torproject.ip-connect.vn.ua/dist"," "," rsync://torproject.ip-connect.vn.ua/torproject/dist"," "," "," "
-"torsupport AT tb-itf DOT de"," TB-ITF"," "," DE"," Germany"," Europe"," TRUE"," TRUE"," No"," http://tormirror.tb-itf-tor.de"," https://tormirror.tb-itf-tor.de"," "," "," "," http://tormirror.tb-itf-tor.de/dist/"," https://tormirror.tb-itf-tor.de/dist/"," "
-"admin at koreswatanabe dottnet"," Tor Supporter"," RO"," Romania"," RO"," TRUE"," TRUE"," No"," http://tor-relay.koreswatanabe.net"," "," "," "," http://tor-relay.koreswatanabe.net/dist/"," "," "," "," "
-"calebcenter(a)live.com"," calebxu.tk"," US"," United States"," US"," TRUE"," FALSE"," NO"," http://tor.calebxu.tk"," "," rsync://calebxu.tk/tor"," ftp://ftp.calebxu.tk"," http://tor.calebxu.tk/dist"," "," "," "," "
-"maki(a)maki-chan.de"," Maki Hoshisawa"," DE"," Germany"," DE"," TRUE"," FALSE"," NO"," http://tor.mirrors.maki-chan.de/"," "," "," "," http://tor.mirrors.maki-chan.de/dist/"," "," "," "," Fri Aug 22 14:09:07 2014"
-"info AT zentrum-der-gesundheit DOT de"," Zentrum der Gesundheit"," DK"," Denmark"," Europe"," TRUE"," FALSE"," No"," http://tor.idnr.ws/"," "," "," "," http://tor.idnr.ws/dist/"," "," "," "," Sun Aug 24 16:19:07 2014"
-"mirror ntzk de"," Netzkonstrukt Berlin"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://mirror.ntzk.de/torproject.org/"," "," "," "," http://mirror.ntzk.de/torproject.org/dist/"," "," "," "," Sun Aug 24 16:19:07 2014"
-"info /AT enn /DOT lu"," Frenn vun der Enn A.S.B.L."," IS"," Iceland"," Europe"," TRUE"," FALSE"," No"," http://torproject.lu/"," "," "," "," http://torproject.lu/dist/"," "," "," http://btn6gqzqevlhoryd.onion"," Sun Aug 24 16:19:07 2014"
-"Piratenpartei Bayern"," Piratenpartei Bayern"," DE"," Germany"," DE"," TRUE"," FALSE"," NO"," http://tormirror.piratenpartei-bayern.de"," https://tormirror.piratenpartei-bayern.de"," "," "," http://tormirror.piratenpartei-bayern.de/dist/"," http://tormirror.piratenpartei-bayern.de/dist/"," "," "," Sun Aug 24 16:19:07 2014"
-"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," TRUE"," NO"," http://tor.hoi-polloi.org"," http://tor.hossi-polloiorg"," "," "," http://tor.hoi-polloi.org/dist/"," http://tor.hosi-polloi.or/dist/g"," "," "," Sun Aug 24 16:19:07 2014"
-"kevinmg(a)pressfreedomfoundation.org"," Freedom of the Press Foundation"," US"," United States"," US"," True"," False"," No"," http://tor.pressfreedomfoundation.org"," https://tor.pressfreedomfoundation.org"," "," "," http://tor.pressfreedomfoundation.org/dist/"," https://tor.pressfreedomfoundation.org/dist/"," "," "," Sun Aug 24 16:19:07 2014"
-"tor(a)fodt.it // FoDT.it Webteam"," FoDT.it"," AT"," Austria"," Europe"," TRUE"," FALSE"," No"," http://tor.fodt.it"," https://tor.fodt.it"," "," ftp://ftp.fodt.it/pub/mirrors/torproject.org/"," http://tor.fodt.it/dist/"," https://tor.fodt.it/dist/"," "," "," Sun Aug 24 16:19:07 2014"
-"http://www.multinet.no"," MultiNet AS"," NO"," Trondheim"," Trondheim"," TRUE"," TRUE"," No"," http://tor.multinet.no/"," "," "," "," http://tor.multinet.no/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"haskell at gmx.es"," Tor Supporter"," ES"," Spain"," Europe"," TRUE"," FALSE"," No"," http://tor.zilog.es/"," "," "," "," http://tor.zilog.es/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," US"," United States"," US"," TRUE"," FALSE"," No"," http://199.175.55.215/"," "," "," "," http://199.175.55.215/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"margus.random at mail.ee"," CyberSIDE"," EE"," Estonia"," EE"," TRUE"," FALSE"," No"," http://cyberside.planet.ee/tor/"," "," "," "," http://cyberside.net.ee/tor/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," torproject.is"," IS"," Iceland"," IS"," TRUE"," FALSE"," No"," http://torproject.is/"," "," "," "," http://torproject.is/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," spline"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.spline.de/"," https://tor.spline.inf.fu-berlin.de/"," rsync://ftp.spline.de/tor"," ftp://ftp.spline.de/pub/tor"," http://tor.spline.de/dist/"," https://tor.spline.inf.fu-berlin.de/dist/"," rsync://ftp.spline.de/tor/dist"," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," me0w.cc"," RO"," Romania"," RO"," TRUE"," FALSE"," No"," http://tor.me0w.cc/"," "," "," "," http://tor.me0w.cc/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," borgmann.tv"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.borgmann.tv/"," "," "," "," http://tor.borgmann.tv/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," AT"," Austria"," AT"," TRUE"," TRUE"," No"," http://tor.dont-know-me.at/"," "," "," "," http://tor.dont-know-me.at/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"coralcdn.org"," CoralCDN"," INT"," International"," INT"," TRUE"," FALSE"," Yes"," http://www.torproject.org.nyud.net/"," "," "," "," http://www.torproject.org.nyud.net/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," AT"," Austria"," AT"," TRUE"," FALSE"," No"," http://torproject.ph3x.at/"," "," "," "," http://torproject.ph3x.at/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"neutrino8 AT gmail DOT com"," teambelgium"," BE"," Belgium"," Europe"," TRUE"," FALSE"," No"," http://tor.teambelgium.net:8080/"," "," "," ftp://tor.teambelgium.net:2121/torproject/"," http://tor.teambelgium.net:8080/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-" mail AT benjamin-meier DOT info"," beme it"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.beme-it.de/"," https://tor.beme-it.de/"," rsync://tor.beme-it.de/tor"," "," http://tor.beme-it.de/dist/"," https://tor.beme-it.de/dist/"," rsync://tor.beme-it.de/tor/dist"," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," MX"," Mexico"," MX"," TRUE"," FALSE"," No"," http://fbnaia.homelinux.net/torproject/"," https://fbnaia.homelinux.net/torproject/"," "," "," http://fbnaia.homelinux.net/torproject/dist/"," https://fbnaia.homelinux.net/torproject/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"webmaster AT askapache DOT com"," AskApache"," US"," California"," US"," TRUE"," FALSE"," No"," http://tor.askapache.com/"," "," "," "," http://tor.askapache.com/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," FR"," France"," FR"," TRUE"," FALSE"," No"," http://tor.mirror.chekanov.net/"," "," "," "," http://tor.mirror.chekanov.net/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"http://sebastian.pfeifer.or.at/"," TechAsk.IT"," AT"," Favoriten"," Wien"," TRUE"," TRUE"," No"," http://www.unicorncloud.org/public/torproject.org/"," https://www.unicorncloud.org/public/torproject.org/"," "," "," http://www.unicorncloud.org/public/torproject.org/dist"," https://www.unicorncloud.org/public/torproject.org/dist"," "," "," Thu Aug 28 20:15:25 2014"
-"root AT amorphis DOT eu"," Amorphis"," NL"," The Netherlands"," Europe"," TRUE"," FALSE"," No"," http://tor.amorphis.eu/"," "," "," "," http://tor.amorphis.eu/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"hackthissite.org"," HackThisSite.org"," US"," United States"," US"," TRUE"," TRUE"," No"," http://tor.hackthissite.org/"," https://tor.hackthissite.org/"," "," "," http://mirror.hackthissite.org/tor"," https://mirror.hackthissite.org/tor"," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.linuxlounge.net/"," https://tor.linuxlounge.net/"," "," "," http://tor.linuxlounge.net/dist/"," https://tor.linuxlounge.net/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"paul at coffswifi.net"," CoffsWiFi"," AU"," Australia and New Zealand"," APNIC"," TRUE"," FALSE"," No"," http://torproject.coffswifi.net"," "," "," "," http://torproject.coffswifi.net/dist"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," cyberarmy"," AT"," Austria"," AT"," TRUE"," FALSE"," No"," http://tor.cyberarmy.at/"," "," "," "," "," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://torproject.cryptowars.info/"," https://torproject.cryptowars.info/"," rsync://torproject.cryptowars.info/"," "," http://torproject.cryptowars.info/dist/"," https://torproject.cryptowars.info/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"hostmaster AT zombiewerks DOT com"," TheOnionRouter"," IS"," Iceland"," Iceland"," TRUE"," FALSE"," No"," http://theonionrouter.com/"," "," "," "," http://theonionrouter.com/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," crazyhaze.de"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.crazyhaze.de/"," https://tor.crazyhaze.de/"," "," "," http://tor.crazyhaze.de/dist/"," https://tor.crazyhaze.de/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," chaos darmstadt"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://mirrors.chaos-darmstadt.de/tor-mirror/"," "," "," "," http://mirrors.chaos-darmstadt.de/tor-mirror/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Soviet Anonymous"," RU"," Russia"," RU"," TRUE"," FALSE"," No"," http://creep.im/tor"," https://creep.im/tor"," rsync://creep.im/tor"," ftp://creep.im/mirrors/tor"," http://creep.im/tor/dist/"," https://creep.im/tor/dist/"," rsync://creep.im/tor-dist"," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," torservers"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://www.torservers.net/mirrors/torproject.org/"," https://www.torservers.net/mirrors/torproject.org/"," "," "," http://www.torservers.net/mirrors/torproject.org/dist/"," https://www.torservers.net/mirrors/torproject.org/dist/"," "," http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/"," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," torland"," GB"," United Kingdom"," GB"," TRUE"," FALSE"," No"," http://mirror.torland.me/torproject.org/"," https://mirror.torland.me/torproject.org/"," "," "," http://mirror.torland.me/torproject.org/dist/"," https://mirror.torland.me/torproject.org/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Lightning-bolt.net"," CZ"," Czech Republic"," CZ"," TRUE"," FALSE"," No"," http://torproject.lightning-bolt.net/"," "," "," "," http://torproject.lightning-bolt.net/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"IceBear"," myRL.net"," IS"," Iceland"," IS"," TRUE"," FALSE"," No"," http://tor.myrl.net/"," https://tor.myrl.net/"," "," "," http://tor.myrl.net/dist/"," https://tor.myrl.net/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"kiro AT userzap DOT de"," Userzap"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://torprojekt.userzap.de"," https://torprojekt.userzap.de"," "," "," http://torprojekt.userzap.de/dist/"," https://torprojekt.userzap.de/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"tor(a)eprci.net"," EPRCI"," US"," United States"," US"," TRUE"," FALSE"," NO"," http://tor.eprci.net/"," https://www.eprci.com/tor/"," "," "," http://tor.eprci.net/dist/"," https://www.eprci.com/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"tor(a)les.net"," tor(a)les.net"," CA"," Canada"," CA"," TRUE"," FALSE"," NO"," http://tor.les.net/"," "," "," "," http://tor.les.net/dist"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," PW"," DE"," Germany"," DE"," TRUE"," TRUE"," NO"," http://tor.pw.is/"," "," "," "," http://tor.pw.is/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"tor(a)stalkr.net"," stalkr.net"," FR"," France"," FR"," TRUE"," TRUE"," NO"," http://tor.stalkr.net/"," https://tor.stalkr.net/"," "," "," http://tor.stalkr.net/dist/"," https://tor.stalkr.net/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"doemela[AT]cyberguerrilla[DOT]org"," cYbergueRrilLa AnonyMous NeXus"," DE"," Germany"," DE"," TRUE"," FALSE"," NO"," https://tor-mirror.cyberguerrilla.org"," "," "," "," https://tor-mirror.cyberguerrilla.org/dist/"," "," "," http://6dvj6v5imhny3anf.onion"," Thu Aug 28 20:15:25 2014"
-"contact(a)gtor.org"," Gtor"," DE"," Germany"," DE"," TRUE"," TRUE"," NO"," http://torproject.gtor.org/"," https://torproject.gtor.org/"," rsync://torproject.gtor.org/website-mirror/"," "," http://torproject.gtor.org/dist/"," https://torproject.gtor.org/dist/"," rsync://torproject.gtor.org/website-mirror/dist/"," "," Thu Aug 28 20:15:25 2014"
-"SDL"," SDL"," US"," United States"," US"," TRUE"," TRUE"," NO"," http://torproject.nexiom.net"," https://torproject.nexiom.net"," "," "," http://torproject.nexiom.net"," https://torproject.nexiom.net/dist"," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," TRUE"," NO"," http://mirror.velcommuta.de/tor/"," https://mirror.velcommuta.de/tor/"," "," "," http://mirror.velcommuta.de/tor/dist/"," https://mirror.velcommuta.de/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"EFF"," EFF"," US"," United States"," US"," TRUE"," FALSE"," NO"," https://tor.eff.org"," https://tor.eff.org"," "," "," https://tor.eff.org/dist/"," https://tor.eff.org/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," GR"," Greece"," GR"," TRUE"," TRUE"," NO"," https://tor.void.gr"," https://tor.void.gr"," "," "," https://tor.void.gr/dist/"," https://tor.void.gr/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"Ich Eben"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," TRUE"," No"," http://reichster.de/mirrors/torproject.org/"," https://reichster.de/mirrors/torproject.org"," "," "," http://reichster.de/mirrors/torproject.org/dist/"," https://reichster.de/mirrors/torproject.org/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"jlgaddis AT gnu DOT org"," Evil Routers"," US"," United States"," US"," TRUE"," FALSE"," No"," http://tor1.evilrouters.net/"," "," "," "," http://tor1.evilrouters.net/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"tor AT miglix DOT eu"," Tor Supporter"," DE"," Germany"," Europe"," TRUE"," TRUE"," NO"," http://tor.miglix.eu"," https://tor.miglix.eu"," "," "," http://tor.miglix.eu/dist/"," https://tor.miglix.eu/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"tor TA ninurta TOD name"," TorNinurtaName"," AT"," Austria"," AT"," TRUE"," TRUE"," no"," http://tor.ninurta.name/"," "," "," "," http://tor.ninurta.name/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"fr33tux <AT> general-changelog-team.fr"," Tor Supporter"," FR"," France"," FR"," TRUE"," TRUE"," No"," http://tor.fr33tux.org"," https://tor.fr33tux.org"," "," "," http://tor.fr33tux.org/dist/"," https://tor.fr33tux.org/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"sebastian(at)bobrecki(dot)pl"," Sebastian M. Bobrecki"," PL"," Poland"," Europe"," TRUE"," FALSE"," No"," http://tor.iv.net.pl"," https://tor.iv.net.pl"," "," "," http://tor.iv.net.pl/dist/"," https://tor.iv.net.pl/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"tor-mirror AT rdns DOT cc"," d0wn.biz"," FR"," France"," Europe"," TRUE"," FALSE"," No"," http://tor.static.lu"," https://tor.static.lu"," "," "," http://tor.static.lu/dist/"," https://tor.static.lu/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"tor(a)moparisthebest.com"," moparisthebest.com"," DE"," Germany"," Europe"," TRUE"," TRUE"," No"," http://www.moparisthebest.com/tor/"," https://www.moparisthebest.com/tor/"," "," "," http://www.moparisthebest.com/tor/dist/"," https://www.moparisthebest.com/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"Sebastian"," Maxanoo"," NL"," The Netherlands"," Amsterdam"," TRUE"," FALSE"," NO"," http://tor.maxanoo.com/"," "," "," "," http://tor.maxanoo.com/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"rorrim AT ayo DOT tl"," Tor Supporter"," IS"," Iceland"," Europe"," TRUE"," TRUE"," No"," http://ayo.tl/tor/"," https://ayo.tl/tor/"," "," "," http://ayo.tl/tor/dist/"," https://ayo.tl/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"stefano.fenoglio AT gmail DOT com"," Tor Supporter"," IT"," Italy"," Europe"," TRUE"," FALSE"," No"," http://tor.stefanof.com"," "," "," "," "," "," http://tor.stefanof.com/dist"," "," Thu Aug 28 20:15:25 2014"
-"Jacob Henner"," Anatomical Networks"," US"," United States"," US"," TRUE"," TRUE"," TRUE"," http://tor.ventricle.us/"," "," "," "," http://tor.ventricle.us/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"webmaster[at]hackabit.nl"," Hackabit.nl"," NL"," The Netherlands"," Europe"," TRUE"," FALSE"," No"," http://hackabit.nl/tor/"," https://hackabit.nl/tor/"," "," "," http://hackabit.nl/tor/dist/"," https://hackabit.nl/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
-"noc AT bbln DOT org"," BBLN"," NL"," The Netherlands"," Europe"," TRUE"," TRUE"," No"," http://mirror2.bbln.org/torproject/"," https://mirror2.bbln.org/torproject/"," rsync://mirror2.bbln.org/torproject/"," ftp://mirror2.bbln.org/torproject/"," http://mirror2.bbln.org/torproject/dist/"," https://mirror2.bbln.org/torproject/dist/"," rsync://mirror2.bbln.org/torproject/dist/"," "," Thu Aug 28 20:15:25 2014"
-"noc AT bbln DOT org"," BBLN"," FR"," France"," Europe"," TRUE"," TRUE"," No"," http://mirror.bbln.org/torproject/"," https://mirror.bbln.org/torproject/"," rsync://mirror.bbln.org/torproject/"," ftp://mirror.bbln.org/torproject/"," http://mirror.bbln.org/torproject/dist/"," https://mirror.bbln.org/torproject/dist/"," rsync://mirror.bbln.org/torproject/dist/"," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Ramos Research"," US"," United States"," US"," TRUE"," TRUE"," No"," http://tor.ramosresearch.com/"," "," "," "," http://tor.ramosresearch.com/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"Tor Fan"," Tor Supporter"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://tor.euve33747.vserver.de/"," "," "," "," http://tor.euve33747.vserver.de/dist"," "," "," "," Thu Aug 28 20:15:25 2014"
-"s7r[at]sky-ip[d0t]org"," sky-ip.org"," NL"," Netherlands"," NL"," TRUE"," FALSE"," No"," http://beautiful-mind.sky-ip.org/"," "," "," "," http://beautiful-mind.sky-ip.org/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
-"tor#pajonzeck#de","ITsn","DE","Germany","Europe","TRUE","FALSE","No","http://tor.pajonzeck.de/","https://tor.pajonzeck.de/","rsync://tor.pajonzeck.de/tor","http://tor.pajonzeck.de/dist/","https://tor.pajonzeck.de/dist/","rsync://tor.pajonzeck.de/tor/dist","http://zgfgvob256pffy62.onion",,
+"adminContact", " orgName", " isoCC", " subRegion", " region", " ipv4", " ipv6", " loadBalanced", " httpWebsiteMirror", " httpsWebsiteMirror", " rsyncWebsiteMirror", " ftpWebsiteMirror", " httpDistMirror", " httpsDistMirror", " rsyncDistMirror", " hiddenServiceMirror", " updateDate"
+"Tor Fan", " Tor Supporter", " US", " United States", " US", " TRUE", " TRUE", " No", " http://tor.loritsu.com/", " ", " ", " ", " http://tor.loritsu.com/dist/", " ", " ", " ", " "
+"Tor Fan", " Tor Supporter", " LU", " Luxemborg", " LU", " TRUE", " FALSE", " No", " http://torproject.adamas.ai/", " ", " ", " ", " http://torproject.adamas.ai/dist/", " ", " ", " ", " "
+"Tor Fan", " Tor Supporter", " UA", " Ukraine", " UA", " TRUE", " FALSE", " No", " http://torua.reactor-xg.kiev.ua/", " ", " ", " ", " http://torua.reactor-xg.kiev.ua/dist/", " ", " ", " ", " "
+"Tor Fan", " Tor Supporter", " FR", " France", " FR", " TRUE", " FALSE", " No", " http://37.187.0.127/tormirror/", " ", " ", " ", " http://37.187.0.127/tormirror/dist/", " ", " ", " ", " "
+"Tor Fan", " Tor Supporter", " US", " United States", " US", " TRUE", " FALSE", " No", " http://tor.minibofh.org/", " ", " ", " ", " http://tor.minibofh.org/dist/", " ", " ", " ", " "
+"Tor Fan", " Tor Supporter", " UK", " United Kingdom", " UK", " TRUE", " FALSE", " No", " http://tor.mage.me.uk/", " ", " ", " ", " http://tor.mage.me.uk/dist/", " ", " ", " ", " "
+"nsane2307 eml cc", " tor-mirror.de", " DE", " Germany", " Europe", " TRUE", " FALSE", " No", " http://tor-mirror.de/", " https://tor-mirror.de/", " ", " ", " http://tor-mirror.de/dist/", " https://tor-mirror.de/dist/", " ", " ", " "
+"citizen428 AT gmail DOT com", " [[:bbs:]]", " DE", " Germany", " Europe", " TRUE", " FALSE", " No", " http://tor.blingblingsquad.net/", " https://tor.blingblingsquad.net/", " ", " ", " http://tor.blingblingsquad.net/dist/", " https://tor.blingblingsquad.net/dist/", " ", " ", " "
+"Tor Fan", " Tor Supporter", " US", " United States", " US", " TRUE", " FALSE", " No", " ", " ", " ", " ", " http://www.netgull.com/torproject/", " ", " ", " ", " "
+"Tor Fan", " NW Linux", " US", " WA", " US", " TRUE", " FALSE", " No", " http://torproject.nwlinux.us/", " ", " rsync://nwlinux.us/tor-web", " ", " http://torproject.nwlinux.us/dist/", " ", " rsync://nwlinux.us/tor-dist", " ", " "
+"Tor Fan", " Tor Supporter", " NL", " The Netherlands", " NL", " TRUE", " FALSE", " No", " ", " ", " ", " ", " ", " https://www.coevoet.nl/tor/dist/", " ", " ", " "
+"Tor Fan", " LazyTiger", " FR", " France", " FR", " TRUE", " FALSE", " No", " http://tor.taiga-san.net/", " ", " ", " ", " http://tor.taiga-san.net/dist/", " ", " ", " ", " "
+"Tor Fan", " Tor Supporter", " EE", " Estonia", " EE", " TRUE", " FALSE", " No", " http://tor.li/", " https://tor.li/", " ", " ", " http://tor.li/dist/", " https://tor.li/dist/", " ", " ", " "
+"Tor Fan", " Tor Supporter", " DE", " Germany", " DE", " TRUE", " FALSE", " NO", " http://tor.externenprüfung-nichtschüler.de/", " ", " ", " ", " http://tor.externenprüfung-nichtschüler.de/dist/", " ", " ", " ", " "
+"mirror-service(a)netcologne.de", " NetCologne GmbH", " DE", " NRW", " TRUE", " TRUE", " No", " http://mirror.netcologne.de/torproject.org", " ", " rsync://mirror.netcologne.de/torproject.org", " ftp://mirror.netcologne.de/torproject.org/", " http://mirror.netcologne.de/torproject.org/dist", " ", " rsync://mirror.netcologne.de/torproject.org/dist", " ", " ", " "
+"admin AT netgull DOT com", " NetGull", " US", " United States", " North America", " TRUE", " TRUE", " No", " ", " ", " ", " ", " http://www.netgull.com/torproject/", " ", " ", " ", " "
+"mirrors[at]ip-connect[dot]vn[dot]ua", " IP-Connect LLC", " UA", " VN", " TRUE", " TRUE", " Yes", " http://torproject.ip-connect.vn.ua", " ", " rsync://torproject.ip-connect.vn.ua/torproject", " ftp://torproject.ip-connect.vn.ua/mirror/torproject/", " http://torproject.ip-connect.vn.ua/dist", " ", " rsync://torproject.ip-connect.vn.ua/torproject/dist", " ", " ", " "
+"torsupport AT tb-itf DOT de", " TB-ITF", " ", " DE", " Germany", " Europe", " TRUE", " TRUE", " No", " http://tormirror.tb-itf-tor.de", " https://tormirror.tb-itf-tor.de", " ", " ", " ", " http://tormirror.tb-itf-tor.de/dist/", " https://tormirror.tb-itf-tor.de/dist/", " "
+"admin at koreswatanabe dottnet", " Tor Supporter", " RO", " Romania", " RO", " TRUE", " TRUE", " No", " http://tor-relay.koreswatanabe.net", " ", " ", " ", " http://tor-relay.koreswatanabe.net/dist/", " ", " ", " ", " "
+"calebcenter(a)live.com", " calebxu.tk", " US", " United States", " US", " TRUE", " FALSE", " NO", " http://tor.calebxu.tk", " ", " rsync://calebxu.tk/tor", " ftp://ftp.calebxu.tk", " http://tor.calebxu.tk/dist", " ", " ", " ", " "
+"maki(a)maki-chan.de", " Maki Hoshisawa", " DE", " Germany", " DE", " TRUE", " FALSE", " NO", " http://tor.mirrors.maki-chan.de/", " ", " ", " ", " http://tor.mirrors.maki-chan.de/dist/", " ", " ", " ", " Fri Aug 22 14:09:07 2014"
+"info AT zentrum-der-gesundheit DOT de", " Zentrum der Gesundheit", " DK", " Denmark", " Europe", " TRUE", " FALSE", " No", " http://tor.idnr.ws/", " ", " ", " ", " http://tor.idnr.ws/dist/", " ", " ", " ", " Sun Aug 24 16:19:07 2014"
+"mirror ntzk de", " Netzkonstrukt Berlin", " DE", " Germany", " Europe", " TRUE", " FALSE", " No", " http://mirror.ntzk.de/torproject.org/", " ", " ", " ", " http://mirror.ntzk.de/torproject.org/dist/", " ", " ", " ", " Sun Aug 24 16:19:07 2014"
+"info /AT enn /DOT lu", " Frenn vun der Enn A.S.B.L.", " IS", " Iceland", " Europe", " TRUE", " FALSE", " No", " http://torproject.lu/", " ", " ", " ", " http://torproject.lu/dist/", " ", " ", " http://btn6gqzqevlhoryd.onion", " Sun Aug 24 16:19:07 2014"
+"Piratenpartei Bayern", " Piratenpartei Bayern", " DE", " Germany", " DE", " TRUE", " FALSE", " NO", " http://tormirror.piratenpartei-bayern.de", " https://tormirror.piratenpartei-bayern.de", " ", " ", " http://tormirror.piratenpartei-bayern.de/dist/", " http://tormirror.piratenpartei-bayern.de/dist/", " ", " ", " Sun Aug 24 16:19:07 2014"
+"Tor Fan", " Tor Supporter", " DE", " Germany", " DE", " TRUE", " TRUE", " NO", " http://tor.hoi-polloi.org", " http://tor.hossi-polloiorg", " ", " ", " http://tor.hoi-polloi.org/dist/", " http://tor.hosi-polloi.or/dist/g", " ", " ", " Sun Aug 24 16:19:07 2014"
+"kevinmg(a)pressfreedomfoundation.org", " Freedom of the Press Foundation", " US", " United States", " US", " True", " False", " No", " http://tor.pressfreedomfoundation.org", " https://tor.pressfreedomfoundation.org", " ", " ", " http://tor.pressfreedomfoundation.org/dist/", " https://tor.pressfreedomfoundation.org/dist/", " ", " ", " Sun Aug 24 16:19:07 2014"
+"tor(a)fodt.it // FoDT.it Webteam", " FoDT.it", " AT", " Austria", " Europe", " TRUE", " FALSE", " No", " http://tor.fodt.it", " https://tor.fodt.it", " ", " ftp://ftp.fodt.it/pub/mirrors/torproject.org/", " http://tor.fodt.it/dist/", " https://tor.fodt.it/dist/", " ", " ", " Sun Aug 24 16:19:07 2014"
+"http://www.multinet.no", " MultiNet AS", " NO", " Trondheim", " Trondheim", " TRUE", " TRUE", " No", " http://tor.multinet.no/", " ", " ", " ", " http://tor.multinet.no/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"haskell at gmx.es", " Tor Supporter", " ES", " Spain", " Europe", " TRUE", " FALSE", " No", " http://tor.zilog.es/", " ", " ", " ", " http://tor.zilog.es/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " US", " United States", " US", " TRUE", " FALSE", " No", " http://199.175.55.215/", " ", " ", " ", " http://199.175.55.215/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"margus.random at mail.ee", " CyberSIDE", " EE", " Estonia", " EE", " TRUE", " FALSE", " No", " http://cyberside.planet.ee/tor/", " ", " ", " ", " http://cyberside.net.ee/tor/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " torproject.is", " IS", " Iceland", " IS", " TRUE", " FALSE", " No", " http://torproject.is/", " ", " ", " ", " http://torproject.is/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " spline", " DE", " Germany", " DE", " TRUE", " FALSE", " No", " http://tor.spline.de/", " https://tor.spline.inf.fu-berlin.de/", " rsync://ftp.spline.de/tor", " ftp://ftp.spline.de/pub/tor", " http://tor.spline.de/dist/", " https://tor.spline.inf.fu-berlin.de/dist/", " rsync://ftp.spline.de/tor/dist", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " me0w.cc", " RO", " Romania", " RO", " TRUE", " FALSE", " No", " http://tor.me0w.cc/", " ", " ", " ", " http://tor.me0w.cc/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " borgmann.tv", " DE", " Germany", " DE", " TRUE", " FALSE", " No", " http://tor.borgmann.tv/", " ", " ", " ", " http://tor.borgmann.tv/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " AT", " Austria", " AT", " TRUE", " TRUE", " No", " http://tor.dont-know-me.at/", " ", " ", " ", " http://tor.dont-know-me.at/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"coralcdn.org", " CoralCDN", " INT", " International", " INT", " TRUE", " FALSE", " Yes", " http://www.torproject.org.nyud.net/", " ", " ", " ", " http://www.torproject.org.nyud.net/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " AT", " Austria", " AT", " TRUE", " FALSE", " No", " http://torproject.ph3x.at/", " ", " ", " ", " http://torproject.ph3x.at/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"neutrino8 AT gmail DOT com", " teambelgium", " BE", " Belgium", " Europe", " TRUE", " FALSE", " No", " http://tor.teambelgium.net:8080/", " ", " ", " ftp://tor.teambelgium.net:2121/torproject/", " http://tor.teambelgium.net:8080/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+" mail AT benjamin-meier DOT info", " beme it", " DE", " Germany", " DE", " TRUE", " FALSE", " No", " http://tor.beme-it.de/", " https://tor.beme-it.de/", " rsync://tor.beme-it.de/tor", " ", " http://tor.beme-it.de/dist/", " https://tor.beme-it.de/dist/", " rsync://tor.beme-it.de/tor/dist", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " MX", " Mexico", " MX", " TRUE", " FALSE", " No", " http://fbnaia.homelinux.net/torproject/", " https://fbnaia.homelinux.net/torproject/", " ", " ", " http://fbnaia.homelinux.net/torproject/dist/", " https://fbnaia.homelinux.net/torproject/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"webmaster AT askapache DOT com", " AskApache", " US", " California", " US", " TRUE", " FALSE", " No", " http://tor.askapache.com/", " ", " ", " ", " http://tor.askapache.com/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " FR", " France", " FR", " TRUE", " FALSE", " No", " http://tor.mirror.chekanov.net/", " ", " ", " ", " http://tor.mirror.chekanov.net/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"http://sebastian.pfeifer.or.at/", " TechAsk.IT", " AT", " Favoriten", " Wien", " TRUE", " TRUE", " No", " http://www.unicorncloud.org/public/torproject.org/", " https://www.unicorncloud.org/public/torproject.org/", " ", " ", " http://www.unicorncloud.org/public/torproject.org/dist", " https://www.unicorncloud.org/public/torproject.org/dist", " ", " ", " Thu Aug 28 20:15:25 2014"
+"root AT amorphis DOT eu", " Amorphis", " NL", " The Netherlands", " Europe", " TRUE", " FALSE", " No", " http://tor.amorphis.eu/", " ", " ", " ", " http://tor.amorphis.eu/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"hackthissite.org", " HackThisSite.org", " US", " United States", " US", " TRUE", " TRUE", " No", " http://tor.hackthissite.org/", " https://tor.hackthissite.org/", " ", " ", " http://mirror.hackthissite.org/tor", " https://mirror.hackthissite.org/tor", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " DE", " Germany", " DE", " TRUE", " FALSE", " No", " http://tor.linuxlounge.net/", " https://tor.linuxlounge.net/", " ", " ", " http://tor.linuxlounge.net/dist/", " https://tor.linuxlounge.net/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"paul at coffswifi.net", " CoffsWiFi", " AU", " Australia and New Zealand", " APNIC", " TRUE", " FALSE", " No", " http://torproject.coffswifi.net", " ", " ", " ", " http://torproject.coffswifi.net/dist", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " cyberarmy", " AT", " Austria", " AT", " TRUE", " FALSE", " No", " http://tor.cyberarmy.at/", " ", " ", " ", " ", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " DE", " Germany", " DE", " TRUE", " FALSE", " No", " http://torproject.cryptowars.info/", " https://torproject.cryptowars.info/", " rsync://torproject.cryptowars.info/", " ", " http://torproject.cryptowars.info/dist/", " https://torproject.cryptowars.info/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"hostmaster AT zombiewerks DOT com", " TheOnionRouter", " IS", " Iceland", " Iceland", " TRUE", " FALSE", " No", " http://theonionrouter.com/", " ", " ", " ", " http://theonionrouter.com/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " crazyhaze.de", " DE", " Germany", " DE", " TRUE", " FALSE", " No", " http://tor.crazyhaze.de/", " https://tor.crazyhaze.de/", " ", " ", " http://tor.crazyhaze.de/dist/", " https://tor.crazyhaze.de/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " chaos darmstadt", " DE", " Germany", " Europe", " TRUE", " FALSE", " No", " http://mirrors.chaos-darmstadt.de/tor-mirror/", " ", " ", " ", " http://mirrors.chaos-darmstadt.de/tor-mirror/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Soviet Anonymous", " RU", " Russia", " RU", " TRUE", " FALSE", " No", " http://creep.im/tor", " https://creep.im/tor", " rsync://creep.im/tor", " ftp://creep.im/mirrors/tor", " http://creep.im/tor/dist/", " https://creep.im/tor/dist/", " rsync://creep.im/tor-dist", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " torservers", " DE", " Germany", " DE", " TRUE", " FALSE", " No", " http://www.torservers.net/mirrors/torproject.org/", " https://www.torservers.net/mirrors/torproject.org/", " ", " ", " http://www.torservers.net/mirrors/torproject.org/dist/", " https://www.torservers.net/mirrors/torproject.org/dist/", " ", " http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " torland", " GB", " United Kingdom", " GB", " TRUE", " FALSE", " No", " http://mirror.torland.me/torproject.org/", " https://mirror.torland.me/torproject.org/", " ", " ", " http://mirror.torland.me/torproject.org/dist/", " https://mirror.torland.me/torproject.org/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Lightning-bolt.net", " CZ", " Czech Republic", " CZ", " TRUE", " FALSE", " No", " http://torproject.lightning-bolt.net/", " ", " ", " ", " http://torproject.lightning-bolt.net/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"IceBear", " myRL.net", " IS", " Iceland", " IS", " TRUE", " FALSE", " No", " http://tor.myrl.net/", " https://tor.myrl.net/", " ", " ", " http://tor.myrl.net/dist/", " https://tor.myrl.net/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"kiro AT userzap DOT de", " Userzap", " DE", " Germany", " DE", " TRUE", " FALSE", " No", " http://torprojekt.userzap.de", " https://torprojekt.userzap.de", " ", " ", " http://torprojekt.userzap.de/dist/", " https://torprojekt.userzap.de/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"tor(a)eprci.net", " EPRCI", " US", " United States", " US", " TRUE", " FALSE", " NO", " http://tor.eprci.net/", " https://www.eprci.com/tor/", " ", " ", " http://tor.eprci.net/dist/", " https://www.eprci.com/tor/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"tor(a)les.net", " tor(a)les.net", " CA", " Canada", " CA", " TRUE", " FALSE", " NO", " http://tor.les.net/", " ", " ", " ", " http://tor.les.net/dist", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " PW", " DE", " Germany", " DE", " TRUE", " TRUE", " NO", " http://tor.pw.is/", " ", " ", " ", " http://tor.pw.is/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"tor(a)stalkr.net", " stalkr.net", " FR", " France", " FR", " TRUE", " TRUE", " NO", " http://tor.stalkr.net/", " https://tor.stalkr.net/", " ", " ", " http://tor.stalkr.net/dist/", " https://tor.stalkr.net/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"doemela[AT]cyberguerrilla[DOT]org", " cYbergueRrilLa AnonyMous NeXus", " DE", " Germany", " DE", " TRUE", " FALSE", " NO", " https://tor-mirror.cyberguerrilla.org", " ", " ", " ", " https://tor-mirror.cyberguerrilla.org/dist/", " ", " ", " http://6dvj6v5imhny3anf.onion", " Thu Aug 28 20:15:25 2014"
+"contact(a)gtor.org", " Gtor", " DE", " Germany", " DE", " TRUE", " TRUE", " NO", " http://torproject.gtor.org/", " https://torproject.gtor.org/", " rsync://torproject.gtor.org/website-mirror/", " ", " http://torproject.gtor.org/dist/", " https://torproject.gtor.org/dist/", " rsync://torproject.gtor.org/website-mirror/dist/", " ", " Thu Aug 28 20:15:25 2014"
+"SDL", " SDL", " US", " United States", " US", " TRUE", " TRUE", " NO", " http://torproject.nexiom.net", " https://torproject.nexiom.net", " ", " ", " http://torproject.nexiom.net", " https://torproject.nexiom.net/dist", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " DE", " Germany", " DE", " TRUE", " TRUE", " NO", " http://mirror.velcommuta.de/tor/", " https://mirror.velcommuta.de/tor/", " ", " ", " http://mirror.velcommuta.de/tor/dist/", " https://mirror.velcommuta.de/tor/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"EFF", " EFF", " US", " United States", " US", " TRUE", " FALSE", " NO", " https://tor.eff.org", " https://tor.eff.org", " ", " ", " https://tor.eff.org/dist/", " https://tor.eff.org/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " GR", " Greece", " GR", " TRUE", " TRUE", " NO", " https://tor.void.gr", " https://tor.void.gr", " ", " ", " https://tor.void.gr/dist/", " https://tor.void.gr/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Ich Eben", " Tor Supporter", " DE", " Germany", " DE", " TRUE", " TRUE", " No", " http://reichster.de/mirrors/torproject.org/", " https://reichster.de/mirrors/torproject.org", " ", " ", " http://reichster.de/mirrors/torproject.org/dist/", " https://reichster.de/mirrors/torproject.org/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"jlgaddis AT gnu DOT org", " Evil Routers", " US", " United States", " US", " TRUE", " FALSE", " No", " http://tor1.evilrouters.net/", " ", " ", " ", " http://tor1.evilrouters.net/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"tor AT miglix DOT eu", " Tor Supporter", " DE", " Germany", " Europe", " TRUE", " TRUE", " NO", " http://tor.miglix.eu", " https://tor.miglix.eu", " ", " ", " http://tor.miglix.eu/dist/", " https://tor.miglix.eu/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"tor TA ninurta TOD name", " TorNinurtaName", " AT", " Austria", " AT", " TRUE", " TRUE", " no", " http://tor.ninurta.name/", " ", " ", " ", " http://tor.ninurta.name/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"fr33tux <AT> general-changelog-team.fr", " Tor Supporter", " FR", " France", " FR", " TRUE", " TRUE", " No", " http://tor.fr33tux.org", " https://tor.fr33tux.org", " ", " ", " http://tor.fr33tux.org/dist/", " https://tor.fr33tux.org/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"sebastian(at)bobrecki(dot)pl", " Sebastian M. Bobrecki", " PL", " Poland", " Europe", " TRUE", " FALSE", " No", " http://tor.iv.net.pl", " https://tor.iv.net.pl", " ", " ", " http://tor.iv.net.pl/dist/", " https://tor.iv.net.pl/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"tor-mirror AT rdns DOT cc", " d0wn.biz", " FR", " France", " Europe", " TRUE", " FALSE", " No", " http://tor.static.lu", " https://tor.static.lu", " ", " ", " http://tor.static.lu/dist/", " https://tor.static.lu/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"tor(a)moparisthebest.com", " moparisthebest.com", " DE", " Germany", " Europe", " TRUE", " TRUE", " No", " http://www.moparisthebest.com/tor/", " https://www.moparisthebest.com/tor/", " ", " ", " http://www.moparisthebest.com/tor/dist/", " https://www.moparisthebest.com/tor/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Sebastian", " Maxanoo", " NL", " The Netherlands", " Amsterdam", " TRUE", " FALSE", " NO", " http://tor.maxanoo.com/", " ", " ", " ", " http://tor.maxanoo.com/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"rorrim AT ayo DOT tl", " Tor Supporter", " IS", " Iceland", " Europe", " TRUE", " TRUE", " No", " http://ayo.tl/tor/", " https://ayo.tl/tor/", " ", " ", " http://ayo.tl/tor/dist/", " https://ayo.tl/tor/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"stefano.fenoglio AT gmail DOT com", " Tor Supporter", " IT", " Italy", " Europe", " TRUE", " FALSE", " No", " http://tor.stefanof.com", " ", " ", " ", " ", " ", " http://tor.stefanof.com/dist", " ", " Thu Aug 28 20:15:25 2014"
+"Jacob Henner", " Anatomical Networks", " US", " United States", " US", " TRUE", " TRUE", " TRUE", " http://tor.ventricle.us/", " ", " ", " ", " http://tor.ventricle.us/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"webmaster[at]hackabit.nl", " Hackabit.nl", " NL", " The Netherlands", " Europe", " TRUE", " FALSE", " No", " http://hackabit.nl/tor/", " https://hackabit.nl/tor/", " ", " ", " http://hackabit.nl/tor/dist/", " https://hackabit.nl/tor/dist/", " ", " ", " Thu Aug 28 20:15:25 2014"
+"noc AT bbln DOT org", " BBLN", " NL", " The Netherlands", " Europe", " TRUE", " TRUE", " No", " http://mirror2.bbln.org/torproject/", " https://mirror2.bbln.org/torproject/", " rsync://mirror2.bbln.org/torproject/", " ftp://mirror2.bbln.org/torproject/", " http://mirror2.bbln.org/torproject/dist/", " https://mirror2.bbln.org/torproject/dist/", " rsync://mirror2.bbln.org/torproject/dist/", " ", " Thu Aug 28 20:15:25 2014"
+"noc AT bbln DOT org", " BBLN", " FR", " France", " Europe", " TRUE", " TRUE", " No", " http://mirror.bbln.org/torproject/", " https://mirror.bbln.org/torproject/", " rsync://mirror.bbln.org/torproject/", " ftp://mirror.bbln.org/torproject/", " http://mirror.bbln.org/torproject/dist/", " https://mirror.bbln.org/torproject/dist/", " rsync://mirror.bbln.org/torproject/dist/", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Ramos Research", " US", " United States", " US", " TRUE", " TRUE", " No", " http://tor.ramosresearch.com/", " ", " ", " ", " http://tor.ramosresearch.com/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"Tor Fan", " Tor Supporter", " DE", " Germany", " Europe", " TRUE", " FALSE", " No", " http://tor.euve33747.vserver.de/", " ", " ", " ", " http://tor.euve33747.vserver.de/dist", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"s7r[at]sky-ip[d0t]org", " sky-ip.org", " NL", " Netherlands", " NL", " TRUE", " FALSE", " No", " http://beautiful-mind.sky-ip.org/", " ", " ", " ", " http://beautiful-mind.sky-ip.org/dist/", " ", " ", " ", " Thu Aug 28 20:15:25 2014"
+"tor#pajonzeck#de", "ITsn", "DE", "Germany", "Europe", "TRUE", "FALSE", "No", "http://tor.pajonzeck.de/", "https://tor.pajonzeck.de/", "rsync://tor.pajonzeck.de/tor", "http://tor.pajonzeck.de/dist/", "https://tor.pajonzeck.de/dist/", "rsync://tor.pajonzeck.de/tor/dist", "http://zgfgvob256pffy62.onion", ,
1
0

r26937: {website} purge mirrors at least 60 days out of date. (website/trunk/include)
by Andrew Lewman 02 Sep '14
by Andrew Lewman 02 Sep '14
02 Sep '14
Author: phobos
Date: 2014-09-02 03:32:00 +0000 (Tue, 02 Sep 2014)
New Revision: 26937
Modified:
website/trunk/include/tor-mirrors.csv
Log:
purge mirrors at least 60 days out of date.
Modified: website/trunk/include/tor-mirrors.csv
===================================================================
--- website/trunk/include/tor-mirrors.csv 2014-09-01 18:24:36 UTC (rev 26936)
+++ website/trunk/include/tor-mirrors.csv 2014-09-02 03:32:00 UTC (rev 26937)
@@ -1,110 +1,90 @@
-adminContact, orgName, isoCC, subRegion, region, ipv4, ipv6, loadBalanced, httpWebsiteMirror, httpsWebsiteMirror, rsyncWebsiteMirror, ftpWebsiteMirror, httpDistMirror, httpsDistMirror, rsyncDistMirror, hiddenServiceMirror, updateDate
-Tor Fan, Tor Supporter, US, United States, US, TRUE, TRUE, No, http://tor.loritsu.com/, , , , http://tor.loritsu.com/dist/, , , ,
-info AT zentrum-der-gesundheit DOT de, Zentrum der Gesundheit, DK, Denmark, Europe, TRUE, FALSE, No, http://tor.idnr.ws/, , , , http://tor.idnr.ws/dist/, , , , Sun Aug 24 16:19:07 2014
-http://www.multinet.no, MultiNet AS, NO, Trondheim, Trondheim, TRUE, TRUE, No, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Thu Aug 28 20:15:25 2014
-haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, FALSE, No, http://tor.zilog.es/, , , , http://tor.zilog.es/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, US, United States, US, TRUE, FALSE, No, http://199.175.55.215/, , , , http://199.175.55.215/dist/, , , , Thu Aug 28 20:15:25 2014
-margus.random at mail.ee, CyberSIDE, EE, Estonia, EE, TRUE, FALSE, No, http://cyberside.planet.ee/tor/, , , , http://cyberside.net.ee/tor/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, torproject.is, IS, Iceland, IS, TRUE, FALSE, No, http://torproject.is/, , , , http://torproject.is/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, spline, DE, Germany, DE, TRUE, FALSE, No, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor, http://tor.spline.de/dist/, https://tor.spline.inf.fu-berlin.de/dist/, rsync://ftp.spline.de/tor/dist, , Thu Aug 28 20:15:25 2014
-Tor Fan, me0w.cc, RO, Romania, RO, TRUE, FALSE, No, http://tor.me0w.cc/, , , , http://tor.me0w.cc/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, borgmann.tv, DE, Germany, DE, TRUE, FALSE, No, http://tor.borgmann.tv/, , , , http://tor.borgmann.tv/dist/, , , , Thu Aug 28 20:15:25 2014
-security AT hostoffice DOT hu, Unknown, HU, Hungary, Europe, TRUE, FALSE, No, http://mirror.tor.hu/, , , , http://mirror.tor.hu/dist/, , , , Wed Apr 16 16:29:40 2014
-Tor Fan, Tor Supporter, TN, Tunisia, TN, TRUE, FALSE, No, http://torproject.antagonism.org/, https://torproject.antagonism.org/, , , , , , , Sun Mar 2 06:08:00 2014
-webmaster AT ccc DOT de, CCC, NL, The Netherlands, Europe, TRUE, FALSE, No, http://tor.ccc.de/, , , , http://tor.ccc.de/dist/, , , , Sun Jul 20 23:16:25 2014
-Tor Fan, searchprivate, US, TX, US, TRUE, FALSE, No, http://tor.searchprivate.com/, , , , http://tor.searchprivate.com/dist/, , , , Sun Jul 29 23:49:26 2012
-Tor Fan, Tor Supporter, AT, Austria, AT, TRUE, TRUE, No, http://tor.dont-know-me.at/, , , , http://tor.dont-know-me.at/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, LU, Luxemborg, LU, TRUE, FALSE, No, http://torproject.adamas.ai/, , , , http://torproject.adamas.ai/dist/, , , ,
-mirror ntzk de, Netzkonstrukt Berlin, DE, Germany, Europe, TRUE, FALSE, No, http://mirror.ntzk.de/torproject.org/, , , , http://mirror.ntzk.de/torproject.org/dist/, , , , Sun Aug 24 16:19:07 2014
-coralcdn.org, CoralCDN, INT, International, INT, TRUE, FALSE, Yes, http://www.torproject.org.nyud.net/, , , , http://www.torproject.org.nyud.net/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, AT, Austria, AT, TRUE, FALSE, No, http://torproject.ph3x.at/, , , , http://torproject.ph3x.at/dist/, , , , Thu Aug 28 20:15:25 2014
-info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, No, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion, Sun Aug 24 16:19:07 2014
-neutrino8 AT gmail DOT com, teambelgium, BE, Belgium, Europe, TRUE, FALSE, No, http://tor.teambelgium.net:8080/, , , ftp://tor.teambelgium.net:2121/torproject/, http://tor.teambelgium.net:8080/dist/, , , , Thu Aug 28 20:15:25 2014
-tormaster AT xpdm DOT us, Xpdm, US, United States, North America, TRUE, FALSE, No, http://torproj.xpdm.us/, https://torproj.xpdm.us/, , , http://torproj.xpdm.us/dist/, https://torproj.xpdm.us/dist/, , http://h3prhz46uktgm4tt.onion/, Tue Feb 11 08:42:17 2014
-Tor Fan, Tor Supporter, UA, Ukraine, UA, TRUE, FALSE, No, http://torua.reactor-xg.kiev.ua/, , , , http://torua.reactor-xg.kiev.ua/dist/, , , ,
- mail AT benjamin-meier DOT info, beme it, DE, Germany, DE, TRUE, FALSE, No, http://tor.beme-it.de/, https://tor.beme-it.de/, rsync://tor.beme-it.de/tor, , http://tor.beme-it.de/dist/, https://tor.beme-it.de/dist/, rsync://tor.beme-it.de/tor/dist, , Thu Aug 28 20:15:25 2014
-wollomatic at posteo.eu, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, No, http://tormirror.almnet.de/, https://tormirror.almnet.de/, , , http://tormirror.almnet.de/dist/, https://tormirror.almnet.de/dist/, , , Sun Aug 3 22:21:33 2014
-Tor Fan, Tor Supporter, MX, Mexico, MX, TRUE, FALSE, No, http://fbnaia.homelinux.net/torproject/, https://fbnaia.homelinux.net/torproject/, , , http://fbnaia.homelinux.net/torproject/dist/, https://fbnaia.homelinux.net/torproject/dist/, , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, FR, France, FR, TRUE, FALSE, No, http://37.187.0.127/tormirror/, , , , http://37.187.0.127/tormirror/dist/, , , ,
-Tor Fan, Tor Supporter, US, United States, US, TRUE, FALSE, No, http://tor.minibofh.org/, , , , http://tor.minibofh.org/dist/, , , ,
-Tor Fan, Tor Supporter, UK, United Kingdom, UK, TRUE, FALSE, No, http://tor.mage.me.uk/, , , , http://tor.mage.me.uk/dist/, , , ,
-webmaster AT askapache DOT com, AskApache, US, California, US, TRUE, FALSE, No, http://tor.askapache.com/, , , , http://tor.askapache.com/dist/, , , , Thu Aug 28 20:15:25 2014
-nsane2307 eml cc, tor-mirror.de, DE, Germany, Europe, TRUE, FALSE, No, http://tor-mirror.de/, https://tor-mirror.de/, , , http://tor-mirror.de/dist/, https://tor-mirror.de/dist/, , ,
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, FALSE, No, http://tor.dev-random.de/, https://tor.dev-random.de/, , , http://tor.dev-random.de/dist/, https://tor.dev-random.de/dist/, , , Sun Mar 2 06:08:00 2014
-Tor Fan, India Tor Fans, IN, India, IN, TRUE, FALSE, No, http://www.torproject.org.in/, , , , http://www.torproject.org.in/dist/, , , , Sun Aug 3 22:21:33 2014
-mirror-admin(a)linsrv.net, linsrv, FR, France, Europe, TRUE, FALSE, No, http://mirrors.linsrv.net/torproject/, , mirrors.linsrv.net::pub/torproject, ftp://ftp.linsrv.net/pub/torproject/, http://mirrors.linsrv.net/torproject/dist/, , mirrors.linsrv.net::pub/torproject/dist, , Sat Apr 26 16:04:13 2014
-Tor Fan, Tor Supporter, FR, France, FR, TRUE, FALSE, No, http://tor.mirror.chekanov.net/, , , , http://tor.mirror.chekanov.net/dist/, , , , Thu Aug 28 20:15:25 2014
-http://sebastian.pfeifer.or.at/, TechAsk.IT, AT, Favoriten, Wien, TRUE, TRUE, No, http://www.unicorncloud.org/public/torproject.org/, https://www.unicorncloud.org/public/torproject.org/, , , http://www.unicorncloud.org/public/torproject.org/dist, https://www.unicorncloud.org/public/torproject.org/dist, , , Thu Aug 28 20:15:25 2014
-root AT amorphis DOT eu, Amorphis, NL, The Netherlands, Europe, TRUE, FALSE, No, http://tor.amorphis.eu/, , , , http://tor.amorphis.eu/dist/, , , , Thu Aug 28 20:15:25 2014
-hackthissite.org, HackThisSite.org, US, United States, US, TRUE, TRUE, No, http://tor.hackthissite.org/, https://tor.hackthissite.org/, , , http://mirror.hackthissite.org/tor, https://mirror.hackthissite.org/tor, , , Thu Aug 28 20:15:25 2014
-citizen428 AT gmail DOT com, [[:bbs:]], DE, Germany, Europe, TRUE, FALSE, No, http://tor.blingblingsquad.net/, https://tor.blingblingsquad.net/, , , http://tor.blingblingsquad.net/dist/, https://tor.blingblingsquad.net/dist/, , ,
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, FALSE, No, http://tor.linuxlounge.net/, https://tor.linuxlounge.net/, , , http://tor.linuxlounge.net/dist/, https://tor.linuxlounge.net/dist/, , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, US, United States, US, TRUE, FALSE, No, , , , , http://www.netgull.com/torproject/, , , ,
-paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, APNIC, TRUE, FALSE, No, http://torproject.coffswifi.net, , , , http://torproject.coffswifi.net/dist, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, cyberarmy, AT, Austria, AT, TRUE, FALSE, No, http://tor.cyberarmy.at/, , , , , , , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, FALSE, No, http://torproject.cryptowars.info/, https://torproject.cryptowars.info/, rsync://torproject.cryptowars.info/, , http://torproject.cryptowars.info/dist/, https://torproject.cryptowars.info/dist/, , , Thu Aug 28 20:15:25 2014
-hostmaster AT zombiewerks DOT com, TheOnionRouter, IS, Iceland, Iceland, TRUE, FALSE, No, http://theonionrouter.com/, , , , http://theonionrouter.com/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, crazyhaze.de, DE, Germany, DE, TRUE, FALSE, No, http://tor.crazyhaze.de/, https://tor.crazyhaze.de/, , , http://tor.crazyhaze.de/dist/, https://tor.crazyhaze.de/dist/, , , Thu Aug 28 20:15:25 2014
-Tor Fan, chaos darmstadt, DE, Germany, Europe, TRUE, FALSE, No, http://mirrors.chaos-darmstadt.de/tor-mirror/, , , , http://mirrors.chaos-darmstadt.de/tor-mirror/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, Soviet Anonymous, RU, Russia, RU, TRUE, FALSE, No, http://creep.im/tor, https://creep.im/tor, rsync://creep.im/tor, ftp://creep.im/mirrors/tor, http://creep.im/tor/dist/, https://creep.im/tor/dist/, rsync://creep.im/tor-dist, , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, US, United States, US, TRUE, FALSE, No, , , , ftp://mirrors.go-parts.com/tor/, http://mirrors.go-parts.com/tor/dist/, , rsync://mirrors.go-parts.com/mirrors/tor/, , Wed Jan 8 16:41:17 2014
-Tor Fan, NW Linux, US, WA, US, TRUE, FALSE, No, http://torproject.nwlinux.us/, , rsync://nwlinux.us/tor-web, , http://torproject.nwlinux.us/dist/, , rsync://nwlinux.us/tor-dist, ,
-Tor Fan, torservers, DE, Germany, DE, TRUE, FALSE, No, http://www.torservers.net/mirrors/torproject.org/, https://www.torservers.net/mirrors/torproject.org/, , , http://www.torservers.net/mirrors/torproject.org/dist/, https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, NL, The Netherlands, NL, TRUE, FALSE, No, , , , , , https://www.coevoet.nl/tor/dist/, , ,
-Tor Fan, torland, GB, United Kingdom, GB, TRUE, FALSE, No, http://mirror.torland.me/torproject.org/, https://mirror.torland.me/torproject.org/, , , http://mirror.torland.me/torproject.org/dist/, https://mirror.torland.me/torproject.org/dist/, , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, FR, France, FR, TRUE, FALSE, No, http://torproject.c3l.lu/, , , , http://torproject.c3l.lu/dist/, , , , Wed Dec 25 05:35:51 2013
-Tor Fan, Lightning-bolt.net, CZ, Czech Republic, CZ, TRUE, FALSE, No, http://torproject.lightning-bolt.net/, , , , http://torproject.lightning-bolt.net/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, LazyTiger, FR, France, FR, TRUE, FALSE, No, http://tor.taiga-san.net/, , , , http://tor.taiga-san.net/dist/, , , ,
-Tor Fan, Tor Supporter, EE, Estonia, EE, TRUE, FALSE, No, http://tor.li/, https://tor.li/, , , http://tor.li/dist/, https://tor.li/dist/, , ,
-Tor Fan, homosu, SE, Sweden, SE, TRUE, FALSE, No, http://tor.homosu.net/, , , , http://tor.homosu.net/dist/, , , , Sun Aug 3 22:21:33 2014
-IceBear, myRL.net, IS, Iceland, IS, TRUE, FALSE, No, http://tor.myrl.net/, https://tor.myrl.net/, , , http://tor.myrl.net/dist/, https://tor.myrl.net/dist/, , , Thu Aug 28 20:15:25 2014
-Tor Fan, DevRandom, NL, The Netherlands, NL, TRUE, FALSE, No, http://devrandom.co/tor-mirror, https://devrandom.co/tor-mirror, , , http://devrandom.co/tor-mirror/dist, https://devrandom.co/tor-mirror/dist, , , Sun Feb 2 05:50:15 2014
-kiro AT userzap DOT de, Userzap, DE, Germany, DE, TRUE, FALSE, No, http://torprojekt.userzap.de, https://torprojekt.userzap.de, , , http://torprojekt.userzap.de/dist/, https://torprojekt.userzap.de/dist/, , , Thu Aug 28 20:15:25 2014
-tor(a)eprci.net, EPRCI, US, United States, US, TRUE, FALSE, NO, http://tor.eprci.net/, https://www.eprci.com/tor/, , , http://tor.eprci.net/dist/, https://www.eprci.com/tor/dist/, , , Thu Aug 28 20:15:25 2014
-tor(a)les.net, tor(a)les.net, CA, Canada, CA, TRUE, FALSE, NO, http://tor.les.net/, , , , http://tor.les.net/dist, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, PW, DE, Germany, DE, TRUE, TRUE, NO, http://tor.pw.is/, , , , http://tor.pw.is/dist/, , , , Thu Aug 28 20:15:25 2014
-tor(a)stalkr.net, stalkr.net, FR, France, FR, TRUE, TRUE, NO, http://tor.stalkr.net/, https://tor.stalkr.net/, , , http://tor.stalkr.net/dist/, https://tor.stalkr.net/dist/, , , Thu Aug 28 20:15:25 2014
-maki(a)maki-chan.de, Maki Hoshisawa, DE, Germany, DE, TRUE, FALSE, NO, http://tor.mirrors.maki-chan.de/, , , , http://tor.mirrors.maki-chan.de/dist/, , , , Fri Aug 22 14:09:07 2014
-doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, DE, TRUE, FALSE, NO, https://tor-mirror.cyberguerrilla.org, , , , https://tor-mirror.cyberguerrilla.org/dist/, , , http://6dvj6v5imhny3anf.onion, Thu Aug 28 20:15:25 2014
-contact(a)gtor.org, Gtor, DE, Germany, DE, TRUE, TRUE, NO, http://torproject.gtor.org/, https://torproject.gtor.org/, rsync://torproject.gtor.org/website-mirror/, , http://torproject.gtor.org/dist/, https://torproject.gtor.org/dist/, rsync://torproject.gtor.org/website-mirror/dist/, , Thu Aug 28 20:15:25 2014
-mirrors(a)dev-null.io, dev-null.io, NL, The Netherlands, NL, TRUE, FALSE, NO, http://tor.dev-null.io/, https://tor.dev-null.io/, , , http://tor.dev-null.io/dist/, https://tor.dev-null.io/dist/, , , Thu Jan 30 02:50:25 2014
-Tor Fan, Quintex Alliance Consulting, US, United States, US, TRUE, FALSE, NO, http://tor.mirror.quintex.com, , rsync://tor.mirror.quintex.com::tor, ftp://mirror.quintex.com/tor/, http://tor.mirror.quintex.com/dist, , rsync://mirror.quintex.com::tordist, , Sat Feb 1 14:21:23 2014
-SDL, SDL, US, United States, US, TRUE, TRUE, NO, http://torproject.nexiom.net, https://torproject.nexiom.net, , , http://torproject.nexiom.net, https://torproject.nexiom.net/dist, , , Thu Aug 28 20:15:25 2014
-MacLemon, MacLemon, AT, Austria, AT, TRUE, FALSE, NO, http://tor-anonymizer.maclemon.at/, https://tor-anonymizer.maclemon.at/, , , http://tor-anonymizer.maclemon.at/dist/, https://tor-anonymizer.maclemon.at/dist/, , , Tue Jun 10 16:15:38 2014
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, FALSE, NO, http://tor.externenprüfung-nichtschüler.de/, , , , http://tor.externenprüfung-nichtschüler.de/dist/, , , ,
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, TRUE, NO, http://mirror.velcommuta.de/tor/, https://mirror.velcommuta.de/tor/, , , http://mirror.velcommuta.de/tor/dist/, https://mirror.velcommuta.de/tor/dist/, , , Thu Aug 28 20:15:25 2014
-Piratenpartei Bayern, Piratenpartei Bayern, DE, Germany, DE, TRUE, FALSE, NO, http://tormirror.piratenpartei-bayern.de, https://tormirror.piratenpartei-bayern.de, , , http://tormirror.piratenpartei-bayern.de/dist/, http://tormirror.piratenpartei-bayern.de/dist/, , , Sun Aug 24 16:19:07 2014
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, TRUE, NO, http://tor.hoi-polloi.org, http://tor.hossi-polloiorg, , , http://tor.hoi-polloi.org/dist/, http://tor.hosi-polloi.or/dist/g, , , Sun Aug 24 16:19:07 2014
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, FALSE, NO, http://tor-mirror.snurn.de, , , , http://tor-mirror.snurn.de/dist/, , , , Thu Mar 27 13:13:23 2014
-EFF, EFF, US, United States, US, TRUE, FALSE, NO, https://tor.eff.org, https://tor.eff.org, , , https://tor.eff.org/dist/, https://tor.eff.org/dist/, , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, GR, Greece, GR, TRUE, TRUE, NO, https://tor.void.gr, https://tor.void.gr, , , https://tor.void.gr/dist/, https://tor.void.gr/dist/, , , Thu Aug 28 20:15:25 2014
-Ich Eben, Tor Supporter, DE, Germany, DE, TRUE, TRUE, No, http://reichster.de/mirrors/torproject.org/, https://reichster.de/mirrors/torproject.org, , , http://reichster.de/mirrors/torproject.org/dist/, https://reichster.de/mirrors/torproject.org/dist/, , , Thu Aug 28 20:15:25 2014
-jlgaddis AT gnu DOT org, Evil Routers, US, United States, US, TRUE, FALSE, No, http://tor1.evilrouters.net/, , , , http://tor1.evilrouters.net/dist/, , , , Thu Aug 28 20:15:25 2014
-tor AT miglix DOT eu, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, NO, http://tor.miglix.eu, https://tor.miglix.eu, , , http://tor.miglix.eu/dist/, https://tor.miglix.eu/dist/, , , Thu Aug 28 20:15:25 2014
-tor TA ninurta TOD name, TorNinurtaName, AT, Austria, AT, TRUE, TRUE, no, http://tor.ninurta.name/, , , , http://tor.ninurta.name/dist/, , , , Thu Aug 28 20:15:25 2014
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, FALSE, no, http://tor.wasifmalik.com/, , , , http://tor.wasifmalik.com/dist/, , , , Sat Apr 26 16:04:13 2014
-fr33tux <AT> general-changelog-team.fr, Tor Supporter, FR, France, FR, TRUE, TRUE, No, http://tor.fr33tux.org, https://tor.fr33tux.org, , , http://tor.fr33tux.org/dist/, https://tor.fr33tux.org/dist/, , , Thu Aug 28 20:15:25 2014
-mirror-service(a)netcologne.de, NetCologne GmbH, DE, NRW, TRUE, TRUE, No, http://mirror.netcologne.de/torproject.org, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, http://mirror.netcologne.de/torproject.org/dist, , rsync://mirror.netcologne.de/torproject.org/dist, , ,
-sebastian(at)bobrecki(dot)pl, Sebastian M. Bobrecki, PL, Poland, Europe, TRUE, FALSE, No, http://tor.iv.net.pl, https://tor.iv.net.pl, , , http://tor.iv.net.pl/dist/, https://tor.iv.net.pl/dist/, , , Thu Aug 28 20:15:25 2014
-admin AT netgull DOT com, NetGull, US, United States, North America, TRUE, TRUE, No, , , , , http://www.netgull.com/torproject/, , , ,
-nick at calyx dot com, The Calyx Institute, US, United States, North America, TRUE, FALSE, No, http://tor.calyxinstitute.org, https://tor.calyxinstitute.org, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion, Thu Jun 5 20:11:09 2014
-tor-mirror AT rdns DOT cc, d0wn.biz, FR, France, Europe, TRUE, FALSE, No, http://tor.static.lu, https://tor.static.lu, , , http://tor.static.lu/dist/, https://tor.static.lu/dist/, , , Thu Aug 28 20:15:25 2014
-kevinmg(a)pressfreedomfoundation.org, Freedom of the Press Foundation, US, United States, US, True, False, No, http://tor.pressfreedomfoundation.org, https://tor.pressfreedomfoundation.org, , , http://tor.pressfreedomfoundation.org/dist/, https://tor.pressfreedomfoundation.org/dist/, , , Sun Aug 24 16:19:07 2014
-tor(a)moparisthebest.com, moparisthebest.com, DE, Germany, Europe, TRUE, TRUE, No, http://www.moparisthebest.com/tor/, https://www.moparisthebest.com/tor/, , , http://www.moparisthebest.com/tor/dist/, https://www.moparisthebest.com/tor/dist/, , , Thu Aug 28 20:15:25 2014
-tor(a)fodt.it // FoDT.it Webteam, FoDT.it, AT, Austria, Europe, TRUE, FALSE, No, http://tor.fodt.it, https://tor.fodt.it, , ftp://ftp.fodt.it/pub/mirrors/torproject.org/, http://tor.fodt.it/dist/, https://tor.fodt.it/dist/, , , Sun Aug 24 16:19:07 2014
-Sebastian, Maxanoo, NL, The Netherlands, Amsterdam, TRUE, FALSE, NO, http://tor.maxanoo.com/, , , , http://tor.maxanoo.com/dist/, , , , Thu Aug 28 20:15:25 2014
-rorrim AT ayo DOT tl, Tor Supporter, IS, Iceland, Europe, TRUE, TRUE, No, http://ayo.tl/tor/, https://ayo.tl/tor/, , , http://ayo.tl/tor/dist/, https://ayo.tl/tor/dist/, , , Thu Aug 28 20:15:25 2014
-admin AT nuclear DASH weapons DOT net, Setec Administrator, US, Texas, Austin, TRUE, FALSE, No, http://tor.nuclear-weapons.net, https://tor.nuclear-weapons.net, , , , http://tor.nuclear-weapons.net/dist, https://tor.nuclear-weapons.net/dist, , Wed Jun 25 23:55:19 2014
-stefano.fenoglio AT gmail DOT com, Tor Supporter, IT, Italy, Europe, TRUE, FALSE, No, http://tor.stefanof.com, , , , , , http://tor.stefanof.com/dist, , Thu Aug 28 20:15:25 2014
-mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, VN, TRUE, TRUE, Yes, http://torproject.ip-connect.vn.ua, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , ,
-Jacob Henner, Anatomical Networks, US, United States, US, TRUE, TRUE, TRUE, http://tor.ventricle.us/, , , , http://tor.ventricle.us/dist/, , , , Thu Aug 28 20:15:25 2014
-webmaster[at]hackabit.nl, Hackabit.nl, NL, The Netherlands, Europe, TRUE, FALSE, No, http://hackabit.nl/tor/, https://hackabit.nl/tor/, , , http://hackabit.nl/tor/dist/, https://hackabit.nl/tor/dist/, , , Thu Aug 28 20:15:25 2014
-noc AT bbln DOT org, BBLN, NL, The Netherlands, Europe, TRUE, TRUE, No, http://mirror2.bbln.org/torproject/, https://mirror2.bbln.org/torproject/, rsync://mirror2.bbln.org/torproject/, ftp://mirror2.bbln.org/torproject/, http://mirror2.bbln.org/torproject/dist/, https://mirror2.bbln.org/torproject/dist/, rsync://mirror2.bbln.org/torproject/dist/, , Thu Aug 28 20:15:25 2014
-noc AT bbln DOT org, BBLN, FR, France, Europe, TRUE, TRUE, No, http://mirror.bbln.org/torproject/, https://mirror.bbln.org/torproject/, rsync://mirror.bbln.org/torproject/, ftp://mirror.bbln.org/torproject/, http://mirror.bbln.org/torproject/dist/, https://mirror.bbln.org/torproject/dist/, rsync://mirror.bbln.org/torproject/dist/, , Thu Aug 28 20:15:25 2014
-torsupport AT tb-itf DOT de, TB-ITF, , DE, Germany, Europe, TRUE, TRUE, No, http://tormirror.tb-itf-tor.de, https://tormirror.tb-itf-tor.de, , , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/,
-Tor Fan, Ramos Research, US, United States, US, TRUE, TRUE, No, http://tor.ramosresearch.com/, , , , http://tor.ramosresearch.com/dist/, , , , Thu Aug 28 20:15:25 2014
-admin at koreswatanabe dottnet, Tor Supporter, RO, Romania, RO, TRUE, TRUE, No, http://tor-relay.koreswatanabe.net, , , , http://tor-relay.koreswatanabe.net/dist/, , , ,
-Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, FALSE, No, http://tor.euve33747.vserver.de/, , , , http://tor.euve33747.vserver.de/dist, , , , Thu Aug 28 20:15:25 2014
-calebcenter(a)live.com, calebxu.tk, US, United States, US, TRUE, FALSE, NO, http://tor.calebxu.tk, , rsync://calebxu.tk/tor, ftp://ftp.calebxu.tk, http://tor.calebxu.tk/dist, , , ,
-s7r[at]sky-ip[d0t]org, sky-ip.org, NL, Netherlands, NL, TRUE, FALSE, No, http://beautiful-mind.sky-ip.org/, , , , http://beautiful-mind.sky-ip.org/dist/, , , , Thu Aug 28 20:15:25 2014
-tor#pajonzeck#de,ITsn,DE,Germany,Europe,TRUE,FALSE,No,http://tor.pajonzeck.de/,https://tor.pajonzeck.de/,rsync://tor.pajonzeck.de/tor,,http://tor.pajonzeck.de/dist/,https://tor.pajonzeck.de/dist/,rsync://tor.pajonzeck.de/tor/dist,http://zgfgvob256pffy62.onion
+"adminContact"," orgName"," isoCC"," subRegion"," region"," ipv4"," ipv6"," loadBalanced"," httpWebsiteMirror"," httpsWebsiteMirror"," rsyncWebsiteMirror"," ftpWebsiteMirror"," httpDistMirror"," httpsDistMirror"," rsyncDistMirror"," hiddenServiceMirror"," updateDate"
+"Tor Fan"," Tor Supporter"," US"," United States"," US"," TRUE"," TRUE"," No"," http://tor.loritsu.com/"," "," "," "," http://tor.loritsu.com/dist/"," "," "," "," "
+"Tor Fan"," Tor Supporter"," LU"," Luxemborg"," LU"," TRUE"," FALSE"," No"," http://torproject.adamas.ai/"," "," "," "," http://torproject.adamas.ai/dist/"," "," "," "," "
+"Tor Fan"," Tor Supporter"," UA"," Ukraine"," UA"," TRUE"," FALSE"," No"," http://torua.reactor-xg.kiev.ua/"," "," "," "," http://torua.reactor-xg.kiev.ua/dist/"," "," "," "," "
+"Tor Fan"," Tor Supporter"," FR"," France"," FR"," TRUE"," FALSE"," No"," http://37.187.0.127/tormirror/"," "," "," "," http://37.187.0.127/tormirror/dist/"," "," "," "," "
+"Tor Fan"," Tor Supporter"," US"," United States"," US"," TRUE"," FALSE"," No"," http://tor.minibofh.org/"," "," "," "," http://tor.minibofh.org/dist/"," "," "," "," "
+"Tor Fan"," Tor Supporter"," UK"," United Kingdom"," UK"," TRUE"," FALSE"," No"," http://tor.mage.me.uk/"," "," "," "," http://tor.mage.me.uk/dist/"," "," "," "," "
+"nsane2307 eml cc"," tor-mirror.de"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://tor-mirror.de/"," https://tor-mirror.de/"," "," "," http://tor-mirror.de/dist/"," https://tor-mirror.de/dist/"," "," "," "
+"citizen428 AT gmail DOT com"," [[:bbs:]]"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://tor.blingblingsquad.net/"," https://tor.blingblingsquad.net/"," "," "," http://tor.blingblingsquad.net/dist/"," https://tor.blingblingsquad.net/dist/"," "," "," "
+"Tor Fan"," Tor Supporter"," US"," United States"," US"," TRUE"," FALSE"," No"," "," "," "," "," http://www.netgull.com/torproject/"," "," "," "," "
+"Tor Fan"," NW Linux"," US"," WA"," US"," TRUE"," FALSE"," No"," http://torproject.nwlinux.us/"," "," rsync://nwlinux.us/tor-web"," "," http://torproject.nwlinux.us/dist/"," "," rsync://nwlinux.us/tor-dist"," "," "
+"Tor Fan"," Tor Supporter"," NL"," The Netherlands"," NL"," TRUE"," FALSE"," No"," "," "," "," "," "," https://www.coevoet.nl/tor/dist/"," "," "," "
+"Tor Fan"," LazyTiger"," FR"," France"," FR"," TRUE"," FALSE"," No"," http://tor.taiga-san.net/"," "," "," "," http://tor.taiga-san.net/dist/"," "," "," "," "
+"Tor Fan"," Tor Supporter"," EE"," Estonia"," EE"," TRUE"," FALSE"," No"," http://tor.li/"," https://tor.li/"," "," "," http://tor.li/dist/"," https://tor.li/dist/"," "," "," "
+"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," FALSE"," NO"," http://tor.externenprüfung-nichtschüler.de/"," "," "," "," http://tor.externenprüfung-nichtschüler.de/dist/"," "," "," "," "
+"mirror-service(a)netcologne.de"," NetCologne GmbH"," DE"," NRW"," TRUE"," TRUE"," No"," http://mirror.netcologne.de/torproject.org"," "," rsync://mirror.netcologne.de/torproject.org"," ftp://mirror.netcologne.de/torproject.org/"," http://mirror.netcologne.de/torproject.org/dist"," "," rsync://mirror.netcologne.de/torproject.org/dist"," "," "," "
+"admin AT netgull DOT com"," NetGull"," US"," United States"," North America"," TRUE"," TRUE"," No"," "," "," "," "," http://www.netgull.com/torproject/"," "," "," "," "
+"mirrors[at]ip-connect[dot]vn[dot]ua"," IP-Connect LLC"," UA"," VN"," TRUE"," TRUE"," Yes"," http://torproject.ip-connect.vn.ua"," "," rsync://torproject.ip-connect.vn.ua/torproject"," ftp://torproject.ip-connect.vn.ua/mirror/torproject/"," http://torproject.ip-connect.vn.ua/dist"," "," rsync://torproject.ip-connect.vn.ua/torproject/dist"," "," "," "
+"torsupport AT tb-itf DOT de"," TB-ITF"," "," DE"," Germany"," Europe"," TRUE"," TRUE"," No"," http://tormirror.tb-itf-tor.de"," https://tormirror.tb-itf-tor.de"," "," "," "," http://tormirror.tb-itf-tor.de/dist/"," https://tormirror.tb-itf-tor.de/dist/"," "
+"admin at koreswatanabe dottnet"," Tor Supporter"," RO"," Romania"," RO"," TRUE"," TRUE"," No"," http://tor-relay.koreswatanabe.net"," "," "," "," http://tor-relay.koreswatanabe.net/dist/"," "," "," "," "
+"calebcenter(a)live.com"," calebxu.tk"," US"," United States"," US"," TRUE"," FALSE"," NO"," http://tor.calebxu.tk"," "," rsync://calebxu.tk/tor"," ftp://ftp.calebxu.tk"," http://tor.calebxu.tk/dist"," "," "," "," "
+"maki(a)maki-chan.de"," Maki Hoshisawa"," DE"," Germany"," DE"," TRUE"," FALSE"," NO"," http://tor.mirrors.maki-chan.de/"," "," "," "," http://tor.mirrors.maki-chan.de/dist/"," "," "," "," Fri Aug 22 14:09:07 2014"
+"info AT zentrum-der-gesundheit DOT de"," Zentrum der Gesundheit"," DK"," Denmark"," Europe"," TRUE"," FALSE"," No"," http://tor.idnr.ws/"," "," "," "," http://tor.idnr.ws/dist/"," "," "," "," Sun Aug 24 16:19:07 2014"
+"mirror ntzk de"," Netzkonstrukt Berlin"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://mirror.ntzk.de/torproject.org/"," "," "," "," http://mirror.ntzk.de/torproject.org/dist/"," "," "," "," Sun Aug 24 16:19:07 2014"
+"info /AT enn /DOT lu"," Frenn vun der Enn A.S.B.L."," IS"," Iceland"," Europe"," TRUE"," FALSE"," No"," http://torproject.lu/"," "," "," "," http://torproject.lu/dist/"," "," "," http://btn6gqzqevlhoryd.onion"," Sun Aug 24 16:19:07 2014"
+"Piratenpartei Bayern"," Piratenpartei Bayern"," DE"," Germany"," DE"," TRUE"," FALSE"," NO"," http://tormirror.piratenpartei-bayern.de"," https://tormirror.piratenpartei-bayern.de"," "," "," http://tormirror.piratenpartei-bayern.de/dist/"," http://tormirror.piratenpartei-bayern.de/dist/"," "," "," Sun Aug 24 16:19:07 2014"
+"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," TRUE"," NO"," http://tor.hoi-polloi.org"," http://tor.hossi-polloiorg"," "," "," http://tor.hoi-polloi.org/dist/"," http://tor.hosi-polloi.or/dist/g"," "," "," Sun Aug 24 16:19:07 2014"
+"kevinmg(a)pressfreedomfoundation.org"," Freedom of the Press Foundation"," US"," United States"," US"," True"," False"," No"," http://tor.pressfreedomfoundation.org"," https://tor.pressfreedomfoundation.org"," "," "," http://tor.pressfreedomfoundation.org/dist/"," https://tor.pressfreedomfoundation.org/dist/"," "," "," Sun Aug 24 16:19:07 2014"
+"tor(a)fodt.it // FoDT.it Webteam"," FoDT.it"," AT"," Austria"," Europe"," TRUE"," FALSE"," No"," http://tor.fodt.it"," https://tor.fodt.it"," "," ftp://ftp.fodt.it/pub/mirrors/torproject.org/"," http://tor.fodt.it/dist/"," https://tor.fodt.it/dist/"," "," "," Sun Aug 24 16:19:07 2014"
+"http://www.multinet.no"," MultiNet AS"," NO"," Trondheim"," Trondheim"," TRUE"," TRUE"," No"," http://tor.multinet.no/"," "," "," "," http://tor.multinet.no/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"haskell at gmx.es"," Tor Supporter"," ES"," Spain"," Europe"," TRUE"," FALSE"," No"," http://tor.zilog.es/"," "," "," "," http://tor.zilog.es/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," US"," United States"," US"," TRUE"," FALSE"," No"," http://199.175.55.215/"," "," "," "," http://199.175.55.215/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"margus.random at mail.ee"," CyberSIDE"," EE"," Estonia"," EE"," TRUE"," FALSE"," No"," http://cyberside.planet.ee/tor/"," "," "," "," http://cyberside.net.ee/tor/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," torproject.is"," IS"," Iceland"," IS"," TRUE"," FALSE"," No"," http://torproject.is/"," "," "," "," http://torproject.is/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," spline"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.spline.de/"," https://tor.spline.inf.fu-berlin.de/"," rsync://ftp.spline.de/tor"," ftp://ftp.spline.de/pub/tor"," http://tor.spline.de/dist/"," https://tor.spline.inf.fu-berlin.de/dist/"," rsync://ftp.spline.de/tor/dist"," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," me0w.cc"," RO"," Romania"," RO"," TRUE"," FALSE"," No"," http://tor.me0w.cc/"," "," "," "," http://tor.me0w.cc/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," borgmann.tv"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.borgmann.tv/"," "," "," "," http://tor.borgmann.tv/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," AT"," Austria"," AT"," TRUE"," TRUE"," No"," http://tor.dont-know-me.at/"," "," "," "," http://tor.dont-know-me.at/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"coralcdn.org"," CoralCDN"," INT"," International"," INT"," TRUE"," FALSE"," Yes"," http://www.torproject.org.nyud.net/"," "," "," "," http://www.torproject.org.nyud.net/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," AT"," Austria"," AT"," TRUE"," FALSE"," No"," http://torproject.ph3x.at/"," "," "," "," http://torproject.ph3x.at/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"neutrino8 AT gmail DOT com"," teambelgium"," BE"," Belgium"," Europe"," TRUE"," FALSE"," No"," http://tor.teambelgium.net:8080/"," "," "," ftp://tor.teambelgium.net:2121/torproject/"," http://tor.teambelgium.net:8080/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+" mail AT benjamin-meier DOT info"," beme it"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.beme-it.de/"," https://tor.beme-it.de/"," rsync://tor.beme-it.de/tor"," "," http://tor.beme-it.de/dist/"," https://tor.beme-it.de/dist/"," rsync://tor.beme-it.de/tor/dist"," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," MX"," Mexico"," MX"," TRUE"," FALSE"," No"," http://fbnaia.homelinux.net/torproject/"," https://fbnaia.homelinux.net/torproject/"," "," "," http://fbnaia.homelinux.net/torproject/dist/"," https://fbnaia.homelinux.net/torproject/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"webmaster AT askapache DOT com"," AskApache"," US"," California"," US"," TRUE"," FALSE"," No"," http://tor.askapache.com/"," "," "," "," http://tor.askapache.com/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," FR"," France"," FR"," TRUE"," FALSE"," No"," http://tor.mirror.chekanov.net/"," "," "," "," http://tor.mirror.chekanov.net/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"http://sebastian.pfeifer.or.at/"," TechAsk.IT"," AT"," Favoriten"," Wien"," TRUE"," TRUE"," No"," http://www.unicorncloud.org/public/torproject.org/"," https://www.unicorncloud.org/public/torproject.org/"," "," "," http://www.unicorncloud.org/public/torproject.org/dist"," https://www.unicorncloud.org/public/torproject.org/dist"," "," "," Thu Aug 28 20:15:25 2014"
+"root AT amorphis DOT eu"," Amorphis"," NL"," The Netherlands"," Europe"," TRUE"," FALSE"," No"," http://tor.amorphis.eu/"," "," "," "," http://tor.amorphis.eu/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"hackthissite.org"," HackThisSite.org"," US"," United States"," US"," TRUE"," TRUE"," No"," http://tor.hackthissite.org/"," https://tor.hackthissite.org/"," "," "," http://mirror.hackthissite.org/tor"," https://mirror.hackthissite.org/tor"," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.linuxlounge.net/"," https://tor.linuxlounge.net/"," "," "," http://tor.linuxlounge.net/dist/"," https://tor.linuxlounge.net/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"paul at coffswifi.net"," CoffsWiFi"," AU"," Australia and New Zealand"," APNIC"," TRUE"," FALSE"," No"," http://torproject.coffswifi.net"," "," "," "," http://torproject.coffswifi.net/dist"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," cyberarmy"," AT"," Austria"," AT"," TRUE"," FALSE"," No"," http://tor.cyberarmy.at/"," "," "," "," "," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://torproject.cryptowars.info/"," https://torproject.cryptowars.info/"," rsync://torproject.cryptowars.info/"," "," http://torproject.cryptowars.info/dist/"," https://torproject.cryptowars.info/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"hostmaster AT zombiewerks DOT com"," TheOnionRouter"," IS"," Iceland"," Iceland"," TRUE"," FALSE"," No"," http://theonionrouter.com/"," "," "," "," http://theonionrouter.com/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," crazyhaze.de"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://tor.crazyhaze.de/"," https://tor.crazyhaze.de/"," "," "," http://tor.crazyhaze.de/dist/"," https://tor.crazyhaze.de/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," chaos darmstadt"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://mirrors.chaos-darmstadt.de/tor-mirror/"," "," "," "," http://mirrors.chaos-darmstadt.de/tor-mirror/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Soviet Anonymous"," RU"," Russia"," RU"," TRUE"," FALSE"," No"," http://creep.im/tor"," https://creep.im/tor"," rsync://creep.im/tor"," ftp://creep.im/mirrors/tor"," http://creep.im/tor/dist/"," https://creep.im/tor/dist/"," rsync://creep.im/tor-dist"," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," torservers"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://www.torservers.net/mirrors/torproject.org/"," https://www.torservers.net/mirrors/torproject.org/"," "," "," http://www.torservers.net/mirrors/torproject.org/dist/"," https://www.torservers.net/mirrors/torproject.org/dist/"," "," http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/"," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," torland"," GB"," United Kingdom"," GB"," TRUE"," FALSE"," No"," http://mirror.torland.me/torproject.org/"," https://mirror.torland.me/torproject.org/"," "," "," http://mirror.torland.me/torproject.org/dist/"," https://mirror.torland.me/torproject.org/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Lightning-bolt.net"," CZ"," Czech Republic"," CZ"," TRUE"," FALSE"," No"," http://torproject.lightning-bolt.net/"," "," "," "," http://torproject.lightning-bolt.net/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"IceBear"," myRL.net"," IS"," Iceland"," IS"," TRUE"," FALSE"," No"," http://tor.myrl.net/"," https://tor.myrl.net/"," "," "," http://tor.myrl.net/dist/"," https://tor.myrl.net/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"kiro AT userzap DOT de"," Userzap"," DE"," Germany"," DE"," TRUE"," FALSE"," No"," http://torprojekt.userzap.de"," https://torprojekt.userzap.de"," "," "," http://torprojekt.userzap.de/dist/"," https://torprojekt.userzap.de/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"tor(a)eprci.net"," EPRCI"," US"," United States"," US"," TRUE"," FALSE"," NO"," http://tor.eprci.net/"," https://www.eprci.com/tor/"," "," "," http://tor.eprci.net/dist/"," https://www.eprci.com/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"tor(a)les.net"," tor(a)les.net"," CA"," Canada"," CA"," TRUE"," FALSE"," NO"," http://tor.les.net/"," "," "," "," http://tor.les.net/dist"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," PW"," DE"," Germany"," DE"," TRUE"," TRUE"," NO"," http://tor.pw.is/"," "," "," "," http://tor.pw.is/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"tor(a)stalkr.net"," stalkr.net"," FR"," France"," FR"," TRUE"," TRUE"," NO"," http://tor.stalkr.net/"," https://tor.stalkr.net/"," "," "," http://tor.stalkr.net/dist/"," https://tor.stalkr.net/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"doemela[AT]cyberguerrilla[DOT]org"," cYbergueRrilLa AnonyMous NeXus"," DE"," Germany"," DE"," TRUE"," FALSE"," NO"," https://tor-mirror.cyberguerrilla.org"," "," "," "," https://tor-mirror.cyberguerrilla.org/dist/"," "," "," http://6dvj6v5imhny3anf.onion"," Thu Aug 28 20:15:25 2014"
+"contact(a)gtor.org"," Gtor"," DE"," Germany"," DE"," TRUE"," TRUE"," NO"," http://torproject.gtor.org/"," https://torproject.gtor.org/"," rsync://torproject.gtor.org/website-mirror/"," "," http://torproject.gtor.org/dist/"," https://torproject.gtor.org/dist/"," rsync://torproject.gtor.org/website-mirror/dist/"," "," Thu Aug 28 20:15:25 2014"
+"SDL"," SDL"," US"," United States"," US"," TRUE"," TRUE"," NO"," http://torproject.nexiom.net"," https://torproject.nexiom.net"," "," "," http://torproject.nexiom.net"," https://torproject.nexiom.net/dist"," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," TRUE"," NO"," http://mirror.velcommuta.de/tor/"," https://mirror.velcommuta.de/tor/"," "," "," http://mirror.velcommuta.de/tor/dist/"," https://mirror.velcommuta.de/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"EFF"," EFF"," US"," United States"," US"," TRUE"," FALSE"," NO"," https://tor.eff.org"," https://tor.eff.org"," "," "," https://tor.eff.org/dist/"," https://tor.eff.org/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," GR"," Greece"," GR"," TRUE"," TRUE"," NO"," https://tor.void.gr"," https://tor.void.gr"," "," "," https://tor.void.gr/dist/"," https://tor.void.gr/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"Ich Eben"," Tor Supporter"," DE"," Germany"," DE"," TRUE"," TRUE"," No"," http://reichster.de/mirrors/torproject.org/"," https://reichster.de/mirrors/torproject.org"," "," "," http://reichster.de/mirrors/torproject.org/dist/"," https://reichster.de/mirrors/torproject.org/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"jlgaddis AT gnu DOT org"," Evil Routers"," US"," United States"," US"," TRUE"," FALSE"," No"," http://tor1.evilrouters.net/"," "," "," "," http://tor1.evilrouters.net/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"tor AT miglix DOT eu"," Tor Supporter"," DE"," Germany"," Europe"," TRUE"," TRUE"," NO"," http://tor.miglix.eu"," https://tor.miglix.eu"," "," "," http://tor.miglix.eu/dist/"," https://tor.miglix.eu/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"tor TA ninurta TOD name"," TorNinurtaName"," AT"," Austria"," AT"," TRUE"," TRUE"," no"," http://tor.ninurta.name/"," "," "," "," http://tor.ninurta.name/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"fr33tux <AT> general-changelog-team.fr"," Tor Supporter"," FR"," France"," FR"," TRUE"," TRUE"," No"," http://tor.fr33tux.org"," https://tor.fr33tux.org"," "," "," http://tor.fr33tux.org/dist/"," https://tor.fr33tux.org/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"sebastian(at)bobrecki(dot)pl"," Sebastian M. Bobrecki"," PL"," Poland"," Europe"," TRUE"," FALSE"," No"," http://tor.iv.net.pl"," https://tor.iv.net.pl"," "," "," http://tor.iv.net.pl/dist/"," https://tor.iv.net.pl/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"tor-mirror AT rdns DOT cc"," d0wn.biz"," FR"," France"," Europe"," TRUE"," FALSE"," No"," http://tor.static.lu"," https://tor.static.lu"," "," "," http://tor.static.lu/dist/"," https://tor.static.lu/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"tor(a)moparisthebest.com"," moparisthebest.com"," DE"," Germany"," Europe"," TRUE"," TRUE"," No"," http://www.moparisthebest.com/tor/"," https://www.moparisthebest.com/tor/"," "," "," http://www.moparisthebest.com/tor/dist/"," https://www.moparisthebest.com/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"Sebastian"," Maxanoo"," NL"," The Netherlands"," Amsterdam"," TRUE"," FALSE"," NO"," http://tor.maxanoo.com/"," "," "," "," http://tor.maxanoo.com/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"rorrim AT ayo DOT tl"," Tor Supporter"," IS"," Iceland"," Europe"," TRUE"," TRUE"," No"," http://ayo.tl/tor/"," https://ayo.tl/tor/"," "," "," http://ayo.tl/tor/dist/"," https://ayo.tl/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"stefano.fenoglio AT gmail DOT com"," Tor Supporter"," IT"," Italy"," Europe"," TRUE"," FALSE"," No"," http://tor.stefanof.com"," "," "," "," "," "," http://tor.stefanof.com/dist"," "," Thu Aug 28 20:15:25 2014"
+"Jacob Henner"," Anatomical Networks"," US"," United States"," US"," TRUE"," TRUE"," TRUE"," http://tor.ventricle.us/"," "," "," "," http://tor.ventricle.us/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"webmaster[at]hackabit.nl"," Hackabit.nl"," NL"," The Netherlands"," Europe"," TRUE"," FALSE"," No"," http://hackabit.nl/tor/"," https://hackabit.nl/tor/"," "," "," http://hackabit.nl/tor/dist/"," https://hackabit.nl/tor/dist/"," "," "," Thu Aug 28 20:15:25 2014"
+"noc AT bbln DOT org"," BBLN"," NL"," The Netherlands"," Europe"," TRUE"," TRUE"," No"," http://mirror2.bbln.org/torproject/"," https://mirror2.bbln.org/torproject/"," rsync://mirror2.bbln.org/torproject/"," ftp://mirror2.bbln.org/torproject/"," http://mirror2.bbln.org/torproject/dist/"," https://mirror2.bbln.org/torproject/dist/"," rsync://mirror2.bbln.org/torproject/dist/"," "," Thu Aug 28 20:15:25 2014"
+"noc AT bbln DOT org"," BBLN"," FR"," France"," Europe"," TRUE"," TRUE"," No"," http://mirror.bbln.org/torproject/"," https://mirror.bbln.org/torproject/"," rsync://mirror.bbln.org/torproject/"," ftp://mirror.bbln.org/torproject/"," http://mirror.bbln.org/torproject/dist/"," https://mirror.bbln.org/torproject/dist/"," rsync://mirror.bbln.org/torproject/dist/"," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Ramos Research"," US"," United States"," US"," TRUE"," TRUE"," No"," http://tor.ramosresearch.com/"," "," "," "," http://tor.ramosresearch.com/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"Tor Fan"," Tor Supporter"," DE"," Germany"," Europe"," TRUE"," FALSE"," No"," http://tor.euve33747.vserver.de/"," "," "," "," http://tor.euve33747.vserver.de/dist"," "," "," "," Thu Aug 28 20:15:25 2014"
+"s7r[at]sky-ip[d0t]org"," sky-ip.org"," NL"," Netherlands"," NL"," TRUE"," FALSE"," No"," http://beautiful-mind.sky-ip.org/"," "," "," "," http://beautiful-mind.sky-ip.org/dist/"," "," "," "," Thu Aug 28 20:15:25 2014"
+"tor#pajonzeck#de","ITsn","DE","Germany","Europe","TRUE","FALSE","No","http://tor.pajonzeck.de/","https://tor.pajonzeck.de/","rsync://tor.pajonzeck.de/tor","http://tor.pajonzeck.de/dist/","https://tor.pajonzeck.de/dist/","rsync://tor.pajonzeck.de/tor/dist","http://zgfgvob256pffy62.onion",,
1
0

02 Sep '14
commit d7779f9a0a065b3d9142b94de297cccc183faaa7
Author: Lunar <lunar(a)torproject.org>
Date: Tue Sep 2 01:01:00 2014 +0000
Add queue graphs data for August 2014
---
queue-graphs/data/2014Q3.csv | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/queue-graphs/data/2014Q3.csv b/queue-graphs/data/2014Q3.csv
index 4ce9d25..4208896 100644
--- a/queue-graphs/data/2014Q3.csv
+++ b/queue-graphs/data/2014Q3.csv
@@ -5,3 +5,9 @@ month,queue,newtickets
2014-07,fa,156
2014-07,fr,37
2014-07,zh,73
+2014-08,ar,8
+2014-08,en,1098
+2014-08,es,61
+2014-08,fa,241
+2014-08,fr,33
+2014-08,zh,76
1
0

02 Sep '14
commit 3998c080d4300e6ed215668f08808ac1b99ab1a4
Author: Lunar <lunar(a)torproject.org>
Date: Tue Sep 2 01:02:23 2014 +0000
Add response time data for August 2014
---
response-time/data/2014Q3.csv | 189 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 189 insertions(+)
diff --git a/response-time/data/2014Q3.csv b/response-time/data/2014Q3.csv
index 1dab19e..fd4b41c 100644
--- a/response-time/data/2014Q3.csv
+++ b/response-time/data/2014Q3.csv
@@ -175,3 +175,192 @@ month,fromhours,tohours,requests
2014-07,4850,4851,1
2014-07,5740,5741,1
2014-07,7271,7272,1
+2014-08,0,1,331
+2014-08,1,2,153
+2014-08,2,3,114
+2014-08,3,4,92
+2014-08,4,5,82
+2014-08,5,6,82
+2014-08,6,7,60
+2014-08,7,8,69
+2014-08,8,9,70
+2014-08,9,10,41
+2014-08,10,11,57
+2014-08,11,12,52
+2014-08,12,13,48
+2014-08,13,14,40
+2014-08,14,15,39
+2014-08,15,16,47
+2014-08,16,17,47
+2014-08,17,18,39
+2014-08,18,19,35
+2014-08,19,20,39
+2014-08,20,21,45
+2014-08,21,22,34
+2014-08,22,23,39
+2014-08,23,24,37
+2014-08,24,25,34
+2014-08,25,26,30
+2014-08,26,27,29
+2014-08,27,28,26
+2014-08,28,29,16
+2014-08,29,30,17
+2014-08,30,31,24
+2014-08,31,32,11
+2014-08,32,33,21
+2014-08,33,34,20
+2014-08,34,35,13
+2014-08,35,36,19
+2014-08,36,37,8
+2014-08,37,38,14
+2014-08,38,39,9
+2014-08,39,40,19
+2014-08,40,41,12
+2014-08,41,42,13
+2014-08,42,43,9
+2014-08,43,44,13
+2014-08,44,45,13
+2014-08,45,46,12
+2014-08,46,47,11
+2014-08,47,48,21
+2014-08,48,49,13
+2014-08,49,50,9
+2014-08,50,51,14
+2014-08,51,52,6
+2014-08,52,53,12
+2014-08,53,54,10
+2014-08,54,55,13
+2014-08,55,56,7
+2014-08,56,57,10
+2014-08,57,58,9
+2014-08,58,59,4
+2014-08,59,60,7
+2014-08,60,61,3
+2014-08,61,62,7
+2014-08,62,63,4
+2014-08,63,64,3
+2014-08,64,65,5
+2014-08,65,66,4
+2014-08,66,67,6
+2014-08,67,68,6
+2014-08,68,69,6
+2014-08,69,70,5
+2014-08,70,71,6
+2014-08,71,72,12
+2014-08,72,73,6
+2014-08,73,74,7
+2014-08,74,75,3
+2014-08,75,76,7
+2014-08,76,77,5
+2014-08,77,78,4
+2014-08,78,79,3
+2014-08,79,80,4
+2014-08,80,81,3
+2014-08,81,82,3
+2014-08,82,83,4
+2014-08,83,84,6
+2014-08,84,85,3
+2014-08,85,86,1
+2014-08,86,87,5
+2014-08,87,88,4
+2014-08,88,89,3
+2014-08,89,90,4
+2014-08,90,91,5
+2014-08,91,92,7
+2014-08,92,93,4
+2014-08,93,94,5
+2014-08,94,95,5
+2014-08,95,96,5
+2014-08,96,97,9
+2014-08,97,98,3
+2014-08,98,99,2
+2014-08,99,100,3
+2014-08,100,101,6
+2014-08,101,102,4
+2014-08,102,103,4
+2014-08,103,104,1
+2014-08,105,106,1
+2014-08,106,107,3
+2014-08,107,108,1
+2014-08,108,109,1
+2014-08,110,111,1
+2014-08,111,112,4
+2014-08,112,113,3
+2014-08,113,114,3
+2014-08,114,115,3
+2014-08,115,116,1
+2014-08,116,117,5
+2014-08,117,118,3
+2014-08,118,119,1
+2014-08,119,120,2
+2014-08,120,121,3
+2014-08,121,122,1
+2014-08,125,126,1
+2014-08,126,127,1
+2014-08,127,128,2
+2014-08,129,130,1
+2014-08,130,131,1
+2014-08,131,132,1
+2014-08,132,133,1
+2014-08,133,134,2
+2014-08,134,135,1
+2014-08,135,136,1
+2014-08,136,137,2
+2014-08,137,138,2
+2014-08,139,140,3
+2014-08,140,141,2
+2014-08,141,142,1
+2014-08,142,143,2
+2014-08,143,144,3
+2014-08,144,145,2
+2014-08,145,146,1
+2014-08,146,147,2
+2014-08,148,149,1
+2014-08,149,150,2
+2014-08,150,151,1
+2014-08,151,152,1
+2014-08,158,159,1
+2014-08,159,160,1
+2014-08,162,163,1
+2014-08,163,164,1
+2014-08,165,166,1
+2014-08,170,171,1
+2014-08,171,172,2
+2014-08,173,174,2
+2014-08,177,178,1
+2014-08,179,180,1
+2014-08,180,181,2
+2014-08,183,184,2
+2014-08,184,185,1
+2014-08,186,187,2
+2014-08,187,188,1
+2014-08,189,190,2
+2014-08,190,191,1
+2014-08,195,196,2
+2014-08,200,201,1
+2014-08,204,205,1
+2014-08,205,206,2
+2014-08,206,207,1
+2014-08,214,215,1
+2014-08,220,221,1
+2014-08,234,235,1
+2014-08,238,239,1
+2014-08,247,248,1
+2014-08,266,267,1
+2014-08,289,290,1
+2014-08,293,294,1
+2014-08,311,312,2
+2014-08,352,353,1
+2014-08,377,378,1
+2014-08,436,437,2
+2014-08,466,467,1
+2014-08,540,541,1
+2014-08,551,552,1
+2014-08,557,558,1
+2014-08,860,861,1
+2014-08,943,944,1
+2014-08,1187,1188,1
+2014-08,1223,1224,1
+2014-08,1398,1399,1
+2014-08,2312,2313,1
+2014-08,2975,2976,1
1
0

[translation/tails-greeter] Update translations for tails-greeter
by translation@torproject.org 02 Sep '14
by translation@torproject.org 02 Sep '14
02 Sep '14
commit 20b9be905d9ccf7fc5d56a23c287277e3303805a
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Sep 2 00:45:26 2014 +0000
Update translations for tails-greeter
---
ms_MY/ms_MY.po | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ms_MY/ms_MY.po b/ms_MY/ms_MY.po
index 5fbc6b2..b9c5bf0 100644
--- a/ms_MY/ms_MY.po
+++ b/ms_MY/ms_MY.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-20 18:36+0200\n"
-"PO-Revision-Date: 2014-08-16 02:50+0000\n"
+"POT-Creation-Date: 2014-08-31 10:36+0200\n"
+"PO-Revision-Date: 2014-09-02 00:40+0000\n"
"Last-Translator: kz_gtr <kz_gtr(a)yahoo.com>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/torproject/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
1
0

02 Sep '14
commit cb7877a198dee7e544a8ef0ca236662e254cb1cc
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Sep 2 00:45:03 2014 +0000
Update translations for bridgedb
---
ms_MY/LC_MESSAGES/bridgedb.po | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ms_MY/LC_MESSAGES/bridgedb.po b/ms_MY/LC_MESSAGES/bridgedb.po
index ec3cfaf..ba244fa 100644
--- a/ms_MY/LC_MESSAGES/bridgedb.po
+++ b/ms_MY/LC_MESSAGES/bridgedb.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
"POT-Creation-Date: 2014-07-26 02:11+0000\n"
-"PO-Revision-Date: 2014-08-03 03:20+0000\n"
+"PO-Revision-Date: 2014-09-02 00:40+0000\n"
"Last-Translator: kz_gtr <kz_gtr(a)yahoo.com>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/torproject/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
1
0
commit 8139db372528ca02cd572f3f7848e9d174a9b12e
Author: rl1987 <rl1987(a)sdf.lonestar.org>
Date: Sun Aug 31 14:35:30 2014 +0300
Adding changes file.
---
changes/bug12878 | 3 +++
1 file changed, 3 insertions(+)
diff --git a/changes/bug12878 b/changes/bug12878
new file mode 100644
index 0000000..a05fc44
--- /dev/null
+++ b/changes/bug12878
@@ -0,0 +1,3 @@
+ o Documentation:
+ - Document 'reject6' and 'accept6' ExitPolicy entries. Resolves
+ ticket 12878.
1
0

01 Sep '14
commit 67c0ad54263be7fb742a8d499f97f5908f9ec970
Merge: 87f9c51 8139db3
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Mon Sep 1 16:23:34 2014 -0400
Merge remote-tracking branch 'origin/maint-0.2.5'
changes/bug12878 | 3 +++
1 file changed, 3 insertions(+)
1
0