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 2012
- 18 participants
- 792 discussions

[tor/master] Avoid undefined behaviour when parsing HS protocol versions
by nickm@torproject.org 13 Sep '12
by nickm@torproject.org 13 Sep '12
13 Sep '12
commit 0a6480cdd00fbed2eba0e5bab6ef82bc809c665b
Author: Robert Ransom <rransom.8774(a)gmail.com>
Date: Thu Sep 13 07:39:39 2012 -0400
Avoid undefined behaviour when parsing HS protocol versions
Fixes bug 6827; bugfix on c58675ca728f12b42f65e5b8964ae695c2e0ec2d
(when the v2 HS desc parser was implemented).
Found by asn.
---
changes/bug6827 | 8 ++++++++
src/or/or.h | 7 +++++--
src/or/routerparse.c | 3 +++
3 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/changes/bug6827 b/changes/bug6827
new file mode 100644
index 0000000..799c459
--- /dev/null
+++ b/changes/bug6827
@@ -0,0 +1,8 @@
+ o Minor bugfixes:
+
+ - Avoid undefined behaviour when parsing the list of supported
+ rendezvous/introduction protocols in a hidden service
+ descriptor. Previously, Tor would have confused (as-yet-unused)
+ protocol version numbers greater than 32 with lower ones on many
+ platforms. Bugfix on 0.2.0.10-alpha; found by George Kadianakis.
+
diff --git a/src/or/or.h b/src/or/or.h
index 9074083..51c23d3 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -4279,14 +4279,17 @@ typedef struct rend_intro_point_t {
time_t time_expiring;
} rend_intro_point_t;
+#define REND_PROTOCOL_VERSION_BITMASK_WIDTH 16
+
/** Information used to connect to a hidden service. Used on both the
* service side and the client side. */
typedef struct rend_service_descriptor_t {
crypto_pk_t *pk; /**< This service's public key. */
int version; /**< Version of the descriptor format: 0 or 2. */
time_t timestamp; /**< Time when the descriptor was generated. */
- uint16_t protocols; /**< Bitmask: which rendezvous protocols are supported?
- * (We allow bits '0', '1', and '2' to be set.) */
+ /** Bitmask: which rendezvous protocols are supported?
+ * (We allow bits '0', '1', and '2' to be set.) */
+ int protocols : REND_PROTOCOL_VERSION_BITMASK_WIDTH;
/** List of the service's introduction points. Elements are removed if
* introduction attempts fail. */
smartlist_t *intro_nodes;
diff --git a/src/or/routerparse.c b/src/or/routerparse.c
index 60a2eae..2bf072b 100644
--- a/src/or/routerparse.c
+++ b/src/or/routerparse.c
@@ -4823,6 +4823,9 @@ rend_parse_v2_service_descriptor(rend_service_descriptor_t **parsed_out,
10, 0, INT_MAX, &num_ok, NULL);
if (!num_ok) /* It's a string; let's ignore it. */
continue;
+ if (version >= REND_PROTOCOL_VERSION_BITMASK_WIDTH)
+ /* Avoid undefined left-shift behaviour. */
+ continue;
result->protocols |= 1 << version;
}
SMARTLIST_FOREACH(versions, char *, cp, tor_free(cp));
1
0

[tor/maint-0.2.3] mention the bug number in the 6827 changes file
by nickm@torproject.org 13 Sep '12
by nickm@torproject.org 13 Sep '12
13 Sep '12
commit 1e68c213a24237b1733cfee3726aa646a805a5a9
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Thu Sep 13 10:07:06 2012 -0400
mention the bug number in the 6827 changes file
---
changes/bug6827 | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/changes/bug6827 b/changes/bug6827
index 799c459..bf71d2b 100644
--- a/changes/bug6827
+++ b/changes/bug6827
@@ -4,5 +4,6 @@
rendezvous/introduction protocols in a hidden service
descriptor. Previously, Tor would have confused (as-yet-unused)
protocol version numbers greater than 32 with lower ones on many
- platforms. Bugfix on 0.2.0.10-alpha; found by George Kadianakis.
+ platforms. Fixes bug 6827; bugfix on 0.2.0.10-alpha; found by
+ George Kadianakis.
1
0

[tor/maint-0.2.3] Avoid undefined behaviour when parsing HS protocol versions
by nickm@torproject.org 13 Sep '12
by nickm@torproject.org 13 Sep '12
13 Sep '12
commit 0a6480cdd00fbed2eba0e5bab6ef82bc809c665b
Author: Robert Ransom <rransom.8774(a)gmail.com>
Date: Thu Sep 13 07:39:39 2012 -0400
Avoid undefined behaviour when parsing HS protocol versions
Fixes bug 6827; bugfix on c58675ca728f12b42f65e5b8964ae695c2e0ec2d
(when the v2 HS desc parser was implemented).
Found by asn.
---
changes/bug6827 | 8 ++++++++
src/or/or.h | 7 +++++--
src/or/routerparse.c | 3 +++
3 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/changes/bug6827 b/changes/bug6827
new file mode 100644
index 0000000..799c459
--- /dev/null
+++ b/changes/bug6827
@@ -0,0 +1,8 @@
+ o Minor bugfixes:
+
+ - Avoid undefined behaviour when parsing the list of supported
+ rendezvous/introduction protocols in a hidden service
+ descriptor. Previously, Tor would have confused (as-yet-unused)
+ protocol version numbers greater than 32 with lower ones on many
+ platforms. Bugfix on 0.2.0.10-alpha; found by George Kadianakis.
+
diff --git a/src/or/or.h b/src/or/or.h
index 9074083..51c23d3 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -4279,14 +4279,17 @@ typedef struct rend_intro_point_t {
time_t time_expiring;
} rend_intro_point_t;
+#define REND_PROTOCOL_VERSION_BITMASK_WIDTH 16
+
/** Information used to connect to a hidden service. Used on both the
* service side and the client side. */
typedef struct rend_service_descriptor_t {
crypto_pk_t *pk; /**< This service's public key. */
int version; /**< Version of the descriptor format: 0 or 2. */
time_t timestamp; /**< Time when the descriptor was generated. */
- uint16_t protocols; /**< Bitmask: which rendezvous protocols are supported?
- * (We allow bits '0', '1', and '2' to be set.) */
+ /** Bitmask: which rendezvous protocols are supported?
+ * (We allow bits '0', '1', and '2' to be set.) */
+ int protocols : REND_PROTOCOL_VERSION_BITMASK_WIDTH;
/** List of the service's introduction points. Elements are removed if
* introduction attempts fail. */
smartlist_t *intro_nodes;
diff --git a/src/or/routerparse.c b/src/or/routerparse.c
index 60a2eae..2bf072b 100644
--- a/src/or/routerparse.c
+++ b/src/or/routerparse.c
@@ -4823,6 +4823,9 @@ rend_parse_v2_service_descriptor(rend_service_descriptor_t **parsed_out,
10, 0, INT_MAX, &num_ok, NULL);
if (!num_ok) /* It's a string; let's ignore it. */
continue;
+ if (version >= REND_PROTOCOL_VERSION_BITMASK_WIDTH)
+ /* Avoid undefined left-shift behaviour. */
+ continue;
result->protocols |= 1 << version;
}
SMARTLIST_FOREACH(versions, char *, cp, tor_free(cp));
1
0

13 Sep '12
commit fd8911564d8f0f5410f9d23f09c383d16e5e387d
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Thu Sep 13 09:45:01 2012 -0400
Add the two HotPETs 2009 reports.
---
techreports.bib | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/techreports.bib b/techreports.bib
index f8c2d9b..01a987f 100644
--- a/techreports.bib
+++ b/techreports.bib
@@ -238,6 +238,26 @@
url = {https://research.torproject.org/techreports/bufferstats-2009-08-25.pdf},
}
+@techreport{tor-2009-08-002,
+ author = {Karsten Loesing},
+ title = {Measuring the {Tor} Network from Public Directory Information},
+ institution = {The Tor Project},
+ number = {2009-08-002},
+ year = {2009},
+ month = {August},
+ url = {https://research.torproject.org/techreports/metrics-2009-08-07.pdf},
+}
+
+@techreport{tor-2009-08-003,
+ author = {Mike Perry},
+ title = {{TorFlow}: {Tor} Network Analysis},
+ institution = {The Tor Project},
+ number = {2009-08-003},
+ year = {2009},
+ month = {August},
+ url = {https://research.torproject.org/techreports/torflow-2009-08-07.pdf},
+}
+
@techreport{tor-2009-06-002,
author = {Karsten Loesing},
title = {Measuring the {Tor} Network, Evaluation of Client Requests to the Directories to determine total numbers and countries of users},
1
0

13 Sep '12
commit 5510bc17005c828abf46a4ca6f3bcc8ec3cac5ca
Merge: 31e3007 3cab6ea
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Thu Sep 13 09:30:03 2012 -0400
Merge branch 'hotpets2009-reports'
2009/metrics/.gitignore | 3 +
2009/metrics/advertised-hotpets.pdf | 2569 ++++++++++
2009/metrics/country-hotpets.pdf | 5946 ++++++++++++++++++++++++
2009/metrics/countrybw-hotpets.pdf | 5942 +++++++++++++++++++++++
2009/metrics/dynamic-hotpets.pdf | 2573 ++++++++++
2009/metrics/guardwfu-hotpets.pdf | 2396 ++++++++++
2009/metrics/metrics.bib | 87 +
2009/metrics/metrics.tex | 287 ++
2009/metrics/platforms-hotpets.pdf | 4760 +++++++++++++++++++
2009/metrics/relayflags-hotpets.pdf | 5937 +++++++++++++++++++++++
2009/metrics/tortechrep.cls | 1 +
2009/torflow/.gitignore | 3 +
2009/torflow/0-93-100000-buildtimes-res100.pdf | Bin 0 -> 25847 bytes
2009/torflow/BadNodes.pdf | Bin 0 -> 17164 bytes
2009/torflow/BadNodesWin.pdf | Bin 0 -> 17397 bytes
2009/torflow/CircFailure-BwLimit2.pdf | Bin 0 -> 18145 bytes
2009/torflow/CircFailure-LimitWin.pdf | Bin 0 -> 18559 bytes
2009/torflow/CircFailure-Win2.pdf | Bin 0 -> 17851 bytes
2009/torflow/CircFailure-WinLimit.pdf | Bin 0 -> 18360 bytes
2009/torflow/CircFailure-WinMid.pdf | Bin 0 -> 17170 bytes
2009/torflow/CircFailure.pdf | Bin 0 -> 19099 bytes
2009/torflow/CircFailure2.pdf | Bin 0 -> 22478 bytes
2009/torflow/ControlPort2.pdf | Bin 0 -> 18870 bytes
2009/torflow/Extends-BwLimit2.pdf | Bin 0 -> 17849 bytes
2009/torflow/ExtendsBar.pdf | Bin 0 -> 17512 bytes
2009/torflow/ExtendsBar2.pdf | Bin 0 -> 19336 bytes
2009/torflow/PathSupport.pdf | Bin 0 -> 9994 bytes
2009/torflow/StreamBwBar2.pdf | Bin 0 -> 19436 bytes
2009/torflow/torflow.bib | 107 +
2009/torflow/torflow.tex | 708 +++
2009/torflow/tortechrep.cls | 1 +
31 files changed, 31320 insertions(+), 0 deletions(-)
1
0

[tech-reports/master] Make torflow report look like a Tor Tech Report.
by karsten@torproject.org 13 Sep '12
by karsten@torproject.org 13 Sep '12
13 Sep '12
commit 8608c2345de5b5c3d94452d231bd5b69262e52c7
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Aug 27 09:08:03 2012 +0200
Make torflow report look like a Tor Tech Report.
---
2009/torflow/torflow.bib | 53 ++----------------
2009/torflow/torflow.tex | 125 ++++++++++++++++++++----------------------
2009/torflow/tortechrep.cls | 1 +
3 files changed, 66 insertions(+), 113 deletions(-)
diff --git a/2009/torflow/torflow.bib b/2009/torflow/torflow.bib
index c8c667e..711a947 100644
--- a/2009/torflow/torflow.bib
+++ b/2009/torflow/torflow.bib
@@ -10,7 +10,7 @@
@Misc{path-spec,
author = {Roger Dingledine and Nick Mathewson},
title = {{Tor Path Specifications}},
- note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/path-spec.txt}},
+ note = {\url{https://gitweb.torproject.org/torspec.git/blob/HEAD:/path-spec.txt}},
}
@Misc{nickm-iocp,
@@ -34,47 +34,16 @@
note = {\url{http://www.blackhat.com/presentations/bh-usa-07/Perry/Presentation/bh-usa-07-perry.pdf}}
}
-@Misc{perry-ssh-ortalk,
- key = {perry-ssh-ortalk},
- title = {{SSH Key Spoofing}},
- author = {Mike Perry},
- note = {\url{http://archives.seul.org/or/talk/Jan-2007/msg00030.html}}
-}
-
@Misc{control-spec,
author = {Roger Dingledine and Nick Mathewson},
title = {Tor Control Protocol Specifications},
- note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/control-spec.txt}},
+ note = {\url{https://gitweb.torproject.org/torspec.git/blob/HEAD:/control-spec.txt}},
}
@Misc{dir-spec,
author = {Roger Dingledine and Nick Mathewson},
- title = {Tor Control Protocol Specifications},
- note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/dir-spec.txt}},
-}
-
-@Misc{Elixir,
- key = {Elixir},
- title = {{Elixir}},
- note = {\url{http://elixir.ematia.de/trac/wiki}}
-}
-
-@Misc{SQLAlchemy,
- key = {SQLALchemy},
- title = {{SQLAlchemy Database Toolkit for Python}},
- note = {\url{http://www.sqlalchemy.org/}}
-}
-
-@Misc{BeautifulSoup,
- key = {BeautifulSoup},
- title = {{Beautiful Soup: Elixir and Tonic}},
- note = {\url{http://www.crummy.com/software/BeautifulSoup/}}
-}
-
-(a)Misc{Javascript.g,
- key = {Javascript.g},
- title = {{Antlr Javascript Grammar}},
- note = {\url{http://www.antlr.org/grammar/1206736738015/JavaScript.g}}
+ title = {Tor Directory Protocol Specifications},
+ note = {\url{https://gitweb.torproject.org/torspec.git/blob/HEAD:/dir-spec.txt}},
}
@mastersthesis{renner-thesis,
@@ -88,19 +57,7 @@
@Misc{tor-spec,
author = {Roger Dingledine and Nick Mathewson},
title = {{Tor Protocol Specifications}},
- note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/tor-spec.txt}},
-}
-
-@Misc{bug440,
- author = {Mike Perry},
- title = {{Guard Nodes Not Weighted By Bandwidth}},
- note = {\url{http://bugs.torproject.org/flyspray/index.php?do=details\&id=440}}
-}
-
-@Misc{perry-balancing,
- author = {Mike Perry},
- title = {{Exit Balancing Patch}},
- note = {\url{http://archives.seul.org/or/dev/Jul-2007/msg00021.html}}
+ note = {\url{https://gitweb.torproject.org/torspec.git/blob/HEAD:/tor-spec.txt}},
}
@Misc{ads-malware,
diff --git a/2009/torflow/torflow.tex b/2009/torflow/torflow.tex
index 1abaebd..75924bb 100644
--- a/2009/torflow/torflow.tex
+++ b/2009/torflow/torflow.tex
@@ -1,38 +1,21 @@
-% XXX: Change to llncs 11pt aka
-%\documentclass{llncs}
-\documentclass[letterpaper,11pt]{llncs}
-%\documentclass{article} % llncs
+\documentclass{tortechrep}
-\usepackage{usenix}
\usepackage{url}
-\usepackage{graphics}
+\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{listings}
-
-\setlength{\textwidth}{5.9in}
-\setlength{\textheight}{8.4in}
-\setlength{\topmargin}{.5cm}
-\setlength{\oddsidemargin}{1cm}
-\setlength{\evensidemargin}{1cm}
-
-\newenvironment{tightlist}{\begin{list}{$\bullet$}{
- \setlength{\itemsep}{0mm}
- \setlength{\parsep}{0mm}
- % \setlength{\labelsep}{0mm}
- % \setlength{\labelwidth}{0mm}
- % \setlength{\topsep}{0mm}
- }}{\end{list}}
+\usepackage{courier}
\begin{document}
\title{TorFlow: Tor Network Analysis}
-
-\author{Mike Perry \\ The Internet \\ mikeperry(a)fscked.org}
-
-%\institute{The Internet}
-
+\author{Mike Perry}
+\contact{mikeperry(a)fscked.org}
+\reportid{2009-08-003\footnote{This report was presented at 2nd Hot Topics
+in Privacy Enhancing Technologies (HotPETs 2009), Seattle, WA, USA, August
+2009.}}
+\date{August 7, 2009}
\maketitle
-\pagestyle{plain}
\begin{abstract}
The Tor Network is a low-latency anonymity, privacy, and censorship
@@ -74,7 +57,8 @@ misconfiguration, or much less often, due to malice. This most frequently
comes in the form of truncating TCP streams or failing DNS, but occasionally
presents itself as SSL spoofing or interception by the upstream ISP. On rare
occasion, SSH hijacking and web content injection have also been
-observed.~\cite{perry-ssh-ortalk}.
+observed.%
+\footnote{\url{https://lists.torproject.org/pipermail/tor-talk/2007-January/007352.html}}.
% XXX: There's another ref for this involving web injection
\section{Overview}
@@ -106,18 +90,18 @@ that provides well-formed information on Tor client status and events and
optionally enables control over circuit construction and association of SOCKS
streams to individual circuits.
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
-\includegraphics{ControlPort2.pdf}
+\includegraphics[width=.8\textwidth]{ControlPort2.pdf}
\caption{Example Tor Control Port connection with representative Tor Traffic.}
\label{fig:ControlPort2.pdf}
\end{figure}
\subsection{TorCtl Organization}
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
-\includegraphics{PathSupport.pdf}
+\includegraphics[width=.9\textwidth]{PathSupport.pdf}
\caption{TorCtl Core Class Diagram}
\label{fig:PathSupport.pdf}
\end{figure}
@@ -172,8 +156,11 @@ circuit creation time and failure reason, and stream capacity and failure
reason.
The second is a SQL-based system that stores circuit and/or stream events in
-SQL tables. The SQL system uses Elixir~\cite{Elixir} and
-SQLAlchemy~\cite{SQLAlchemy}, so the backend database can be any that is
+SQL tables. The SQL system uses Elixir%
+\footnote{\url{http://elixir.ematia.de/trac/wiki}} and
+SQLAlchemy%
+\footnote{\url{http://www.sqlalchemy.org/}},
+so the backend database can be any that is
supported by SQLAlchemy (which includes just about every modern database
backend).
@@ -219,9 +206,9 @@ Loesing as being a result of our rate limiting algorithm emptying its token
buckets in sync across the network at the top of each second as opposed to
continuously. When this is addressed, the Pareto fit should improve.
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
-\includegraphics{0-93-100000-buildtimes-res100.pdf}
+\includegraphics[width=.9\textwidth]{0-93-100000-buildtimes-res100.pdf}
\caption{Network-wide bandwidth-weighted circuit build time distribution (ms).}
\label{fig:buildtimes}
\end{figure}
@@ -232,7 +219,7 @@ recalibrated Tor's circuit timeout in the client.
\subsection{Guard Node Rebalancing}
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
\includegraphics{ExtendsBar.pdf}
\includegraphics{ExtendsBar2.pdf}
@@ -245,7 +232,7 @@ responsiveness and reliability of 5\% slices of the network (lower percentiles
indicate higher advertised bandwidth). Repeated measurement showed that nodes
became progressively less responsive and more failure prone as they got
slower, up until the 50\% mark, at which point the pattern suddenly stopped.
-This pattern can be seen in the left side of Figures \ref{fig:Extends} and
+This pattern can be seen in the left side of Figures~\ref{fig:Extends} and
\ref{fig:Failure}.
This 50\% mark was the same point where nodes ceased to be considered for
@@ -255,13 +242,16 @@ We eventually discovered that client guard node selection, instead of being
weighted based on bandwidth, was actually uniform. We developed a new algorithm
to fix this, as well as to properly account for weighting both guards and
exits according to their scarcity when being selected for other positions in
-the network~\cite{bug440,perry-balancing}.
+the network.%
+\footnote{\url{https://trac.torproject.org/projects/tor/ticket/440}}
+\textsuperscript{,}%
+\footnote{\url{https://lists.torproject.org/pipermail/tor-dev/2007-July/001255.html}}
Without an autoupdater, it took over a year for enough clients to upgrade for
the results to be visible in our scans, but it appears that at least among
guards, the load is now considerably more uniform.
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
\includegraphics{CircFailure.pdf}
\includegraphics{CircFailure2.pdf}
@@ -270,7 +260,7 @@ guards, the load is now considerably more uniform.
\end{figure}
However, it is obvious that irregularities still remain. Interestingly, the
-points of very low failure rates in Figure \ref{fig:Failure} correspond to the
+points of very low failure rates in Figure~\ref{fig:Failure} correspond to the
periods between 01:00 and 03:00 PST, when most of the US is asleep, and
consistently appeared at that time in numerous scans. This seems to suggest we
should avoid capacity scans during those hours. It also suggests that circuit
@@ -280,7 +270,7 @@ crypto operations fast enough, it begins dropping circuit creation cells. This
could explain the sharp difference in high load vs low load conditions for
circuit failure, but not for stream capacity.
-Furthermore, it appears in the right side of Figure \ref{fig:Failure} as
+Furthermore, it appears in the right side of Figure~\ref{fig:Failure} as
though the slower 50\% of the network is now exhibiting significantly higher
failure percentages than the first 50\%. In order to explore this, we ran a
number of additional circuit failure scans utilizing TorFlow's Node
@@ -302,7 +292,7 @@ After more investigation and many scans, two consistent failure classes
emerged: Windows nodes, and non-bandwidth limited nodes, each of which seemed
to perform a bit worse as Guard and Exit nodes than as the middle nodes.
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
\includegraphics{CircFailure-Win2.pdf}
\includegraphics{CircFailure-WinMid.pdf}
@@ -312,7 +302,7 @@ to perform a bit worse as Guard and Exit nodes than as the middle nodes.
The Windows node result is not entirely surprising, as it is known that these
nodes will have difficulty servicing large numbers of sockets using normal
-WinSock~\cite{nickm-iocp}. As can be seen in Figure \ref{fig:WinFail}, these
+WinSock~\cite{nickm-iocp}. As can be seen in Figure~\ref{fig:WinFail}, these
nodes exhibit significantly higher circuit failure rates than non-Windows
nodes, and also predictably fare worse in either the Guard or Exit position,
where they have to maintain significantly more TCP sockets for clients and
@@ -322,7 +312,7 @@ There are some aberrations. In particular, the high-end Windows nodes seem to
be on par with their peers. This is likely due to the higher socket limits of
server editions of Windows as compared to desktop.
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
\includegraphics{CircFailure-BwLimit2.pdf}
\includegraphics{Extends-BwLimit2.pdf}
@@ -331,7 +321,7 @@ nodes}
\label{fig:BwLimited}
\end{figure}
-Interestingly, as can be seen in the left side of Figure \ref{fig:BwLimited},
+Interestingly, as can be seen in the left side of Figure~\ref{fig:BwLimited},
nodes that have configured a specific bandwidth rate limit are considerably
more reliable than those that set no limit and just fill their upstream to the
max. One potential reason for this could be that due to Tor's multiplexing of
@@ -340,7 +330,7 @@ ability of circuit creation cells to get through in time. Other possibilities
include asymmetric bandwidth limits and OS and CPU limits being easier to hit,
causing failure as opposed to smooth throttling.
-Also of interest from the right side of Figure \ref{fig:BwLimited} is the fact
+Also of interest from the right side of Figure~\ref{fig:BwLimited} is the fact
that despite only emptying their queues once per second, the circuit extend
latencies of bandwidth-limited nodes are still typically less than their
non-limited neighbors. This indicates that most of these rate limited nodes
@@ -357,7 +347,7 @@ ability to make a TCP connection for non-limited nodes, and is possibly tied
to the ability to transfer a create cell through the network and also
implicate TCP flow control issues.
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
\includegraphics{CircFailure-LimitWin.pdf}
\includegraphics{CircFailure-WinLimit.pdf}
@@ -367,15 +357,15 @@ implicate TCP flow control issues.
It is also the case that many of the Windows nodes also do not set
bandwidth limits for themselves. This led us to perform four scans to compare
-the effect of Windows, the results of which are shown in Figure \ref{fig:LimitFail}.
+the effect of Windows, the results of which are shown in Figure~\ref{fig:LimitFail}.
-On the left side of Figure \ref{fig:LimitFail}, it can be seen that while
+On the left side of Figure~\ref{fig:LimitFail}, it can be seen that while
non-Win32 non-limited nodes do exhibit higher failure rates than the limited
-nodes in Figure \ref{fig:BwLimited}, the bulk of the failure is due to the
+nodes in Figure~\ref{fig:BwLimited}, the bulk of the failure is due to the
Windows non-limited nodes. Furthermore, on the right of Figure
\ref{fig:LimitFail}, it can be seen that Limited Windows nodes perform
significantly better than non-limited, though again not quite on par with
-limited nodes from Figure \ref{fig:BwLimited}. This could be due to the
+limited nodes from Figure~\ref{fig:BwLimited}. This could be due to the
limited nodes' operators ensuring that they set their bandwidth rate below the
point at which Tor begins to experience performance problems or otherwise slow
down their system.
@@ -385,7 +375,7 @@ bandwidth limits below their connection's capacity, and that we need to ensure
that the Vidalia UI is clear enough for Windows users to be able to set
limits properly, and understand the importance of doing so.
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
\includegraphics{BadNodes.pdf}
\includegraphics{BadNodesWin.pdf}
@@ -398,7 +388,7 @@ proportion of non-limited and Windows nodes in each percentile slice in Figure
\ref{fig:BadNodes}. On the left is the combination of non-limited and Windows
nodes, and on the right is Windows nodes that are non-limited. It can be seen
that the amount of Windows non-limited nodes roughly correspond to the level
-of failure rates from the right side of Figure \ref{fig:Failure}. Of course,
+of failure rates from the right side of Figure~\ref{fig:Failure}. Of course,
correlation does not imply causation, but it does give us a starting point to
work with.
@@ -413,7 +403,7 @@ It would be much better if we could use a balancing metric or metrics, and use
them directly to alter client load allocation to correct for arbitrary
unbalancing.
-\begin{figure}[htp]
+\begin{figure}[ht]
\centering
\includegraphics{StreamBwBar2.pdf}
\caption{Stream bandwidth capacity as measured by recent feedback scan}
@@ -421,7 +411,7 @@ unbalancing.
\end{figure}
In a well-balanced network, all streams should receive the same bandwidth.
-It can clearly be seen from Figure \ref{fig:StreamBw} that this is not the
+It can clearly be seen from Figure~\ref{fig:StreamBw} that this is not the
case, and that some segments of the network are providing clients with
much better capacities than others.
@@ -500,8 +490,9 @@ purposes of creating botnets or mining account credentials.
\subsection{General Methodology}
-\lstset{language=Python}
-\begin{lstlisting}[frame=single]
+\begin{figure}
+\lstset{basicstyle=\footnotesize\ttfamily,language=Python}
+\begin{lstlisting}
TorResult = PerformFetch(Tor, URL, TorAuthSet)
NonTorResult1 = PerformFetch(NonTorIP1, URL, NonTorAuthSet)
if IsPrefix(TorResult, NonTorResult1):
@@ -524,8 +515,12 @@ purposes of creating botnets or mining account credentials.
return OK
return FAIL_MODIFICATION
\end{lstlisting}
+\caption{Pseudocode that all scans follow}
+\label{fig:pseudocode}
+\end{figure}
-In general, all scans follow the pattern in the above pseudocode:
+In general, all scans follow the pattern in the pseudocode in
+Figure~\ref{fig:pseudocode}:
First they perform an operation without Tor. They then perform that same
operation through Tor. If the relevant content matches, it is a success.
Otherwise, they perform the operation again from a new Non-Tor IP but using
@@ -543,7 +538,8 @@ subclassifications of these.
\subsection{HTML and JavaScript Scanning}
-In the case of HTML scanning, we use Beautiful Soup~\cite{BeautifulSoup} to
+In the case of HTML scanning, we use Beautiful Soup%
+\footnote{\url{http://www.crummy.com/software/BeautifulSoup/}} to
strip content down to only tags that can contain plugins, script, or CSS in
order to eliminate localization and content changes from comparison and to
obtain a set of page script, iframe, object, and link tags for recursion.
@@ -561,7 +557,9 @@ Inspector script post-scan.
If the HTML Difference Pruner finds no new Tor differences after pruning, we
rerun the unpruned fetches through a JavaScript Difference Pruner that uses a
-Javascript parser from the Antlr Project~\cite{Javascript.g} to prune
+Javascript parser from the Antlr Project%
+\footnote{\url{http://www.antlr.org/grammar/1206736738015/JavaScript.g}}
+to prune
differences from an AST. This is done to ensure we haven't pruned a tag or
attribute that varies because of minor Javascript differences (such as unique
identifiers embedded in script). If no Tor differences remain, the node has
@@ -687,7 +685,7 @@ circuit scans first. However, certain characteristics may affect circuit
failure and not stream capacity and vice-versa, so all of the pertinent
results should ideally be repeated with stream bandwidth scans.
-\section{Acknowledgments}
+\section*{Acknowledgments}
We'd like to thank all of our Google Summer of Code students who have
contributed various features to TorFlow: Johannes Renner for his GeoIP-based
@@ -705,9 +703,6 @@ Lastly, we'd like to thank Roger and Nick for having the foresight to design
such a flexible control mechanism for Tor, for their thorough efforts at
documenting it and the rest of Tor, and for Tor in general.
-\bibliographystyle{plain} \bibliography{torflow}
-
-\clearpage
-\appendix
+\bibliography{torflow}
\end{document}
diff --git a/2009/torflow/tortechrep.cls b/2009/torflow/tortechrep.cls
new file mode 120000
index 0000000..4c24db2
--- /dev/null
+++ b/2009/torflow/tortechrep.cls
@@ -0,0 +1 @@
+../../tortechrep.cls
\ No newline at end of file
1
0

[tech-reports/master] Add mostly unmodified version of Mike's HotPETs 2009 report.
by karsten@torproject.org 13 Sep '12
by karsten@torproject.org 13 Sep '12
13 Sep '12
commit 3f885fe071decd80da7e1538dbbfdd31ae3a76fa
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Aug 27 08:16:34 2012 +0200
Add mostly unmodified version of Mike's HotPETs 2009 report.
---
2009/torflow/.gitignore | 3 +
2009/torflow/0-93-100000-buildtimes-res100.pdf | Bin 0 -> 25847 bytes
2009/torflow/BadNodes.pdf | Bin 0 -> 17164 bytes
2009/torflow/BadNodesWin.pdf | Bin 0 -> 17397 bytes
2009/torflow/CircFailure-BwLimit2.pdf | Bin 0 -> 18145 bytes
2009/torflow/CircFailure-LimitWin.pdf | Bin 0 -> 18559 bytes
2009/torflow/CircFailure-Win2.pdf | Bin 0 -> 17851 bytes
2009/torflow/CircFailure-WinLimit.pdf | Bin 0 -> 18360 bytes
2009/torflow/CircFailure-WinMid.pdf | Bin 0 -> 17170 bytes
2009/torflow/CircFailure.pdf | Bin 0 -> 19099 bytes
2009/torflow/CircFailure2.pdf | Bin 0 -> 22478 bytes
2009/torflow/ControlPort2.pdf | Bin 0 -> 18870 bytes
2009/torflow/Extends-BwLimit2.pdf | Bin 0 -> 17849 bytes
2009/torflow/ExtendsBar.pdf | Bin 0 -> 17512 bytes
2009/torflow/ExtendsBar2.pdf | Bin 0 -> 19336 bytes
2009/torflow/PathSupport.pdf | Bin 0 -> 9994 bytes
2009/torflow/StreamBwBar2.pdf | Bin 0 -> 19436 bytes
2009/torflow/llncs.cls | 1016 ++++++++++++++++++++++++
2009/torflow/torflow.bib | 150 ++++
2009/torflow/torflow.tex | 713 +++++++++++++++++
2009/torflow/usenix.sty | 96 +++
21 files changed, 1978 insertions(+), 0 deletions(-)
diff --git a/2009/torflow/.gitignore b/2009/torflow/.gitignore
new file mode 100644
index 0000000..afd7e8c
--- /dev/null
+++ b/2009/torflow/.gitignore
@@ -0,0 +1,3 @@
+torflow.pdf
+torflow-2009-08-07.pdf
+
diff --git a/2009/torflow/0-93-100000-buildtimes-res100.pdf b/2009/torflow/0-93-100000-buildtimes-res100.pdf
new file mode 100644
index 0000000..ae97316
Binary files /dev/null and b/2009/torflow/0-93-100000-buildtimes-res100.pdf differ
diff --git a/2009/torflow/BadNodes.pdf b/2009/torflow/BadNodes.pdf
new file mode 100644
index 0000000..3e6f56d
Binary files /dev/null and b/2009/torflow/BadNodes.pdf differ
diff --git a/2009/torflow/BadNodesWin.pdf b/2009/torflow/BadNodesWin.pdf
new file mode 100644
index 0000000..e7aa5d0
Binary files /dev/null and b/2009/torflow/BadNodesWin.pdf differ
diff --git a/2009/torflow/CircFailure-BwLimit2.pdf b/2009/torflow/CircFailure-BwLimit2.pdf
new file mode 100644
index 0000000..70c729e
Binary files /dev/null and b/2009/torflow/CircFailure-BwLimit2.pdf differ
diff --git a/2009/torflow/CircFailure-LimitWin.pdf b/2009/torflow/CircFailure-LimitWin.pdf
new file mode 100644
index 0000000..ff25ab3
Binary files /dev/null and b/2009/torflow/CircFailure-LimitWin.pdf differ
diff --git a/2009/torflow/CircFailure-Win2.pdf b/2009/torflow/CircFailure-Win2.pdf
new file mode 100644
index 0000000..c7b0e4e
Binary files /dev/null and b/2009/torflow/CircFailure-Win2.pdf differ
diff --git a/2009/torflow/CircFailure-WinLimit.pdf b/2009/torflow/CircFailure-WinLimit.pdf
new file mode 100644
index 0000000..f59ae32
Binary files /dev/null and b/2009/torflow/CircFailure-WinLimit.pdf differ
diff --git a/2009/torflow/CircFailure-WinMid.pdf b/2009/torflow/CircFailure-WinMid.pdf
new file mode 100644
index 0000000..e320c17
Binary files /dev/null and b/2009/torflow/CircFailure-WinMid.pdf differ
diff --git a/2009/torflow/CircFailure.pdf b/2009/torflow/CircFailure.pdf
new file mode 100644
index 0000000..992c04b
Binary files /dev/null and b/2009/torflow/CircFailure.pdf differ
diff --git a/2009/torflow/CircFailure2.pdf b/2009/torflow/CircFailure2.pdf
new file mode 100644
index 0000000..feb32b4
Binary files /dev/null and b/2009/torflow/CircFailure2.pdf differ
diff --git a/2009/torflow/ControlPort2.pdf b/2009/torflow/ControlPort2.pdf
new file mode 100644
index 0000000..2185ee5
Binary files /dev/null and b/2009/torflow/ControlPort2.pdf differ
diff --git a/2009/torflow/Extends-BwLimit2.pdf b/2009/torflow/Extends-BwLimit2.pdf
new file mode 100644
index 0000000..bc7b0c7
Binary files /dev/null and b/2009/torflow/Extends-BwLimit2.pdf differ
diff --git a/2009/torflow/ExtendsBar.pdf b/2009/torflow/ExtendsBar.pdf
new file mode 100644
index 0000000..184ab47
Binary files /dev/null and b/2009/torflow/ExtendsBar.pdf differ
diff --git a/2009/torflow/ExtendsBar2.pdf b/2009/torflow/ExtendsBar2.pdf
new file mode 100644
index 0000000..f8b44a1
Binary files /dev/null and b/2009/torflow/ExtendsBar2.pdf differ
diff --git a/2009/torflow/PathSupport.pdf b/2009/torflow/PathSupport.pdf
new file mode 100644
index 0000000..9b7f877
Binary files /dev/null and b/2009/torflow/PathSupport.pdf differ
diff --git a/2009/torflow/StreamBwBar2.pdf b/2009/torflow/StreamBwBar2.pdf
new file mode 100644
index 0000000..2848786
Binary files /dev/null and b/2009/torflow/StreamBwBar2.pdf differ
diff --git a/2009/torflow/llncs.cls b/2009/torflow/llncs.cls
new file mode 100644
index 0000000..697dd77
--- /dev/null
+++ b/2009/torflow/llncs.cls
@@ -0,0 +1,1016 @@
+% LLNCS DOCUMENT CLASS -- version 2.8
+% for LaTeX2e
+%
+\NeedsTeXFormat{LaTeX2e}[1995/12/01]
+\ProvidesClass{llncs}[2000/05/16 v2.8
+^^JLaTeX document class for Lecture Notes in Computer Science]
+% Options
+\let\if@envcntreset\iffalse
+\DeclareOption{envcountreset}{\let\if@envcntreset\iftrue}
+\DeclareOption{citeauthoryear}{\let\citeauthoryear=Y}
+\DeclareOption{oribibl}{\let\oribibl=Y}
+\let\if@custvec\iftrue
+\DeclareOption{orivec}{\let\if@custvec\iffalse}
+\let\if@envcntsame\iffalse
+\DeclareOption{envcountsame}{\let\if@envcntsame\iftrue}
+\let\if@envcntsect\iffalse
+\DeclareOption{envcountsect}{\let\if@envcntsect\iftrue}
+\let\if@runhead\iffalse
+\DeclareOption{runningheads}{\let\if@runhead\iftrue}
+
+\let\if@openbib\iffalse
+\DeclareOption{openbib}{\let\if@openbib\iftrue}
+
+\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
+
+\ProcessOptions
+
+\LoadClass[twoside]{article}
+\RequirePackage{multicol} % needed for the list of participants, index
+
+\setlength{\textwidth}{12.2cm}
+\setlength{\textheight}{19.3cm}
+
+% Ragged bottom for the actual page
+\def\thisbottomragged{\def\@textbottom{\vskip\z@ plus.0001fil
+\global\let\@textbottom\relax}}
+
+\renewcommand\small{%
+ \@setfontsize\small\@ixpt{11}%
+ \abovedisplayskip 8.5\p@ \@plus3\p@ \@minus4\p@
+ \abovedisplayshortskip \z@ \@plus2\p@
+ \belowdisplayshortskip 4\p@ \@plus2\p@ \@minus2\p@
+ \def\@listi{\leftmargin\leftmargini
+ \parsep 0\p@ \@plus1\p@ \@minus\p@
+ \topsep 8\p@ \@plus2\p@ \@minus4\p@
+ \itemsep0\p@}%
+ \belowdisplayskip \abovedisplayskip
+}
+
+\frenchspacing
+\widowpenalty=10000
+\clubpenalty=10000
+
+\setlength\oddsidemargin {63\p@}
+\setlength\evensidemargin {63\p@}
+\setlength\marginparwidth {90\p@}
+
+\setlength\headsep {16\p@}
+
+\setlength\footnotesep{7.7\p@}
+\setlength\textfloatsep{8mm\@plus 2\p@ \@minus 4\p@}
+\setlength\intextsep {8mm\@plus 2\p@ \@minus 2\p@}
+
+\setcounter{secnumdepth}{2}
+
+\newcounter {chapter}
+\renewcommand\thechapter {\@arabic\c@chapter}
+
+\newif\if@mainmatter \@mainmattertrue
+\newcommand\frontmatter{\cleardoublepage
+ \@mainmatterfalse\pagenumbering{Roman}}
+\newcommand\mainmatter{\cleardoublepage
+ \@mainmattertrue\pagenumbering{arabic}}
+\newcommand\backmatter{\if@openright\cleardoublepage\else\clearpage\fi
+ \@mainmatterfalse}
+
+\renewcommand\part{\cleardoublepage
+ \thispagestyle{empty}%
+ \if@twocolumn
+ \onecolumn
+ \@tempswatrue
+ \else
+ \@tempswafalse
+ \fi
+ \null\vfil
+ \secdef\@part\@spart}
+
+\def\@part[#1]#2{%
+ \ifnum \c@secnumdepth >-2\relax
+ \refstepcounter{part}%
+ \addcontentsline{toc}{part}{\thepart\hspace{1em}#1}%
+ \else
+ \addcontentsline{toc}{part}{#1}%
+ \fi
+ \markboth{}{}%
+ {\centering
+ \interlinepenalty \@M
+ \normalfont
+ \ifnum \c@secnumdepth >-2\relax
+ \huge\bfseries \partname~\thepart
+ \par
+ \vskip 20\p@
+ \fi
+ \Huge \bfseries #2\par}%
+ \@endpart}
+\def\@spart#1{%
+ {\centering
+ \interlinepenalty \@M
+ \normalfont
+ \Huge \bfseries #1\par}%
+ \@endpart}
+\def\@endpart{\vfil\newpage
+ \if@twoside
+ \null
+ \thispagestyle{empty}%
+ \newpage
+ \fi
+ \if@tempswa
+ \twocolumn
+ \fi}
+
+\newcommand\chapter{\clearpage
+ \thispagestyle{empty}%
+ \global\@topnum\z@
+ \@afterindentfalse
+ \secdef\@chapter\@schapter}
+\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
+ \if@mainmatter
+ \refstepcounter{chapter}%
+ \typeout{\(a)chapapp\space\thechapter.}%
+ \addcontentsline{toc}{chapter}%
+ {\protect\numberline{\thechapter}#1}%
+ \else
+ \addcontentsline{toc}{chapter}{#1}%
+ \fi
+ \else
+ \addcontentsline{toc}{chapter}{#1}%
+ \fi
+ \chaptermark{#1}%
+ \addtocontents{lof}{\protect\addvspace{10\p@}}%
+ \addtocontents{lot}{\protect\addvspace{10\p@}}%
+ \if@twocolumn
+ \@topnewpage[\@makechapterhead{#2}]%
+ \else
+ \@makechapterhead{#2}%
+ \@afterheading
+ \fi}
+\def\@makechapterhead#1{%
+% \vspace*{50\p@}%
+ {\centering
+ \ifnum \c@secnumdepth >\m@ne
+ \if@mainmatter
+ \large\bfseries \@chapapp{} \thechapter
+ \par\nobreak
+ \vskip 20\p@
+ \fi
+ \fi
+ \interlinepenalty\@M
+ \Large \bfseries #1\par\nobreak
+ \vskip 40\p@
+ }}
+\def\@schapter#1{\if@twocolumn
+ \@topnewpage[\@makeschapterhead{#1}]%
+ \else
+ \@makeschapterhead{#1}%
+ \@afterheading
+ \fi}
+\def\@makeschapterhead#1{%
+% \vspace*{50\p@}%
+ {\centering
+ \normalfont
+ \interlinepenalty\@M
+ \Large \bfseries #1\par\nobreak
+ \vskip 40\p@
+ }}
+
+\renewcommand\section{\@startsection{section}{1}{\z@}%
+ {-18\p@ \@plus -4\p@ \@minus -4\p@}%
+ {12\p@ \@plus 4\p@ \@minus 4\p@}%
+ {\normalfont\large\bfseries\boldmath
+ \rightskip=\z@ \@plus 8em\pretolerance=10000 }}
+\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
+ {-18\p@ \@plus -4\p@ \@minus -4\p@}%
+ {8\p@ \@plus 4\p@ \@minus 4\p@}%
+ {\normalfont\normalsize\bfseries\boldmath
+ \rightskip=\z@ \@plus 8em\pretolerance=10000 }}
+\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
+ {-18\p@ \@plus -4\p@ \@minus -4\p@}%
+ {-0.5em \@plus -0.22em \@minus -0.1em}%
+ {\normalfont\normalsize\bfseries\boldmath}}
+\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
+ {-12\p@ \@plus -4\p@ \@minus -4\p@}%
+ {-0.5em \@plus -0.22em \@minus -0.1em}%
+ {\normalfont\normalsize\itshape}}
+\renewcommand\subparagraph[1]{\typeout{LLNCS warning: You should not use
+ \string\subparagraph\space with this class}\vskip0.5cm
+You should not use \verb|\subparagraph| with this class.\vskip0.5cm}
+
+\DeclareMathSymbol{\Gamma}{\mathalpha}{letters}{"00}
+\DeclareMathSymbol{\Delta}{\mathalpha}{letters}{"01}
+\DeclareMathSymbol{\Theta}{\mathalpha}{letters}{"02}
+\DeclareMathSymbol{\Lambda}{\mathalpha}{letters}{"03}
+\DeclareMathSymbol{\Xi}{\mathalpha}{letters}{"04}
+\DeclareMathSymbol{\Pi}{\mathalpha}{letters}{"05}
+\DeclareMathSymbol{\Sigma}{\mathalpha}{letters}{"06}
+\DeclareMathSymbol{\Upsilon}{\mathalpha}{letters}{"07}
+\DeclareMathSymbol{\Phi}{\mathalpha}{letters}{"08}
+\DeclareMathSymbol{\Psi}{\mathalpha}{letters}{"09}
+\DeclareMathSymbol{\Omega}{\mathalpha}{letters}{"0A}
+
+\let\footnotesize\small
+
+\if@custvec
+\def\vec#1{\mathchoice{\mbox{\boldmath$\displaystyle#1$}}
+{\mbox{\boldmath$\textstyle#1$}}
+{\mbox{\boldmath$\scriptstyle#1$}}
+{\mbox{\boldmath$\scriptscriptstyle#1$}}}
+\fi
+
+\def\squareforqed{\hbox{\rlap{$\sqcap$}$\sqcup$}}
+\def\qed{\ifmmode\squareforqed\else{\unskip\nobreak\hfil
+\penalty50\hskip1em\null\nobreak\hfil\squareforqed
+\parfillskip=0pt\finalhyphendemerits=0\endgraf}\fi}
+
+\def\getsto{\mathrel{\mathchoice {\vcenter{\offinterlineskip
+\halign{\hfil
+$\displaystyle##$\hfil\cr\gets\cr\to\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr\gets
+\cr\to\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr\gets
+\cr\to\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
+\gets\cr\to\cr}}}}}
+\def\lid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
+$\displaystyle##$\hfil\cr<\cr\noalign{\vskip1.2pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr<\cr
+\noalign{\vskip1.2pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr<\cr
+\noalign{\vskip1pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
+<\cr
+\noalign{\vskip0.9pt}=\cr}}}}}
+\def\gid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
+$\displaystyle##$\hfil\cr>\cr\noalign{\vskip1.2pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr>\cr
+\noalign{\vskip1.2pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr>\cr
+\noalign{\vskip1pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
+>\cr
+\noalign{\vskip0.9pt}=\cr}}}}}
+\def\grole{\mathrel{\mathchoice {\vcenter{\offinterlineskip
+\halign{\hfil
+$\displaystyle##$\hfil\cr>\cr\noalign{\vskip-1pt}<\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr
+>\cr\noalign{\vskip-1pt}<\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr
+>\cr\noalign{\vskip-0.8pt}<\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
+>\cr\noalign{\vskip-0.3pt}<\cr}}}}}
+\def\bbbr{{\rm I\!R}} %reelle Zahlen
+\def\bbbm{{\rm I\!M}}
+\def\bbbn{{\rm I\!N}} %natuerliche Zahlen
+\def\bbbf{{\rm I\!F}}
+\def\bbbh{{\rm I\!H}}
+\def\bbbk{{\rm I\!K}}
+\def\bbbp{{\rm I\!P}}
+\def\bbbone{{\mathchoice {\rm 1\mskip-4mu l} {\rm 1\mskip-4mu l}
+{\rm 1\mskip-4.5mu l} {\rm 1\mskip-5mu l}}}
+\def\bbbc{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm C$}\hbox{\hbox
+to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\textstyle\rm C$}\hbox{\hbox
+to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptstyle\rm C$}\hbox{\hbox
+to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptscriptstyle\rm C$}\hbox{\hbox
+to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}}}
+\def\bbbq{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
+Q$}\hbox{\raise
+0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
+{\setbox0=\hbox{$\textstyle\rm Q$}\hbox{\raise
+0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptstyle\rm Q$}\hbox{\raise
+0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptscriptstyle\rm Q$}\hbox{\raise
+0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}}}
+\def\bbbt{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
+T$}\hbox{\hbox to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\textstyle\rm T$}\hbox{\hbox
+to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptstyle\rm T$}\hbox{\hbox
+to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptscriptstyle\rm T$}\hbox{\hbox
+to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}}}
+\def\bbbs{{\mathchoice
+{\setbox0=\hbox{$\displaystyle \rm S$}\hbox{\raise0.5\ht0\hbox
+to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
+to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
+{\setbox0=\hbox{$\textstyle \rm S$}\hbox{\raise0.5\ht0\hbox
+to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
+to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptstyle \rm S$}\hbox{\raise0.5\ht0\hbox
+to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
+to0pt{\kern0.5\wd0\vrule height0.45\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptscriptstyle\rm S$}\hbox{\raise0.5\ht0\hbox
+to0pt{\kern0.4\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
+to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
+\def\bbbz{{\mathchoice {\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
+{\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
+{\hbox{$\mathsf\scriptstyle Z\kern-0.3em Z$}}
+{\hbox{$\mathsf\scriptscriptstyle Z\kern-0.2em Z$}}}}
+
+\let\ts\,
+
+\setlength\leftmargini {17\p@}
+\setlength\leftmargin {\leftmargini}
+\setlength\leftmarginii {\leftmargini}
+\setlength\leftmarginiii {\leftmargini}
+\setlength\leftmarginiv {\leftmargini}
+\setlength \labelsep {.5em}
+\setlength \labelwidth{\leftmargini}
+\addtolength\labelwidth{-\labelsep}
+
+\def\@listI{\leftmargin\leftmargini
+ \parsep 0\p@ \@plus1\p@ \@minus\p@
+ \topsep 8\p@ \@plus2\p@ \@minus4\p@
+ \itemsep0\p@}
+\let\@listi\@listI
+\@listi
+\def\@listii {\leftmargin\leftmarginii
+ \labelwidth\leftmarginii
+ \advance\labelwidth-\labelsep
+ \topsep 0\p@ \@plus2\p@ \@minus\p@}
+\def\@listiii{\leftmargin\leftmarginiii
+ \labelwidth\leftmarginiii
+ \advance\labelwidth-\labelsep
+ \topsep 0\p@ \@plus\p@\@minus\p@
+ \parsep \z@
+ \partopsep \p@ \@plus\z@ \@minus\p@}
+
+\renewcommand\labelitemi{\normalfont\bfseries --}
+\renewcommand\labelitemii{$\m@th\bullet$}
+
+\setlength\arraycolsep{1.4\p@}
+\setlength\tabcolsep{1.4\p@}
+
+\def\tableofcontents{\chapter*{\contentsname\@mkboth{{\contentsname}}%
+ {{\contentsname}}}
+ \def\authcount##1{\setcounter{auco}{##1}\setcounter{@auth}{1}}
+ \def\lastand{\ifnum\value{auco}=2\relax
+ \unskip{} \andname\
+ \else
+ \unskip \lastandname\
+ \fi}%
+ \def\and{\stepcounter{@auth}\relax
+ \ifnum\value{@auth}=\value{auco}%
+ \lastand
+ \else
+ \unskip,
+ \fi}%
+ \@starttoc{toc}\if@restonecol\twocolumn\fi}
+
+\def\l@part#1#2{\addpenalty{\@secpenalty}%
+ \addvspace{2em plus\p@}% % space above part line
+ \begingroup
+ \parindent \z@
+ \rightskip \z@ plus 5em
+ \hrule\vskip5pt
+ \large % same size as for a contribution heading
+ \bfseries\boldmath % set line in boldface
+ \leavevmode % TeX command to enter horizontal mode.
+ #1\par
+ \vskip5pt
+ \hrule
+ \vskip1pt
+ \nobreak % Never break after part entry
+ \endgroup}
+
+\def\@dotsep{2}
+
+\def\hyperhrefextend{\ifx\hyper@anchor\@undefined\else
+{chapter.\thechapter}\fi}
+
+\def\addnumcontentsmark#1#2#3{%
+\addtocontents{#1}{\protect\contentsline{#2}{\protect\numberline
+ {\thechapter}#3}{\thepage}\hyperhrefextend}}
+\def\addcontentsmark#1#2#3{%
+\addtocontents{#1}{\protect\contentsline{#2}{#3}{\thepage}\hyperhrefextend}}
+\def\addcontentsmarkwop#1#2#3{%
+\addtocontents{#1}{\protect\contentsline{#2}{#3}{0}\hyperhrefextend}}
+
+\def\@adcmk[#1]{\ifcase #1 \or
+\def\@gtempa{\addnumcontentsmark}%
+ \or \def\@gtempa{\addcontentsmark}%
+ \or \def\@gtempa{\addcontentsmarkwop}%
+ \fi\@gtempa{toc}{chapter}}
+\def\addtocmark{\@ifnextchar[{\@adcmk}{\@adcmk[3]}}
+
+\def\l@chapter#1#2{\addpenalty{-\@highpenalty}
+ \vskip 1.0em plus 1pt \@tempdima 1.5em \begingroup
+ \parindent \z@ \rightskip \@pnumwidth
+ \parfillskip -\@pnumwidth
+ \leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
+ {\large\bfseries\boldmath#1}\ifx0#2\hfil\null
+ \else
+ \nobreak
+ \leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
+ \@dotsep mu$}\hfill
+ \nobreak\hbox to\@pnumwidth{\hss #2}%
+ \fi\par
+ \penalty\@highpenalty \endgroup}
+
+\def\l@title#1#2{\addpenalty{-\@highpenalty}
+ \addvspace{8pt plus 1pt}
+ \@tempdima \z@
+ \begingroup
+ \parindent \z@ \rightskip \@tocrmarg
+ \parfillskip -\@tocrmarg
+ \leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
+ #1\nobreak
+ \leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
+ \@dotsep mu$}\hfill
+ \nobreak\hbox to\@pnumwidth{\hss #2}\par
+ \penalty\@highpenalty \endgroup}
+
+\setcounter{tocdepth}{0}
+\newdimen\tocchpnum
+\newdimen\tocsecnum
+\newdimen\tocsectotal
+\newdimen\tocsubsecnum
+\newdimen\tocsubsectotal
+\newdimen\tocsubsubsecnum
+\newdimen\tocsubsubsectotal
+\newdimen\tocparanum
+\newdimen\tocparatotal
+\newdimen\tocsubparanum
+\tocchpnum=\z@ % no chapter numbers
+\tocsecnum=15\p@ % section 88. plus 2.222pt
+\tocsubsecnum=23\p@ % subsection 88.8 plus 2.222pt
+\tocsubsubsecnum=27\p@ % subsubsection 88.8.8 plus 1.444pt
+\tocparanum=35\p@ % paragraph 88.8.8.8 plus 1.666pt
+\tocsubparanum=43\p@ % subparagraph 88.8.8.8.8 plus 1.888pt
+\def\calctocindent{%
+\tocsectotal=\tocchpnum
+\advance\tocsectotal by\tocsecnum
+\tocsubsectotal=\tocsectotal
+\advance\tocsubsectotal by\tocsubsecnum
+\tocsubsubsectotal=\tocsubsectotal
+\advance\tocsubsubsectotal by\tocsubsubsecnum
+\tocparatotal=\tocsubsubsectotal
+\advance\tocparatotal by\tocparanum}
+\calctocindent
+
+\def\l@section{\@dottedtocline{1}{\tocchpnum}{\tocsecnum}}
+\def\l@subsection{\@dottedtocline{2}{\tocsectotal}{\tocsubsecnum}}
+\def\l@subsubsection{\@dottedtocline{3}{\tocsubsectotal}{\tocsubsubsecnum}}
+\def\l@paragraph{\@dottedtocline{4}{\tocsubsubsectotal}{\tocparanum}}
+\def\l@subparagraph{\@dottedtocline{5}{\tocparatotal}{\tocsubparanum}}
+
+\def\listoffigures{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
+ \fi\section*{\listfigurename\@mkboth{{\listfigurename}}{{\listfigurename}}}
+ \@starttoc{lof}\if@restonecol\twocolumn\fi}
+\def\l@figure{\@dottedtocline{1}{0em}{1.5em}}
+
+\def\listoftables{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
+ \fi\section*{\listtablename\@mkboth{{\listtablename}}{{\listtablename}}}
+ \@starttoc{lot}\if@restonecol\twocolumn\fi}
+\let\l@table\l@figure
+
+\renewcommand\listoffigures{%
+ \section*{\listfigurename
+ \@mkboth{\listfigurename}{\listfigurename}}%
+ \@starttoc{lof}%
+ }
+
+\renewcommand\listoftables{%
+ \section*{\listtablename
+ \@mkboth{\listtablename}{\listtablename}}%
+ \@starttoc{lot}%
+ }
+
+\ifx\oribibl\undefined
+\ifx\citeauthoryear\undefined
+\renewenvironment{thebibliography}[1]
+ {\section*{\refname}
+ \def\(a)biblabel##1{##1.}
+ \small
+ \list{\@biblabel{\@arabic\c@enumiv}}%
+ {\settowidth\labelwidth{\@biblabel{#1}}%
+ \leftmargin\labelwidth
+ \advance\leftmargin\labelsep
+ \if@openbib
+ \advance\leftmargin\bibindent
+ \itemindent -\bibindent
+ \listparindent \itemindent
+ \parsep \z@
+ \fi
+ \usecounter{enumiv}%
+ \let\p@enumiv\@empty
+ \renewcommand\theenumiv{\@arabic\c@enumiv}}%
+ \if@openbib
+ \renewcommand\newblock{\par}%
+ \else
+ \renewcommand\newblock{\hskip .11em \(a)plus.33em \(a)minus.07em}%
+ \fi
+ \sloppy\clubpenalty4000\widowpenalty4000%
+ \sfcode`\.=\@m}
+ {\def\@noitemerr
+ {\@latex@warning{Empty `thebibliography' environment}}%
+ \endlist}
+\def\@lbibitem[#1]#2{\item[{[#1]}\hfill]\if@filesw
+ {\let\protect\noexpand\immediate
+ \write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
+\newcount\@tempcntc
+\def\@citex[#1]#2{\if@filesw\immediate\write\@auxout{\string\citation{#2}}\fi
+ \@tempcnta\z@\@tempcntb\m@ne\def\@citea{}\@cite{\@for\@citeb:=#2\do
+ {\@ifundefined
+ {b@\@citeb}{\@citeo\@tempcntb\m@ne\@citea\def\@citea{,}{\bfseries
+ ?}\@warning
+ {Citation `\@citeb' on page \thepage \space undefined}}%
+ {\setbox\z@\hbox{\global\@tempcntc0\csname b@\@citeb\endcsname\relax}%
+ \ifnum\@tempcntc=\z@ \@citeo\@tempcntb\m@ne
+ \@citea\def\@citea{,}\hbox{\csname b@\@citeb\endcsname}%
+ \else
+ \advance\@tempcntb\@ne
+ \ifnum\@tempcntb=\@tempcntc
+ \else\advance\@tempcntb\m@ne\@citeo
+ \@tempcnta\@tempcntc\@tempcntb\@tempcntc\fi\fi}}\@citeo}{#1}}
+\def\@citeo{\ifnum\@tempcnta>\@tempcntb\else
+ \@citea\def\@citea{,\,\hskip\z@skip}%
+ \ifnum\@tempcnta=\@tempcntb\the\@tempcnta\else
+ {\advance\@tempcnta\@ne\ifnum\@tempcnta=\@tempcntb \else
+ \def\@citea{--}\fi
+ \advance\@tempcnta\m@ne\the\@tempcnta\@citea\the\@tempcntb}\fi\fi}
+\else
+\renewenvironment{thebibliography}[1]
+ {\section*{\refname}
+ \small
+ \list{}%
+ {\settowidth\labelwidth{}%
+ \leftmargin\parindent
+ \itemindent=-\parindent
+ \labelsep=\z@
+ \if@openbib
+ \advance\leftmargin\bibindent
+ \itemindent -\bibindent
+ \listparindent \itemindent
+ \parsep \z@
+ \fi
+ \usecounter{enumiv}%
+ \let\p@enumiv\@empty
+ \renewcommand\theenumiv{}}%
+ \if@openbib
+ \renewcommand\newblock{\par}%
+ \else
+ \renewcommand\newblock{\hskip .11em \(a)plus.33em \(a)minus.07em}%
+ \fi
+ \sloppy\clubpenalty4000\widowpenalty4000%
+ \sfcode`\.=\@m}
+ {\def\@noitemerr
+ {\@latex@warning{Empty `thebibliography' environment}}%
+ \endlist}
+ \def\@cite#1{#1}%
+ \def\@lbibitem[#1]#2{\item[]\if@filesw
+ {\def\protect##1{\string ##1\space}\immediate
+ \write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
+ \fi
+\else
+\@cons\@openbib@code{\noexpand\small}
+\fi
+
+\def\idxquad{\hskip 10\p@}% space that divides entry from number
+
+\def\@idxitem{\par\hangindent 10\p@}
+
+\def\subitem{\par\setbox0=\hbox{--\enspace}% second order
+ \noindent\hangindent\wd0\box0}% index entry
+
+\def\subsubitem{\par\setbox0=\hbox{--\,--\enspace}% third
+ \noindent\hangindent\wd0\box0}% order index entry
+
+\def\indexspace{\par \vskip 10\p@ plus5\p@ minus3\p@\relax}
+
+\renewenvironment{theindex}
+ {\@mkboth{\indexname}{\indexname}%
+ \thispagestyle{empty}\parindent\z@
+ \parskip\z@ \@plus .3\p@\relax
+ \let\item\par
+ \def\,{\relax\ifmmode\mskip\thinmuskip
+ \else\hskip0.2em\ignorespaces\fi}%
+ \normalfont\small
+ \begin{multicols}{2}[\@makeschapterhead{\indexname}]%
+ }
+ {\end{multicols}}
+
+\renewcommand\footnoterule{%
+ \kern-3\p@
+ \hrule\@width 2truecm
+ \kern2.6\p@}
+ \newdimen\fnindent
+ \fnindent1em
+\long\def\@makefntext#1{%
+ \parindent \fnindent%
+ \leftskip \fnindent%
+ \noindent
+ \llap{\hb@xt@1em{\hss\@makefnmark\ }}\ignorespaces#1}
+
+\long\def\@makecaption#1#2{%
+ \vskip\abovecaptionskip
+ \sbox\@tempboxa{{\bfseries #1.} #2}%
+ \ifdim \wd\@tempboxa >\hsize
+ {\bfseries #1.} #2\par
+ \else
+ \global \@minipagefalse
+ \hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
+ \fi
+ \vskip\belowcaptionskip}
+
+\def\fps@figure{htbp}
+\def\fnum@figure{\figurename\thinspace\thefigure}
+\def \@floatboxreset {%
+ \reset@font
+ \small
+ \@setnobreak
+ \@setminipage
+}
+\def\fps@table{htbp}
+\def\fnum@table{\tablename~\thetable}
+\renewenvironment{table}
+ {\setlength\abovecaptionskip{0\p@}%
+ \setlength\belowcaptionskip{10\p@}%
+ \@float{table}}
+ {\end@float}
+\renewenvironment{table*}
+ {\setlength\abovecaptionskip{0\p@}%
+ \setlength\belowcaptionskip{10\p@}%
+ \@dblfloat{table}}
+ {\end@dblfloat}
+
+\long\def\@caption#1[#2]#3{\par\addcontentsline{\csname
+ ext@#1\endcsname}{#1}{\protect\numberline{\csname
+ the#1\endcsname}{\ignorespaces #2}}\begingroup
+ \@parboxrestore
+ \@makecaption{\csname fnum@#1\endcsname}{\ignorespaces #3}\par
+ \endgroup}
+
+% LaTeX does not provide a command to enter the authors institute
+% addresses. The \institute command is defined here.
+
+\newcounter{@inst}
+\newcounter{@auth}
+\newcounter{auco}
+\def\andname{and}
+\def\lastandname{\unskip, and}
+\newdimen\instindent
+\newbox\authrun
+\newtoks\authorrunning
+\newtoks\tocauthor
+\newbox\titrun
+\newtoks\titlerunning
+\newtoks\toctitle
+
+\def\clearheadinfo{\gdef\@author{No Author Given}%
+ \gdef\@title{No Title Given}%
+ \gdef\@subtitle{}%
+ \gdef\@institute{No Institute Given}%
+ \gdef\@thanks{}%
+ \global\titlerunning={}\global\authorrunning={}%
+ \global\toctitle={}\global\tocauthor={}}
+
+\def\institute#1{\gdef\@institute{#1}}
+
+\def\institutename{\par
+ \begingroup
+ \parskip=\z@
+ \parindent=\z@
+ \setcounter{@inst}{1}%
+ \def\and{\par\stepcounter{@inst}%
+ \noindent$^{\the@inst}$\enspace\ignorespaces}%
+ \setbox0=\vbox{\def\thanks##1{}\@institute}%
+ \ifnum\c@@inst=1\relax
+ \else
+ \setcounter{footnote}{\c@@inst}%
+ \setcounter{@inst}{1}%
+ \noindent$^{\the@inst}$\enspace
+ \fi
+ \ignorespaces
+ \@institute\par
+ \endgroup}
+
+\def\@fnsymbol#1{\ensuremath{\ifcase#1\or\star\or{\star\star}\or
+ {\star\star\star}\or \dagger\or \ddagger\or
+ \mathchar "278\or \mathchar "27B\or \|\or **\or \dagger\dagger
+ \or \ddagger\ddagger \else\@ctrerr\fi}}
+
+\def\inst#1{\unskip$^{#1}$}
+\def\fnmsep{\unskip$^,$}
+\def\email#1{{\tt#1}}
+\AtBeginDocument{\@ifundefined{url}{\def\url#1{#1}}{}}
+\def\homedir{\~{ }}
+
+\def\subtitle#1{\gdef\@subtitle{#1}}
+\clearheadinfo
+
+\renewcommand\maketitle{\newpage
+ \refstepcounter{chapter}%
+ \stepcounter{section}%
+ \setcounter{section}{0}%
+ \setcounter{subsection}{0}%
+ \setcounter{figure}{0}
+ \setcounter{table}{0}
+ \setcounter{equation}{0}
+ \setcounter{footnote}{0}%
+ \begingroup
+ \parindent=\z@
+ \renewcommand\thefootnote{\@fnsymbol\c@footnote}%
+ \if@twocolumn
+ \ifnum \col@number=\@ne
+ \@maketitle
+ \else
+ \twocolumn[\@maketitle]%
+ \fi
+ \else
+ \newpage
+ \global\@topnum\z@ % Prevents figures from going at top of page.
+ \@maketitle
+ \fi
+ \thispagestyle{empty}\@thanks
+%
+ \def\\{\unskip\ \ignorespaces}\def\inst##1{\unskip{}}%
+ \def\thanks##1{\unskip{}}\def\fnmsep{\unskip}%
+ \instindent=\hsize
+ \advance\instindent by-\headlineindent
+ \if!\the\toctitle!\addcontentsline{toc}{title}{\@title}\else
+ \addcontentsline{toc}{title}{\the\toctitle}\fi
+ \if@runhead
+ \if!\the\titlerunning!\else
+ \edef\@title{\the\titlerunning}%
+ \fi
+ \global\setbox\titrun=\hbox{\small\rm\unboldmath\ignorespaces\@title}%
+ \ifdim\wd\titrun>\instindent
+ \typeout{Title too long for running head. Please supply}%
+ \typeout{a shorter form with \string\titlerunning\space prior to
+ \string\maketitle}%
+ \global\setbox\titrun=\hbox{\small\rm
+ Title Suppressed Due to Excessive Length}%
+ \fi
+ \xdef\@title{\copy\titrun}%
+ \fi
+%
+ \if!\the\tocauthor!\relax
+ {\def\and{\noexpand\protect\noexpand\and}%
+ \protected@xdef\toc@uthor{\@author}}%
+ \else
+ \def\\{\noexpand\protect\noexpand\newline}%
+ \protected@xdef\scratch{\the\tocauthor}%
+ \protected@xdef\toc@uthor{\scratch}%
+ \fi
+ \addtocontents{toc}{{\protect\raggedright\protect\leftskip15\p@
+ \protect\rightskip\@tocrmarg
+ \protect\itshape\toc@uthor\protect\endgraf}}%
+ \if@runhead
+ \if!\the\authorrunning!
+ \value{@inst}=\value{@auth}%
+ \setcounter{@auth}{1}%
+ \else
+ \edef\@author{\the\authorrunning}%
+ \fi
+ \global\setbox\authrun=\hbox{\small\unboldmath\@author\unskip}%
+ \ifdim\wd\authrun>\instindent
+ \typeout{Names of authors too long for running head. Please supply}%
+ \typeout{a shorter form with \string\authorrunning\space prior to
+ \string\maketitle}%
+ \global\setbox\authrun=\hbox{\small\rm
+ Authors Suppressed Due to Excessive Length}%
+ \fi
+ \xdef\@author{\copy\authrun}%
+ \markboth{\@author}{\@title}%
+ \fi
+ \endgroup
+ \setcounter{footnote}{0}%
+ \clearheadinfo}
+%
+\def\@maketitle{\newpage
+ \markboth{}{}%
+ \def\lastand{\ifnum\value{@inst}=2\relax
+ \unskip{} \andname\
+ \else
+ \unskip \lastandname\
+ \fi}%
+ \def\and{\stepcounter{@auth}\relax
+ \ifnum\value{@auth}=\value{@inst}%
+ \lastand
+ \else
+ \unskip,
+ \fi}%
+ \begin{center}%
+ {\Large \bfseries\boldmath
+ \pretolerance=10000
+ \@title \par}\vskip .8cm
+\if!\@subtitle!\else {\large \bfseries\boldmath
+ \vskip -.65cm
+ \pretolerance=10000
+ \@subtitle \par}\vskip .8cm\fi
+ \setbox0=\vbox{\setcounter{@auth}{1}\def\and{\stepcounter{@auth}}%
+ \def\thanks##1{}\@author}%
+ \global\value{@inst}=\value{@auth}%
+ \global\value{auco}=\value{@auth}%
+ \setcounter{@auth}{1}%
+{\lineskip .5em
+\noindent\ignorespaces
+\(a)author\vskip.35cm}
+ {\small\institutename}
+ \end{center}%
+ }
+
+% definition of the "\spnewtheorem" command.
+%
+% Usage:
+%
+% \spnewtheorem{env_nam}{caption}[within]{cap_font}{body_font}
+% or \spnewtheorem{env_nam}[numbered_like]{caption}{cap_font}{body_font}
+% or \spnewtheorem*{env_nam}{caption}{cap_font}{body_font}
+%
+% New is "cap_font" and "body_font". It stands for
+% fontdefinition of the caption and the text itself.
+%
+% "\spnewtheorem*" gives a theorem without number.
+%
+% A defined spnewthoerem environment is used as described
+% by Lamport.
+%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\def\@thmcountersep{}
+\def\(a)thmcounterend{.}
+
+\def\spnewtheorem{\@ifstar{\@sthm}{\@Sthm}}
+
+% definition of \spnewtheorem with number
+
+\def\@spnthm#1#2{%
+ \@ifnextchar[{\@spxnthm{#1}{#2}}{\@spynthm{#1}{#2}}}
+\def\@Sthm#1{\@ifnextchar[{\@spothm{#1}}{\@spnthm{#1}}}
+
+\def\@spxnthm#1#2[#3]#4#5{\expandafter\@ifdefinable\csname #1\endcsname
+ {\@definecounter{#1}\@addtoreset{#1}{#3}%
+ \expandafter\xdef\csname the#1\endcsname{\expandafter\noexpand
+ \csname the#3\endcsname \noexpand\@thmcountersep \@thmcounter{#1}}%
+ \expandafter\xdef\csname #1name\endcsname{#2}%
+ \global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#4}{#5}}%
+ \global\@namedef{end#1}{\@endtheorem}}}
+
+\def\@spynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
+ {\@definecounter{#1}%
+ \expandafter\xdef\csname the#1\endcsname{\@thmcounter{#1}}%
+ \expandafter\xdef\csname #1name\endcsname{#2}%
+ \global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#3}{#4}}%
+ \global\@namedef{end#1}{\@endtheorem}}}
+
+\def\@spothm#1[#2]#3#4#5{%
+ \@ifundefined{c@#2}{\@latexerr{No theorem environment `#2' defined}\@eha}%
+ {\expandafter\@ifdefinable\csname #1\endcsname
+ {\global\@namedef{the#1}{\@nameuse{the#2}}%
+ \expandafter\xdef\csname #1name\endcsname{#3}%
+ \global\@namedef{#1}{\@spthm{#2}{\csname #1name\endcsname}{#4}{#5}}%
+ \global\@namedef{end#1}{\@endtheorem}}}}
+
+\def\@spthm#1#2#3#4{\topsep 7\p@ \@plus2\p@ \@minus4\p@
+\refstepcounter{#1}%
+\@ifnextchar[{\@spythm{#1}{#2}{#3}{#4}}{\@spxthm{#1}{#2}{#3}{#4}}}
+
+\def\@spxthm#1#2#3#4{\@spbegintheorem{#2}{\csname the#1\endcsname}{#3}{#4}%
+ \ignorespaces}
+
+\def\@spythm#1#2#3#4[#5]{\@spopargbegintheorem{#2}{\csname
+ the#1\endcsname}{#5}{#3}{#4}\ignorespaces}
+
+\def\@spbegintheorem#1#2#3#4{\trivlist
+ \item[\hskip\labelsep{#3#1\ #2\@thmcounterend}]#4}
+
+\def\@spopargbegintheorem#1#2#3#4#5{\trivlist
+ \item[\hskip\labelsep{#4#1\ #2}]{#4(#3)\@thmcounterend\ }#5}
+
+% definition of \spnewtheorem* without number
+
+\def\@sthm#1#2{\@Ynthm{#1}{#2}}
+
+\def\@Ynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
+ {\global\@namedef{#1}{\@Thm{\csname #1name\endcsname}{#3}{#4}}%
+ \expandafter\xdef\csname #1name\endcsname{#2}%
+ \global\@namedef{end#1}{\@endtheorem}}}
+
+\def\@Thm#1#2#3{\topsep 7\p@ \@plus2\p@ \@minus4\p@
+\@ifnextchar[{\@Ythm{#1}{#2}{#3}}{\@Xthm{#1}{#2}{#3}}}
+
+\def\@Xthm#1#2#3{\@Begintheorem{#1}{#2}{#3}\ignorespaces}
+
+\def\@Ythm#1#2#3[#4]{\@Opargbegintheorem{#1}
+ {#4}{#2}{#3}\ignorespaces}
+
+\def\@Begintheorem#1#2#3{#3\trivlist
+ \item[\hskip\labelsep{#2#1\@thmcounterend}]}
+
+\def\@Opargbegintheorem#1#2#3#4{#4\trivlist
+ \item[\hskip\labelsep{#3#1}]{#3(#2)\@thmcounterend\ }}
+
+\if@envcntsect
+ \def\(a)thmcountersep{.}
+ \spnewtheorem{theorem}{Theorem}[section]{\bfseries}{\itshape}
+\else
+ \spnewtheorem{theorem}{Theorem}{\bfseries}{\itshape}
+ \if@envcntreset
+ \@addtoreset{theorem}{section}
+ \else
+ \@addtoreset{theorem}{chapter}
+ \fi
+\fi
+
+%definition of divers theorem environments
+\spnewtheorem*{claim}{Claim}{\itshape}{\rmfamily}
+\spnewtheorem*{proof}{Proof}{\itshape}{\rmfamily}
+\if@envcntsame % alle Umgebungen wie Theorem.
+ \def\spn@wtheorem#1#2#3#4{\@spothm{#1}[theorem]{#2}{#3}{#4}}
+\else % alle Umgebungen mit eigenem Zaehler
+ \if@envcntsect % mit section numeriert
+ \def\spn@wtheorem#1#2#3#4{\@spxnthm{#1}{#2}[section]{#3}{#4}}
+ \else % nicht mit section numeriert
+ \if@envcntreset
+ \def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
+ \@addtoreset{#1}{section}}
+ \else
+ \def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
+ \@addtoreset{#1}{chapter}}%
+ \fi
+ \fi
+\fi
+\spn@wtheorem{case}{Case}{\itshape}{\rmfamily}
+\spn@wtheorem{conjecture}{Conjecture}{\itshape}{\rmfamily}
+\spn@wtheorem{corollary}{Corollary}{\bfseries}{\itshape}
+\spn@wtheorem{definition}{Definition}{\bfseries}{\itshape}
+\spn@wtheorem{example}{Example}{\itshape}{\rmfamily}
+\spn@wtheorem{exercise}{Exercise}{\itshape}{\rmfamily}
+\spn@wtheorem{lemma}{Lemma}{\bfseries}{\itshape}
+\spn@wtheorem{note}{Note}{\itshape}{\rmfamily}
+\spn@wtheorem{problem}{Problem}{\itshape}{\rmfamily}
+\spn@wtheorem{property}{Property}{\itshape}{\rmfamily}
+\spn@wtheorem{proposition}{Proposition}{\bfseries}{\itshape}
+\spn@wtheorem{question}{Question}{\itshape}{\rmfamily}
+\spn@wtheorem{solution}{Solution}{\itshape}{\rmfamily}
+\spn@wtheorem{remark}{Remark}{\itshape}{\rmfamily}
+
+\def\@takefromreset#1#2{%
+ \def\@tempa{#1}%
+ \let\@tempd\@elt
+ \def\@elt##1{%
+ \def\@tempb{##1}%
+ \ifx\@tempa\@tempb\else
+ \@addtoreset{##1}{#2}%
+ \fi}%
+ \expandafter\expandafter\let\expandafter\@tempc\csname cl@#2\endcsname
+ \expandafter\def\csname cl@#2\endcsname{}%
+ \@tempc
+ \let\@elt\@tempd}
+
+\def\theopargself{\def\@spopargbegintheorem##1##2##3##4##5{\trivlist
+ \item[\hskip\labelsep{##4##1\ ##2}]{##4##3\@thmcounterend\ }##5}
+ \def\@Opargbegintheorem##1##2##3##4{##4\trivlist
+ \item[\hskip\labelsep{##3##1}]{##3##2\@thmcounterend\ }}
+ }
+
+\renewenvironment{abstract}{%
+ \list{}{\advance\topsep by0.35cm\relax\small
+ \leftmargin=1cm
+ \labelwidth=\z@
+ \listparindent=\z@
+ \itemindent\listparindent
+ \rightmargin\leftmargin}\item[\hskip\labelsep
+ \bfseries\abstractname]}
+ {\endlist}
+\renewcommand{\abstractname}{Abstract.}
+\renewcommand{\contentsname}{Table of Contents}
+\renewcommand{\figurename}{Fig.}
+\renewcommand{\tablename}{Table}
+
+\newdimen\headlineindent % dimension for space between
+\headlineindent=1.166cm % number and text of headings.
+
+\def\ps@headings{\let\@mkboth\@gobbletwo
+ \let\@oddfoot\@empty\let\@evenfoot\@empty
+ \def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
+ \leftmark\hfil}
+ \def\@oddhead{\normalfont\small\hfil\rightmark\hspace{\headlineindent}%
+ \llap{\thepage}}
+ \def\chaptermark##1{}%
+ \def\sectionmark##1{}%
+ \def\subsectionmark##1{}}
+
+\def\ps@titlepage{\let\@mkboth\@gobbletwo
+ \let\@oddfoot\@empty\let\@evenfoot\@empty
+ \def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
+ \hfil}
+ \def\@oddhead{\normalfont\small\hfil\hspace{\headlineindent}%
+ \llap{\thepage}}
+ \def\chaptermark##1{}%
+ \def\sectionmark##1{}%
+ \def\subsectionmark##1{}}
+
+\if@runhead\ps@headings\else
+\ps@empty\fi
+
+\setlength\arraycolsep{1.4\p@}
+\setlength\tabcolsep{1.4\p@}
+
+\endinput
+
diff --git a/2009/torflow/torflow.bib b/2009/torflow/torflow.bib
new file mode 100644
index 0000000..c8c667e
--- /dev/null
+++ b/2009/torflow/torflow.bib
@@ -0,0 +1,150 @@
+
+@inproceedings{tor-design,
+ title = {{Tor}: The Second-Generation Onion Router},
+ author = {Roger Dingledine and Nick Mathewson and Paul Syverson},
+ booktitle = {Proceedings of the 13th USENIX Security Symposium},
+ year = {2004},
+ month = {August},
+}
+
+@Misc{path-spec,
+ author = {Roger Dingledine and Nick Mathewson},
+ title = {{Tor Path Specifications}},
+ note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/path-spec.txt}},
+}
+
+@Misc{nickm-iocp,
+ key = {nickm-iocp},
+ title = {{Some Notes on Progress with IOCP and Libevent}},
+ author = {Nick Mathewson},
+ note = {\url{https://blog.torproject.org/blog/some-notes-progress-iocp-and-libevent}}
+}
+
+@Misc{murdoch-economics,
+ key = {murdoch-economics},
+ title = {{Economics of Tor performance}},
+ author = {Steven J. Murdoch},
+ note = {\url{http://www.lightbluetouchpaper.org/2007/07/18/economics-of-tor-performance/}}
+}
+
+@Misc{perry-bh07,
+ key = {perry-bh07},
+ title = {{Securing the Tor Network}},
+ author = {Mike Perry},
+ note = {\url{http://www.blackhat.com/presentations/bh-usa-07/Perry/Presentation/bh-usa-07-perry.pdf}}
+}
+
+@Misc{perry-ssh-ortalk,
+ key = {perry-ssh-ortalk},
+ title = {{SSH Key Spoofing}},
+ author = {Mike Perry},
+ note = {\url{http://archives.seul.org/or/talk/Jan-2007/msg00030.html}}
+}
+
+@Misc{control-spec,
+ author = {Roger Dingledine and Nick Mathewson},
+ title = {Tor Control Protocol Specifications},
+ note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/control-spec.txt}},
+}
+
+@Misc{dir-spec,
+ author = {Roger Dingledine and Nick Mathewson},
+ title = {Tor Control Protocol Specifications},
+ note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/dir-spec.txt}},
+}
+
+@Misc{Elixir,
+ key = {Elixir},
+ title = {{Elixir}},
+ note = {\url{http://elixir.ematia.de/trac/wiki}}
+}
+
+@Misc{SQLAlchemy,
+ key = {SQLALchemy},
+ title = {{SQLAlchemy Database Toolkit for Python}},
+ note = {\url{http://www.sqlalchemy.org/}}
+}
+
+@Misc{BeautifulSoup,
+ key = {BeautifulSoup},
+ title = {{Beautiful Soup: Elixir and Tonic}},
+ note = {\url{http://www.crummy.com/software/BeautifulSoup/}}
+}
+
+(a)Misc{Javascript.g,
+ key = {Javascript.g},
+ title = {{Antlr Javascript Grammar}},
+ note = {\url{http://www.antlr.org/grammar/1206736738015/JavaScript.g}}
+}
+
+@mastersthesis{renner-thesis,
+ title = {{Performance-Improved Onion Routing}},
+ author = {Johannes Renner},
+ school = {Aachen Univiversity},
+ year = {2007},
+ month = {September},
+}
+
+@Misc{tor-spec,
+ author = {Roger Dingledine and Nick Mathewson},
+ title = {{Tor Protocol Specifications}},
+ note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/tor-spec.txt}},
+}
+
+@Misc{bug440,
+ author = {Mike Perry},
+ title = {{Guard Nodes Not Weighted By Bandwidth}},
+ note = {\url{http://bugs.torproject.org/flyspray/index.php?do=details\&id=440}}
+}
+
+@Misc{perry-balancing,
+ author = {Mike Perry},
+ title = {{Exit Balancing Patch}},
+ note = {\url{http://archives.seul.org/or/dev/Jul-2007/msg00021.html}}
+}
+
+@Misc{ads-malware,
+ author = {Betsy Schiffman},
+ title = {{Hackers Use Banner Ads on Major Sites}},
+ howpublished = {Wired Magazine},
+ month = {Nov},
+ year = {2007},
+ note = {\url{http://www.wired.com/techbiz/media/news/2007/11/doubleclick}},
+}
+
+@Misc{fu-bh09,
+ key = {fu-bh09},
+ title = {{One Cell is Enough to Break Tor's Anonymity}},
+ author = {Xinwen Fu and Zhen Ling},
+ note = {\url{http://www.blackhat.com/presentations/bh-dc-09/Fu/BlackHat-DC-09-Fu-Break-Tors-Anonymity.pdf}}
+}
+
+@inproceedings{tabriz-denial,
+ author = {Borisov,, Nikita and Danezis,, George and Mittal,, Prateek and Tabriz,, Parisa},
+ title = {Denial of service or denial of security?},
+ booktitle = {CCS '07: Proceedings of the 14th ACM conference on Computer and communications security},
+ year = {2007},
+ isbn = {978-1-59593-703-2},
+ pages = {92--102},
+ location = {Alexandria, Virginia, USA},
+ doi = {http://doi.acm.org/10.1145/1315245.1315258},
+ publisher = {ACM},
+ address = {New York, NY, USA},
+}
+
+@inproceedings{mccoy-low,
+ author = {Bauer,, Kevin and McCoy,, Damon and Grunwald,, Dirk and Kohno,,
+Tadayoshi and Sicker,, Douglas},
+ title = {{Low-resource routing attacks against Tor}},
+ booktitle = {WPES '07: Proceedings of the 2007 ACM workshop on Privacy in
+electronic society},
+ year = {2007},
+ isbn = {978-1-59593-883-1},
+ pages = {11--20},
+ location = {Alexandria, Virginia, USA},
+ doi = {http://doi.acm.org/10.1145/1314333.1314336},
+ publisher = {ACM},
+ address = {New York, NY, USA},
+}
+
+
diff --git a/2009/torflow/torflow.tex b/2009/torflow/torflow.tex
new file mode 100644
index 0000000..1abaebd
--- /dev/null
+++ b/2009/torflow/torflow.tex
@@ -0,0 +1,713 @@
+% XXX: Change to llncs 11pt aka
+%\documentclass{llncs}
+\documentclass[letterpaper,11pt]{llncs}
+%\documentclass{article} % llncs
+
+\usepackage{usenix}
+\usepackage{url}
+\usepackage{graphics}
+\usepackage{amsmath}
+\usepackage{listings}
+
+\setlength{\textwidth}{5.9in}
+\setlength{\textheight}{8.4in}
+\setlength{\topmargin}{.5cm}
+\setlength{\oddsidemargin}{1cm}
+\setlength{\evensidemargin}{1cm}
+
+\newenvironment{tightlist}{\begin{list}{$\bullet$}{
+ \setlength{\itemsep}{0mm}
+ \setlength{\parsep}{0mm}
+ % \setlength{\labelsep}{0mm}
+ % \setlength{\labelwidth}{0mm}
+ % \setlength{\topsep}{0mm}
+ }}{\end{list}}
+
+\begin{document}
+
+\title{TorFlow: Tor Network Analysis}
+
+\author{Mike Perry \\ The Internet \\ mikeperry(a)fscked.org}
+
+%\institute{The Internet}
+
+\maketitle
+\pagestyle{plain}
+
+\begin{abstract}
+ The Tor Network is a low-latency anonymity, privacy, and censorship
+ resistance network whose servers are run by volunteers around the
+ Internet. This distribution of trust creates resilience in the face
+ of compromise and censorship; but it also creates performance,
+ security, and usability issues. The TorFlow suite attempts to address
+ this by providing a library and associated tools for measuring Tor nodes
+ for reliability, capacity and integrity, with the ultimate goal of feeding
+ these measurements back into the Tor directory authorities.
+\end{abstract}
+
+\section{Introduction}
+
+The Tor~\cite{tor-design} Network is a TCP overlay network whose
+infrastructure is run entirely by volunteers. It is the largest public
+anonymity network in the world, consisting of approximately 1500 nodes with a
+total capacity of approximately 3Gbps, and almost 1Gbps of total exit
+throughput. In over 6 years of operation, it has never gone down, and has
+never had a ``flag day''.
+
+Clients that use the Tor network construct paths called circuits that consist
+of 3 nodes (guard, middle, and exit) upon which they route multiple TCP
+streams. The nodes in each circuit are chosen probabilistically according to
+the maximum bandwidth they claim to observe themselves transmit over a 24 hour
+period~\cite{dir-spec}. The Tor client software ensures that no two nodes run
+by the same (cooperating) operator nor any two nodes from the same /16 netmask
+are ever chosen in the same circuit~\cite{path-spec}.
+
+However, the same distributed and heterogeneous nature of the network that
+gives Tor its strength is also a source of security, performance, and
+usability issues. The largest barrier to widespread use of the network is
+performance~\cite{murdoch-economics}, and the biggest user-visible performance
+issue is not actually total capacity, but the high variance in circuit
+performance and non-uniform distribution of network load.~\cite{perry-bh07}
+
+Moreover, there are a non-trivial number of nodes that alter content due to
+misconfiguration, or much less often, due to malice. This most frequently
+comes in the form of truncating TCP streams or failing DNS, but occasionally
+presents itself as SSL spoofing or interception by the upstream ISP. On rare
+occasion, SSH hijacking and web content injection have also been
+observed.~\cite{perry-ssh-ortalk}.
+% XXX: There's another ref for this involving web injection
+
+\section{Overview}
+
+The TorFlow suite attempts to address these issues with 4 major components. At
+the core is the TorCtl control port and path selection library, which provides
+the ability to create paths subject to arbitrary restrictions, measure various
+aspects of node reliability and performance, and store results in-memory or
+in a SQL database of your choice.
+
+In addition, three network scanners are built on top of this library:
+SpeedRacer, BuildTimes, and SoaT (Snakes on a Tor). SpeedRacer measures
+average stream capacity. BuildTimes measures circuit construction speeds and
+failure rates. SoaT is a multi-protocol Tor exit node scanner, for detecting
+misconfigured or malicious exit nodes.
+
+\section{Path Selection and Measurement Library}
+
+The Python-based TorCtl library was initially authored by Nick
+Mathewson to provide programmatic access to the Tor Control Port
+protocol~\cite{control-spec}. It has since been extended to provide the
+ability to use modular components to build up custom path selection algorithms
+and gather statistics on their characteristics.
+
+\subsection{Tor Control Port Protocol}
+
+The Tor Control Port protocol used by TorCtl is a plaintext TCP-based protocol
+that provides well-formed information on Tor client status and events and
+optionally enables control over circuit construction and association of SOCKS
+streams to individual circuits.
+
+\begin{figure}[htp]
+\centering
+\includegraphics{ControlPort2.pdf}
+\caption{Example Tor Control Port connection with representative Tor Traffic.}
+\label{fig:ControlPort2.pdf}
+\end{figure}
+
+\subsection{TorCtl Organization}
+
+\begin{figure}[htp]
+\centering
+\includegraphics{PathSupport.pdf}
+\caption{TorCtl Core Class Diagram}
+\label{fig:PathSupport.pdf}
+\end{figure}
+
+TorCtl provides access to the Tor Control Port at several different layers of
+abstraction. At the lowest layer is the TorCtl Connection object (not shown),
+which is used to send commands to the control port and get responses. TorCtl
+Connections are often associated with a TorCtl EventHandler instance, which is
+passed objects representing parsed Tor Events.
+
+The EventHandler interface can be implemented directly, but is also extended
+by the library to provide a ConsensusTracker, which maintains a Python-based
+representation of the current Tor directory consensus as seen by the Tor
+client.
+
+If a higher level of control over pathing is desired, programmers can choose
+to utilize the Path Support routines by using a PathBuilder instance. The
+PathBuilder is an EventHandler that tracks incoming stream events and builds
+circuits for them according to the direction of a SelectionManager, which is
+queried whenever a new path is needed.
+
+The provided SelectionManager breaks this construction down into
+NodeGenerators managed by a PathSelector. NodeGenerators govern the
+underlying probability distribution from which nodes are drawn. Uniform,
+ordered, and Tor-compatible bandwidth-weighted node generators are provided.
+One NodeGenerator instance exists for each hop in a path of length 2 up to
+arbitrary N.
+
+Each NodeGenerator has a collection of zero to arbitrary N NodeRestrictions
+that are used to restrict which nodes are eligible for generation.
+Restrictions based on node exit policy, directory flags, identity key,
+country, bandwidth, operating system, Tor version, and percentile rank are
+provided. Meta-restrictions such as And, Or, Not, and N of M are also
+provided.
+
+After a candidate path is generated using the NodeGenerators, the PathSelector
+checks this path for validity against any supplied PathRestrictions. These
+include Tor's Subnet16, NodeFamily, and UniqueNode restrictions. Additionally,
+single continent, single country, continent changing, country changing, unique
+country, and unique continent restrictions were contributed by Johannes Renner
+for his research into geolocational path selection~\cite{renner-thesis}.
+
+\subsection{EventListener Statistics Support}
+
+The TorCtl library provides two main mechanisms for gathering statistics.
+These are both implemented as EventListeners which can be attached to
+arbitrary EventHandlers regardless of what is managing path construction
+and stream servicing.
+
+The first is a hand-coded StatsHandler that computes a series of statistics on
+circuit creation time and failure reason, and stream capacity and failure
+reason.
+
+The second is a SQL-based system that stores circuit and/or stream events in
+SQL tables. The SQL system uses Elixir~\cite{Elixir} and
+SQLAlchemy~\cite{SQLAlchemy}, so the backend database can be any that is
+supported by SQLAlchemy (which includes just about every modern database
+backend).
+
+\section{Performance Measurements}
+
+TorFlow currently utilizes the TorCtl support library towards two main classes
+of performance measurement: circuit-based and stream-based. The circuit-based
+measurements are concerned with construction time and reliability. The
+stream-based measurements are concerned primarily with stream capacity.
+
+\subsection{Circuit Construction Speed and Reliability}
+
+As stated previously, one of the major issues with Tor is the high variance of
+performance of nodes and paths. One way to avoid overloaded paths is to simply
+give up on circuits that take too long to build. The problem is that how long
+to wait before giving up is heavily dependent on the local link, as it must be
+traversed three times for each circuit construction due to the telescope-style
+circuit construction Tor employs.~\cite{tor-spec}.
+
+With this in mind, we created a Google Summer of Code project to determine a
+probability distribution that could be used to model Tor circuit construction
+times and then to implement code in the Tor client itself to estimate a
+particular client's distribution parameters and determine a proper circuit
+timeout cutoff for that client that would cut out the slowest X\% of paths
+from usage.
+
+Fallon Chen took this project, and started out by creating a utility called
+BuildTimes using TorCtl. It builds up to N circuits in parallel, subject to
+configurable TorCtl NodeRestrictions. In addition to collecting TorCtl
+aggregate statistics, it also logs circuit extend times to plaintext files
+that can be easily post-processed.
+
+Based on her measurements, we were able to determine that the circuit build
+times can be loosely modeled as a Pareto distribution, as shown in Figure
+\ref{fig:buildtimes} below. They can also be more tightly modeled with a
+Fr\'{e}chet distribution, but the estimators for this distribution are not as
+straightforward as Pareto, and for our purposes the only significant portion
+of the distribution is the tail, which matches well enough.
+
+Moreover, the major irregularity occurring at 6000ms (and also to a lesser
+degree at every second) in the histogram has been identified by Karsten
+Loesing as being a result of our rate limiting algorithm emptying its token
+buckets in sync across the network at the top of each second as opposed to
+continuously. When this is addressed, the Pareto fit should improve.
+
+\begin{figure}[htp]
+\centering
+\includegraphics{0-93-100000-buildtimes-res100.pdf}
+\caption{Network-wide bandwidth-weighted circuit build time distribution (ms).}
+\label{fig:buildtimes}
+\end{figure}
+
+Unfortunately, Fallon's research obligations over the summer prevented her
+from completing the second half of the project and we have not yet
+recalibrated Tor's circuit timeout in the client.
+
+\subsection{Guard Node Rebalancing}
+
+\begin{figure}[htp]
+\centering
+\includegraphics{ExtendsBar.pdf}
+\includegraphics{ExtendsBar2.pdf}
+\caption{Circuit construction times before and after guard rebalancing.}
+\label{fig:Extends}
+\end{figure}
+
+In 2007, an early TorFlow implementation was used to measure circuit
+responsiveness and reliability of 5\% slices of the network (lower percentiles
+indicate higher advertised bandwidth). Repeated measurement showed that nodes
+became progressively less responsive and more failure prone as they got
+slower, up until the 50\% mark, at which point the pattern suddenly stopped.
+This pattern can be seen in the left side of Figures \ref{fig:Extends} and
+\ref{fig:Failure}.
+
+This 50\% mark was the same point where nodes ceased to be considered for
+'guard' status.
+
+We eventually discovered that client guard node selection, instead of being
+weighted based on bandwidth, was actually uniform. We developed a new algorithm
+to fix this, as well as to properly account for weighting both guards and
+exits according to their scarcity when being selected for other positions in
+the network~\cite{bug440,perry-balancing}.
+
+Without an autoupdater, it took over a year for enough clients to upgrade for
+the results to be visible in our scans, but it appears that at least among
+guards, the load is now considerably more uniform.
+
+\begin{figure}[htp]
+\centering
+\includegraphics{CircFailure.pdf}
+\includegraphics{CircFailure2.pdf}
+\caption{Circuit Failure Rates before and after guard rebalancing}
+\label{fig:Failure}
+\end{figure}
+
+However, it is obvious that irregularities still remain. Interestingly, the
+points of very low failure rates in Figure \ref{fig:Failure} correspond to the
+periods between 01:00 and 03:00 PST, when most of the US is asleep, and
+consistently appeared at that time in numerous scans. This seems to suggest we
+should avoid capacity scans during those hours. It also suggests that circuit
+reliability may be dependent on load in a non-linear fashion. One potential
+source for this is CPU load: when Tor detects that is not able to complete
+crypto operations fast enough, it begins dropping circuit creation cells. This
+could explain the sharp difference in high load vs low load conditions for
+circuit failure, but not for stream capacity.
+
+Furthermore, it appears in the right side of Figure \ref{fig:Failure} as
+though the slower 50\% of the network is now exhibiting significantly higher
+failure percentages than the first 50\%. In order to explore this, we ran a
+number of additional circuit failure scans utilizing TorFlow's Node
+Restriction capabilities.
+
+\subsection{Drilling Down with Restrictions}
+
+Our first guess was that middle nodes were bearing more than their proportion
+of directory requests due to changes in client node selection in the guard
+rebalancing fixes mentioned above.
+
+However, circuit construction scans showed this not to be the case. In fact,
+it showed the exact opposite. Nodes with their directory port open did not
+exhibit consistent increase in either circuit failure or extend time over
+nodes without their directory port open, and middle nodes exhibited much less
+circuit failure than guard and exit nodes.
+
+After more investigation and many scans, two consistent failure classes
+emerged: Windows nodes, and non-bandwidth limited nodes, each of which seemed
+to perform a bit worse as Guard and Exit nodes than as the middle nodes.
+
+\begin{figure}[htp]
+\centering
+\includegraphics{CircFailure-Win2.pdf}
+\includegraphics{CircFailure-WinMid.pdf}
+\caption{Circuit failure of Windows nodes}
+\label{fig:WinFail}
+\end{figure}
+
+The Windows node result is not entirely surprising, as it is known that these
+nodes will have difficulty servicing large numbers of sockets using normal
+WinSock~\cite{nickm-iocp}. As can be seen in Figure \ref{fig:WinFail}, these
+nodes exhibit significantly higher circuit failure rates than non-Windows
+nodes, and also predictably fare worse in either the Guard or Exit position,
+where they have to maintain significantly more TCP sockets for clients and
+exit streams, respectively.
+
+There are some aberrations. In particular, the high-end Windows nodes seem to
+be on par with their peers. This is likely due to the higher socket limits of
+server editions of Windows as compared to desktop.
+
+\begin{figure}[htp]
+\centering
+\includegraphics{CircFailure-BwLimit2.pdf}
+\includegraphics{Extends-BwLimit2.pdf}
+\caption{Circuit failure and extend times of bandwidth limited vs non-limited
+nodes}
+\label{fig:BwLimited}
+\end{figure}
+
+Interestingly, as can be seen in the left side of Figure \ref{fig:BwLimited},
+nodes that have configured a specific bandwidth rate limit are considerably
+more reliable than those that set no limit and just fill their upstream to the
+max. One potential reason for this could be that due to Tor's multiplexing of
+streams inside TCP, the backoff properties of TCP are really damaging to the
+ability of circuit creation cells to get through in time. Other possibilities
+include asymmetric bandwidth limits and OS and CPU limits being easier to hit,
+causing failure as opposed to smooth throttling.
+
+Also of interest from the right side of Figure \ref{fig:BwLimited} is the fact
+that despite only emptying their queues once per second, the circuit extend
+latencies of bandwidth-limited nodes are still typically less than their
+non-limited neighbors. This indicates that most of these rate limited nodes
+have more than one second worth of data queued up. It also again hints at the
+possibility that the normal fairness properties of TCP are not functioning
+properly for the non-limited nodes.
+
+Additional scans have also shown that unlike the Windows nodes, non-limited
+nodes exhibit the same failure characteristics in both middle and Guard/Exit
+positions. Furthermore, more failures are caused by timeout as opposed to
+closed connections for the non-limited nodes than for the Windows nodes. These
+two facts seem to indicate that the circuit failure is independent of the
+ability to make a TCP connection for non-limited nodes, and is possibly tied
+to the ability to transfer a create cell through the network and also
+implicate TCP flow control issues.
+
+\begin{figure}[htp]
+\centering
+\includegraphics{CircFailure-LimitWin.pdf}
+\includegraphics{CircFailure-WinLimit.pdf}
+\caption{Circuit failure of Windows versus Non-Limited nodes}
+\label{fig:LimitFail}
+\end{figure}
+
+It is also the case that many of the Windows nodes also do not set
+bandwidth limits for themselves. This led us to perform four scans to compare
+the effect of Windows, the results of which are shown in Figure \ref{fig:LimitFail}.
+
+On the left side of Figure \ref{fig:LimitFail}, it can be seen that while
+non-Win32 non-limited nodes do exhibit higher failure rates than the limited
+nodes in Figure \ref{fig:BwLimited}, the bulk of the failure is due to the
+Windows non-limited nodes. Furthermore, on the right of Figure
+\ref{fig:LimitFail}, it can be seen that Limited Windows nodes perform
+significantly better than non-limited, though again not quite on par with
+limited nodes from Figure \ref{fig:BwLimited}. This could be due to the
+limited nodes' operators ensuring that they set their bandwidth rate below the
+point at which Tor begins to experience performance problems or otherwise slow
+down their system.
+
+This seems to indicate that we need to encourage node operators to set
+bandwidth limits below their connection's capacity, and that we need to ensure
+that the Vidalia UI is clear enough for Windows users to be able to set
+limits properly, and understand the importance of doing so.
+
+\begin{figure}[htp]
+\centering
+\includegraphics{BadNodes.pdf}
+\includegraphics{BadNodesWin.pdf}
+\caption{Density of non-limited and Windows nodes per percentile}
+\label{fig:BadNodes}
+\end{figure}
+
+To help understand the effects on the network as a whole, we broke down the
+proportion of non-limited and Windows nodes in each percentile slice in Figure
+\ref{fig:BadNodes}. On the left is the combination of non-limited and Windows
+nodes, and on the right is Windows nodes that are non-limited. It can be seen
+that the amount of Windows non-limited nodes roughly correspond to the level
+of failure rates from the right side of Figure \ref{fig:Failure}. Of course,
+correlation does not imply causation, but it does give us a starting point to
+work with.
+
+\subsection{Directory Feedback}
+
+Trying to determine the source of unbalancing by guesswork, measurement, and
+experiment is time consuming. Correcting for these discovered issues
+algorithmically is even harder, and is also fragile to other changes in the
+network.
+
+It would be much better if we could use a balancing metric or metrics, and use
+them directly to alter client load allocation to correct for arbitrary
+unbalancing.
+
+\begin{figure}[htp]
+\centering
+\includegraphics{StreamBwBar2.pdf}
+\caption{Stream bandwidth capacity as measured by recent feedback scan}
+\label{fig:StreamBw}
+\end{figure}
+
+In a well-balanced network, all streams should receive the same bandwidth.
+It can clearly be seen from Figure \ref{fig:StreamBw} that this is not the
+case, and that some segments of the network are providing clients with
+much better capacities than others.
+
+Based on this, a good metric to gauge the load of a node relative to its peers
+should be the ratio of its average stream capacity to that of the rest of the
+network. This ratio should represent the ratio of extra load the node is
+carrying over its peers.
+
+The TorCtl SpeedRacer utility produces these ratios. It divides the network
+into 50 node slices based on advertised bandwidth rankings and repeatedly
+fetches a large file through 2-hop Tor circuits created inside this range.
+
+It then uses the SQL support of TorCtl to produce a preliminary ratio for each
+node. To prevent potential sabotage and to preserve fairness, nodes with
+ratios significantly less than 1.0 are filtered from the results of other
+nodes, as are any other slow outlier streams, and the ratios are
+recomputed.
+
+These ratios can then be used to form a feedback loop with the directory
+authorities: a set of scanning authorities will use the ratios to adjust node
+bandwidths in their consensus document while retaining the original values in
+the node descriptors. The authorities will then vote on the official values by
+taking the median of the scanning authority values.
+
+Newer Tor clients (v0.2.1 and above) have already been modified to accept
+these new values as part of work done by Peter Palfrader to reduce descriptor
+size and directory server overhead. The weighted values will cause these new
+clients to choose these nodes less often, due to the probabilistic weighting
+of Tor's node selection algorithm~\cite{path-spec}.
+
+Subsequent passes of the scanner will then use the published value when
+computing new ratios, and their computed ratios should eventually converge to
+1.0.
+
+Because we keep the original values on-hand, we can implement algorithmic
+balancing improvements in tandem with this system without jeopardizing the
+network. All we need to do is see if the new algorithmic changes alter the
+ratios that are being computed for better or for worse.
+
+It should be noted that it is also possible to similarly compute circuit
+failure ratios that can be multiplied with the stream capacity ratios to deal
+with nodes experiencing forms of load other than bandwidth constraint, such as
+those in the preceding section. Our current plan is to perform the stream
+adjustments first, and note what effect, if any, this has on circuit
+reliability, and then introduce those ratio adjustments if needed.
+
+\section{Exit Node Scanning}
+
+The Snakes on a Tor exit scanner performs a series of actions via various exit
+nodes. The current implementation was initially written by Google Summer of
+Code student Aleksei Gorny. It supports scanning exit nodes for modifications
+to SSL, HTML, JavaScript, HTTP Headers, and arbitrary HTTP content.
+
+Target sites are obtained by querying Google and Yahoo for keywords from a
+keyword file and pulling a random selection from those results.
+
+All aspects of the scan are continually checkpointed and serialized as pickled
+Python objects, so that scans can be resumed at any time in the event of code
+modification or failure. A Snake Inspector script examines the pickled
+results and is able to display error classification and differences in a human
+readable format, as well as re-evaluate failures based on changing criteria.
+
+\subsection{Goals}
+
+We face a similar problem scope to antivirus software. It is unreasonable to
+expect to be able to detect all malicious exit nodes on the network. Nodes can
+target specific sites in languages the scanners do not speak, or they can
+target only specific users.
+
+Instead, our goals are essentially twofold: Firstly, we aim for the more
+modest goal of removing exit status of misconfigured or egregiously censored
+nodes. Second, we aim to prevent dragnet user exploitation and unmasking via
+Tor. We want to make it such that there is a high level of risk and effort
+associated with using exploits against large sections of the Tor userbase for
+purposes of creating botnets or mining account credentials.
+
+\subsection{General Methodology}
+
+\lstset{language=Python}
+\begin{lstlisting}[frame=single]
+ TorResult = PerformFetch(Tor, URL, TorAuthSet)
+ NonTorResult1 = PerformFetch(NonTorIP1, URL, NonTorAuthSet)
+ if IsPrefix(TorResult, NonTorResult1):
+ return FAIL_TRUNCATION
+
+ TorResult = StripIrrelevant(TorResult)
+ NonTorResult1 = StripIrrelevant(NonTorResult1)
+ if TorResult == NonTorResult1:
+ return OK
+
+ NonTorResult2 = PerformFetch(NonTorIP2, URL, TorAuthSet)
+ NonTorResult2 = StripIrrelevant(NonTorResult2)
+
+ if DifferencePruner: # Difference Pruning Step (optional)
+ Diffs |= Diff(NonTorResult1, NonTorResult2)
+ NonTorResult2 = Prune(NonTorResult2, Diffs)
+ TorResult = Prune(TorResult, Diffs)
+
+ if NonTorResult2 == TorResult:
+ return OK
+ return FAIL_MODIFICATION
+\end{lstlisting}
+
+In general, all scans follow the pattern in the above pseudocode:
+First they perform an operation without Tor. They then perform that same
+operation through Tor. If the relevant content matches, it is a success.
+Otherwise, they perform the operation again from a new Non-Tor IP but using
+the same credentials (such as cookies) that were used during Tor. Optionally,
+they perform a "Difference Pruning" step that removes items that have changed
+between the two Non-Tor operations from consideration from the second Non-Tor
+fetch. Finally, they compare the Tor fetch to this new Non-Tor fetch. If there
+are no relevant differences, then it is a success. Otherwise, the node is
+marked as a failure.
+
+In reality, we have many more failure types than just truncation and
+modification. There are also DNS failures, various types of network errors,
+timeout errors, HTTP errors, SSL errors, Tor errors, and also
+subclassifications of these.
+
+\subsection{HTML and JavaScript Scanning}
+
+In the case of HTML scanning, we use Beautiful Soup~\cite{BeautifulSoup} to
+strip content down to only tags that can contain plugins, script, or CSS in
+order to eliminate localization and content changes from comparison and to
+obtain a set of page script, iframe, object, and link tags for recursion.
+
+% XXX: This needs to be more precise
+The Difference Pruning step is done by first building sets of HTML tags and
+their attributes seen for a particular URL. If any new tags or attributes
+appear during successive Non-Tor fetches, they are added to the set of
+differences, elements of which then set-subtracted from the Tor fetches.
+
+The HTML Difference Pruner objects persist for the duration of the scan and
+are also serialized, so that differences can continue to be accumulated and
+filtered out, and that initial failures can be corrected by the Snake
+Inspector script post-scan.
+
+If the HTML Difference Pruner finds no new Tor differences after pruning, we
+rerun the unpruned fetches through a JavaScript Difference Pruner that uses a
+Javascript parser from the Antlr Project~\cite{Javascript.g} to prune
+differences from an AST. This is done to ensure we haven't pruned a tag or
+attribute that varies because of minor Javascript differences (such as unique
+identifiers embedded in script). If no Tor differences remain, the node has
+passed.
+
+The Javascript parser and Javascript Difference Pruner are also used for pure
+Javascript files during page element recursion.
+
+\subsection{Filtering False Positives}
+
+Despite the above efforts, false positives inevitably arise. To deal with
+them, we have implemented URL-based filters such that if a particular URL
+causes more than a set percentage of exit nodes to fail a scan, it is
+automatically removed from consideration and the nodes are rescanned with
+fresh URLs.
+
+Additionally, SoaT provides the ability to rescan nodes that were marked as
+failed during any of its previous scans.
+
+\subsection{Results}
+
+By far the most common result are nodes that simply routinely timeout instead
+of completing streams. A close second to this are nodes that truncate streams
+part of the way through. Less common, but still prevalent, are nodes that
+cannot perform DNS resolution. There's also usually one or two nodes injecting
+Javascript that hooks window.open, presumably as part of their antivirus
+software's popup blocking mechanism. On occasion, we'll hit a node that has
+some sort of payment portal up, possibly due to people doing things like
+attempting to run Tor nodes out of fee-based Internet services in hotels,
+coffeshops, or airports.
+
+On the more malicious end of the spectrum, we've seen a couple of nodes that
+spoof SSL, typically with self-signed SSL certificates. Usually these are in
+China, but we have seen one in Europe, and another in Atlanta, Georgia. We've
+also seen one instance of a node spoofing SSH keys.
+
+\section{Future Work}
+
+There are several directions for immediate and long-term future work.
+
+\subsection{Exit Scanning}
+
+Despite our efforts, exit scanning still has a number of weaknesses against
+diligent adversaries.
+
+Firstly, we currently have no ability to recursively fetch URLs constructed by
+Javascript, which means that if an adversary were able to detect any fetches
+generated through them, they would be able to modify the resulting content in
+only these URLs without fear of us noticing. The best way to gain full
+visibility of these URLs is to actually have a real Firefox instance
+controlled by SoaT that gives us a list of URLs to recurse from a given source
+URL. We could also extend this to use Firefox to perform additional Tor
+fetches from an instrumented virtual machine that actually watches for signs
+of proxy bypass, unauthorized disk access, or new executable mappings in the
+Firefox process itself.
+
+Second, we have no visibility behind POST requests and forms. We need to
+figure out a way to either randomly post at forms, or use fixed logins for a
+set of non-SSL webapps.
+
+Third, we currently have very limited visibility into websites that are highly
+dynamic. In particular, websites that produce completely different layouts for
+different countries are often removed from consideration by our URL based
+filters. One thing we can do about this is have country-specific scanners that
+use GeoIP path restrictions to only scan exits in their own country. Another
+might be to delegate trusted exit nodes in each location that can be used to
+fetch content where we normally used the local IP.
+
+Another more serious issue along these lines are the ad networks. Some of them
+exhibit too many changes for our difference pruner to be left with much useful
+content, and thus may be potentially replaced with malicious content and still
+be undetected by our scans. Shipping something like Adblock in the default
+configuration of Tor would essentially eliminate this from our threat model
+(and make our users safer in general, as the ad networks themselves are often
+vectors for malware~\cite{ads-malware}). However, this may introduce political
+complications. Many sites are already trigger-happy to ban the entire Tor
+network from contributing content, and a loss of revenue stream may be all the
+reason they need to ban readers as well.
+
+Fourth, it would be interesting to set up some honeypot accounts that log in
+to POP3 and IMAP accounts only from specific exit IPs, to determine if these
+accounts are ever used outside of the scan.
+
+\subsection{Reliability and Node-Based Directory Feedback}
+
+As we've seen, stream capacity is not the whole story when it comes to node
+load. Nodes can become CPU or file descriptor constrained, both of which will
+cause them to fail circuits but still have reasonable capacity for those that
+get through. In fact, many of the faster nodes on the network max out CPU
+before network capacity, which will cause them to drop create cells and close
+circuits. However, the circuits and streams that do manage to get through will
+have good capacity through these nodes. Does this mean we should weight them
+higher, or should we possibly multiply their stream ratio by an additional
+circuit failure ratio?
+
+Along these lines, there is another class of adversary that we'd like to be
+able to detect as well: Those that fail circuits that don't involve their
+colluding peers~\cite{fu-bh09}. Such adversaries can lie about their bandwidth
+capacity by an amount that is proportional to the amount of circuits that they
+fail~\cite{mccoy-low,tabriz-denial}, and would able to ensure that every byte
+they devote to Tor is devoted to surveiling a compromised path. Worse, their
+inflated bandwidth statistics would not be noticed by our capacity scanners
+because they would be able to lie just enough to compensate for the circuits
+they fail that are not compromised.
+
+It is our intuition that our reliability statistics can help detect these
+attacks, but to have a truly resilient defense, we'd need node based monitoring
+of circuit reliability as opposed to client based, which is prone to
+fingerprinting and detection.
+
+\subsection{We Need More Data!}
+
+We've only just begun to leverage the new TorCtl framework, and for every
+question it answers, there are often two more uncovered as a result. More
+scans need to be done to test various hypotheses to attempt to answer these
+questions.
+
+In particular, the circuit construction scans that shed insight into
+particular trouble-spots in the network should also be repeated as stream
+capacity scans. Because stream capacity scans are considerably slower and more
+taxing on the network, it was much easier to find the trouble spots with
+circuit scans first. However, certain characteristics may affect circuit
+failure and not stream capacity and vice-versa, so all of the pertinent
+results should ideally be repeated with stream bandwidth scans.
+
+\section{Acknowledgments}
+
+We'd like to thank all of our Google Summer of Code students who have
+contributed various features to TorFlow: Johannes Renner for his GeoIP-based
+restrictions and his work in building latency maps of the Tor network, Fallon
+Chen for her work on the BuildTimes utility, and Aleksei Gorny for his work
+on an initial Python rewrite of SoaT. We'd also like to thank Google for
+sponsoring Tor and providing a generous allocation of students year after
+year.
+
+We'd also like to thank Karsten Loesing for his thorough analysis of our
+circuit BuildTimes data and for his Python rewrite of the URL fetching
+piece of SpeedRacer.
+
+Lastly, we'd like to thank Roger and Nick for having the foresight to design
+such a flexible control mechanism for Tor, for their thorough efforts at
+documenting it and the rest of Tor, and for Tor in general.
+
+\bibliographystyle{plain} \bibliography{torflow}
+
+\clearpage
+\appendix
+
+\end{document}
diff --git a/2009/torflow/usenix.sty b/2009/torflow/usenix.sty
new file mode 100644
index 0000000..31cebc0
--- /dev/null
+++ b/2009/torflow/usenix.sty
@@ -0,0 +1,96 @@
+% usenix-2e.sty - to be used with latex2e (the new one) for USENIX.
+% To use this style file, do this:
+%
+% \documentclass[twocolumn]{article}
+% \usepackage{usenix-2e}
+% and put {\rm ....} around the author names.
+%
+% The following definitions are modifications of standard article.sty
+% definitions, arranged to do a better job of matching the USENIX
+% guidelines.
+% It will automatically select two-column mode and the Times-Roman
+% font.
+
+%
+% USENIX papers are two-column.
+% Times-Roman font is nice if you can get it (requires NFSS,
+% which is in latex2e.
+
+%\if@twocolumn\else\input twocolumn.sty\fi
+\usepackage{times}
+
+%
+% USENIX wants margins of: 7/8" side, 1" bottom, and 3/4" top.
+% 0.25" gutter between columns.
+% Gives active areas of 6.75" x 9.25"
+%
+\setlength{\textheight}{9.0in}
+\setlength{\columnsep}{0.25in}
+%%\setlength{\textwidth}{6.75in}
+\setlength{\textwidth}{7.00in}
+%\setlength{\footheight}{0.0in}
+\setlength{\topmargin}{-0.25in}
+\setlength{\headheight}{0.0in}
+\setlength{\headsep}{0.0in}
+\setlength{\evensidemargin}{-0.125in}
+\setlength{\oddsidemargin}{-0.125in}
+
+%
+% Usenix wants no page numbers for submitted papers, so that they can
+% number them themselves.
+%
+\pagestyle{empty}
+
+%
+% Usenix titles are in 14-point bold type, with no date, and with no
+% change in the empty page headers. The whol author section is 12 point
+% italic--- you must use {\rm } around the actual author names to get
+% them in roman.
+%
+\def\maketitle{\par
+ \begingroup
+ \renewcommand\thefootnote{\fnsymbol{footnote}}%
+ \def\@makefnmark{\hbox to\z@{$\m@th^{\@thefnmark}$\hss}}%
+ \long\def\@makefntext##1{\parindent 1em\noindent
+ \hbox to1.8em{\hss$\m@th^{\@thefnmark}$}##1}%
+ \if@twocolumn
+ \twocolumn[\@maketitle]%
+ \else \newpage
+ \global\@topnum\z@
+ \@maketitle \fi\@thanks
+ \endgroup
+ \setcounter{footnote}{0}%
+ \let\maketitle\relax
+ \let\@maketitle\relax
+ \gdef\@thanks{}\gdef\@author{}\gdef\@title{}\let\thanks\relax}
+
+\def\@maketitle{\newpage
+ \vbox to 2.5in{
+ \vspace*{\fill}
+ \vskip 2em
+ \begin{center}%
+ {\Large\bf \@title \par}%
+ \vskip 0.375in minus 0.300in
+ {\large\it
+ \lineskip .5em
+ \begin{tabular}[t]{c}\@author
+ \end{tabular}\par}%
+ \end{center}%
+ \par
+ \vspace*{\fill}
+% \vskip 1.5em
+ }
+}
+
+%
+% The abstract is preceded by a 12-pt bold centered heading
+\def\abstract{\begin{center}%
+{\large\bf \abstractname\vspace{-.5em}\vspace{\z@}}%
+\end{center}}
+\def\endabstract{}
+
+%
+% Main section titles are 12-pt bold. Others can be same or smaller.
+%
+\def\section{\@startsection {section}{1}{\z(a)}{-3.5ex plus-1ex minus
+ -.2ex}{2.3ex plus.2ex}{\reset@font\large\bf}}
1
0
commit 3cab6ea2518fbe7aeac3811f3fc7d4015a5ea01b
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Aug 27 09:53:33 2012 +0200
Remove unused style files.
---
2009/torflow/llncs.cls | 1016 -----------------------------------------------
2009/torflow/usenix.sty | 96 -----
2 files changed, 0 insertions(+), 1112 deletions(-)
diff --git a/2009/torflow/llncs.cls b/2009/torflow/llncs.cls
deleted file mode 100644
index 697dd77..0000000
--- a/2009/torflow/llncs.cls
+++ /dev/null
@@ -1,1016 +0,0 @@
-% LLNCS DOCUMENT CLASS -- version 2.8
-% for LaTeX2e
-%
-\NeedsTeXFormat{LaTeX2e}[1995/12/01]
-\ProvidesClass{llncs}[2000/05/16 v2.8
-^^JLaTeX document class for Lecture Notes in Computer Science]
-% Options
-\let\if@envcntreset\iffalse
-\DeclareOption{envcountreset}{\let\if@envcntreset\iftrue}
-\DeclareOption{citeauthoryear}{\let\citeauthoryear=Y}
-\DeclareOption{oribibl}{\let\oribibl=Y}
-\let\if@custvec\iftrue
-\DeclareOption{orivec}{\let\if@custvec\iffalse}
-\let\if@envcntsame\iffalse
-\DeclareOption{envcountsame}{\let\if@envcntsame\iftrue}
-\let\if@envcntsect\iffalse
-\DeclareOption{envcountsect}{\let\if@envcntsect\iftrue}
-\let\if@runhead\iffalse
-\DeclareOption{runningheads}{\let\if@runhead\iftrue}
-
-\let\if@openbib\iffalse
-\DeclareOption{openbib}{\let\if@openbib\iftrue}
-
-\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
-
-\ProcessOptions
-
-\LoadClass[twoside]{article}
-\RequirePackage{multicol} % needed for the list of participants, index
-
-\setlength{\textwidth}{12.2cm}
-\setlength{\textheight}{19.3cm}
-
-% Ragged bottom for the actual page
-\def\thisbottomragged{\def\@textbottom{\vskip\z@ plus.0001fil
-\global\let\@textbottom\relax}}
-
-\renewcommand\small{%
- \@setfontsize\small\@ixpt{11}%
- \abovedisplayskip 8.5\p@ \@plus3\p@ \@minus4\p@
- \abovedisplayshortskip \z@ \@plus2\p@
- \belowdisplayshortskip 4\p@ \@plus2\p@ \@minus2\p@
- \def\@listi{\leftmargin\leftmargini
- \parsep 0\p@ \@plus1\p@ \@minus\p@
- \topsep 8\p@ \@plus2\p@ \@minus4\p@
- \itemsep0\p@}%
- \belowdisplayskip \abovedisplayskip
-}
-
-\frenchspacing
-\widowpenalty=10000
-\clubpenalty=10000
-
-\setlength\oddsidemargin {63\p@}
-\setlength\evensidemargin {63\p@}
-\setlength\marginparwidth {90\p@}
-
-\setlength\headsep {16\p@}
-
-\setlength\footnotesep{7.7\p@}
-\setlength\textfloatsep{8mm\@plus 2\p@ \@minus 4\p@}
-\setlength\intextsep {8mm\@plus 2\p@ \@minus 2\p@}
-
-\setcounter{secnumdepth}{2}
-
-\newcounter {chapter}
-\renewcommand\thechapter {\@arabic\c@chapter}
-
-\newif\if@mainmatter \@mainmattertrue
-\newcommand\frontmatter{\cleardoublepage
- \@mainmatterfalse\pagenumbering{Roman}}
-\newcommand\mainmatter{\cleardoublepage
- \@mainmattertrue\pagenumbering{arabic}}
-\newcommand\backmatter{\if@openright\cleardoublepage\else\clearpage\fi
- \@mainmatterfalse}
-
-\renewcommand\part{\cleardoublepage
- \thispagestyle{empty}%
- \if@twocolumn
- \onecolumn
- \@tempswatrue
- \else
- \@tempswafalse
- \fi
- \null\vfil
- \secdef\@part\@spart}
-
-\def\@part[#1]#2{%
- \ifnum \c@secnumdepth >-2\relax
- \refstepcounter{part}%
- \addcontentsline{toc}{part}{\thepart\hspace{1em}#1}%
- \else
- \addcontentsline{toc}{part}{#1}%
- \fi
- \markboth{}{}%
- {\centering
- \interlinepenalty \@M
- \normalfont
- \ifnum \c@secnumdepth >-2\relax
- \huge\bfseries \partname~\thepart
- \par
- \vskip 20\p@
- \fi
- \Huge \bfseries #2\par}%
- \@endpart}
-\def\@spart#1{%
- {\centering
- \interlinepenalty \@M
- \normalfont
- \Huge \bfseries #1\par}%
- \@endpart}
-\def\@endpart{\vfil\newpage
- \if@twoside
- \null
- \thispagestyle{empty}%
- \newpage
- \fi
- \if@tempswa
- \twocolumn
- \fi}
-
-\newcommand\chapter{\clearpage
- \thispagestyle{empty}%
- \global\@topnum\z@
- \@afterindentfalse
- \secdef\@chapter\@schapter}
-\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
- \if@mainmatter
- \refstepcounter{chapter}%
- \typeout{\(a)chapapp\space\thechapter.}%
- \addcontentsline{toc}{chapter}%
- {\protect\numberline{\thechapter}#1}%
- \else
- \addcontentsline{toc}{chapter}{#1}%
- \fi
- \else
- \addcontentsline{toc}{chapter}{#1}%
- \fi
- \chaptermark{#1}%
- \addtocontents{lof}{\protect\addvspace{10\p@}}%
- \addtocontents{lot}{\protect\addvspace{10\p@}}%
- \if@twocolumn
- \@topnewpage[\@makechapterhead{#2}]%
- \else
- \@makechapterhead{#2}%
- \@afterheading
- \fi}
-\def\@makechapterhead#1{%
-% \vspace*{50\p@}%
- {\centering
- \ifnum \c@secnumdepth >\m@ne
- \if@mainmatter
- \large\bfseries \@chapapp{} \thechapter
- \par\nobreak
- \vskip 20\p@
- \fi
- \fi
- \interlinepenalty\@M
- \Large \bfseries #1\par\nobreak
- \vskip 40\p@
- }}
-\def\@schapter#1{\if@twocolumn
- \@topnewpage[\@makeschapterhead{#1}]%
- \else
- \@makeschapterhead{#1}%
- \@afterheading
- \fi}
-\def\@makeschapterhead#1{%
-% \vspace*{50\p@}%
- {\centering
- \normalfont
- \interlinepenalty\@M
- \Large \bfseries #1\par\nobreak
- \vskip 40\p@
- }}
-
-\renewcommand\section{\@startsection{section}{1}{\z@}%
- {-18\p@ \@plus -4\p@ \@minus -4\p@}%
- {12\p@ \@plus 4\p@ \@minus 4\p@}%
- {\normalfont\large\bfseries\boldmath
- \rightskip=\z@ \@plus 8em\pretolerance=10000 }}
-\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
- {-18\p@ \@plus -4\p@ \@minus -4\p@}%
- {8\p@ \@plus 4\p@ \@minus 4\p@}%
- {\normalfont\normalsize\bfseries\boldmath
- \rightskip=\z@ \@plus 8em\pretolerance=10000 }}
-\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
- {-18\p@ \@plus -4\p@ \@minus -4\p@}%
- {-0.5em \@plus -0.22em \@minus -0.1em}%
- {\normalfont\normalsize\bfseries\boldmath}}
-\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
- {-12\p@ \@plus -4\p@ \@minus -4\p@}%
- {-0.5em \@plus -0.22em \@minus -0.1em}%
- {\normalfont\normalsize\itshape}}
-\renewcommand\subparagraph[1]{\typeout{LLNCS warning: You should not use
- \string\subparagraph\space with this class}\vskip0.5cm
-You should not use \verb|\subparagraph| with this class.\vskip0.5cm}
-
-\DeclareMathSymbol{\Gamma}{\mathalpha}{letters}{"00}
-\DeclareMathSymbol{\Delta}{\mathalpha}{letters}{"01}
-\DeclareMathSymbol{\Theta}{\mathalpha}{letters}{"02}
-\DeclareMathSymbol{\Lambda}{\mathalpha}{letters}{"03}
-\DeclareMathSymbol{\Xi}{\mathalpha}{letters}{"04}
-\DeclareMathSymbol{\Pi}{\mathalpha}{letters}{"05}
-\DeclareMathSymbol{\Sigma}{\mathalpha}{letters}{"06}
-\DeclareMathSymbol{\Upsilon}{\mathalpha}{letters}{"07}
-\DeclareMathSymbol{\Phi}{\mathalpha}{letters}{"08}
-\DeclareMathSymbol{\Psi}{\mathalpha}{letters}{"09}
-\DeclareMathSymbol{\Omega}{\mathalpha}{letters}{"0A}
-
-\let\footnotesize\small
-
-\if@custvec
-\def\vec#1{\mathchoice{\mbox{\boldmath$\displaystyle#1$}}
-{\mbox{\boldmath$\textstyle#1$}}
-{\mbox{\boldmath$\scriptstyle#1$}}
-{\mbox{\boldmath$\scriptscriptstyle#1$}}}
-\fi
-
-\def\squareforqed{\hbox{\rlap{$\sqcap$}$\sqcup$}}
-\def\qed{\ifmmode\squareforqed\else{\unskip\nobreak\hfil
-\penalty50\hskip1em\null\nobreak\hfil\squareforqed
-\parfillskip=0pt\finalhyphendemerits=0\endgraf}\fi}
-
-\def\getsto{\mathrel{\mathchoice {\vcenter{\offinterlineskip
-\halign{\hfil
-$\displaystyle##$\hfil\cr\gets\cr\to\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr\gets
-\cr\to\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr\gets
-\cr\to\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
-\gets\cr\to\cr}}}}}
-\def\lid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
-$\displaystyle##$\hfil\cr<\cr\noalign{\vskip1.2pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr<\cr
-\noalign{\vskip1.2pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr<\cr
-\noalign{\vskip1pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
-<\cr
-\noalign{\vskip0.9pt}=\cr}}}}}
-\def\gid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
-$\displaystyle##$\hfil\cr>\cr\noalign{\vskip1.2pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr>\cr
-\noalign{\vskip1.2pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr>\cr
-\noalign{\vskip1pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
->\cr
-\noalign{\vskip0.9pt}=\cr}}}}}
-\def\grole{\mathrel{\mathchoice {\vcenter{\offinterlineskip
-\halign{\hfil
-$\displaystyle##$\hfil\cr>\cr\noalign{\vskip-1pt}<\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr
->\cr\noalign{\vskip-1pt}<\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr
->\cr\noalign{\vskip-0.8pt}<\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
->\cr\noalign{\vskip-0.3pt}<\cr}}}}}
-\def\bbbr{{\rm I\!R}} %reelle Zahlen
-\def\bbbm{{\rm I\!M}}
-\def\bbbn{{\rm I\!N}} %natuerliche Zahlen
-\def\bbbf{{\rm I\!F}}
-\def\bbbh{{\rm I\!H}}
-\def\bbbk{{\rm I\!K}}
-\def\bbbp{{\rm I\!P}}
-\def\bbbone{{\mathchoice {\rm 1\mskip-4mu l} {\rm 1\mskip-4mu l}
-{\rm 1\mskip-4.5mu l} {\rm 1\mskip-5mu l}}}
-\def\bbbc{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm C$}\hbox{\hbox
-to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\textstyle\rm C$}\hbox{\hbox
-to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptstyle\rm C$}\hbox{\hbox
-to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptscriptstyle\rm C$}\hbox{\hbox
-to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}}}
-\def\bbbq{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
-Q$}\hbox{\raise
-0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
-{\setbox0=\hbox{$\textstyle\rm Q$}\hbox{\raise
-0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptstyle\rm Q$}\hbox{\raise
-0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptscriptstyle\rm Q$}\hbox{\raise
-0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}}}
-\def\bbbt{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
-T$}\hbox{\hbox to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\textstyle\rm T$}\hbox{\hbox
-to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptstyle\rm T$}\hbox{\hbox
-to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptscriptstyle\rm T$}\hbox{\hbox
-to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}}}
-\def\bbbs{{\mathchoice
-{\setbox0=\hbox{$\displaystyle \rm S$}\hbox{\raise0.5\ht0\hbox
-to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
-to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
-{\setbox0=\hbox{$\textstyle \rm S$}\hbox{\raise0.5\ht0\hbox
-to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
-to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptstyle \rm S$}\hbox{\raise0.5\ht0\hbox
-to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
-to0pt{\kern0.5\wd0\vrule height0.45\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptscriptstyle\rm S$}\hbox{\raise0.5\ht0\hbox
-to0pt{\kern0.4\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
-to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
-\def\bbbz{{\mathchoice {\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
-{\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
-{\hbox{$\mathsf\scriptstyle Z\kern-0.3em Z$}}
-{\hbox{$\mathsf\scriptscriptstyle Z\kern-0.2em Z$}}}}
-
-\let\ts\,
-
-\setlength\leftmargini {17\p@}
-\setlength\leftmargin {\leftmargini}
-\setlength\leftmarginii {\leftmargini}
-\setlength\leftmarginiii {\leftmargini}
-\setlength\leftmarginiv {\leftmargini}
-\setlength \labelsep {.5em}
-\setlength \labelwidth{\leftmargini}
-\addtolength\labelwidth{-\labelsep}
-
-\def\@listI{\leftmargin\leftmargini
- \parsep 0\p@ \@plus1\p@ \@minus\p@
- \topsep 8\p@ \@plus2\p@ \@minus4\p@
- \itemsep0\p@}
-\let\@listi\@listI
-\@listi
-\def\@listii {\leftmargin\leftmarginii
- \labelwidth\leftmarginii
- \advance\labelwidth-\labelsep
- \topsep 0\p@ \@plus2\p@ \@minus\p@}
-\def\@listiii{\leftmargin\leftmarginiii
- \labelwidth\leftmarginiii
- \advance\labelwidth-\labelsep
- \topsep 0\p@ \@plus\p@\@minus\p@
- \parsep \z@
- \partopsep \p@ \@plus\z@ \@minus\p@}
-
-\renewcommand\labelitemi{\normalfont\bfseries --}
-\renewcommand\labelitemii{$\m@th\bullet$}
-
-\setlength\arraycolsep{1.4\p@}
-\setlength\tabcolsep{1.4\p@}
-
-\def\tableofcontents{\chapter*{\contentsname\@mkboth{{\contentsname}}%
- {{\contentsname}}}
- \def\authcount##1{\setcounter{auco}{##1}\setcounter{@auth}{1}}
- \def\lastand{\ifnum\value{auco}=2\relax
- \unskip{} \andname\
- \else
- \unskip \lastandname\
- \fi}%
- \def\and{\stepcounter{@auth}\relax
- \ifnum\value{@auth}=\value{auco}%
- \lastand
- \else
- \unskip,
- \fi}%
- \@starttoc{toc}\if@restonecol\twocolumn\fi}
-
-\def\l@part#1#2{\addpenalty{\@secpenalty}%
- \addvspace{2em plus\p@}% % space above part line
- \begingroup
- \parindent \z@
- \rightskip \z@ plus 5em
- \hrule\vskip5pt
- \large % same size as for a contribution heading
- \bfseries\boldmath % set line in boldface
- \leavevmode % TeX command to enter horizontal mode.
- #1\par
- \vskip5pt
- \hrule
- \vskip1pt
- \nobreak % Never break after part entry
- \endgroup}
-
-\def\@dotsep{2}
-
-\def\hyperhrefextend{\ifx\hyper@anchor\@undefined\else
-{chapter.\thechapter}\fi}
-
-\def\addnumcontentsmark#1#2#3{%
-\addtocontents{#1}{\protect\contentsline{#2}{\protect\numberline
- {\thechapter}#3}{\thepage}\hyperhrefextend}}
-\def\addcontentsmark#1#2#3{%
-\addtocontents{#1}{\protect\contentsline{#2}{#3}{\thepage}\hyperhrefextend}}
-\def\addcontentsmarkwop#1#2#3{%
-\addtocontents{#1}{\protect\contentsline{#2}{#3}{0}\hyperhrefextend}}
-
-\def\@adcmk[#1]{\ifcase #1 \or
-\def\@gtempa{\addnumcontentsmark}%
- \or \def\@gtempa{\addcontentsmark}%
- \or \def\@gtempa{\addcontentsmarkwop}%
- \fi\@gtempa{toc}{chapter}}
-\def\addtocmark{\@ifnextchar[{\@adcmk}{\@adcmk[3]}}
-
-\def\l@chapter#1#2{\addpenalty{-\@highpenalty}
- \vskip 1.0em plus 1pt \@tempdima 1.5em \begingroup
- \parindent \z@ \rightskip \@pnumwidth
- \parfillskip -\@pnumwidth
- \leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
- {\large\bfseries\boldmath#1}\ifx0#2\hfil\null
- \else
- \nobreak
- \leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
- \@dotsep mu$}\hfill
- \nobreak\hbox to\@pnumwidth{\hss #2}%
- \fi\par
- \penalty\@highpenalty \endgroup}
-
-\def\l@title#1#2{\addpenalty{-\@highpenalty}
- \addvspace{8pt plus 1pt}
- \@tempdima \z@
- \begingroup
- \parindent \z@ \rightskip \@tocrmarg
- \parfillskip -\@tocrmarg
- \leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
- #1\nobreak
- \leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
- \@dotsep mu$}\hfill
- \nobreak\hbox to\@pnumwidth{\hss #2}\par
- \penalty\@highpenalty \endgroup}
-
-\setcounter{tocdepth}{0}
-\newdimen\tocchpnum
-\newdimen\tocsecnum
-\newdimen\tocsectotal
-\newdimen\tocsubsecnum
-\newdimen\tocsubsectotal
-\newdimen\tocsubsubsecnum
-\newdimen\tocsubsubsectotal
-\newdimen\tocparanum
-\newdimen\tocparatotal
-\newdimen\tocsubparanum
-\tocchpnum=\z@ % no chapter numbers
-\tocsecnum=15\p@ % section 88. plus 2.222pt
-\tocsubsecnum=23\p@ % subsection 88.8 plus 2.222pt
-\tocsubsubsecnum=27\p@ % subsubsection 88.8.8 plus 1.444pt
-\tocparanum=35\p@ % paragraph 88.8.8.8 plus 1.666pt
-\tocsubparanum=43\p@ % subparagraph 88.8.8.8.8 plus 1.888pt
-\def\calctocindent{%
-\tocsectotal=\tocchpnum
-\advance\tocsectotal by\tocsecnum
-\tocsubsectotal=\tocsectotal
-\advance\tocsubsectotal by\tocsubsecnum
-\tocsubsubsectotal=\tocsubsectotal
-\advance\tocsubsubsectotal by\tocsubsubsecnum
-\tocparatotal=\tocsubsubsectotal
-\advance\tocparatotal by\tocparanum}
-\calctocindent
-
-\def\l@section{\@dottedtocline{1}{\tocchpnum}{\tocsecnum}}
-\def\l@subsection{\@dottedtocline{2}{\tocsectotal}{\tocsubsecnum}}
-\def\l@subsubsection{\@dottedtocline{3}{\tocsubsectotal}{\tocsubsubsecnum}}
-\def\l@paragraph{\@dottedtocline{4}{\tocsubsubsectotal}{\tocparanum}}
-\def\l@subparagraph{\@dottedtocline{5}{\tocparatotal}{\tocsubparanum}}
-
-\def\listoffigures{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
- \fi\section*{\listfigurename\@mkboth{{\listfigurename}}{{\listfigurename}}}
- \@starttoc{lof}\if@restonecol\twocolumn\fi}
-\def\l@figure{\@dottedtocline{1}{0em}{1.5em}}
-
-\def\listoftables{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
- \fi\section*{\listtablename\@mkboth{{\listtablename}}{{\listtablename}}}
- \@starttoc{lot}\if@restonecol\twocolumn\fi}
-\let\l@table\l@figure
-
-\renewcommand\listoffigures{%
- \section*{\listfigurename
- \@mkboth{\listfigurename}{\listfigurename}}%
- \@starttoc{lof}%
- }
-
-\renewcommand\listoftables{%
- \section*{\listtablename
- \@mkboth{\listtablename}{\listtablename}}%
- \@starttoc{lot}%
- }
-
-\ifx\oribibl\undefined
-\ifx\citeauthoryear\undefined
-\renewenvironment{thebibliography}[1]
- {\section*{\refname}
- \def\(a)biblabel##1{##1.}
- \small
- \list{\@biblabel{\@arabic\c@enumiv}}%
- {\settowidth\labelwidth{\@biblabel{#1}}%
- \leftmargin\labelwidth
- \advance\leftmargin\labelsep
- \if@openbib
- \advance\leftmargin\bibindent
- \itemindent -\bibindent
- \listparindent \itemindent
- \parsep \z@
- \fi
- \usecounter{enumiv}%
- \let\p@enumiv\@empty
- \renewcommand\theenumiv{\@arabic\c@enumiv}}%
- \if@openbib
- \renewcommand\newblock{\par}%
- \else
- \renewcommand\newblock{\hskip .11em \(a)plus.33em \(a)minus.07em}%
- \fi
- \sloppy\clubpenalty4000\widowpenalty4000%
- \sfcode`\.=\@m}
- {\def\@noitemerr
- {\@latex@warning{Empty `thebibliography' environment}}%
- \endlist}
-\def\@lbibitem[#1]#2{\item[{[#1]}\hfill]\if@filesw
- {\let\protect\noexpand\immediate
- \write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
-\newcount\@tempcntc
-\def\@citex[#1]#2{\if@filesw\immediate\write\@auxout{\string\citation{#2}}\fi
- \@tempcnta\z@\@tempcntb\m@ne\def\@citea{}\@cite{\@for\@citeb:=#2\do
- {\@ifundefined
- {b@\@citeb}{\@citeo\@tempcntb\m@ne\@citea\def\@citea{,}{\bfseries
- ?}\@warning
- {Citation `\@citeb' on page \thepage \space undefined}}%
- {\setbox\z@\hbox{\global\@tempcntc0\csname b@\@citeb\endcsname\relax}%
- \ifnum\@tempcntc=\z@ \@citeo\@tempcntb\m@ne
- \@citea\def\@citea{,}\hbox{\csname b@\@citeb\endcsname}%
- \else
- \advance\@tempcntb\@ne
- \ifnum\@tempcntb=\@tempcntc
- \else\advance\@tempcntb\m@ne\@citeo
- \@tempcnta\@tempcntc\@tempcntb\@tempcntc\fi\fi}}\@citeo}{#1}}
-\def\@citeo{\ifnum\@tempcnta>\@tempcntb\else
- \@citea\def\@citea{,\,\hskip\z@skip}%
- \ifnum\@tempcnta=\@tempcntb\the\@tempcnta\else
- {\advance\@tempcnta\@ne\ifnum\@tempcnta=\@tempcntb \else
- \def\@citea{--}\fi
- \advance\@tempcnta\m@ne\the\@tempcnta\@citea\the\@tempcntb}\fi\fi}
-\else
-\renewenvironment{thebibliography}[1]
- {\section*{\refname}
- \small
- \list{}%
- {\settowidth\labelwidth{}%
- \leftmargin\parindent
- \itemindent=-\parindent
- \labelsep=\z@
- \if@openbib
- \advance\leftmargin\bibindent
- \itemindent -\bibindent
- \listparindent \itemindent
- \parsep \z@
- \fi
- \usecounter{enumiv}%
- \let\p@enumiv\@empty
- \renewcommand\theenumiv{}}%
- \if@openbib
- \renewcommand\newblock{\par}%
- \else
- \renewcommand\newblock{\hskip .11em \(a)plus.33em \(a)minus.07em}%
- \fi
- \sloppy\clubpenalty4000\widowpenalty4000%
- \sfcode`\.=\@m}
- {\def\@noitemerr
- {\@latex@warning{Empty `thebibliography' environment}}%
- \endlist}
- \def\@cite#1{#1}%
- \def\@lbibitem[#1]#2{\item[]\if@filesw
- {\def\protect##1{\string ##1\space}\immediate
- \write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
- \fi
-\else
-\@cons\@openbib@code{\noexpand\small}
-\fi
-
-\def\idxquad{\hskip 10\p@}% space that divides entry from number
-
-\def\@idxitem{\par\hangindent 10\p@}
-
-\def\subitem{\par\setbox0=\hbox{--\enspace}% second order
- \noindent\hangindent\wd0\box0}% index entry
-
-\def\subsubitem{\par\setbox0=\hbox{--\,--\enspace}% third
- \noindent\hangindent\wd0\box0}% order index entry
-
-\def\indexspace{\par \vskip 10\p@ plus5\p@ minus3\p@\relax}
-
-\renewenvironment{theindex}
- {\@mkboth{\indexname}{\indexname}%
- \thispagestyle{empty}\parindent\z@
- \parskip\z@ \@plus .3\p@\relax
- \let\item\par
- \def\,{\relax\ifmmode\mskip\thinmuskip
- \else\hskip0.2em\ignorespaces\fi}%
- \normalfont\small
- \begin{multicols}{2}[\@makeschapterhead{\indexname}]%
- }
- {\end{multicols}}
-
-\renewcommand\footnoterule{%
- \kern-3\p@
- \hrule\@width 2truecm
- \kern2.6\p@}
- \newdimen\fnindent
- \fnindent1em
-\long\def\@makefntext#1{%
- \parindent \fnindent%
- \leftskip \fnindent%
- \noindent
- \llap{\hb@xt@1em{\hss\@makefnmark\ }}\ignorespaces#1}
-
-\long\def\@makecaption#1#2{%
- \vskip\abovecaptionskip
- \sbox\@tempboxa{{\bfseries #1.} #2}%
- \ifdim \wd\@tempboxa >\hsize
- {\bfseries #1.} #2\par
- \else
- \global \@minipagefalse
- \hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
- \fi
- \vskip\belowcaptionskip}
-
-\def\fps@figure{htbp}
-\def\fnum@figure{\figurename\thinspace\thefigure}
-\def \@floatboxreset {%
- \reset@font
- \small
- \@setnobreak
- \@setminipage
-}
-\def\fps@table{htbp}
-\def\fnum@table{\tablename~\thetable}
-\renewenvironment{table}
- {\setlength\abovecaptionskip{0\p@}%
- \setlength\belowcaptionskip{10\p@}%
- \@float{table}}
- {\end@float}
-\renewenvironment{table*}
- {\setlength\abovecaptionskip{0\p@}%
- \setlength\belowcaptionskip{10\p@}%
- \@dblfloat{table}}
- {\end@dblfloat}
-
-\long\def\@caption#1[#2]#3{\par\addcontentsline{\csname
- ext@#1\endcsname}{#1}{\protect\numberline{\csname
- the#1\endcsname}{\ignorespaces #2}}\begingroup
- \@parboxrestore
- \@makecaption{\csname fnum@#1\endcsname}{\ignorespaces #3}\par
- \endgroup}
-
-% LaTeX does not provide a command to enter the authors institute
-% addresses. The \institute command is defined here.
-
-\newcounter{@inst}
-\newcounter{@auth}
-\newcounter{auco}
-\def\andname{and}
-\def\lastandname{\unskip, and}
-\newdimen\instindent
-\newbox\authrun
-\newtoks\authorrunning
-\newtoks\tocauthor
-\newbox\titrun
-\newtoks\titlerunning
-\newtoks\toctitle
-
-\def\clearheadinfo{\gdef\@author{No Author Given}%
- \gdef\@title{No Title Given}%
- \gdef\@subtitle{}%
- \gdef\@institute{No Institute Given}%
- \gdef\@thanks{}%
- \global\titlerunning={}\global\authorrunning={}%
- \global\toctitle={}\global\tocauthor={}}
-
-\def\institute#1{\gdef\@institute{#1}}
-
-\def\institutename{\par
- \begingroup
- \parskip=\z@
- \parindent=\z@
- \setcounter{@inst}{1}%
- \def\and{\par\stepcounter{@inst}%
- \noindent$^{\the@inst}$\enspace\ignorespaces}%
- \setbox0=\vbox{\def\thanks##1{}\@institute}%
- \ifnum\c@@inst=1\relax
- \else
- \setcounter{footnote}{\c@@inst}%
- \setcounter{@inst}{1}%
- \noindent$^{\the@inst}$\enspace
- \fi
- \ignorespaces
- \@institute\par
- \endgroup}
-
-\def\@fnsymbol#1{\ensuremath{\ifcase#1\or\star\or{\star\star}\or
- {\star\star\star}\or \dagger\or \ddagger\or
- \mathchar "278\or \mathchar "27B\or \|\or **\or \dagger\dagger
- \or \ddagger\ddagger \else\@ctrerr\fi}}
-
-\def\inst#1{\unskip$^{#1}$}
-\def\fnmsep{\unskip$^,$}
-\def\email#1{{\tt#1}}
-\AtBeginDocument{\@ifundefined{url}{\def\url#1{#1}}{}}
-\def\homedir{\~{ }}
-
-\def\subtitle#1{\gdef\@subtitle{#1}}
-\clearheadinfo
-
-\renewcommand\maketitle{\newpage
- \refstepcounter{chapter}%
- \stepcounter{section}%
- \setcounter{section}{0}%
- \setcounter{subsection}{0}%
- \setcounter{figure}{0}
- \setcounter{table}{0}
- \setcounter{equation}{0}
- \setcounter{footnote}{0}%
- \begingroup
- \parindent=\z@
- \renewcommand\thefootnote{\@fnsymbol\c@footnote}%
- \if@twocolumn
- \ifnum \col@number=\@ne
- \@maketitle
- \else
- \twocolumn[\@maketitle]%
- \fi
- \else
- \newpage
- \global\@topnum\z@ % Prevents figures from going at top of page.
- \@maketitle
- \fi
- \thispagestyle{empty}\@thanks
-%
- \def\\{\unskip\ \ignorespaces}\def\inst##1{\unskip{}}%
- \def\thanks##1{\unskip{}}\def\fnmsep{\unskip}%
- \instindent=\hsize
- \advance\instindent by-\headlineindent
- \if!\the\toctitle!\addcontentsline{toc}{title}{\@title}\else
- \addcontentsline{toc}{title}{\the\toctitle}\fi
- \if@runhead
- \if!\the\titlerunning!\else
- \edef\@title{\the\titlerunning}%
- \fi
- \global\setbox\titrun=\hbox{\small\rm\unboldmath\ignorespaces\@title}%
- \ifdim\wd\titrun>\instindent
- \typeout{Title too long for running head. Please supply}%
- \typeout{a shorter form with \string\titlerunning\space prior to
- \string\maketitle}%
- \global\setbox\titrun=\hbox{\small\rm
- Title Suppressed Due to Excessive Length}%
- \fi
- \xdef\@title{\copy\titrun}%
- \fi
-%
- \if!\the\tocauthor!\relax
- {\def\and{\noexpand\protect\noexpand\and}%
- \protected@xdef\toc@uthor{\@author}}%
- \else
- \def\\{\noexpand\protect\noexpand\newline}%
- \protected@xdef\scratch{\the\tocauthor}%
- \protected@xdef\toc@uthor{\scratch}%
- \fi
- \addtocontents{toc}{{\protect\raggedright\protect\leftskip15\p@
- \protect\rightskip\@tocrmarg
- \protect\itshape\toc@uthor\protect\endgraf}}%
- \if@runhead
- \if!\the\authorrunning!
- \value{@inst}=\value{@auth}%
- \setcounter{@auth}{1}%
- \else
- \edef\@author{\the\authorrunning}%
- \fi
- \global\setbox\authrun=\hbox{\small\unboldmath\@author\unskip}%
- \ifdim\wd\authrun>\instindent
- \typeout{Names of authors too long for running head. Please supply}%
- \typeout{a shorter form with \string\authorrunning\space prior to
- \string\maketitle}%
- \global\setbox\authrun=\hbox{\small\rm
- Authors Suppressed Due to Excessive Length}%
- \fi
- \xdef\@author{\copy\authrun}%
- \markboth{\@author}{\@title}%
- \fi
- \endgroup
- \setcounter{footnote}{0}%
- \clearheadinfo}
-%
-\def\@maketitle{\newpage
- \markboth{}{}%
- \def\lastand{\ifnum\value{@inst}=2\relax
- \unskip{} \andname\
- \else
- \unskip \lastandname\
- \fi}%
- \def\and{\stepcounter{@auth}\relax
- \ifnum\value{@auth}=\value{@inst}%
- \lastand
- \else
- \unskip,
- \fi}%
- \begin{center}%
- {\Large \bfseries\boldmath
- \pretolerance=10000
- \@title \par}\vskip .8cm
-\if!\@subtitle!\else {\large \bfseries\boldmath
- \vskip -.65cm
- \pretolerance=10000
- \@subtitle \par}\vskip .8cm\fi
- \setbox0=\vbox{\setcounter{@auth}{1}\def\and{\stepcounter{@auth}}%
- \def\thanks##1{}\@author}%
- \global\value{@inst}=\value{@auth}%
- \global\value{auco}=\value{@auth}%
- \setcounter{@auth}{1}%
-{\lineskip .5em
-\noindent\ignorespaces
-\(a)author\vskip.35cm}
- {\small\institutename}
- \end{center}%
- }
-
-% definition of the "\spnewtheorem" command.
-%
-% Usage:
-%
-% \spnewtheorem{env_nam}{caption}[within]{cap_font}{body_font}
-% or \spnewtheorem{env_nam}[numbered_like]{caption}{cap_font}{body_font}
-% or \spnewtheorem*{env_nam}{caption}{cap_font}{body_font}
-%
-% New is "cap_font" and "body_font". It stands for
-% fontdefinition of the caption and the text itself.
-%
-% "\spnewtheorem*" gives a theorem without number.
-%
-% A defined spnewthoerem environment is used as described
-% by Lamport.
-%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-\def\@thmcountersep{}
-\def\(a)thmcounterend{.}
-
-\def\spnewtheorem{\@ifstar{\@sthm}{\@Sthm}}
-
-% definition of \spnewtheorem with number
-
-\def\@spnthm#1#2{%
- \@ifnextchar[{\@spxnthm{#1}{#2}}{\@spynthm{#1}{#2}}}
-\def\@Sthm#1{\@ifnextchar[{\@spothm{#1}}{\@spnthm{#1}}}
-
-\def\@spxnthm#1#2[#3]#4#5{\expandafter\@ifdefinable\csname #1\endcsname
- {\@definecounter{#1}\@addtoreset{#1}{#3}%
- \expandafter\xdef\csname the#1\endcsname{\expandafter\noexpand
- \csname the#3\endcsname \noexpand\@thmcountersep \@thmcounter{#1}}%
- \expandafter\xdef\csname #1name\endcsname{#2}%
- \global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#4}{#5}}%
- \global\@namedef{end#1}{\@endtheorem}}}
-
-\def\@spynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
- {\@definecounter{#1}%
- \expandafter\xdef\csname the#1\endcsname{\@thmcounter{#1}}%
- \expandafter\xdef\csname #1name\endcsname{#2}%
- \global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#3}{#4}}%
- \global\@namedef{end#1}{\@endtheorem}}}
-
-\def\@spothm#1[#2]#3#4#5{%
- \@ifundefined{c@#2}{\@latexerr{No theorem environment `#2' defined}\@eha}%
- {\expandafter\@ifdefinable\csname #1\endcsname
- {\global\@namedef{the#1}{\@nameuse{the#2}}%
- \expandafter\xdef\csname #1name\endcsname{#3}%
- \global\@namedef{#1}{\@spthm{#2}{\csname #1name\endcsname}{#4}{#5}}%
- \global\@namedef{end#1}{\@endtheorem}}}}
-
-\def\@spthm#1#2#3#4{\topsep 7\p@ \@plus2\p@ \@minus4\p@
-\refstepcounter{#1}%
-\@ifnextchar[{\@spythm{#1}{#2}{#3}{#4}}{\@spxthm{#1}{#2}{#3}{#4}}}
-
-\def\@spxthm#1#2#3#4{\@spbegintheorem{#2}{\csname the#1\endcsname}{#3}{#4}%
- \ignorespaces}
-
-\def\@spythm#1#2#3#4[#5]{\@spopargbegintheorem{#2}{\csname
- the#1\endcsname}{#5}{#3}{#4}\ignorespaces}
-
-\def\@spbegintheorem#1#2#3#4{\trivlist
- \item[\hskip\labelsep{#3#1\ #2\@thmcounterend}]#4}
-
-\def\@spopargbegintheorem#1#2#3#4#5{\trivlist
- \item[\hskip\labelsep{#4#1\ #2}]{#4(#3)\@thmcounterend\ }#5}
-
-% definition of \spnewtheorem* without number
-
-\def\@sthm#1#2{\@Ynthm{#1}{#2}}
-
-\def\@Ynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
- {\global\@namedef{#1}{\@Thm{\csname #1name\endcsname}{#3}{#4}}%
- \expandafter\xdef\csname #1name\endcsname{#2}%
- \global\@namedef{end#1}{\@endtheorem}}}
-
-\def\@Thm#1#2#3{\topsep 7\p@ \@plus2\p@ \@minus4\p@
-\@ifnextchar[{\@Ythm{#1}{#2}{#3}}{\@Xthm{#1}{#2}{#3}}}
-
-\def\@Xthm#1#2#3{\@Begintheorem{#1}{#2}{#3}\ignorespaces}
-
-\def\@Ythm#1#2#3[#4]{\@Opargbegintheorem{#1}
- {#4}{#2}{#3}\ignorespaces}
-
-\def\@Begintheorem#1#2#3{#3\trivlist
- \item[\hskip\labelsep{#2#1\@thmcounterend}]}
-
-\def\@Opargbegintheorem#1#2#3#4{#4\trivlist
- \item[\hskip\labelsep{#3#1}]{#3(#2)\@thmcounterend\ }}
-
-\if@envcntsect
- \def\(a)thmcountersep{.}
- \spnewtheorem{theorem}{Theorem}[section]{\bfseries}{\itshape}
-\else
- \spnewtheorem{theorem}{Theorem}{\bfseries}{\itshape}
- \if@envcntreset
- \@addtoreset{theorem}{section}
- \else
- \@addtoreset{theorem}{chapter}
- \fi
-\fi
-
-%definition of divers theorem environments
-\spnewtheorem*{claim}{Claim}{\itshape}{\rmfamily}
-\spnewtheorem*{proof}{Proof}{\itshape}{\rmfamily}
-\if@envcntsame % alle Umgebungen wie Theorem.
- \def\spn@wtheorem#1#2#3#4{\@spothm{#1}[theorem]{#2}{#3}{#4}}
-\else % alle Umgebungen mit eigenem Zaehler
- \if@envcntsect % mit section numeriert
- \def\spn@wtheorem#1#2#3#4{\@spxnthm{#1}{#2}[section]{#3}{#4}}
- \else % nicht mit section numeriert
- \if@envcntreset
- \def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
- \@addtoreset{#1}{section}}
- \else
- \def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
- \@addtoreset{#1}{chapter}}%
- \fi
- \fi
-\fi
-\spn@wtheorem{case}{Case}{\itshape}{\rmfamily}
-\spn@wtheorem{conjecture}{Conjecture}{\itshape}{\rmfamily}
-\spn@wtheorem{corollary}{Corollary}{\bfseries}{\itshape}
-\spn@wtheorem{definition}{Definition}{\bfseries}{\itshape}
-\spn@wtheorem{example}{Example}{\itshape}{\rmfamily}
-\spn@wtheorem{exercise}{Exercise}{\itshape}{\rmfamily}
-\spn@wtheorem{lemma}{Lemma}{\bfseries}{\itshape}
-\spn@wtheorem{note}{Note}{\itshape}{\rmfamily}
-\spn@wtheorem{problem}{Problem}{\itshape}{\rmfamily}
-\spn@wtheorem{property}{Property}{\itshape}{\rmfamily}
-\spn@wtheorem{proposition}{Proposition}{\bfseries}{\itshape}
-\spn@wtheorem{question}{Question}{\itshape}{\rmfamily}
-\spn@wtheorem{solution}{Solution}{\itshape}{\rmfamily}
-\spn@wtheorem{remark}{Remark}{\itshape}{\rmfamily}
-
-\def\@takefromreset#1#2{%
- \def\@tempa{#1}%
- \let\@tempd\@elt
- \def\@elt##1{%
- \def\@tempb{##1}%
- \ifx\@tempa\@tempb\else
- \@addtoreset{##1}{#2}%
- \fi}%
- \expandafter\expandafter\let\expandafter\@tempc\csname cl@#2\endcsname
- \expandafter\def\csname cl@#2\endcsname{}%
- \@tempc
- \let\@elt\@tempd}
-
-\def\theopargself{\def\@spopargbegintheorem##1##2##3##4##5{\trivlist
- \item[\hskip\labelsep{##4##1\ ##2}]{##4##3\@thmcounterend\ }##5}
- \def\@Opargbegintheorem##1##2##3##4{##4\trivlist
- \item[\hskip\labelsep{##3##1}]{##3##2\@thmcounterend\ }}
- }
-
-\renewenvironment{abstract}{%
- \list{}{\advance\topsep by0.35cm\relax\small
- \leftmargin=1cm
- \labelwidth=\z@
- \listparindent=\z@
- \itemindent\listparindent
- \rightmargin\leftmargin}\item[\hskip\labelsep
- \bfseries\abstractname]}
- {\endlist}
-\renewcommand{\abstractname}{Abstract.}
-\renewcommand{\contentsname}{Table of Contents}
-\renewcommand{\figurename}{Fig.}
-\renewcommand{\tablename}{Table}
-
-\newdimen\headlineindent % dimension for space between
-\headlineindent=1.166cm % number and text of headings.
-
-\def\ps@headings{\let\@mkboth\@gobbletwo
- \let\@oddfoot\@empty\let\@evenfoot\@empty
- \def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
- \leftmark\hfil}
- \def\@oddhead{\normalfont\small\hfil\rightmark\hspace{\headlineindent}%
- \llap{\thepage}}
- \def\chaptermark##1{}%
- \def\sectionmark##1{}%
- \def\subsectionmark##1{}}
-
-\def\ps@titlepage{\let\@mkboth\@gobbletwo
- \let\@oddfoot\@empty\let\@evenfoot\@empty
- \def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
- \hfil}
- \def\@oddhead{\normalfont\small\hfil\hspace{\headlineindent}%
- \llap{\thepage}}
- \def\chaptermark##1{}%
- \def\sectionmark##1{}%
- \def\subsectionmark##1{}}
-
-\if@runhead\ps@headings\else
-\ps@empty\fi
-
-\setlength\arraycolsep{1.4\p@}
-\setlength\tabcolsep{1.4\p@}
-
-\endinput
-
diff --git a/2009/torflow/usenix.sty b/2009/torflow/usenix.sty
deleted file mode 100644
index 31cebc0..0000000
--- a/2009/torflow/usenix.sty
+++ /dev/null
@@ -1,96 +0,0 @@
-% usenix-2e.sty - to be used with latex2e (the new one) for USENIX.
-% To use this style file, do this:
-%
-% \documentclass[twocolumn]{article}
-% \usepackage{usenix-2e}
-% and put {\rm ....} around the author names.
-%
-% The following definitions are modifications of standard article.sty
-% definitions, arranged to do a better job of matching the USENIX
-% guidelines.
-% It will automatically select two-column mode and the Times-Roman
-% font.
-
-%
-% USENIX papers are two-column.
-% Times-Roman font is nice if you can get it (requires NFSS,
-% which is in latex2e.
-
-%\if@twocolumn\else\input twocolumn.sty\fi
-\usepackage{times}
-
-%
-% USENIX wants margins of: 7/8" side, 1" bottom, and 3/4" top.
-% 0.25" gutter between columns.
-% Gives active areas of 6.75" x 9.25"
-%
-\setlength{\textheight}{9.0in}
-\setlength{\columnsep}{0.25in}
-%%\setlength{\textwidth}{6.75in}
-\setlength{\textwidth}{7.00in}
-%\setlength{\footheight}{0.0in}
-\setlength{\topmargin}{-0.25in}
-\setlength{\headheight}{0.0in}
-\setlength{\headsep}{0.0in}
-\setlength{\evensidemargin}{-0.125in}
-\setlength{\oddsidemargin}{-0.125in}
-
-%
-% Usenix wants no page numbers for submitted papers, so that they can
-% number them themselves.
-%
-\pagestyle{empty}
-
-%
-% Usenix titles are in 14-point bold type, with no date, and with no
-% change in the empty page headers. The whol author section is 12 point
-% italic--- you must use {\rm } around the actual author names to get
-% them in roman.
-%
-\def\maketitle{\par
- \begingroup
- \renewcommand\thefootnote{\fnsymbol{footnote}}%
- \def\@makefnmark{\hbox to\z@{$\m@th^{\@thefnmark}$\hss}}%
- \long\def\@makefntext##1{\parindent 1em\noindent
- \hbox to1.8em{\hss$\m@th^{\@thefnmark}$}##1}%
- \if@twocolumn
- \twocolumn[\@maketitle]%
- \else \newpage
- \global\@topnum\z@
- \@maketitle \fi\@thanks
- \endgroup
- \setcounter{footnote}{0}%
- \let\maketitle\relax
- \let\@maketitle\relax
- \gdef\@thanks{}\gdef\@author{}\gdef\@title{}\let\thanks\relax}
-
-\def\@maketitle{\newpage
- \vbox to 2.5in{
- \vspace*{\fill}
- \vskip 2em
- \begin{center}%
- {\Large\bf \@title \par}%
- \vskip 0.375in minus 0.300in
- {\large\it
- \lineskip .5em
- \begin{tabular}[t]{c}\@author
- \end{tabular}\par}%
- \end{center}%
- \par
- \vspace*{\fill}
-% \vskip 1.5em
- }
-}
-
-%
-% The abstract is preceded by a 12-pt bold centered heading
-\def\abstract{\begin{center}%
-{\large\bf \abstractname\vspace{-.5em}\vspace{\z@}}%
-\end{center}}
-\def\endabstract{}
-
-%
-% Main section titles are 12-pt bold. Others can be same or smaller.
-%
-\def\section{\@startsection {section}{1}{\z(a)}{-3.5ex plus-1ex minus
- -.2ex}{2.3ex plus.2ex}{\reset@font\large\bf}}
1
0

[tech-reports/master] Update metrics report to be a Tor Tech Report.
by karsten@torproject.org 13 Sep '12
by karsten@torproject.org 13 Sep '12
13 Sep '12
commit b1ce3bb644ac855003c2758d969560c68ff5739d
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Aug 27 09:53:01 2012 +0200
Update metrics report to be a Tor Tech Report.
---
2009/metrics/llncs.cls | 1190 -------------------------------------------
2009/metrics/metrics.bib | 8 +-
2009/metrics/metrics.tex | 56 ++-
2009/metrics/tortechrep.cls | 1 +
4 files changed, 39 insertions(+), 1216 deletions(-)
diff --git a/2009/metrics/llncs.cls b/2009/metrics/llncs.cls
deleted file mode 100755
index 23fd1c6..0000000
--- a/2009/metrics/llncs.cls
+++ /dev/null
@@ -1,1190 +0,0 @@
-% LLNCS DOCUMENT CLASS -- version 2.14 (17-Aug-2004)
-% Springer Verlag LaTeX2e support for Lecture Notes in Computer Science
-%
-%%
-%% \CharacterTable
-%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
-%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
-%% Digits \0\1\2\3\4\5\6\7\8\9
-%% Exclamation \! Double quote \" Hash (number) \#
-%% Dollar \$ Percent \% Ampersand \&
-%% Acute accent \' Left paren \( Right paren \)
-%% Asterisk \* Plus \+ Comma \,
-%% Minus \- Point \. Solidus \/
-%% Colon \: Semicolon \; Less than \<
-%% Equals \= Greater than \> Question mark \?
-%% Commercial at \@ Left bracket \[ Backslash \\
-%% Right bracket \] Circumflex \^ Underscore \_
-%% Grave accent \` Left brace \{ Vertical bar \|
-%% Right brace \} Tilde \~}
-%%
-\NeedsTeXFormat{LaTeX2e}[1995/12/01]
-\ProvidesClass{llncs}[2004/08/17 v2.14
-^^J LaTeX document class for Lecture Notes in Computer Science]
-% Options
-\let\if@envcntreset\iffalse
-\DeclareOption{envcountreset}{\let\if@envcntreset\iftrue}
-\DeclareOption{citeauthoryear}{\let\citeauthoryear=Y}
-\DeclareOption{oribibl}{\let\oribibl=Y}
-\let\if@custvec\iftrue
-\DeclareOption{orivec}{\let\if@custvec\iffalse}
-\let\if@envcntsame\iffalse
-\DeclareOption{envcountsame}{\let\if@envcntsame\iftrue}
-\let\if@envcntsect\iffalse
-\DeclareOption{envcountsect}{\let\if@envcntsect\iftrue}
-\let\if@runhead\iffalse
-\DeclareOption{runningheads}{\let\if@runhead\iftrue}
-
-\let\if@openbib\iffalse
-\DeclareOption{openbib}{\let\if@openbib\iftrue}
-
-% languages
-\let\switcht@@therlang\relax
-\def\ds@deutsch{\def\switcht@@therlang{\switcht@deutsch}}
-\def\ds@francais{\def\switcht@@therlang{\switcht@francais}}
-
-\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
-
-\ProcessOptions
-
-\LoadClass[twoside]{article}
-\RequirePackage{multicol} % needed for the list of participants, index
-
-\setlength{\textwidth}{12.2cm}
-\setlength{\textheight}{19.3cm}
-\renewcommand\@pnumwidth{2em}
-\renewcommand\(a)tocrmarg{3.5em}
-%
-\def\@dottedtocline#1#2#3#4#5{%
- \ifnum #1>\c@tocdepth \else
- \vskip \z@ \@plus.2\p@
- {\leftskip #2\relax \rightskip \@tocrmarg \advance\rightskip by 0pt plus 2cm
- \parfillskip -\rightskip \pretolerance=10000
- \parindent #2\relax\@afterindenttrue
- \interlinepenalty\@M
- \leavevmode
- \@tempdima #3\relax
- \advance\leftskip \@tempdima \null\nobreak\hskip -\leftskip
- {#4}\nobreak
- \leaders\hbox{$\m@th
- \mkern \@dotsep mu\hbox{.}\mkern \@dotsep
- mu$}\hfill
- \nobreak
- \hb@xt@\@pnumwidth{\hfil\normalfont \normalcolor #5}%
- \par}%
- \fi}
-%
-\def\switcht@albion{%
-\def\abstractname{Abstract.}
-\def\ackname{Acknowledgement.}
-\def\andname{and}
-\def\lastandname{\unskip, and}
-\def\appendixname{Appendix}
-\def\chaptername{Chapter}
-\def\claimname{Claim}
-\def\conjecturename{Conjecture}
-\def\contentsname{Table of Contents}
-\def\corollaryname{Corollary}
-\def\definitionname{Definition}
-\def\examplename{Example}
-\def\exercisename{Exercise}
-\def\figurename{Fig.}
-\def\keywordname{{\bf Key words:}}
-\def\indexname{Index}
-\def\lemmaname{Lemma}
-\def\contriblistname{List of Contributors}
-\def\listfigurename{List of Figures}
-\def\listtablename{List of Tables}
-\def\mailname{{\it Correspondence to\/}:}
-\def\noteaddname{Note added in proof}
-\def\notename{Note}
-\def\partname{Part}
-\def\problemname{Problem}
-\def\proofname{Proof}
-\def\propertyname{Property}
-\def\propositionname{Proposition}
-\def\questionname{Question}
-\def\remarkname{Remark}
-\def\seename{see}
-\def\solutionname{Solution}
-\def\subclassname{{\it Subject Classifications\/}:}
-\def\tablename{Table}
-\def\theoremname{Theorem}}
-\switcht@albion
-% Names of theorem like environments are already defined
-% but must be translated if another language is chosen
-%
-% French section
-\def\switcht@francais{%\typeout{On parle francais.}%
- \def\abstractname{R\'esum\'e.}%
- \def\ackname{Remerciements.}%
- \def\andname{et}%
- \def\lastandname{ et}%
- \def\appendixname{Appendice}
- \def\chaptername{Chapitre}%
- \def\claimname{Pr\'etention}%
- \def\conjecturename{Hypoth\`ese}%
- \def\contentsname{Table des mati\`eres}%
- \def\corollaryname{Corollaire}%
- \def\definitionname{D\'efinition}%
- \def\examplename{Exemple}%
- \def\exercisename{Exercice}%
- \def\figurename{Fig.}%
- \def\keywordname{{\bf Mots-cl\'e:}}
- \def\indexname{Index}
- \def\lemmaname{Lemme}%
- \def\contriblistname{Liste des contributeurs}
- \def\listfigurename{Liste des figures}%
- \def\listtablename{Liste des tables}%
- \def\mailname{{\it Correspondence to\/}:}
- \def\noteaddname{Note ajout\'ee \`a l'\'epreuve}%
- \def\notename{Remarque}%
- \def\partname{Partie}%
- \def\problemname{Probl\`eme}%
- \def\proofname{Preuve}%
- \def\propertyname{Caract\'eristique}%
-%\def\propositionname{Proposition}%
- \def\questionname{Question}%
- \def\remarkname{Remarque}%
- \def\seename{voir}
- \def\solutionname{Solution}%
- \def\subclassname{{\it Subject Classifications\/}:}
- \def\tablename{Tableau}%
- \def\theoremname{Th\'eor\`eme}%
-}
-%
-% German section
-\def\switcht@deutsch{%\typeout{Man spricht deutsch.}%
- \def\abstractname{Zusammenfassung.}%
- \def\ackname{Danksagung.}%
- \def\andname{und}%
- \def\lastandname{ und}%
- \def\appendixname{Anhang}%
- \def\chaptername{Kapitel}%
- \def\claimname{Behauptung}%
- \def\conjecturename{Hypothese}%
- \def\contentsname{Inhaltsverzeichnis}%
- \def\corollaryname{Korollar}%
-%\def\definitionname{Definition}%
- \def\examplename{Beispiel}%
- \def\exercisename{\"Ubung}%
- \def\figurename{Abb.}%
- \def\keywordname{{\bf Schl\"usselw\"orter:}}
- \def\indexname{Index}
-%\def\lemmaname{Lemma}%
- \def\contriblistname{Mitarbeiter}
- \def\listfigurename{Abbildungsverzeichnis}%
- \def\listtablename{Tabellenverzeichnis}%
- \def\mailname{{\it Correspondence to\/}:}
- \def\noteaddname{Nachtrag}%
- \def\notename{Anmerkung}%
- \def\partname{Teil}%
-%\def\problemname{Problem}%
- \def\proofname{Beweis}%
- \def\propertyname{Eigenschaft}%
-%\def\propositionname{Proposition}%
- \def\questionname{Frage}%
- \def\remarkname{Anmerkung}%
- \def\seename{siehe}
- \def\solutionname{L\"osung}%
- \def\subclassname{{\it Subject Classifications\/}:}
- \def\tablename{Tabelle}%
-%\def\theoremname{Theorem}%
-}
-
-% Ragged bottom for the actual page
-\def\thisbottomragged{\def\@textbottom{\vskip\z@ plus.0001fil
-\global\let\@textbottom\relax}}
-
-\renewcommand\small{%
- \@setfontsize\small\@ixpt{11}%
- \abovedisplayskip 8.5\p@ \@plus3\p@ \@minus4\p@
- \abovedisplayshortskip \z@ \@plus2\p@
- \belowdisplayshortskip 4\p@ \@plus2\p@ \@minus2\p@
- \def\@listi{\leftmargin\leftmargini
- \parsep 0\p@ \@plus1\p@ \@minus\p@
- \topsep 8\p@ \@plus2\p@ \@minus4\p@
- \itemsep0\p@}%
- \belowdisplayskip \abovedisplayskip
-}
-
-\frenchspacing
-\widowpenalty=10000
-\clubpenalty=10000
-
-\setlength\oddsidemargin {63\p@}
-\setlength\evensidemargin {63\p@}
-\setlength\marginparwidth {90\p@}
-
-\setlength\headsep {16\p@}
-
-\setlength\footnotesep{7.7\p@}
-\setlength\textfloatsep{8mm\@plus 2\p@ \@minus 4\p@}
-\setlength\intextsep {8mm\@plus 2\p@ \@minus 2\p@}
-
-\setcounter{secnumdepth}{2}
-
-\newcounter {chapter}
-\renewcommand\thechapter {\@arabic\c@chapter}
-
-\newif\if@mainmatter \@mainmattertrue
-\newcommand\frontmatter{\cleardoublepage
- \@mainmatterfalse\pagenumbering{Roman}}
-\newcommand\mainmatter{\cleardoublepage
- \@mainmattertrue\pagenumbering{arabic}}
-\newcommand\backmatter{\if@openright\cleardoublepage\else\clearpage\fi
- \@mainmatterfalse}
-
-\renewcommand\part{\cleardoublepage
- \thispagestyle{empty}%
- \if@twocolumn
- \onecolumn
- \@tempswatrue
- \else
- \@tempswafalse
- \fi
- \null\vfil
- \secdef\@part\@spart}
-
-\def\@part[#1]#2{%
- \ifnum \c@secnumdepth >-2\relax
- \refstepcounter{part}%
- \addcontentsline{toc}{part}{\thepart\hspace{1em}#1}%
- \else
- \addcontentsline{toc}{part}{#1}%
- \fi
- \markboth{}{}%
- {\centering
- \interlinepenalty \@M
- \normalfont
- \ifnum \c@secnumdepth >-2\relax
- \huge\bfseries \partname~\thepart
- \par
- \vskip 20\p@
- \fi
- \Huge \bfseries #2\par}%
- \@endpart}
-\def\@spart#1{%
- {\centering
- \interlinepenalty \@M
- \normalfont
- \Huge \bfseries #1\par}%
- \@endpart}
-\def\@endpart{\vfil\newpage
- \if@twoside
- \null
- \thispagestyle{empty}%
- \newpage
- \fi
- \if@tempswa
- \twocolumn
- \fi}
-
-\newcommand\chapter{\clearpage
- \thispagestyle{empty}%
- \global\@topnum\z@
- \@afterindentfalse
- \secdef\@chapter\@schapter}
-\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
- \if@mainmatter
- \refstepcounter{chapter}%
- \typeout{\(a)chapapp\space\thechapter.}%
- \addcontentsline{toc}{chapter}%
- {\protect\numberline{\thechapter}#1}%
- \else
- \addcontentsline{toc}{chapter}{#1}%
- \fi
- \else
- \addcontentsline{toc}{chapter}{#1}%
- \fi
- \chaptermark{#1}%
- \addtocontents{lof}{\protect\addvspace{10\p@}}%
- \addtocontents{lot}{\protect\addvspace{10\p@}}%
- \if@twocolumn
- \@topnewpage[\@makechapterhead{#2}]%
- \else
- \@makechapterhead{#2}%
- \@afterheading
- \fi}
-\def\@makechapterhead#1{%
-% \vspace*{50\p@}%
- {\centering
- \ifnum \c@secnumdepth >\m@ne
- \if@mainmatter
- \large\bfseries \@chapapp{} \thechapter
- \par\nobreak
- \vskip 20\p@
- \fi
- \fi
- \interlinepenalty\@M
- \Large \bfseries #1\par\nobreak
- \vskip 40\p@
- }}
-\def\@schapter#1{\if@twocolumn
- \@topnewpage[\@makeschapterhead{#1}]%
- \else
- \@makeschapterhead{#1}%
- \@afterheading
- \fi}
-\def\@makeschapterhead#1{%
-% \vspace*{50\p@}%
- {\centering
- \normalfont
- \interlinepenalty\@M
- \Large \bfseries #1\par\nobreak
- \vskip 40\p@
- }}
-
-\renewcommand\section{\@startsection{section}{1}{\z@}%
- {-18\p@ \@plus -4\p@ \@minus -4\p@}%
- {12\p@ \@plus 4\p@ \@minus 4\p@}%
- {\normalfont\large\bfseries\boldmath
- \rightskip=\z@ \@plus 8em\pretolerance=10000 }}
-\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
- {-18\p@ \@plus -4\p@ \@minus -4\p@}%
- {8\p@ \@plus 4\p@ \@minus 4\p@}%
- {\normalfont\normalsize\bfseries\boldmath
- \rightskip=\z@ \@plus 8em\pretolerance=10000 }}
-\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
- {-18\p@ \@plus -4\p@ \@minus -4\p@}%
- {-0.5em \@plus -0.22em \@minus -0.1em}%
- {\normalfont\normalsize\bfseries\boldmath}}
-\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
- {-12\p@ \@plus -4\p@ \@minus -4\p@}%
- {-0.5em \@plus -0.22em \@minus -0.1em}%
- {\normalfont\normalsize\itshape}}
-\renewcommand\subparagraph[1]{\typeout{LLNCS warning: You should not use
- \string\subparagraph\space with this class}\vskip0.5cm
-You should not use \verb|\subparagraph| with this class.\vskip0.5cm}
-
-\DeclareMathSymbol{\Gamma}{\mathalpha}{letters}{"00}
-\DeclareMathSymbol{\Delta}{\mathalpha}{letters}{"01}
-\DeclareMathSymbol{\Theta}{\mathalpha}{letters}{"02}
-\DeclareMathSymbol{\Lambda}{\mathalpha}{letters}{"03}
-\DeclareMathSymbol{\Xi}{\mathalpha}{letters}{"04}
-\DeclareMathSymbol{\Pi}{\mathalpha}{letters}{"05}
-\DeclareMathSymbol{\Sigma}{\mathalpha}{letters}{"06}
-\DeclareMathSymbol{\Upsilon}{\mathalpha}{letters}{"07}
-\DeclareMathSymbol{\Phi}{\mathalpha}{letters}{"08}
-\DeclareMathSymbol{\Psi}{\mathalpha}{letters}{"09}
-\DeclareMathSymbol{\Omega}{\mathalpha}{letters}{"0A}
-
-\let\footnotesize\small
-
-\if@custvec
-\def\vec#1{\mathchoice{\mbox{\boldmath$\displaystyle#1$}}
-{\mbox{\boldmath$\textstyle#1$}}
-{\mbox{\boldmath$\scriptstyle#1$}}
-{\mbox{\boldmath$\scriptscriptstyle#1$}}}
-\fi
-
-\def\squareforqed{\hbox{\rlap{$\sqcap$}$\sqcup$}}
-\def\qed{\ifmmode\squareforqed\else{\unskip\nobreak\hfil
-\penalty50\hskip1em\null\nobreak\hfil\squareforqed
-\parfillskip=0pt\finalhyphendemerits=0\endgraf}\fi}
-
-\def\getsto{\mathrel{\mathchoice {\vcenter{\offinterlineskip
-\halign{\hfil
-$\displaystyle##$\hfil\cr\gets\cr\to\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr\gets
-\cr\to\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr\gets
-\cr\to\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
-\gets\cr\to\cr}}}}}
-\def\lid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
-$\displaystyle##$\hfil\cr<\cr\noalign{\vskip1.2pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr<\cr
-\noalign{\vskip1.2pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr<\cr
-\noalign{\vskip1pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
-<\cr
-\noalign{\vskip0.9pt}=\cr}}}}}
-\def\gid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
-$\displaystyle##$\hfil\cr>\cr\noalign{\vskip1.2pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr>\cr
-\noalign{\vskip1.2pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr>\cr
-\noalign{\vskip1pt}=\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
->\cr
-\noalign{\vskip0.9pt}=\cr}}}}}
-\def\grole{\mathrel{\mathchoice {\vcenter{\offinterlineskip
-\halign{\hfil
-$\displaystyle##$\hfil\cr>\cr\noalign{\vskip-1pt}<\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr
->\cr\noalign{\vskip-1pt}<\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr
->\cr\noalign{\vskip-0.8pt}<\cr}}}
-{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
->\cr\noalign{\vskip-0.3pt}<\cr}}}}}
-\def\bbbr{{\rm I\!R}} %reelle Zahlen
-\def\bbbm{{\rm I\!M}}
-\def\bbbn{{\rm I\!N}} %natuerliche Zahlen
-\def\bbbf{{\rm I\!F}}
-\def\bbbh{{\rm I\!H}}
-\def\bbbk{{\rm I\!K}}
-\def\bbbp{{\rm I\!P}}
-\def\bbbone{{\mathchoice {\rm 1\mskip-4mu l} {\rm 1\mskip-4mu l}
-{\rm 1\mskip-4.5mu l} {\rm 1\mskip-5mu l}}}
-\def\bbbc{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm C$}\hbox{\hbox
-to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\textstyle\rm C$}\hbox{\hbox
-to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptstyle\rm C$}\hbox{\hbox
-to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptscriptstyle\rm C$}\hbox{\hbox
-to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}}}
-\def\bbbq{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
-Q$}\hbox{\raise
-0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
-{\setbox0=\hbox{$\textstyle\rm Q$}\hbox{\raise
-0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptstyle\rm Q$}\hbox{\raise
-0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptscriptstyle\rm Q$}\hbox{\raise
-0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}}}
-\def\bbbt{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
-T$}\hbox{\hbox to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\textstyle\rm T$}\hbox{\hbox
-to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptstyle\rm T$}\hbox{\hbox
-to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptscriptstyle\rm T$}\hbox{\hbox
-to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}}}
-\def\bbbs{{\mathchoice
-{\setbox0=\hbox{$\displaystyle \rm S$}\hbox{\raise0.5\ht0\hbox
-to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
-to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
-{\setbox0=\hbox{$\textstyle \rm S$}\hbox{\raise0.5\ht0\hbox
-to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
-to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptstyle \rm S$}\hbox{\raise0.5\ht0\hbox
-to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
-to0pt{\kern0.5\wd0\vrule height0.45\ht0\hss}\box0}}
-{\setbox0=\hbox{$\scriptscriptstyle\rm S$}\hbox{\raise0.5\ht0\hbox
-to0pt{\kern0.4\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
-to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
-\def\bbbz{{\mathchoice {\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
-{\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
-{\hbox{$\mathsf\scriptstyle Z\kern-0.3em Z$}}
-{\hbox{$\mathsf\scriptscriptstyle Z\kern-0.2em Z$}}}}
-
-\let\ts\,
-
-\setlength\leftmargini {17\p@}
-\setlength\leftmargin {\leftmargini}
-\setlength\leftmarginii {\leftmargini}
-\setlength\leftmarginiii {\leftmargini}
-\setlength\leftmarginiv {\leftmargini}
-\setlength \labelsep {.5em}
-\setlength \labelwidth{\leftmargini}
-\addtolength\labelwidth{-\labelsep}
-
-\def\@listI{\leftmargin\leftmargini
- \parsep 0\p@ \@plus1\p@ \@minus\p@
- \topsep 8\p@ \@plus2\p@ \@minus4\p@
- \itemsep0\p@}
-\let\@listi\@listI
-\@listi
-\def\@listii {\leftmargin\leftmarginii
- \labelwidth\leftmarginii
- \advance\labelwidth-\labelsep
- \topsep 0\p@ \@plus2\p@ \@minus\p@}
-\def\@listiii{\leftmargin\leftmarginiii
- \labelwidth\leftmarginiii
- \advance\labelwidth-\labelsep
- \topsep 0\p@ \@plus\p@\@minus\p@
- \parsep \z@
- \partopsep \p@ \@plus\z@ \@minus\p@}
-
-\renewcommand\labelitemi{\normalfont\bfseries --}
-\renewcommand\labelitemii{$\m@th\bullet$}
-
-\setlength\arraycolsep{1.4\p@}
-\setlength\tabcolsep{1.4\p@}
-
-\def\tableofcontents{\chapter*{\contentsname\@mkboth{{\contentsname}}%
- {{\contentsname}}}
- \def\authcount##1{\setcounter{auco}{##1}\setcounter{@auth}{1}}
- \def\lastand{\ifnum\value{auco}=2\relax
- \unskip{} \andname\
- \else
- \unskip \lastandname\
- \fi}%
- \def\and{\stepcounter{@auth}\relax
- \ifnum\value{@auth}=\value{auco}%
- \lastand
- \else
- \unskip,
- \fi}%
- \@starttoc{toc}\if@restonecol\twocolumn\fi}
-
-\def\l@part#1#2{\addpenalty{\@secpenalty}%
- \addvspace{2em plus\p@}% % space above part line
- \begingroup
- \parindent \z@
- \rightskip \z@ plus 5em
- \hrule\vskip5pt
- \large % same size as for a contribution heading
- \bfseries\boldmath % set line in boldface
- \leavevmode % TeX command to enter horizontal mode.
- #1\par
- \vskip5pt
- \hrule
- \vskip1pt
- \nobreak % Never break after part entry
- \endgroup}
-
-\def\@dotsep{2}
-
-\def\hyperhrefextend{\ifx\hyper@anchor\@undefined\else
-{chapter.\thechapter}\fi}
-
-\def\addnumcontentsmark#1#2#3{%
-\addtocontents{#1}{\protect\contentsline{#2}{\protect\numberline
- {\thechapter}#3}{\thepage}\hyperhrefextend}}
-\def\addcontentsmark#1#2#3{%
-\addtocontents{#1}{\protect\contentsline{#2}{#3}{\thepage}\hyperhrefextend}}
-\def\addcontentsmarkwop#1#2#3{%
-\addtocontents{#1}{\protect\contentsline{#2}{#3}{0}\hyperhrefextend}}
-
-\def\@adcmk[#1]{\ifcase #1 \or
-\def\@gtempa{\addnumcontentsmark}%
- \or \def\@gtempa{\addcontentsmark}%
- \or \def\@gtempa{\addcontentsmarkwop}%
- \fi\@gtempa{toc}{chapter}}
-\def\addtocmark{\@ifnextchar[{\@adcmk}{\@adcmk[3]}}
-
-\def\l@chapter#1#2{\addpenalty{-\@highpenalty}
- \vskip 1.0em plus 1pt \@tempdima 1.5em \begingroup
- \parindent \z@ \rightskip \@tocrmarg
- \advance\rightskip by 0pt plus 2cm
- \parfillskip -\rightskip \pretolerance=10000
- \leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
- {\large\bfseries\boldmath#1}\ifx0#2\hfil\null
- \else
- \nobreak
- \leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
- \@dotsep mu$}\hfill
- \nobreak\hbox to\@pnumwidth{\hss #2}%
- \fi\par
- \penalty\@highpenalty \endgroup}
-
-\def\l@title#1#2{\addpenalty{-\@highpenalty}
- \addvspace{8pt plus 1pt}
- \@tempdima \z@
- \begingroup
- \parindent \z@ \rightskip \@tocrmarg
- \advance\rightskip by 0pt plus 2cm
- \parfillskip -\rightskip \pretolerance=10000
- \leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
- #1\nobreak
- \leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
- \@dotsep mu$}\hfill
- \nobreak\hbox to\@pnumwidth{\hss #2}\par
- \penalty\@highpenalty \endgroup}
-
-\def\l@author#1#2{\addpenalty{\@highpenalty}
- \@tempdima=15\p@ %\z@
- \begingroup
- \parindent \z@ \rightskip \@tocrmarg
- \advance\rightskip by 0pt plus 2cm
- \pretolerance=10000
- \leavevmode \advance\leftskip\@tempdima %\hskip -\leftskip
- \textit{#1}\par
- \penalty\@highpenalty \endgroup}
-
-\setcounter{tocdepth}{0}
-\newdimen\tocchpnum
-\newdimen\tocsecnum
-\newdimen\tocsectotal
-\newdimen\tocsubsecnum
-\newdimen\tocsubsectotal
-\newdimen\tocsubsubsecnum
-\newdimen\tocsubsubsectotal
-\newdimen\tocparanum
-\newdimen\tocparatotal
-\newdimen\tocsubparanum
-\tocchpnum=\z@ % no chapter numbers
-\tocsecnum=15\p@ % section 88. plus 2.222pt
-\tocsubsecnum=23\p@ % subsection 88.8 plus 2.222pt
-\tocsubsubsecnum=27\p@ % subsubsection 88.8.8 plus 1.444pt
-\tocparanum=35\p@ % paragraph 88.8.8.8 plus 1.666pt
-\tocsubparanum=43\p@ % subparagraph 88.8.8.8.8 plus 1.888pt
-\def\calctocindent{%
-\tocsectotal=\tocchpnum
-\advance\tocsectotal by\tocsecnum
-\tocsubsectotal=\tocsectotal
-\advance\tocsubsectotal by\tocsubsecnum
-\tocsubsubsectotal=\tocsubsectotal
-\advance\tocsubsubsectotal by\tocsubsubsecnum
-\tocparatotal=\tocsubsubsectotal
-\advance\tocparatotal by\tocparanum}
-\calctocindent
-
-\def\l@section{\@dottedtocline{1}{\tocchpnum}{\tocsecnum}}
-\def\l@subsection{\@dottedtocline{2}{\tocsectotal}{\tocsubsecnum}}
-\def\l@subsubsection{\@dottedtocline{3}{\tocsubsectotal}{\tocsubsubsecnum}}
-\def\l@paragraph{\@dottedtocline{4}{\tocsubsubsectotal}{\tocparanum}}
-\def\l@subparagraph{\@dottedtocline{5}{\tocparatotal}{\tocsubparanum}}
-
-\def\listoffigures{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
- \fi\section*{\listfigurename\@mkboth{{\listfigurename}}{{\listfigurename}}}
- \@starttoc{lof}\if@restonecol\twocolumn\fi}
-\def\l@figure{\@dottedtocline{1}{0em}{1.5em}}
-
-\def\listoftables{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
- \fi\section*{\listtablename\@mkboth{{\listtablename}}{{\listtablename}}}
- \@starttoc{lot}\if@restonecol\twocolumn\fi}
-\let\l@table\l@figure
-
-\renewcommand\listoffigures{%
- \section*{\listfigurename
- \@mkboth{\listfigurename}{\listfigurename}}%
- \@starttoc{lof}%
- }
-
-\renewcommand\listoftables{%
- \section*{\listtablename
- \@mkboth{\listtablename}{\listtablename}}%
- \@starttoc{lot}%
- }
-
-\ifx\oribibl\undefined
-\ifx\citeauthoryear\undefined
-\renewenvironment{thebibliography}[1]
- {\section*{\refname}
- \def\(a)biblabel##1{##1.}
- \small
- \list{\@biblabel{\@arabic\c@enumiv}}%
- {\settowidth\labelwidth{\@biblabel{#1}}%
- \leftmargin\labelwidth
- \advance\leftmargin\labelsep
- \if@openbib
- \advance\leftmargin\bibindent
- \itemindent -\bibindent
- \listparindent \itemindent
- \parsep \z@
- \fi
- \usecounter{enumiv}%
- \let\p@enumiv\@empty
- \renewcommand\theenumiv{\@arabic\c@enumiv}}%
- \if@openbib
- \renewcommand\newblock{\par}%
- \else
- \renewcommand\newblock{\hskip .11em \(a)plus.33em \(a)minus.07em}%
- \fi
- \sloppy\clubpenalty4000\widowpenalty4000%
- \sfcode`\.=\@m}
- {\def\@noitemerr
- {\@latex@warning{Empty `thebibliography' environment}}%
- \endlist}
-\def\@lbibitem[#1]#2{\item[{[#1]}\hfill]\if@filesw
- {\let\protect\noexpand\immediate
- \write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
-\newcount\@tempcntc
-\def\@citex[#1]#2{\if@filesw\immediate\write\@auxout{\string\citation{#2}}\fi
- \@tempcnta\z@\@tempcntb\m@ne\def\@citea{}\@cite{\@for\@citeb:=#2\do
- {\@ifundefined
- {b@\@citeb}{\@citeo\@tempcntb\m@ne\@citea\def\@citea{,}{\bfseries
- ?}\@warning
- {Citation `\@citeb' on page \thepage \space undefined}}%
- {\setbox\z@\hbox{\global\@tempcntc0\csname b@\@citeb\endcsname\relax}%
- \ifnum\@tempcntc=\z@ \@citeo\@tempcntb\m@ne
- \@citea\def\@citea{,}\hbox{\csname b@\@citeb\endcsname}%
- \else
- \advance\@tempcntb\@ne
- \ifnum\@tempcntb=\@tempcntc
- \else\advance\@tempcntb\m@ne\@citeo
- \@tempcnta\@tempcntc\@tempcntb\@tempcntc\fi\fi}}\@citeo}{#1}}
-\def\@citeo{\ifnum\@tempcnta>\@tempcntb\else
- \@citea\def\@citea{,\,\hskip\z@skip}%
- \ifnum\@tempcnta=\@tempcntb\the\@tempcnta\else
- {\advance\@tempcnta\@ne\ifnum\@tempcnta=\@tempcntb \else
- \def\@citea{--}\fi
- \advance\@tempcnta\m@ne\the\@tempcnta\@citea\the\@tempcntb}\fi\fi}
-\else
-\renewenvironment{thebibliography}[1]
- {\section*{\refname}
- \small
- \list{}%
- {\settowidth\labelwidth{}%
- \leftmargin\parindent
- \itemindent=-\parindent
- \labelsep=\z@
- \if@openbib
- \advance\leftmargin\bibindent
- \itemindent -\bibindent
- \listparindent \itemindent
- \parsep \z@
- \fi
- \usecounter{enumiv}%
- \let\p@enumiv\@empty
- \renewcommand\theenumiv{}}%
- \if@openbib
- \renewcommand\newblock{\par}%
- \else
- \renewcommand\newblock{\hskip .11em \(a)plus.33em \(a)minus.07em}%
- \fi
- \sloppy\clubpenalty4000\widowpenalty4000%
- \sfcode`\.=\@m}
- {\def\@noitemerr
- {\@latex@warning{Empty `thebibliography' environment}}%
- \endlist}
- \def\@cite#1{#1}%
- \def\@lbibitem[#1]#2{\item[]\if@filesw
- {\def\protect##1{\string ##1\space}\immediate
- \write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
- \fi
-\else
-\@cons\@openbib@code{\noexpand\small}
-\fi
-
-\def\idxquad{\hskip 10\p@}% space that divides entry from number
-
-\def\@idxitem{\par\hangindent 10\p@}
-
-\def\subitem{\par\setbox0=\hbox{--\enspace}% second order
- \noindent\hangindent\wd0\box0}% index entry
-
-\def\subsubitem{\par\setbox0=\hbox{--\,--\enspace}% third
- \noindent\hangindent\wd0\box0}% order index entry
-
-\def\indexspace{\par \vskip 10\p@ plus5\p@ minus3\p@\relax}
-
-\renewenvironment{theindex}
- {\@mkboth{\indexname}{\indexname}%
- \thispagestyle{empty}\parindent\z@
- \parskip\z@ \@plus .3\p@\relax
- \let\item\par
- \def\,{\relax\ifmmode\mskip\thinmuskip
- \else\hskip0.2em\ignorespaces\fi}%
- \normalfont\small
- \begin{multicols}{2}[\@makeschapterhead{\indexname}]%
- }
- {\end{multicols}}
-
-\renewcommand\footnoterule{%
- \kern-3\p@
- \hrule\@width 2truecm
- \kern2.6\p@}
- \newdimen\fnindent
- \fnindent1em
-\long\def\@makefntext#1{%
- \parindent \fnindent%
- \leftskip \fnindent%
- \noindent
- \llap{\hb@xt@1em{\hss\@makefnmark\ }}\ignorespaces#1}
-
-\long\def\@makecaption#1#2{%
- \vskip\abovecaptionskip
- \sbox\@tempboxa{{\bfseries #1.} #2}%
- \ifdim \wd\@tempboxa >\hsize
- {\bfseries #1.} #2\par
- \else
- \global \@minipagefalse
- \hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
- \fi
- \vskip\belowcaptionskip}
-
-\def\fps@figure{htbp}
-\def\fnum@figure{\figurename\thinspace\thefigure}
-\def \@floatboxreset {%
- \reset@font
- \small
- \@setnobreak
- \@setminipage
-}
-\def\fps@table{htbp}
-\def\fnum@table{\tablename~\thetable}
-\renewenvironment{table}
- {\setlength\abovecaptionskip{0\p@}%
- \setlength\belowcaptionskip{10\p@}%
- \@float{table}}
- {\end@float}
-\renewenvironment{table*}
- {\setlength\abovecaptionskip{0\p@}%
- \setlength\belowcaptionskip{10\p@}%
- \@dblfloat{table}}
- {\end@dblfloat}
-
-\long\def\@caption#1[#2]#3{\par\addcontentsline{\csname
- ext@#1\endcsname}{#1}{\protect\numberline{\csname
- the#1\endcsname}{\ignorespaces #2}}\begingroup
- \@parboxrestore
- \@makecaption{\csname fnum@#1\endcsname}{\ignorespaces #3}\par
- \endgroup}
-
-% LaTeX does not provide a command to enter the authors institute
-% addresses. The \institute command is defined here.
-
-\newcounter{@inst}
-\newcounter{@auth}
-\newcounter{auco}
-\newdimen\instindent
-\newbox\authrun
-\newtoks\authorrunning
-\newtoks\tocauthor
-\newbox\titrun
-\newtoks\titlerunning
-\newtoks\toctitle
-
-\def\clearheadinfo{\gdef\@author{No Author Given}%
- \gdef\@title{No Title Given}%
- \gdef\@subtitle{}%
- \gdef\@institute{No Institute Given}%
- \gdef\@thanks{}%
- \global\titlerunning={}\global\authorrunning={}%
- \global\toctitle={}\global\tocauthor={}}
-
-\def\institute#1{\gdef\@institute{#1}}
-
-\def\institutename{\par
- \begingroup
- \parskip=\z@
- \parindent=\z@
- \setcounter{@inst}{1}%
- \def\and{\par\stepcounter{@inst}%
- \noindent$^{\the@inst}$\enspace\ignorespaces}%
- \setbox0=\vbox{\def\thanks##1{}\@institute}%
- \ifnum\c@@inst=1\relax
- \gdef\fnnstart{0}%
- \else
- \xdef\fnnstart{\c@@inst}%
- \setcounter{@inst}{1}%
- \noindent$^{\the@inst}$\enspace
- \fi
- \ignorespaces
- \@institute\par
- \endgroup}
-
-\def\@fnsymbol#1{\ensuremath{\ifcase#1\or\star\or{\star\star}\or
- {\star\star\star}\or \dagger\or \ddagger\or
- \mathchar "278\or \mathchar "27B\or \|\or **\or \dagger\dagger
- \or \ddagger\ddagger \else\@ctrerr\fi}}
-
-\def\inst#1{\unskip$^{#1}$}
-\def\fnmsep{\unskip$^,$}
-\def\email#1{{\tt#1}}
-\AtBeginDocument{\@ifundefined{url}{\def\url#1{#1}}{}%
-\@ifpackageloaded{babel}{%
-\@ifundefined{extrasenglish}{}{\addto\extrasenglish{\switcht@albion}}%
-\@ifundefined{extrasfrenchb}{}{\addto\extrasfrenchb{\switcht@francais}}%
-\@ifundefined{extrasgerman}{}{\addto\extrasgerman{\switcht@deutsch}}%
-}{\switcht@@therlang}%
-}
-\def\homedir{\~{ }}
-
-\def\subtitle#1{\gdef\@subtitle{#1}}
-\clearheadinfo
-%
-\renewcommand\maketitle{\newpage
- \refstepcounter{chapter}%
- \stepcounter{section}%
- \setcounter{section}{0}%
- \setcounter{subsection}{0}%
- \setcounter{figure}{0}
- \setcounter{table}{0}
- \setcounter{equation}{0}
- \setcounter{footnote}{0}%
- \begingroup
- \parindent=\z@
- \renewcommand\thefootnote{\@fnsymbol\c@footnote}%
- \if@twocolumn
- \ifnum \col@number=\@ne
- \@maketitle
- \else
- \twocolumn[\@maketitle]%
- \fi
- \else
- \newpage
- \global\@topnum\z@ % Prevents figures from going at top of page.
- \@maketitle
- \fi
- \thispagestyle{empty}\@thanks
-%
- \def\\{\unskip\ \ignorespaces}\def\inst##1{\unskip{}}%
- \def\thanks##1{\unskip{}}\def\fnmsep{\unskip}%
- \instindent=\hsize
- \advance\instindent by-\headlineindent
- \if!\the\toctitle!\addcontentsline{toc}{title}{\@title}\else
- \addcontentsline{toc}{title}{\the\toctitle}\fi
- \if@runhead
- \if!\the\titlerunning!\else
- \edef\@title{\the\titlerunning}%
- \fi
- \global\setbox\titrun=\hbox{\small\rm\unboldmath\ignorespaces\@title}%
- \ifdim\wd\titrun>\instindent
- \typeout{Title too long for running head. Please supply}%
- \typeout{a shorter form with \string\titlerunning\space prior to
- \string\maketitle}%
- \global\setbox\titrun=\hbox{\small\rm
- Title Suppressed Due to Excessive Length}%
- \fi
- \xdef\@title{\copy\titrun}%
- \fi
-%
- \if!\the\tocauthor!\relax
- {\def\and{\noexpand\protect\noexpand\and}%
- \protected@xdef\toc@uthor{\@author}}%
- \else
- \def\\{\noexpand\protect\noexpand\newline}%
- \protected@xdef\scratch{\the\tocauthor}%
- \protected@xdef\toc@uthor{\scratch}%
- \fi
- \addtocontents{toc}{\noexpand\protect\noexpand\authcount{\the\c@auco}}%
- \addcontentsline{toc}{author}{\toc@uthor}%
- \if@runhead
- \if!\the\authorrunning!
- \value{@inst}=\value{@auth}%
- \setcounter{@auth}{1}%
- \else
- \edef\@author{\the\authorrunning}%
- \fi
- \global\setbox\authrun=\hbox{\small\unboldmath\@author\unskip}%
- \ifdim\wd\authrun>\instindent
- \typeout{Names of authors too long for running head. Please supply}%
- \typeout{a shorter form with \string\authorrunning\space prior to
- \string\maketitle}%
- \global\setbox\authrun=\hbox{\small\rm
- Authors Suppressed Due to Excessive Length}%
- \fi
- \xdef\@author{\copy\authrun}%
- \markboth{\@author}{\@title}%
- \fi
- \endgroup
- \setcounter{footnote}{\fnnstart}%
- \clearheadinfo}
-%
-\def\@maketitle{\newpage
- \markboth{}{}%
- \def\lastand{\ifnum\value{@inst}=2\relax
- \unskip{} \andname\
- \else
- \unskip \lastandname\
- \fi}%
- \def\and{\stepcounter{@auth}\relax
- \ifnum\value{@auth}=\value{@inst}%
- \lastand
- \else
- \unskip,
- \fi}%
- \begin{center}%
- \let\newline\\
- {\Large \bfseries\boldmath
- \pretolerance=10000
- \@title \par}\vskip .8cm
-\if!\@subtitle!\else {\large \bfseries\boldmath
- \vskip -.65cm
- \pretolerance=10000
- \@subtitle \par}\vskip .8cm\fi
- \setbox0=\vbox{\setcounter{@auth}{1}\def\and{\stepcounter{@auth}}%
- \def\thanks##1{}\@author}%
- \global\value{@inst}=\value{@auth}%
- \global\value{auco}=\value{@auth}%
- \setcounter{@auth}{1}%
-{\lineskip .5em
-\noindent\ignorespaces
-\(a)author\vskip.35cm}
- {\small\institutename}
- \end{center}%
- }
-
-% definition of the "\spnewtheorem" command.
-%
-% Usage:
-%
-% \spnewtheorem{env_nam}{caption}[within]{cap_font}{body_font}
-% or \spnewtheorem{env_nam}[numbered_like]{caption}{cap_font}{body_font}
-% or \spnewtheorem*{env_nam}{caption}{cap_font}{body_font}
-%
-% New is "cap_font" and "body_font". It stands for
-% fontdefinition of the caption and the text itself.
-%
-% "\spnewtheorem*" gives a theorem without number.
-%
-% A defined spnewthoerem environment is used as described
-% by Lamport.
-%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-\def\@thmcountersep{}
-\def\(a)thmcounterend{.}
-
-\def\spnewtheorem{\@ifstar{\@sthm}{\@Sthm}}
-
-% definition of \spnewtheorem with number
-
-\def\@spnthm#1#2{%
- \@ifnextchar[{\@spxnthm{#1}{#2}}{\@spynthm{#1}{#2}}}
-\def\@Sthm#1{\@ifnextchar[{\@spothm{#1}}{\@spnthm{#1}}}
-
-\def\@spxnthm#1#2[#3]#4#5{\expandafter\@ifdefinable\csname #1\endcsname
- {\@definecounter{#1}\@addtoreset{#1}{#3}%
- \expandafter\xdef\csname the#1\endcsname{\expandafter\noexpand
- \csname the#3\endcsname \noexpand\@thmcountersep \@thmcounter{#1}}%
- \expandafter\xdef\csname #1name\endcsname{#2}%
- \global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#4}{#5}}%
- \global\@namedef{end#1}{\@endtheorem}}}
-
-\def\@spynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
- {\@definecounter{#1}%
- \expandafter\xdef\csname the#1\endcsname{\@thmcounter{#1}}%
- \expandafter\xdef\csname #1name\endcsname{#2}%
- \global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#3}{#4}}%
- \global\@namedef{end#1}{\@endtheorem}}}
-
-\def\@spothm#1[#2]#3#4#5{%
- \@ifundefined{c@#2}{\@latexerr{No theorem environment `#2' defined}\@eha}%
- {\expandafter\@ifdefinable\csname #1\endcsname
- {\global\@namedef{the#1}{\@nameuse{the#2}}%
- \expandafter\xdef\csname #1name\endcsname{#3}%
- \global\@namedef{#1}{\@spthm{#2}{\csname #1name\endcsname}{#4}{#5}}%
- \global\@namedef{end#1}{\@endtheorem}}}}
-
-\def\@spthm#1#2#3#4{\topsep 7\p@ \@plus2\p@ \@minus4\p@
-\refstepcounter{#1}%
-\@ifnextchar[{\@spythm{#1}{#2}{#3}{#4}}{\@spxthm{#1}{#2}{#3}{#4}}}
-
-\def\@spxthm#1#2#3#4{\@spbegintheorem{#2}{\csname the#1\endcsname}{#3}{#4}%
- \ignorespaces}
-
-\def\@spythm#1#2#3#4[#5]{\@spopargbegintheorem{#2}{\csname
- the#1\endcsname}{#5}{#3}{#4}\ignorespaces}
-
-\def\@spbegintheorem#1#2#3#4{\trivlist
- \item[\hskip\labelsep{#3#1\ #2\@thmcounterend}]#4}
-
-\def\@spopargbegintheorem#1#2#3#4#5{\trivlist
- \item[\hskip\labelsep{#4#1\ #2}]{#4(#3)\@thmcounterend\ }#5}
-
-% definition of \spnewtheorem* without number
-
-\def\@sthm#1#2{\@Ynthm{#1}{#2}}
-
-\def\@Ynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
- {\global\@namedef{#1}{\@Thm{\csname #1name\endcsname}{#3}{#4}}%
- \expandafter\xdef\csname #1name\endcsname{#2}%
- \global\@namedef{end#1}{\@endtheorem}}}
-
-\def\@Thm#1#2#3{\topsep 7\p@ \@plus2\p@ \@minus4\p@
-\@ifnextchar[{\@Ythm{#1}{#2}{#3}}{\@Xthm{#1}{#2}{#3}}}
-
-\def\@Xthm#1#2#3{\@Begintheorem{#1}{#2}{#3}\ignorespaces}
-
-\def\@Ythm#1#2#3[#4]{\@Opargbegintheorem{#1}
- {#4}{#2}{#3}\ignorespaces}
-
-\def\@Begintheorem#1#2#3{#3\trivlist
- \item[\hskip\labelsep{#2#1\@thmcounterend}]}
-
-\def\@Opargbegintheorem#1#2#3#4{#4\trivlist
- \item[\hskip\labelsep{#3#1}]{#3(#2)\@thmcounterend\ }}
-
-\if@envcntsect
- \def\(a)thmcountersep{.}
- \spnewtheorem{theorem}{Theorem}[section]{\bfseries}{\itshape}
-\else
- \spnewtheorem{theorem}{Theorem}{\bfseries}{\itshape}
- \if@envcntreset
- \@addtoreset{theorem}{section}
- \else
- \@addtoreset{theorem}{chapter}
- \fi
-\fi
-
-%definition of divers theorem environments
-\spnewtheorem*{claim}{Claim}{\itshape}{\rmfamily}
-\spnewtheorem*{proof}{Proof}{\itshape}{\rmfamily}
-\if@envcntsame % alle Umgebungen wie Theorem.
- \def\spn@wtheorem#1#2#3#4{\@spothm{#1}[theorem]{#2}{#3}{#4}}
-\else % alle Umgebungen mit eigenem Zaehler
- \if@envcntsect % mit section numeriert
- \def\spn@wtheorem#1#2#3#4{\@spxnthm{#1}{#2}[section]{#3}{#4}}
- \else % nicht mit section numeriert
- \if@envcntreset
- \def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
- \@addtoreset{#1}{section}}
- \else
- \def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
- \@addtoreset{#1}{chapter}}%
- \fi
- \fi
-\fi
-\spn@wtheorem{case}{Case}{\itshape}{\rmfamily}
-\spn@wtheorem{conjecture}{Conjecture}{\itshape}{\rmfamily}
-\spn@wtheorem{corollary}{Corollary}{\bfseries}{\itshape}
-\spn@wtheorem{definition}{Definition}{\bfseries}{\itshape}
-\spn@wtheorem{example}{Example}{\itshape}{\rmfamily}
-\spn@wtheorem{exercise}{Exercise}{\itshape}{\rmfamily}
-\spn@wtheorem{lemma}{Lemma}{\bfseries}{\itshape}
-\spn@wtheorem{note}{Note}{\itshape}{\rmfamily}
-\spn@wtheorem{problem}{Problem}{\itshape}{\rmfamily}
-\spn@wtheorem{property}{Property}{\itshape}{\rmfamily}
-\spn@wtheorem{proposition}{Proposition}{\bfseries}{\itshape}
-\spn@wtheorem{question}{Question}{\itshape}{\rmfamily}
-\spn@wtheorem{solution}{Solution}{\itshape}{\rmfamily}
-\spn@wtheorem{remark}{Remark}{\itshape}{\rmfamily}
-
-\def\@takefromreset#1#2{%
- \def\@tempa{#1}%
- \let\@tempd\@elt
- \def\@elt##1{%
- \def\@tempb{##1}%
- \ifx\@tempa\@tempb\else
- \@addtoreset{##1}{#2}%
- \fi}%
- \expandafter\expandafter\let\expandafter\@tempc\csname cl@#2\endcsname
- \expandafter\def\csname cl@#2\endcsname{}%
- \@tempc
- \let\@elt\@tempd}
-
-\def\theopargself{\def\@spopargbegintheorem##1##2##3##4##5{\trivlist
- \item[\hskip\labelsep{##4##1\ ##2}]{##4##3\@thmcounterend\ }##5}
- \def\@Opargbegintheorem##1##2##3##4{##4\trivlist
- \item[\hskip\labelsep{##3##1}]{##3##2\@thmcounterend\ }}
- }
-
-\renewenvironment{abstract}{%
- \list{}{\advance\topsep by0.35cm\relax\small
- \leftmargin=1cm
- \labelwidth=\z@
- \listparindent=\z@
- \itemindent\listparindent
- \rightmargin\leftmargin}\item[\hskip\labelsep
- \bfseries\abstractname]}
- {\endlist}
-
-\newdimen\headlineindent % dimension for space between
-\headlineindent=1.166cm % number and text of headings.
-
-\def\ps@headings{\let\@mkboth\@gobbletwo
- \let\@oddfoot\@empty\let\@evenfoot\@empty
- \def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
- \leftmark\hfil}
- \def\@oddhead{\normalfont\small\hfil\rightmark\hspace{\headlineindent}%
- \llap{\thepage}}
- \def\chaptermark##1{}%
- \def\sectionmark##1{}%
- \def\subsectionmark##1{}}
-
-\def\ps@titlepage{\let\@mkboth\@gobbletwo
- \let\@oddfoot\@empty\let\@evenfoot\@empty
- \def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
- \hfil}
- \def\@oddhead{\normalfont\small\hfil\hspace{\headlineindent}%
- \llap{\thepage}}
- \def\chaptermark##1{}%
- \def\sectionmark##1{}%
- \def\subsectionmark##1{}}
-
-\if@runhead\ps@headings\else
-\ps@empty\fi
-
-\setlength\arraycolsep{1.4\p@}
-\setlength\tabcolsep{1.4\p@}
-
-\endinput
-%end of file llncs.cls
diff --git a/2009/metrics/metrics.bib b/2009/metrics/metrics.bib
index 2dc5476..1bb6a28 100755
--- a/2009/metrics/metrics.bib
+++ b/2009/metrics/metrics.bib
@@ -30,7 +30,7 @@
title = {Clients download consensus + microdescriptors},
year = {2009},
month = {January},
- note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/proposals/158-microdescriptors.txt}},
+ note = {\url{https://gitweb.torproject.org/torspec.git/blob/HEAD:/proposals/158-microdescriptors.txt}},
institution = {The Tor Project},
type = {Tor Proposal},
number = {158},
@@ -63,11 +63,11 @@
author = {The Tor Project},
title = {Tor directory protocol, version 3},
year = {2009},
- note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/dir-spec.txt}},
+ note = {\url{https://gitweb.torproject.org/torspec.git/blob/HEAD:/dir-spec.txt}},
}
@inproceedings{lenhard2009performance,
- title = {Performance Measurements of Tor Hidden Services in Low-Bandwidth Access Networks},
+ title = {Performance Measurements of {Tor} Hidden Services in Low-Bandwidth Access Networks},
author = {J{\"o}rg Lenhard and Karsten Loesing and Guido Wirtz},
booktitle = {Proceedings of the Seventh International Conference on Applied Cryptography and Network Security (ACNS 2009), Paris-Rocquencourt, France},
publisher = {Springer},
@@ -78,7 +78,7 @@
month = {June},
}
-@other{mulazzani2009personal,
+@misc{mulazzani2009personal,
author = {Martin Mulazzani},
title = {Personal communication},
year = {2009},
diff --git a/2009/metrics/metrics.tex b/2009/metrics/metrics.tex
index 3135400..97381d0 100755
--- a/2009/metrics/metrics.tex
+++ b/2009/metrics/metrics.tex
@@ -1,9 +1,8 @@
-\documentclass[letterpaper,11pt]{llncs}
+\documentclass{tortechrep}
\usepackage{cite}
\usepackage[utf8]{inputenc}
\usepackage{fontenc}
-\usepackage[dvips]{graphicx}
-\usepackage{graphics}
+\usepackage{graphicx}
\usepackage{color}
\usepackage{url}
\usepackage{amsmath}
@@ -11,9 +10,11 @@
\begin{document}
\title{Measuring the Tor Network from\\Public Directory Information}
\author{Karsten Loesing}
-\institute{The Tor Project\\
-karsten.loesing(a)gmx.net}
-\date{}
+\contact{karsten(a)torproject.org}
+\reportid{2009-08-002\footnote{This report was presented at 2nd Hot Topics
+in Privacy Enhancing Technologies (HotPETs 2009), Seattle, WA, USA, August
+2009.}}
+\date{August 7, 2009}
\maketitle
\begin{abstract}
@@ -80,7 +81,8 @@ The first step in the directory protocol is that relays publish router descripto
\begin{table}
\caption{Subset of the data contained in a router descriptor}
\label{tab:routerdesc}
-\begin{tabular}{p{3cm}p{9cm}}
+\vspace{1em}
+\begin{tabular}{p{3.7cm}p{11.9cm}}
\toprule
\textbf{Data field} & \textbf{Description}\\
\midrule
@@ -110,8 +112,9 @@ In addition to router descriptors, relays publish a second type of document to t
\begin{table}
\caption{Subset of the data contained in an extra-info document}
+\vspace{1em}
\label{tab:extrainfo}
-\begin{tabular}{p{3cm}p{9cm}}
+\begin{tabular}{p{3.7cm}p{11.9cm}}
\toprule
\textbf{Data field} & \textbf{Description}\\
\midrule
@@ -126,9 +129,10 @@ The reason for separating out extra-info documents from router descriptors was t
The directory authorities store router descriptors and continuously verify availability of relays to maintain a list of running relays. The authorities further assign various flags to each relay based on their knowledge of the whole network to indicate special properties of a relay, e.g., if it is more stable than others. These flags are used by clients to make their path selection decisions. Every hour, the directory authorities exchange their views on the network and agree on a common list of available relays, called network status consensus. Every running relay has an entry in a network status consensus with the data as shown in Table~\ref{tab:statusentry}.
\begin{table}
-\caption{Subset of the data contained in a network status consensus entry}
+\caption{Subset of the data contained in a network status consensus}
\label{tab:statusentry}
-\begin{tabular}{p{3cm}p{9cm}}
+\vspace{1em}
+\begin{tabular}{p{3.7cm}p{11.9cm}}
\toprule
\textbf{Data field} & \textbf{Description}\\
\midrule
@@ -144,13 +148,22 @@ Stable flag & Authorities think this relay is suitable for long-lived circuits\\
Clients learn about the available relays by downloading a network status consensus and all referenced router descriptors from the directory authorities.
-All the directory information as described here can be easily collected on a regular basis. One could run a relay and configure it to act as a directory cache to obtain this information automatically. Alternatively, one can downloaded all documents from the directories using simple HTTP GET requests. The latter can be automated using scripts.\footnote{See Peter Palfrader's directory archive script that performs this task: \url{https://git.torproject.org/checkout/tor/master/contrib/directory-archive/}}
+All the directory information as described here can be easily collected on a regular basis. One could run a relay and configure it to act as a directory cache to obtain this information automatically. Alternatively, one can downloaded all documents from the directories using simple HTTP GET requests. The latter can be automated using scripts.\footnote{See Peter Palfrader's directory archive script that performs this task: \url{https://gitweb.torproject.org/tor.git/tree/HEAD:/contrib/directory-archive}}
-The directory data are already used to provide an overview of the Tor network. TorStatus is a web-based application to present basic statistics on the Tor network.\footnote{See the project homepage of TorStatus, developed by Joseph B.\ Kowalski and Kasimir Gabert, at: \url{http://project.torstatus.kgprog.com/trac/}} Only recently, TorStatus was extended by Martin Mulazzani \cite{mulazzani2009personal} by writing a subset of directory information to a database and visualizing the collected data in the web interface. Mulazzani's approach differs from the approach taken here by creating an interface for users to let them analyze data about the Tor network rather than collecting data and performing the analysis offline. An integration of both approaches in the future might be beneficial.
+The directory data are already used to provide an overview of the Tor network. TorStatus is a web-based application to present basic statistics on the Tor network.\footnote{See the project homepage of TorStatus, developed by Joseph B.\ Kowalski and Kasimir Gabert, at: \url{http://project.torstatus.kgprog.com/trac/} (update August 27, 2012: website does not exist anymore)} Only recently, TorStatus was extended by Martin Mulazzani \cite{mulazzani2009personal} by writing a subset of directory information to a database and visualizing the collected data in the web interface. Mulazzani's approach differs from the approach taken here by creating an interface for users to let them analyze data about the Tor network rather than collecting data and performing the analysis offline. An integration of both approaches in the future might be beneficial.
\section{Results}
-The following statistics are the result of a continuous collection of directory data from February 2006 to February 2009 by Peter Palfrader. A copy of these data can be requested for research purposes by contacting the author of this paper. The tools to import the directory archives into a database and perform evaluations on them have been made freely available.\footnote{\url{git://git.torproject.org/git/metrics/}}
+The following statistics are the result of a continuous collection of directory data from February 2006 to February 2009 by Peter Palfrader. A copy of these data can be requested for research purposes by contacting the author of this paper.%
+\footnote{Update August 27, 2012: the data is available at:
+\url{https://metrics.torproject.org/}}
+The tools to import the directory archives into a database and perform evaluations on them have been made freely available.%
+\footnote{Update August 27, 2012: these tools are no longer maintained, at
+least not for research purposes. The metrics website code at
+\url{https://gitweb.torproject.org/metrics-web.git} uses a database to
+aggregate relay statistics to answer standard questions, but it might be
+easier to develop custom database code to answer more research-oriented
+questions.}
%interessante ergebnisse
%- 80 \% über infrastruktur
@@ -168,7 +181,7 @@ The shown flags shall help clients make better path selection decisions rather t
\begin{figure}
\centering
-\includegraphics[width=.95\textwidth]{relayflags-hotpets.pdf}
+\includegraphics[width=.85\textwidth]{relayflags-hotpets.pdf}
\caption{Average number of running relays per day with flags assigned by the directory authorities}
\label{fig:relayflags}
\end{figure}
@@ -179,7 +192,7 @@ This graph can also be useful to decide whether conditions to assign certain fla
\begin{figure}
\centering
-\includegraphics[width=.95\textwidth]{guardwfu-hotpets.pdf}
+\includegraphics[width=.85\textwidth]{guardwfu-hotpets.pdf}
\caption{Simulation of the number of guard nodes when reducing the required weighted fractional uptime}
\label{fig:guardwfu}
\end{figure}
@@ -188,11 +201,11 @@ This graph can also be useful to decide whether conditions to assign certain fla
Relays include a platform string in their router descriptors containing the version of the Tor software and operating system. These strings can be evaluated to learn about the distribution of versions in the network as well as the update behavior of relay operators. Figure~\ref{fig:platforms} visualizes the number of relays running different major versions of the Tor software. The vertical lines denote the points in time when a major version was declared to be the new stable version. The version life cycles can be subdivided into an alpha and release candidate phase (April 2006 to April 2007 for 0.1.2.x), a stable phase (April 2007 to July 2008), and an out-of-date phase (July 2008 until today). For all major versions there is an upper limit of approximately 200 relay operators running alpha or release candidate versions. There is no visible increase when versions are moved from alpha state to release candidate state (March 2, 2007 for 0.1.2.x, February 24, 2008 for 0.2.0.x)
. The stable phases for all versions show that it can take months until most relay operators switch from an out-of-date version to the stable version (April 2007 to around end of 2007 for 0.1.1.x). Accordingly, the out-of-date phases show that old versions are used even years after new stable versions are available (0.1.1.x still in use in 2009).
-These results indicate that more efforts need to be taken to encourage relay operators to upgrade. It is desirable that relay operators upgrade to the stable versions as soon as possible or by no later than the end-of-life announcement. Approaches to make relay operators upgrade more quickly include helping popular operating system distributors to include up-to-date Tor versions or providing a semi-automatic updating mechanism to facilitate the upgrade process.\footnote{For more details about the secure updater for Tor, called Thandy, which is currently under development, see \url{https://git.torproject.org/checkout/thandy/master/}}
+These results indicate that more efforts need to be taken to encourage relay operators to upgrade. It is desirable that relay operators upgrade to the stable versions as soon as possible or by no later than the end-of-life announcement. Approaches to make relay operators upgrade more quickly include helping popular operating system distributors to include up-to-date Tor versions or providing a semi-automatic updating mechanism to facilitate the upgrade process.\footnote{For more details about the secure updater for Tor, called Thandy, which is currently under development, see \url{https://gitweb.torproject.org/thandy.git}}
\begin{figure}
\centering
-\includegraphics[width=.95\textwidth]{platforms-hotpets.pdf}
+\includegraphics[width=.85\textwidth]{platforms-hotpets.pdf}
\caption{Number of relays running different major Tor software versions}
\label{fig:platforms}
\end{figure}
@@ -207,7 +220,7 @@ Figure~\ref{fig:dynamic} shows the number of relays running on static and on dyn
\begin{figure}
\centering
-\includegraphics[width=.95\textwidth]{dynamic-hotpets.pdf}
+\includegraphics[width=.85\textwidth]{dynamic-hotpets.pdf}
\caption{Number of relays presumably running on dynamic and static IP addresses}
\label{fig:dynamic}
\end{figure}
@@ -220,7 +233,7 @@ The graph in Figure~\ref{fig:advertised} shows that roughly half of the availabl
\begin{figure}
\centering
-\includegraphics[width=.95\textwidth]{advertised-hotpets.pdf}
+\includegraphics[width=.85\textwidth]{advertised-hotpets.pdf}
\caption{Total bandwidth capactiy and usage in the network}
\label{fig:advertised}
\end{figure}
@@ -236,14 +249,14 @@ Figure~\ref{fig:countrybw} shows the top-5 contributing countries, this time by
\begin{figure}
\centering
-\includegraphics[width=.95\textwidth]{country-hotpets.pdf}
+\includegraphics[width=.85\textwidth]{country-hotpets.pdf}
\caption{Number of relays in the top-5 contributing countries}
\label{fig:country}
\end{figure}
\begin{figure}
\centering
-\includegraphics[width=.95\textwidth]{countrybw-hotpets.pdf}
+\includegraphics[width=.85\textwidth]{countrybw-hotpets.pdf}
\caption{Bandwidth usage as observed by relays located in the top-5 contributing countries}
\label{fig:countrybw}
\end{figure}
@@ -269,7 +282,6 @@ The next step in analyzing the public Tor network would be to focus on performan
%Researchers in the past have modified relays to lie about their real bandwidth and attract more clients which could be detected from reports of directly connected relays (\textbf{refs siehe diss!}).
%In the future, these data might also be passed on by the directories to clients to make better path-selection decisions. (eher von DAs auswerten lassen, nicht an clients weitergeben, um bootstrapping problem nicht zu verschlimmern. siehe auch microdescriptor-ansatz)
-\bibliographystyle{plain}
\bibliography{metrics}
\end{document}
diff --git a/2009/metrics/tortechrep.cls b/2009/metrics/tortechrep.cls
new file mode 120000
index 0000000..4c24db2
--- /dev/null
+++ b/2009/metrics/tortechrep.cls
@@ -0,0 +1 @@
+../../tortechrep.cls
\ No newline at end of file
1
0

[tech-reports/master] Add mostly unmodified version of my HotPETs 2009 report.
by karsten@torproject.org 13 Sep '12
by karsten@torproject.org 13 Sep '12
13 Sep '12
commit 24abe0d2ad2cbe4f1a825a11895f362e98639e3f
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Mon Aug 27 09:24:41 2012 +0200
Add mostly unmodified version of my HotPETs 2009 report.
---
2009/metrics/.gitignore | 3 +
2009/metrics/advertised-hotpets.pdf | 2569 +++++++++++++++
2009/metrics/country-hotpets.pdf | 5946 +++++++++++++++++++++++++++++++++++
2009/metrics/countrybw-hotpets.pdf | 5942 ++++++++++++++++++++++++++++++++++
2009/metrics/dynamic-hotpets.pdf | 2573 +++++++++++++++
2009/metrics/guardwfu-hotpets.pdf | 2396 ++++++++++++++
2009/metrics/llncs.cls | 1190 +++++++
2009/metrics/metrics.bib | 87 +
2009/metrics/metrics.tex | 275 ++
2009/metrics/platforms-hotpets.pdf | 4760 ++++++++++++++++++++++++++++
2009/metrics/relayflags-hotpets.pdf | 5937 ++++++++++++++++++++++++++++++++++
11 files changed, 31678 insertions(+), 0 deletions(-)
diff --git a/2009/metrics/.gitignore b/2009/metrics/.gitignore
new file mode 100644
index 0000000..237fc44
--- /dev/null
+++ b/2009/metrics/.gitignore
@@ -0,0 +1,3 @@
+metrics.pdf
+metrics-2009-08-07.pdf
+
diff --git a/2009/metrics/advertised-hotpets.pdf b/2009/metrics/advertised-hotpets.pdf
new file mode 100755
index 0000000..3db9785
--- /dev/null
+++ b/2009/metrics/advertised-hotpets.pdf
@@ -0,0 +1,2569 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20090505152220)
+/ModDate (D:20090505152220)
+/Title (R Graphics Output)
+/Producer (R 2.8.1)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+5 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 6 0 R
+/Resources 4 0 R
+>>
+endobj
+6 0 obj
+<<
+/Length 7 0 R
+>>
+stream
+q
+Q q 56.16 59.04 591.84 352.80 re W n
+0.000 0.392 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+78.08 169.20 m
+78.57 163.92 l
+79.06 162.15 l
+79.55 160.04 l
+80.04 154.49 l
+80.54 164.60 l
+81.03 161.86 l
+81.52 177.19 l
+82.01 181.99 l
+82.50 181.66 l
+82.99 181.49 l
+83.48 183.78 l
+83.97 187.44 l
+84.46 185.30 l
+84.95 188.65 l
+85.45 192.34 l
+85.94 192.03 l
+86.43 193.23 l
+86.92 196.56 l
+87.41 198.98 l
+87.90 199.85 l
+88.39 203.12 l
+88.88 199.50 l
+89.37 201.95 l
+89.86 196.08 l
+90.36 189.45 l
+90.85 187.33 l
+91.34 186.31 l
+91.83 186.31 l
+92.32 178.12 l
+92.81 173.70 l
+93.30 175.71 l
+93.79 173.10 l
+94.28 177.51 l
+94.78 176.84 l
+95.27 173.96 l
+95.76 177.21 l
+96.25 177.87 l
+96.74 176.55 l
+97.23 179.27 l
+97.72 180.48 l
+98.21 189.35 l
+98.70 189.75 l
+99.19 181.42 l
+99.69 190.86 l
+100.18 197.66 l
+100.67 195.28 l
+101.16 198.60 l
+101.65 197.41 l
+102.14 189.69 l
+102.63 188.31 l
+103.12 180.31 l
+103.61 185.50 l
+104.11 180.30 l
+104.60 180.55 l
+105.09 179.44 l
+105.58 178.81 l
+106.07 180.25 l
+106.56 179.96 l
+107.05 178.56 l
+107.54 177.07 l
+108.03 183.56 l
+108.52 180.64 l
+109.02 181.42 l
+109.51 184.07 l
+110.00 184.67 l
+110.49 183.94 l
+110.98 184.74 l
+111.47 186.43 l
+111.96 187.55 l
+112.45 193.58 l
+112.94 191.06 l
+113.43 193.74 l
+113.93 196.78 l
+114.42 198.77 l
+114.91 201.85 l
+115.40 202.58 l
+115.89 211.79 l
+116.38 209.54 l
+116.87 211.78 l
+117.36 208.41 l
+117.85 208.47 l
+118.35 210.63 l
+118.84 204.85 l
+119.33 204.54 l
+119.82 205.29 l
+120.31 201.09 l
+120.80 196.23 l
+121.29 200.87 l
+121.78 208.81 l
+122.27 206.31 l
+122.76 206.21 l
+123.26 209.58 l
+123.75 213.82 l
+124.24 217.27 l
+124.73 215.65 l
+125.22 225.64 l
+125.71 219.26 l
+126.20 216.58 l
+126.69 210.94 l
+127.18 199.38 l
+127.67 210.42 l
+128.17 211.02 l
+128.66 209.21 l
+129.15 207.95 l
+129.64 200.22 l
+130.13 200.69 l
+130.62 198.26 l
+131.11 199.37 l
+131.60 195.67 l
+132.09 201.46 l
+132.59 212.24 l
+133.08 216.42 l
+133.57 213.49 l
+134.06 214.23 l
+134.55 219.65 l
+135.04 223.04 l
+135.53 222.09 l
+136.02 220.02 l
+136.51 217.07 l
+137.00 219.21 l
+137.50 221.66 l
+137.99 224.59 l
+138.48 228.04 l
+138.97 222.35 l
+139.46 225.29 l
+139.95 222.83 l
+140.44 228.63 l
+140.93 221.86 l
+141.42 220.36 l
+141.92 218.24 l
+142.41 219.89 l
+142.90 228.91 l
+143.39 225.74 l
+143.88 226.11 l
+144.37 218.65 l
+144.86 214.01 l
+145.35 210.08 l
+145.84 213.63 l
+146.33 211.54 l
+146.83 207.80 l
+147.32 213.10 l
+147.81 209.20 l
+148.30 214.16 l
+148.79 218.48 l
+149.28 217.21 l
+149.77 214.66 l
+150.26 208.75 l
+150.75 207.52 l
+151.24 206.66 l
+151.74 203.52 l
+152.23 206.58 l
+152.72 215.47 l
+153.21 237.23 l
+153.70 239.78 l
+154.19 243.08 l
+154.68 256.52 l
+155.17 255.08 l
+155.66 250.64 l
+156.16 245.97 l
+156.65 241.41 l
+157.14 248.39 l
+157.63 255.45 l
+158.12 240.99 l
+158.61 244.06 l
+159.10 242.80 l
+159.59 250.70 l
+160.08 244.98 l
+160.57 243.23 l
+161.07 247.45 l
+161.56 251.59 l
+162.05 252.73 l
+162.54 252.57 l
+163.03 258.74 l
+163.52 262.83 l
+164.01 262.84 l
+164.50 262.02 l
+164.99 253.42 l
+165.49 249.54 l
+165.98 254.69 l
+166.47 262.00 l
+166.96 260.57 l
+167.45 257.52 l
+167.94 260.85 l
+168.43 255.23 l
+168.92 247.03 l
+169.41 252.44 l
+169.90 254.64 l
+170.40 261.95 l
+170.89 270.54 l
+171.38 267.41 l
+171.87 262.53 l
+172.36 264.64 l
+172.85 266.60 l
+173.34 261.11 l
+173.83 261.97 l
+174.32 265.57 l
+174.81 274.33 l
+175.31 269.93 l
+175.80 273.82 l
+176.29 273.13 l
+176.78 269.81 l
+177.27 272.07 l
+177.76 267.42 l
+178.25 273.92 l
+178.74 248.04 l
+179.23 244.59 l
+179.73 241.10 l
+180.22 243.15 l
+180.71 241.82 l
+181.20 246.39 l
+181.69 239.71 l
+182.18 232.83 l
+182.67 230.78 l
+183.16 220.89 l
+183.65 216.17 l
+184.14 222.91 l
+184.64 228.84 l
+185.13 231.49 l
+185.62 240.29 l
+186.11 242.06 l
+186.60 249.69 l
+187.09 251.82 l
+187.58 251.99 l
+188.07 247.02 l
+188.56 253.87 l
+189.05 254.97 l
+189.55 266.03 l
+190.04 261.39 l
+190.53 262.00 l
+191.02 264.58 l
+191.51 270.60 l
+192.00 269.20 l
+192.49 267.10 l
+192.98 265.23 l
+193.47 269.54 l
+193.97 268.47 l
+194.46 265.02 l
+194.95 265.39 l
+195.44 268.56 l
+195.93 269.05 l
+196.42 266.67 l
+196.91 264.55 l
+197.40 258.21 l
+197.89 263.75 l
+198.38 265.48 l
+198.88 263.87 l
+199.37 263.50 l
+199.86 269.31 l
+200.35 278.78 l
+200.84 273.95 l
+201.33 266.42 l
+201.82 262.20 l
+202.31 261.86 l
+202.80 264.77 l
+203.30 264.70 l
+203.79 266.43 l
+204.28 274.09 l
+204.77 274.16 l
+205.26 262.48 l
+205.75 252.30 l
+206.24 252.07 l
+206.73 256.80 l
+207.22 257.65 l
+207.71 254.83 l
+208.21 258.96 l
+208.70 260.01 l
+209.19 258.05 l
+209.68 262.11 l
+210.17 260.32 l
+210.66 260.79 l
+211.15 255.32 l
+211.64 251.29 l
+212.13 250.37 l
+212.62 245.58 l
+213.12 239.72 l
+213.61 246.12 l
+214.10 248.14 l
+214.59 248.47 l
+215.08 247.76 l
+215.57 253.35 l
+216.06 248.12 l
+216.55 250.64 l
+217.04 253.43 l
+217.54 251.89 l
+218.03 248.78 l
+218.52 250.76 l
+219.01 250.77 l
+219.50 252.48 l
+219.99 254.34 l
+220.48 251.62 l
+220.97 247.11 l
+221.46 246.82 l
+221.95 251.10 l
+222.45 248.37 l
+222.94 238.35 l
+223.43 241.09 l
+223.92 248.79 l
+224.41 245.75 l
+224.90 246.29 l
+225.39 248.05 l
+225.88 247.30 l
+226.37 241.75 l
+226.86 250.98 l
+227.36 249.32 l
+227.85 249.47 l
+228.34 247.23 l
+228.83 249.17 l
+229.32 245.27 l
+229.81 242.72 l
+230.30 253.56 l
+230.79 257.22 l
+231.28 255.81 l
+231.78 255.30 l
+232.27 256.29 l
+232.76 261.12 l
+233.25 255.87 l
+233.74 254.09 l
+234.23 257.86 l
+234.72 255.00 l
+235.21 251.28 l
+235.70 253.90 l
+236.19 259.46 l
+236.69 257.25 l
+237.18 267.96 l
+237.67 271.18 l
+238.16 265.25 l
+238.65 272.05 l
+239.14 271.55 l
+239.63 266.78 l
+240.12 266.32 l
+240.61 257.17 l
+241.11 266.12 l
+241.60 269.49 l
+242.09 266.01 l
+242.58 264.33 l
+243.07 261.77 l
+243.56 277.60 l
+244.05 279.62 l
+244.54 277.34 l
+245.03 278.95 l
+245.52 279.54 l
+246.02 277.70 l
+246.51 280.94 l
+247.00 272.28 l
+247.49 259.88 l
+247.98 260.12 l
+248.47 259.75 l
+248.96 259.00 l
+249.45 266.65 l
+249.94 259.20 l
+250.43 256.23 l
+250.93 261.05 l
+251.42 262.73 l
+251.91 265.72 l
+252.40 258.10 l
+252.89 260.71 l
+253.38 254.43 l
+253.87 243.62 l
+254.36 248.44 l
+254.85 253.15 l
+255.35 269.25 l
+255.84 264.00 l
+256.33 258.74 l
+256.82 273.68 l
+257.31 274.30 l
+257.80 278.28 l
+258.29 281.77 l
+258.78 281.80 l
+259.27 280.51 l
+259.76 284.90 l
+260.26 287.49 l
+260.75 282.48 l
+261.24 283.77 l
+261.73 280.48 l
+262.22 279.75 l
+262.71 281.97 l
+263.20 278.19 l
+263.69 269.81 l
+264.18 271.34 l
+264.67 273.87 l
+265.17 272.87 l
+265.66 273.44 l
+266.15 261.52 l
+266.64 262.21 l
+267.13 263.60 l
+267.62 262.55 l
+268.11 263.04 l
+268.60 264.64 l
+269.09 265.91 l
+269.59 267.08 l
+270.08 272.17 l
+270.57 272.11 l
+271.06 263.39 l
+271.55 265.65 l
+272.04 268.62 l
+272.53 263.73 l
+273.02 264.51 l
+273.51 265.47 l
+274.00 268.64 l
+274.50 266.45 l
+274.99 268.02 l
+275.48 273.05 l
+275.97 272.58 l
+276.46 268.21 l
+276.95 262.54 l
+277.44 256.88 l
+277.93 257.34 l
+278.42 258.36 l
+278.92 256.91 l
+279.41 260.93 l
+279.90 264.38 l
+280.39 266.98 l
+280.88 263.35 l
+281.37 260.88 l
+281.86 269.20 l
+282.35 262.58 l
+282.84 260.18 l
+283.33 258.06 l
+283.83 261.96 l
+284.32 268.56 l
+284.81 272.78 l
+285.30 277.97 l
+285.79 284.04 l
+286.28 276.18 l
+286.77 273.75 l
+287.26 276.71 l
+287.75 278.26 l
+288.24 283.69 l
+288.74 280.92 l
+289.23 273.07 l
+289.72 273.83 l
+290.21 269.71 l
+290.70 263.87 l
+291.19 263.52 l
+291.68 265.34 l
+292.17 275.94 l
+292.66 286.79 l
+293.16 288.26 l
+293.65 283.38 l
+294.14 284.58 l
+294.63 285.05 l
+295.12 281.24 l
+295.61 277.72 l
+296.10 275.62 l
+296.59 275.53 l
+297.08 272.15 l
+297.57 274.80 l
+298.07 272.07 l
+298.56 267.12 l
+299.05 266.97 l
+299.54 267.31 l
+300.03 267.27 l
+300.52 275.86 l
+301.01 278.49 l
+301.50 276.49 l
+301.99 278.51 l
+302.49 280.45 l
+302.98 271.25 l
+303.47 286.54 l
+303.96 284.69 l
+304.45 286.38 l
+304.94 285.16 l
+305.43 284.46 l
+305.92 294.21 l
+306.41 289.91 l
+306.90 289.32 l
+307.40 295.34 l
+307.89 295.93 l
+308.38 288.95 l
+308.87 281.66 l
+309.36 276.42 l
+309.85 272.51 l
+310.34 279.66 l
+310.83 282.22 l
+311.32 279.48 l
+311.81 280.11 l
+312.31 282.73 l
+312.80 280.13 l
+313.29 285.08 l
+313.78 285.10 l
+314.27 284.13 l
+314.76 286.27 l
+315.25 286.02 l
+315.74 284.29 l
+316.23 279.96 l
+316.73 279.33 l
+317.22 277.22 l
+317.71 266.17 l
+318.20 271.56 l
+318.69 271.07 l
+319.18 275.89 l
+319.67 280.63 l
+320.16 285.24 l
+320.65 279.49 l
+321.14 279.58 l
+321.64 279.35 l
+322.13 272.48 l
+322.62 269.36 l
+323.11 268.97 l
+323.60 264.97 l
+324.09 265.35 l
+324.58 271.97 l
+325.07 279.43 l
+325.56 278.74 l
+326.05 270.80 l
+326.55 272.39 l
+327.04 276.10 l
+327.53 265.76 l
+328.02 261.31 l
+328.51 271.91 l
+329.00 271.55 l
+329.49 270.51 l
+329.98 272.64 l
+330.47 267.98 l
+330.97 264.58 l
+331.46 268.74 l
+331.95 267.98 l
+332.44 275.12 l
+332.93 263.22 l
+333.42 265.35 l
+333.91 266.35 l
+334.40 275.00 l
+334.89 269.23 l
+335.38 274.10 l
+335.88 263.98 l
+336.37 259.71 l
+336.86 260.97 l
+337.35 260.33 l
+337.84 265.73 l
+338.33 265.46 l
+338.82 266.09 l
+339.31 261.12 l
+339.80 261.33 l
+340.30 266.16 l
+340.79 266.09 l
+341.28 265.17 l
+341.77 265.81 l
+342.26 266.25 l
+342.75 275.24 l
+343.24 272.99 l
+343.73 262.45 l
+344.22 274.54 l
+344.71 282.71 l
+345.21 280.77 l
+345.70 284.97 l
+346.19 290.61 l
+346.68 303.51 l
+347.17 280.25 l
+347.66 287.81 l
+348.15 292.20 l
+348.64 293.27 l
+349.13 285.72 l
+349.62 277.57 l
+350.12 274.69 l
+350.61 277.03 l
+351.10 278.94 l
+351.59 275.91 l
+352.08 275.62 l
+352.57 275.05 l
+353.06 279.60 l
+353.55 280.44 l
+354.04 277.18 l
+354.54 283.15 l
+355.03 277.26 l
+355.52 276.31 l
+356.01 276.87 l
+356.50 281.05 l
+356.99 281.25 l
+357.48 288.47 l
+357.97 290.10 l
+358.46 299.46 l
+358.95 294.04 l
+359.45 300.28 l
+359.94 301.76 l
+360.43 307.94 l
+360.92 304.83 l
+361.41 276.14 l
+361.90 263.51 l
+362.39 269.25 l
+362.88 283.18 l
+363.37 294.34 l
+363.86 293.08 l
+364.36 287.30 l
+364.85 287.48 l
+365.34 290.18 l
+365.83 292.41 l
+366.32 300.71 l
+366.81 302.41 l
+367.30 298.41 l
+367.79 304.28 l
+368.28 301.26 l
+368.78 299.58 l
+369.27 301.74 l
+369.76 304.14 l
+370.25 300.49 l
+370.74 293.44 l
+371.23 299.99 l
+371.72 295.30 l
+372.21 292.08 l
+372.70 291.85 l
+373.19 295.41 l
+373.69 297.35 l
+374.18 296.21 l
+374.67 299.55 l
+375.16 296.60 l
+375.65 301.58 l
+376.14 302.72 l
+376.63 312.94 l
+377.12 310.51 l
+377.61 304.65 l
+378.11 298.37 l
+378.60 305.56 l
+379.09 310.26 l
+379.58 307.66 l
+380.07 300.89 l
+380.56 311.60 l
+381.05 298.68 l
+381.54 286.98 l
+382.03 292.03 l
+382.52 293.08 l
+383.02 290.29 l
+383.51 297.99 l
+384.00 301.87 l
+384.49 308.33 l
+384.98 311.65 l
+385.47 303.53 l
+385.96 306.61 l
+386.45 309.07 l
+386.94 311.10 l
+387.43 307.64 l
+387.93 309.33 l
+388.42 313.87 l
+388.91 308.19 l
+389.40 311.72 l
+389.89 310.31 l
+390.38 315.33 l
+390.87 316.58 l
+391.36 221.76 l
+391.85 242.07 l
+392.35 216.07 l
+392.84 223.54 l
+393.33 259.40 l
+393.82 310.84 l
+394.31 307.89 l
+394.80 304.90 l
+395.29 312.12 l
+395.78 319.87 l
+396.27 315.29 l
+396.76 322.56 l
+397.26 335.04 l
+397.75 325.84 l
+398.24 330.63 l
+398.73 329.08 l
+399.22 325.73 l
+399.71 324.13 l
+400.20 324.72 l
+400.69 325.14 l
+401.18 328.23 l
+401.67 327.36 l
+402.17 327.45 l
+402.66 318.81 l
+403.15 326.42 l
+403.64 320.69 l
+404.13 307.01 l
+404.62 298.57 l
+405.11 309.32 l
+405.60 318.01 l
+406.09 313.70 l
+406.59 322.90 l
+407.08 325.26 l
+407.57 324.50 l
+408.06 327.25 l
+408.55 317.27 l
+409.04 324.37 l
+409.53 330.76 l
+410.02 337.99 l
+410.51 334.18 l
+411.00 336.95 l
+411.50 329.77 l
+411.99 333.07 l
+412.48 332.00 l
+412.97 328.59 l
+413.46 322.46 l
+413.95 324.88 l
+414.44 327.64 l
+414.93 329.95 l
+415.42 327.62 l
+415.92 330.42 l
+416.41 335.47 l
+416.90 349.41 l
+417.39 346.19 l
+417.88 348.81 l
+418.37 362.17 l
+418.86 367.11 l
+419.35 352.35 l
+419.84 342.63 l
+420.33 342.64 l
+420.83 350.64 l
+421.32 353.23 l
+421.81 356.00 l
+422.30 360.32 l
+422.79 366.44 l
+423.28 360.81 l
+423.77 363.84 l
+424.26 362.29 l
+424.75 360.83 l
+425.24 352.74 l
+425.74 351.07 l
+426.23 351.33 l
+426.72 361.05 l
+427.21 364.24 l
+427.70 364.52 l
+428.19 358.52 l
+428.68 344.66 l
+429.17 359.88 l
+429.66 361.57 l
+430.16 355.07 l
+430.65 356.85 l
+431.14 356.34 l
+431.63 355.52 l
+432.12 354.65 l
+432.61 354.24 l
+433.10 360.61 l
+433.59 371.55 l
+434.08 376.35 l
+434.57 371.61 l
+435.07 372.96 l
+435.56 378.20 l
+436.05 382.90 l
+436.54 389.00 l
+437.03 386.45 l
+437.52 385.59 l
+438.01 382.53 l
+438.50 379.34 l
+438.99 380.16 l
+439.49 383.68 l
+439.98 398.77 l
+440.47 393.97 l
+440.96 394.34 l
+441.45 394.99 l
+441.94 393.11 l
+442.43 387.37 l
+442.92 373.89 l
+443.41 380.71 l
+443.90 395.25 l
+444.40 387.48 l
+444.89 389.48 l
+445.38 383.57 l
+445.87 383.88 l
+446.36 372.97 l
+446.85 376.78 l
+447.34 371.46 l
+447.83 377.95 l
+448.32 376.32 l
+448.81 384.86 l
+449.31 398.72 l
+449.80 391.39 l
+450.29 374.84 l
+450.78 374.84 l
+451.27 375.04 l
+451.76 365.94 l
+452.25 360.80 l
+452.74 350.71 l
+453.23 358.74 l
+453.73 363.62 l
+454.22 374.20 l
+454.71 374.83 l
+455.20 373.39 l
+455.69 371.86 l
+456.18 366.95 l
+456.67 363.97 l
+457.16 361.36 l
+457.65 362.87 l
+458.14 365.94 l
+458.64 373.65 l
+459.13 372.31 l
+459.62 357.27 l
+460.11 349.64 l
+460.60 342.52 l
+461.09 350.49 l
+461.58 362.32 l
+462.07 355.04 l
+462.56 356.93 l
+463.05 351.55 l
+463.55 361.39 l
+464.04 371.39 l
+464.53 364.92 l
+465.02 357.63 l
+465.51 359.43 l
+466.00 351.27 l
+466.49 346.92 l
+466.98 343.83 l
+467.47 348.37 l
+467.97 345.48 l
+468.46 351.92 l
+468.95 353.98 l
+469.44 352.32 l
+469.93 361.11 l
+470.42 352.67 l
+470.91 344.50 l
+471.40 352.05 l
+471.89 352.57 l
+472.38 353.01 l
+472.88 358.32 l
+473.37 349.73 l
+473.86 345.15 l
+474.35 339.37 l
+474.84 343.37 l
+475.33 339.80 l
+475.82 343.75 l
+476.31 349.99 l
+476.80 353.74 l
+477.30 353.87 l
+477.79 359.00 l
+478.28 365.36 l
+478.77 362.72 l
+479.26 366.84 l
+479.75 371.03 l
+480.24 367.29 l
+480.73 363.91 l
+481.22 366.20 l
+481.71 360.36 l
+482.21 357.67 l
+482.70 364.21 l
+483.19 353.09 l
+483.68 302.03 l
+484.17 306.45 l
+484.66 321.94 l
+485.15 326.00 l
+485.64 330.45 l
+486.13 340.24 l
+486.62 351.34 l
+487.12 353.24 l
+487.61 345.93 l
+488.10 353.17 l
+488.59 356.15 l
+489.08 355.83 l
+489.57 354.10 l
+490.06 355.10 l
+490.55 353.17 l
+491.04 350.87 l
+491.54 353.37 l
+492.03 349.05 l
+492.52 366.89 l
+493.01 376.37 l
+493.50 370.76 l
+493.99 366.32 l
+494.48 378.88 l
+494.97 384.65 l
+495.46 387.94 l
+495.95 391.09 l
+496.45 386.89 l
+496.94 386.77 l
+497.43 386.76 l
+497.92 370.95 l
+498.41 362.26 l
+498.90 360.49 l
+499.39 359.27 l
+499.88 356.58 l
+500.37 357.74 l
+500.86 366.79 l
+501.36 362.18 l
+501.85 367.40 l
+502.34 375.33 l
+502.83 373.57 l
+503.32 369.83 l
+503.81 371.83 l
+504.30 382.82 l
+504.79 381.63 l
+505.28 378.46 l
+505.78 373.88 l
+506.27 374.89 l
+506.76 369.48 l
+507.25 368.98 l
+507.74 373.79 l
+508.23 372.58 l
+508.72 373.05 l
+509.21 384.89 l
+509.70 383.45 l
+510.19 373.45 l
+510.69 369.31 l
+511.18 373.44 l
+511.67 370.77 l
+512.16 371.03 l
+512.65 364.74 l
+513.14 363.84 l
+513.63 359.54 l
+514.12 362.38 l
+514.61 360.20 l
+515.11 353.94 l
+515.60 345.79 l
+516.09 349.43 l
+516.58 361.39 l
+517.07 365.05 l
+517.56 371.85 l
+518.05 357.64 l
+518.54 362.38 l
+519.03 368.51 l
+519.52 377.79 l
+520.02 379.67 l
+520.51 364.77 l
+521.00 365.90 l
+521.49 357.59 l
+521.98 368.18 l
+522.47 371.23 l
+522.96 363.20 l
+523.45 358.52 l
+523.94 359.71 l
+524.43 361.41 l
+524.93 351.31 l
+525.42 361.34 l
+525.91 365.58 l
+526.40 363.31 l
+526.89 367.81 l
+527.38 372.30 l
+527.87 367.57 l
+528.36 370.48 l
+528.85 369.50 l
+529.35 363.85 l
+529.84 358.30 l
+530.33 360.27 l
+530.82 360.64 l
+531.31 354.30 l
+531.80 359.04 l
+532.29 363.69 l
+532.78 357.72 l
+533.27 359.25 l
+533.76 358.83 l
+534.26 362.54 l
+534.75 355.78 l
+535.24 348.94 l
+535.73 354.94 l
+536.22 354.34 l
+536.71 358.89 l
+537.20 360.33 l
+537.69 348.99 l
+538.18 363.04 l
+538.67 355.42 l
+539.17 359.76 l
+539.66 359.21 l
+540.15 387.81 l
+540.64 391.01 l
+541.13 389.23 l
+541.62 371.43 l
+542.11 365.95 l
+542.60 358.66 l
+543.09 355.30 l
+543.59 360.60 l
+544.08 356.92 l
+544.57 360.08 l
+545.06 358.01 l
+545.55 359.27 l
+546.04 353.22 l
+546.53 349.94 l
+547.02 359.43 l
+547.51 368.10 l
+548.00 367.93 l
+548.50 366.28 l
+548.99 365.34 l
+549.48 364.14 l
+549.97 365.98 l
+550.46 365.92 l
+550.95 367.06 l
+551.44 363.54 l
+551.93 369.00 l
+552.42 370.39 l
+552.92 375.79 l
+553.41 372.72 l
+553.90 364.27 l
+554.39 356.76 l
+554.88 353.59 l
+555.37 356.87 l
+555.86 354.31 l
+556.35 353.45 l
+556.84 359.26 l
+557.33 364.85 l
+557.83 366.64 l
+558.32 363.13 l
+558.81 358.45 l
+559.30 356.61 l
+559.79 357.41 l
+560.28 354.26 l
+560.77 358.80 l
+561.26 361.58 l
+561.75 362.17 l
+562.24 361.28 l
+562.74 357.46 l
+563.23 368.43 l
+563.72 359.37 l
+S
+564.70 360.34 m
+565.19 357.38 l
+565.68 341.63 l
+566.17 340.07 l
+566.66 342.02 l
+567.16 343.88 l
+567.65 348.62 l
+568.14 349.72 l
+568.63 348.63 l
+569.12 355.49 l
+569.61 365.67 l
+570.10 360.37 l
+570.59 330.10 l
+571.08 294.15 l
+571.57 317.21 l
+572.07 329.80 l
+572.56 325.59 l
+573.05 317.44 l
+573.54 315.57 l
+574.03 319.90 l
+574.52 327.00 l
+575.01 323.67 l
+575.50 323.05 l
+575.99 324.66 l
+576.49 329.27 l
+576.98 332.11 l
+577.47 323.22 l
+577.96 323.97 l
+578.45 326.69 l
+578.94 331.94 l
+579.43 336.75 l
+579.92 339.92 l
+580.41 342.66 l
+580.90 348.79 l
+581.40 342.39 l
+581.89 341.98 l
+582.38 338.11 l
+582.87 358.73 l
+583.36 361.99 l
+583.85 344.73 l
+584.34 348.55 l
+584.83 347.55 l
+585.32 354.82 l
+585.81 342.84 l
+586.31 347.06 l
+586.80 344.13 l
+587.29 342.16 l
+587.78 344.66 l
+588.27 348.28 l
+588.76 344.92 l
+589.25 339.63 l
+589.74 347.96 l
+590.23 347.67 l
+590.73 371.29 l
+591.22 349.40 l
+591.71 344.45 l
+592.20 343.07 l
+592.69 341.84 l
+593.18 343.47 l
+593.67 343.38 l
+594.16 351.25 l
+594.65 339.81 l
+595.14 356.68 l
+595.64 338.36 l
+596.13 344.04 l
+596.62 341.72 l
+597.11 332.16 l
+597.60 333.78 l
+598.09 340.27 l
+598.58 339.58 l
+599.07 341.32 l
+599.56 342.31 l
+600.05 343.88 l
+600.55 352.21 l
+601.04 355.38 l
+601.53 356.59 l
+602.02 356.12 l
+602.51 351.14 l
+603.00 338.20 l
+603.49 341.14 l
+603.98 340.26 l
+604.47 336.65 l
+604.97 340.68 l
+605.46 344.70 l
+605.95 344.16 l
+606.44 341.62 l
+606.93 347.16 l
+607.42 344.09 l
+607.91 337.27 l
+608.40 345.92 l
+608.89 345.73 l
+609.38 350.37 l
+609.88 346.39 l
+610.37 341.96 l
+610.86 344.32 l
+611.35 345.47 l
+611.84 337.42 l
+612.33 342.73 l
+612.82 349.32 l
+613.31 354.46 l
+613.80 357.89 l
+614.30 354.03 l
+614.79 352.23 l
+615.28 350.64 l
+615.77 354.48 l
+616.26 357.10 l
+616.75 354.52 l
+617.24 351.01 l
+617.73 356.31 l
+618.22 366.46 l
+618.71 369.53 l
+619.21 378.99 l
+619.70 371.59 l
+620.19 366.83 l
+620.68 371.19 l
+621.17 371.04 l
+621.66 378.22 l
+622.15 373.14 l
+622.64 370.72 l
+623.13 369.07 l
+623.62 371.45 l
+624.12 363.58 l
+624.61 370.82 l
+625.10 372.04 l
+625.59 370.42 l
+626.08 375.79 l
+S
+Q q
+BT
+0.000 0.000 0.000 rg
+/F3 1 Tf 14.00 0.00 -0.00 14.00 292.81 416.89 Tm (Relay bandwidths) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 339.41 4.32 Tm (Date) Tj
+ET
+BT
+/F2 1 Tf 0.00 12.00 -12.00 0.00 10.08 188.75 Tm (Bandwidth [MB/s]) Tj
+ET
+Q q 56.16 59.04 591.84 352.80 re W n
+1.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+78.08 107.94 m
+78.57 105.45 l
+79.06 104.06 l
+79.55 105.72 l
+80.04 103.80 l
+80.54 105.65 l
+81.03 104.00 l
+81.52 108.96 l
+82.01 107.60 l
+82.50 106.83 l
+82.99 108.22 l
+83.48 109.62 l
+83.97 109.79 l
+84.46 111.64 l
+84.95 112.88 l
+85.45 114.82 l
+85.94 115.67 l
+86.43 116.19 l
+86.92 117.40 l
+87.41 116.89 l
+87.90 113.81 l
+88.39 115.99 l
+88.88 115.03 l
+89.37 115.91 l
+89.86 115.18 l
+90.36 114.46 l
+90.85 112.83 l
+91.34 113.47 l
+91.83 113.76 l
+92.32 110.61 l
+92.81 109.40 l
+93.30 109.65 l
+93.79 110.54 l
+94.28 109.29 l
+94.78 109.91 l
+95.27 112.32 l
+95.76 114.43 l
+96.25 113.70 l
+96.74 111.88 l
+97.23 112.65 l
+97.72 110.67 l
+98.21 109.55 l
+98.70 107.41 l
+99.19 107.37 l
+99.69 111.84 l
+100.18 113.17 l
+100.67 114.04 l
+101.16 114.19 l
+101.65 114.62 l
+102.14 114.77 l
+102.63 115.16 l
+103.12 112.54 l
+103.61 115.31 l
+104.11 117.05 l
+104.60 115.34 l
+105.09 115.89 l
+105.58 116.08 l
+106.07 116.02 l
+106.56 115.05 l
+107.05 115.58 l
+107.54 114.72 l
+108.03 114.82 l
+108.52 115.51 l
+109.02 114.94 l
+109.51 112.95 l
+110.00 113.10 l
+110.49 113.89 l
+110.98 114.05 l
+111.47 114.20 l
+111.96 117.22 l
+112.45 118.83 l
+112.94 118.25 l
+113.43 119.35 l
+113.93 121.32 l
+114.42 125.21 l
+114.91 125.61 l
+115.40 123.37 l
+115.89 123.50 l
+116.38 123.48 l
+116.87 125.30 l
+117.36 128.43 l
+117.85 130.01 l
+118.35 129.87 l
+118.84 128.86 l
+119.33 129.78 l
+119.82 130.35 l
+120.31 129.33 l
+120.80 126.38 l
+121.29 126.63 l
+121.78 126.36 l
+122.27 124.52 l
+122.76 123.98 l
+123.26 124.21 l
+123.75 125.76 l
+124.24 126.64 l
+124.73 125.40 l
+125.22 126.06 l
+125.71 126.13 l
+126.20 124.42 l
+126.69 123.04 l
+127.18 119.78 l
+127.67 125.10 l
+128.17 125.82 l
+128.66 121.28 l
+129.15 121.64 l
+129.64 123.04 l
+130.13 121.94 l
+130.62 122.18 l
+131.11 123.63 l
+131.60 121.87 l
+132.09 122.87 l
+132.59 128.21 l
+133.08 129.19 l
+133.57 126.03 l
+134.06 125.41 l
+134.55 129.53 l
+135.04 130.99 l
+135.53 127.17 l
+136.02 126.48 l
+136.51 128.11 l
+137.00 128.21 l
+137.50 127.95 l
+137.99 128.81 l
+138.48 130.82 l
+138.97 127.61 l
+139.46 126.57 l
+139.95 129.81 l
+140.44 133.65 l
+140.93 128.75 l
+141.42 130.03 l
+141.92 129.94 l
+142.41 129.71 l
+142.90 130.14 l
+143.39 129.45 l
+143.88 130.50 l
+144.37 128.72 l
+144.86 127.27 l
+145.35 127.66 l
+145.84 128.37 l
+146.33 127.05 l
+146.83 123.87 l
+147.32 121.53 l
+147.81 121.04 l
+148.30 122.84 l
+148.79 125.28 l
+149.28 127.43 l
+149.77 125.99 l
+150.26 123.00 l
+150.75 123.55 l
+151.24 123.57 l
+151.74 123.00 l
+152.23 123.10 l
+152.72 123.72 l
+153.21 124.74 l
+153.70 122.95 l
+154.19 124.66 l
+154.68 127.31 l
+155.17 129.95 l
+155.66 134.70 l
+156.16 132.81 l
+156.65 128.88 l
+157.14 130.87 l
+157.63 134.71 l
+158.12 130.65 l
+158.61 133.07 l
+159.10 135.55 l
+159.59 135.98 l
+160.08 133.98 l
+160.57 135.41 l
+161.07 135.34 l
+161.56 136.41 l
+162.05 136.98 l
+162.54 140.45 l
+163.03 139.50 l
+163.52 137.70 l
+164.01 135.05 l
+164.50 133.84 l
+164.99 131.22 l
+165.49 128.20 l
+165.98 130.69 l
+166.47 134.50 l
+166.96 135.71 l
+167.45 132.42 l
+167.94 135.67 l
+168.43 136.48 l
+168.92 131.66 l
+169.41 131.78 l
+169.90 133.14 l
+170.40 136.13 l
+170.89 138.64 l
+171.38 138.11 l
+171.87 136.39 l
+172.36 141.55 l
+172.85 145.47 l
+173.34 140.96 l
+173.83 139.77 l
+174.32 140.70 l
+174.81 141.09 l
+175.31 139.94 l
+175.80 143.48 l
+176.29 144.77 l
+176.78 142.08 l
+177.27 143.22 l
+177.76 140.99 l
+178.25 142.32 l
+178.74 134.20 l
+179.23 138.03 l
+179.73 139.60 l
+180.22 136.28 l
+180.71 135.99 l
+181.20 139.31 l
+181.69 139.04 l
+182.18 135.95 l
+182.67 133.01 l
+183.16 131.49 l
+183.65 129.10 l
+184.14 132.33 l
+184.64 136.13 l
+185.13 137.64 l
+185.62 138.51 l
+186.11 142.18 l
+186.60 146.35 l
+187.09 149.43 l
+187.58 143.92 l
+188.07 139.79 l
+188.56 144.51 l
+189.05 145.82 l
+189.55 151.33 l
+190.04 150.37 l
+190.53 149.83 l
+191.02 151.34 l
+191.51 152.97 l
+192.00 150.76 l
+192.49 148.50 l
+192.98 148.74 l
+193.47 150.39 l
+193.97 150.25 l
+194.46 150.46 l
+194.95 151.45 l
+195.44 150.18 l
+195.93 149.66 l
+196.42 150.61 l
+196.91 149.82 l
+197.40 148.80 l
+197.89 151.35 l
+198.38 150.38 l
+198.88 149.94 l
+199.37 149.26 l
+199.86 153.88 l
+200.35 157.69 l
+200.84 153.18 l
+201.33 149.95 l
+201.82 149.23 l
+202.31 150.62 l
+202.80 150.20 l
+203.30 149.94 l
+203.79 153.04 l
+204.28 155.04 l
+204.77 154.65 l
+205.26 153.29 l
+205.75 150.77 l
+206.24 151.95 l
+206.73 154.69 l
+207.22 155.64 l
+207.71 154.64 l
+208.21 154.23 l
+208.70 152.66 l
+209.19 152.12 l
+209.68 156.43 l
+210.17 156.07 l
+210.66 154.85 l
+211.15 152.87 l
+211.64 150.55 l
+212.13 151.51 l
+212.62 150.11 l
+213.12 147.68 l
+213.61 149.91 l
+214.10 152.66 l
+214.59 150.77 l
+215.08 148.91 l
+215.57 150.65 l
+216.06 149.93 l
+216.55 151.06 l
+217.04 153.07 l
+217.54 153.53 l
+218.03 150.20 l
+218.52 150.71 l
+219.01 150.08 l
+219.50 150.95 l
+219.99 150.30 l
+220.48 147.36 l
+220.97 148.77 l
+221.46 149.86 l
+221.95 151.56 l
+222.45 148.90 l
+222.94 145.04 l
+223.43 144.28 l
+223.92 145.35 l
+224.41 148.51 l
+224.90 149.13 l
+225.39 148.92 l
+225.88 146.97 l
+226.37 145.66 l
+226.86 149.44 l
+227.36 151.56 l
+227.85 152.38 l
+228.34 150.39 l
+228.83 149.96 l
+229.32 147.65 l
+229.81 146.12 l
+230.30 148.88 l
+230.79 152.20 l
+231.28 155.24 l
+231.78 149.01 l
+232.27 150.07 l
+232.76 154.13 l
+233.25 148.79 l
+233.74 148.34 l
+234.23 152.63 l
+234.72 152.54 l
+235.21 147.54 l
+235.70 148.77 l
+236.19 147.65 l
+236.69 145.59 l
+237.18 148.71 l
+237.67 149.82 l
+238.16 148.72 l
+238.65 147.92 l
+239.14 147.70 l
+239.63 147.81 l
+240.12 149.70 l
+240.61 148.88 l
+241.11 151.45 l
+241.60 154.91 l
+242.09 154.90 l
+242.58 151.48 l
+243.07 148.24 l
+243.56 150.60 l
+244.05 151.73 l
+244.54 153.06 l
+245.03 155.48 l
+245.52 153.95 l
+246.02 151.13 l
+246.51 152.50 l
+247.00 153.28 l
+247.49 152.55 l
+247.98 153.23 l
+248.47 155.70 l
+248.96 152.56 l
+249.45 154.50 l
+249.94 153.04 l
+250.43 150.66 l
+250.93 150.31 l
+251.42 153.50 l
+251.91 155.62 l
+252.40 152.50 l
+252.89 152.97 l
+253.38 148.38 l
+253.87 148.80 l
+254.36 156.29 l
+254.85 159.29 l
+255.35 160.28 l
+255.84 156.52 l
+256.33 152.89 l
+256.82 158.86 l
+257.31 157.68 l
+257.80 159.77 l
+258.29 162.56 l
+258.78 162.72 l
+259.27 160.90 l
+259.76 163.61 l
+260.26 164.11 l
+260.75 161.87 l
+261.24 161.63 l
+261.73 160.45 l
+262.22 161.45 l
+262.71 160.30 l
+263.20 159.85 l
+263.69 157.43 l
+264.18 157.67 l
+264.67 162.48 l
+265.17 162.81 l
+265.66 162.41 l
+266.15 158.67 l
+266.64 156.11 l
+267.13 156.04 l
+267.62 155.64 l
+268.11 154.17 l
+268.60 155.18 l
+269.09 157.67 l
+269.59 156.11 l
+270.08 155.97 l
+270.57 156.90 l
+271.06 155.63 l
+271.55 152.42 l
+272.04 155.01 l
+272.53 156.49 l
+273.02 155.28 l
+273.51 157.73 l
+274.00 158.39 l
+274.50 158.11 l
+274.99 157.87 l
+275.48 160.44 l
+275.97 160.84 l
+276.46 160.36 l
+276.95 160.82 l
+277.44 158.93 l
+277.93 159.72 l
+278.42 159.69 l
+278.92 158.82 l
+279.41 162.40 l
+279.90 162.23 l
+280.39 161.83 l
+280.88 161.18 l
+281.37 158.83 l
+281.86 160.18 l
+282.35 161.40 l
+282.84 160.24 l
+283.33 158.79 l
+283.83 159.63 l
+284.32 158.74 l
+284.81 158.04 l
+285.30 160.68 l
+285.79 160.45 l
+286.28 164.59 l
+286.77 164.20 l
+287.26 164.06 l
+287.75 165.81 l
+288.24 164.51 l
+288.74 160.74 l
+289.23 160.30 l
+289.72 161.69 l
+290.21 159.04 l
+290.70 157.06 l
+291.19 157.50 l
+291.68 158.72 l
+292.17 158.91 l
+292.66 161.26 l
+293.16 165.73 l
+293.65 164.50 l
+294.14 163.26 l
+294.63 162.35 l
+295.12 161.75 l
+295.61 162.27 l
+296.10 163.22 l
+296.59 164.81 l
+297.08 163.65 l
+297.57 164.48 l
+298.07 164.12 l
+298.56 160.55 l
+299.05 162.02 l
+299.54 164.22 l
+300.03 165.95 l
+300.52 165.11 l
+301.01 163.77 l
+301.50 163.55 l
+301.99 160.71 l
+302.49 161.38 l
+302.98 158.63 l
+303.47 165.17 l
+303.96 162.86 l
+304.45 161.74 l
+304.94 162.51 l
+305.43 164.37 l
+305.92 167.43 l
+306.41 164.65 l
+306.90 163.90 l
+307.40 164.82 l
+307.89 165.44 l
+308.38 166.89 l
+308.87 161.88 l
+309.36 160.70 l
+309.85 161.83 l
+310.34 166.54 l
+310.83 166.58 l
+311.32 167.69 l
+311.81 168.89 l
+312.31 171.35 l
+312.80 168.14 l
+313.29 168.52 l
+313.78 167.84 l
+314.27 165.16 l
+314.76 168.67 l
+315.25 170.29 l
+315.74 169.46 l
+316.23 168.15 l
+316.73 167.78 l
+317.22 168.91 l
+317.71 163.59 l
+318.20 166.16 l
+318.69 165.31 l
+319.18 163.47 l
+319.67 165.32 l
+320.16 167.97 l
+320.65 167.32 l
+321.14 163.44 l
+321.64 159.96 l
+322.13 158.62 l
+322.62 159.70 l
+323.11 158.68 l
+323.60 156.65 l
+324.09 157.38 l
+324.58 158.91 l
+325.07 162.56 l
+325.56 162.43 l
+326.05 160.77 l
+326.55 161.66 l
+327.04 162.43 l
+327.53 160.12 l
+328.02 157.58 l
+328.51 160.92 l
+329.00 163.22 l
+329.49 163.94 l
+329.98 165.25 l
+330.47 160.64 l
+330.97 160.97 l
+331.46 159.47 l
+331.95 158.75 l
+332.44 160.98 l
+332.93 156.38 l
+333.42 159.36 l
+333.91 160.13 l
+334.40 160.37 l
+334.89 161.55 l
+335.38 163.66 l
+335.88 162.55 l
+336.37 159.34 l
+336.86 158.30 l
+337.35 160.03 l
+337.84 163.09 l
+338.33 160.53 l
+338.82 158.28 l
+339.31 157.26 l
+339.80 157.96 l
+340.30 161.72 l
+340.79 161.28 l
+341.28 163.56 l
+341.77 162.77 l
+342.26 164.89 l
+342.75 164.76 l
+343.24 165.55 l
+343.73 162.30 l
+344.22 163.48 l
+344.71 164.42 l
+345.21 165.30 l
+345.70 167.09 l
+346.19 167.15 l
+346.68 166.24 l
+347.17 166.27 l
+347.66 167.10 l
+348.15 170.63 l
+348.64 172.16 l
+349.13 170.28 l
+349.62 165.69 l
+350.12 162.61 l
+350.61 165.54 l
+351.10 166.80 l
+351.59 165.20 l
+352.08 165.08 l
+352.57 163.65 l
+353.06 164.88 l
+353.55 164.54 l
+354.04 165.50 l
+354.54 167.07 l
+355.03 165.71 l
+355.52 163.89 l
+356.01 162.39 l
+356.50 166.66 l
+356.99 165.10 l
+357.48 171.44 l
+357.97 174.29 l
+358.46 178.10 l
+358.95 170.75 l
+359.45 174.91 l
+359.94 175.72 l
+360.43 180.17 l
+360.92 177.99 l
+361.41 163.70 l
+361.90 157.40 l
+362.39 160.78 l
+362.88 166.35 l
+363.37 173.69 l
+363.86 173.53 l
+364.36 169.36 l
+364.85 168.92 l
+365.34 172.71 l
+365.83 173.58 l
+366.32 176.83 l
+366.81 175.93 l
+367.30 175.08 l
+367.79 178.50 l
+368.28 177.13 l
+368.78 176.15 l
+369.27 174.41 l
+369.76 174.61 l
+370.25 174.20 l
+370.74 172.47 l
+371.23 176.27 l
+371.72 176.49 l
+372.21 178.63 l
+372.70 175.37 l
+373.19 173.49 l
+373.69 178.53 l
+374.18 179.55 l
+374.67 177.55 l
+375.16 178.02 l
+375.65 181.33 l
+376.14 179.43 l
+376.63 180.40 l
+377.12 179.96 l
+377.61 176.22 l
+378.11 174.70 l
+378.60 178.67 l
+379.09 180.37 l
+379.58 178.39 l
+380.07 174.60 l
+380.56 177.00 l
+381.05 176.17 l
+381.54 170.81 l
+382.03 171.43 l
+382.52 173.02 l
+383.02 170.03 l
+383.51 175.25 l
+384.00 178.31 l
+384.49 181.06 l
+384.98 184.18 l
+385.47 181.20 l
+385.96 180.95 l
+386.45 181.70 l
+386.94 181.56 l
+387.43 182.06 l
+387.93 183.29 l
+388.42 186.45 l
+388.91 186.98 l
+389.40 188.00 l
+389.89 187.27 l
+390.38 185.76 l
+390.87 187.18 l
+391.36 144.93 l
+391.85 148.93 l
+392.35 132.69 l
+392.84 133.98 l
+393.33 150.67 l
+393.82 175.93 l
+394.31 182.71 l
+394.80 178.98 l
+395.29 181.70 l
+395.78 187.22 l
+396.27 188.96 l
+396.76 190.00 l
+397.26 192.89 l
+397.75 187.43 l
+398.24 189.85 l
+398.73 191.11 l
+399.22 192.22 l
+399.71 190.48 l
+400.20 188.79 l
+400.69 187.95 l
+401.18 190.59 l
+401.67 193.27 l
+402.17 192.24 l
+402.66 189.26 l
+403.15 187.78 l
+403.64 184.27 l
+404.13 179.92 l
+404.62 174.20 l
+405.11 175.59 l
+405.60 180.18 l
+406.09 180.50 l
+406.59 185.95 l
+407.08 188.35 l
+407.57 188.60 l
+408.06 189.61 l
+408.55 185.71 l
+409.04 187.82 l
+409.53 191.72 l
+410.02 197.95 l
+410.51 196.49 l
+411.00 197.81 l
+411.50 195.75 l
+411.99 196.42 l
+412.48 196.10 l
+412.97 191.54 l
+413.46 190.80 l
+413.95 192.40 l
+414.44 192.61 l
+414.93 192.17 l
+415.42 193.31 l
+415.92 195.71 l
+416.41 197.66 l
+416.90 204.73 l
+417.39 201.81 l
+417.88 203.79 l
+418.37 206.92 l
+418.86 210.52 l
+419.35 205.64 l
+419.84 200.84 l
+420.33 201.78 l
+420.83 211.64 l
+421.32 210.10 l
+421.81 204.74 l
+422.30 209.63 l
+422.79 217.09 l
+423.28 216.60 l
+423.77 218.03 l
+424.26 215.30 l
+424.75 212.14 l
+425.24 209.01 l
+425.74 209.03 l
+426.23 211.72 l
+426.72 213.76 l
+427.21 217.52 l
+427.70 214.63 l
+428.19 209.58 l
+428.68 203.33 l
+429.17 207.22 l
+429.66 213.56 l
+430.16 211.55 l
+430.65 214.27 l
+431.14 212.67 l
+431.63 209.63 l
+432.12 210.34 l
+432.61 211.06 l
+433.10 210.81 l
+433.59 215.52 l
+434.08 218.52 l
+434.57 216.20 l
+435.07 213.34 l
+435.56 217.09 l
+436.05 218.63 l
+436.54 219.53 l
+437.03 220.60 l
+437.52 223.29 l
+438.01 222.02 l
+438.50 217.16 l
+438.99 219.67 l
+439.49 218.33 l
+439.98 225.71 l
+440.47 226.97 l
+440.96 226.73 l
+441.45 227.75 l
+441.94 228.56 l
+442.43 229.12 l
+442.92 224.26 l
+443.41 226.67 l
+443.90 228.58 l
+444.40 230.65 l
+444.89 234.07 l
+445.38 230.34 l
+445.87 226.83 l
+446.36 220.06 l
+446.85 223.25 l
+447.34 224.06 l
+447.83 227.09 l
+448.32 224.34 l
+448.81 223.41 l
+449.31 229.04 l
+449.80 230.66 l
+450.29 218.10 l
+450.78 219.19 l
+451.27 222.77 l
+451.76 221.90 l
+452.25 216.08 l
+452.74 215.68 l
+453.23 217.75 l
+453.73 219.11 l
+454.22 223.04 l
+454.71 226.67 l
+455.20 224.22 l
+455.69 222.02 l
+456.18 223.61 l
+456.67 223.81 l
+457.16 225.13 l
+457.65 227.20 l
+458.14 222.15 l
+458.64 222.88 l
+459.13 219.87 l
+459.62 215.75 l
+460.11 215.30 l
+460.60 213.22 l
+461.09 214.11 l
+461.58 218.12 l
+462.07 216.91 l
+462.56 213.12 l
+463.05 213.66 l
+463.55 215.27 l
+464.04 221.77 l
+464.53 221.50 l
+465.02 217.99 l
+465.51 216.46 l
+466.00 213.33 l
+466.49 211.76 l
+466.98 209.81 l
+467.47 210.66 l
+467.97 208.12 l
+468.46 208.43 l
+468.95 211.21 l
+469.44 211.24 l
+469.93 214.42 l
+470.42 212.28 l
+470.91 211.15 l
+471.40 214.35 l
+471.89 219.22 l
+472.38 218.93 l
+472.88 218.55 l
+473.37 215.71 l
+473.86 214.66 l
+474.35 211.13 l
+474.84 209.63 l
+475.33 210.74 l
+475.82 211.59 l
+476.31 216.59 l
+476.80 219.27 l
+477.30 221.12 l
+477.79 224.90 l
+478.28 224.57 l
+478.77 222.83 l
+479.26 224.00 l
+479.75 225.76 l
+480.24 226.05 l
+480.73 223.16 l
+481.22 226.05 l
+481.71 225.35 l
+482.21 223.28 l
+482.70 224.35 l
+483.19 223.20 l
+483.68 201.64 l
+484.17 193.45 l
+484.66 194.25 l
+485.15 195.94 l
+485.64 199.07 l
+486.13 203.78 l
+486.62 206.22 l
+487.12 207.21 l
+487.61 205.83 l
+488.10 207.04 l
+488.59 208.21 l
+489.08 209.77 l
+489.57 209.26 l
+490.06 206.62 l
+490.55 210.01 l
+491.04 210.69 l
+491.54 212.37 l
+492.03 212.57 l
+492.52 217.93 l
+493.01 222.85 l
+493.50 221.50 l
+493.99 217.09 l
+494.48 220.13 l
+494.97 222.50 l
+495.46 223.71 l
+495.95 226.03 l
+496.45 225.83 l
+496.94 224.54 l
+497.43 225.07 l
+497.92 216.49 l
+498.41 217.37 l
+498.90 216.57 l
+499.39 218.64 l
+499.88 219.69 l
+500.37 218.05 l
+500.86 219.12 l
+501.36 218.36 l
+501.85 219.03 l
+502.34 220.82 l
+502.83 222.37 l
+503.32 222.59 l
+503.81 223.83 l
+504.30 227.37 l
+504.79 227.04 l
+505.28 227.13 l
+505.78 228.28 l
+506.27 225.07 l
+506.76 223.08 l
+507.25 219.78 l
+507.74 219.80 l
+508.23 216.63 l
+508.72 218.55 l
+509.21 224.46 l
+509.70 225.98 l
+510.19 222.71 l
+510.69 217.56 l
+511.18 220.29 l
+511.67 222.24 l
+512.16 220.88 l
+512.65 221.93 l
+513.14 221.92 l
+513.63 219.91 l
+514.12 219.55 l
+514.61 219.33 l
+515.11 218.59 l
+515.60 212.07 l
+516.09 211.92 l
+516.58 214.02 l
+517.07 216.96 l
+517.56 220.26 l
+518.05 212.59 l
+518.54 216.13 l
+519.03 217.63 l
+519.52 219.14 l
+520.02 221.25 l
+520.51 217.55 l
+521.00 212.90 l
+521.49 212.51 l
+521.98 216.38 l
+522.47 218.34 l
+522.96 218.12 l
+523.45 215.13 l
+523.94 210.84 l
+524.43 212.85 l
+524.93 209.23 l
+525.42 213.31 l
+525.91 216.33 l
+526.40 216.90 l
+526.89 216.58 l
+527.38 216.08 l
+527.87 216.31 l
+528.36 219.44 l
+528.85 221.70 l
+529.35 215.58 l
+529.84 212.87 l
+530.33 215.82 l
+530.82 216.40 l
+531.31 211.29 l
+531.80 212.07 l
+532.29 214.47 l
+532.78 215.74 l
+533.27 218.59 l
+533.76 221.54 l
+534.26 220.17 l
+534.75 221.29 l
+535.24 218.76 l
+535.73 219.93 l
+536.22 218.56 l
+536.71 216.98 l
+537.20 220.06 l
+537.69 215.56 l
+538.18 219.80 l
+538.67 218.47 l
+539.17 225.30 l
+539.66 226.37 l
+540.15 227.83 l
+540.64 224.70 l
+541.13 222.79 l
+541.62 221.99 l
+542.11 222.59 l
+542.60 222.86 l
+543.09 223.67 l
+543.59 223.98 l
+544.08 226.98 l
+544.57 226.72 l
+545.06 223.99 l
+545.55 224.64 l
+546.04 225.47 l
+546.53 223.14 l
+547.02 225.93 l
+547.51 229.42 l
+548.00 227.20 l
+548.50 224.70 l
+548.99 225.86 l
+549.48 226.35 l
+549.97 227.71 l
+550.46 229.03 l
+550.95 230.07 l
+551.44 227.54 l
+551.93 228.93 l
+552.42 229.61 l
+552.92 234.55 l
+553.41 235.84 l
+553.90 238.10 l
+554.39 233.79 l
+554.88 227.52 l
+555.37 230.29 l
+555.86 229.44 l
+556.35 230.09 l
+556.84 232.52 l
+557.33 235.79 l
+557.83 236.47 l
+558.32 232.57 l
+558.81 231.79 l
+559.30 230.35 l
+559.79 232.56 l
+560.28 232.61 l
+560.77 234.16 l
+561.26 235.92 l
+561.75 235.27 l
+562.24 233.72 l
+562.74 232.97 l
+563.23 239.41 l
+563.72 239.98 l
+S
+564.70 238.74 m
+565.19 232.03 l
+565.68 224.99 l
+566.17 226.20 l
+566.66 226.46 l
+567.16 225.58 l
+567.65 221.50 l
+568.14 223.58 l
+568.63 221.71 l
+569.12 223.42 l
+569.61 228.01 l
+570.10 228.18 l
+570.59 211.79 l
+571.08 182.87 l
+571.57 197.13 l
+572.07 212.13 l
+572.56 214.60 l
+573.05 210.21 l
+573.54 208.50 l
+574.03 208.56 l
+574.52 215.77 l
+575.01 215.74 l
+575.50 212.46 l
+575.99 211.28 l
+576.49 213.28 l
+576.98 217.08 l
+577.47 215.96 l
+577.96 218.73 l
+578.45 219.68 l
+578.94 221.06 l
+579.43 221.43 l
+579.92 223.16 l
+580.41 224.49 l
+580.90 228.00 l
+581.40 228.75 l
+581.89 227.72 l
+582.38 219.21 l
+582.87 221.45 l
+583.36 224.87 l
+583.85 221.35 l
+584.34 220.60 l
+584.83 222.43 l
+585.32 226.81 l
+585.81 218.83 l
+586.31 218.50 l
+586.80 223.46 l
+587.29 220.51 l
+587.78 222.49 l
+588.27 227.04 l
+588.76 226.92 l
+589.25 221.81 l
+589.74 224.12 l
+590.23 219.36 l
+590.73 218.54 l
+591.22 217.00 l
+591.71 214.99 l
+592.20 214.88 l
+592.69 211.09 l
+593.18 208.26 l
+593.67 207.41 l
+594.16 209.57 l
+594.65 211.25 l
+595.14 210.65 l
+595.64 211.21 l
+596.13 211.65 l
+596.62 215.44 l
+597.11 211.19 l
+597.60 210.89 l
+598.09 215.12 l
+598.58 214.04 l
+599.07 215.27 l
+599.56 213.78 l
+600.05 216.86 l
+600.55 219.48 l
+601.04 224.91 l
+601.53 228.84 l
+602.02 230.73 l
+602.51 227.79 l
+603.00 217.29 l
+603.49 216.00 l
+603.98 217.78 l
+604.47 214.72 l
+604.97 216.83 l
+605.46 218.30 l
+605.95 221.47 l
+606.44 218.39 l
+606.93 223.38 l
+607.42 221.61 l
+607.91 220.70 l
+608.40 223.11 l
+608.89 225.05 l
+609.38 223.83 l
+609.88 220.71 l
+610.37 218.39 l
+610.86 217.26 l
+611.35 221.09 l
+611.84 214.91 l
+612.33 216.39 l
+612.82 219.16 l
+613.31 220.39 l
+613.80 220.60 l
+614.30 221.50 l
+614.79 223.00 l
+615.28 219.82 l
+615.77 219.44 l
+616.26 221.56 l
+616.75 217.49 l
+617.24 218.37 l
+617.73 220.13 l
+618.22 226.23 l
+618.71 231.05 l
+619.21 236.71 l
+619.70 235.10 l
+620.19 230.13 l
+620.68 231.98 l
+621.17 234.12 l
+621.66 237.68 l
+622.15 238.65 l
+622.64 236.67 l
+623.13 237.43 l
+623.62 233.13 l
+624.12 230.13 l
+624.61 231.44 l
+625.10 233.06 l
+625.59 231.24 l
+626.08 233.72 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.60 w
+[] 0 d
+1 J
+1 j
+10.00 M
+238.65 59.04 m 597.60 59.04 l S
+238.65 59.04 m 238.65 51.84 l S
+417.88 59.04 m 417.88 51.84 l S
+597.60 59.04 m 597.60 51.84 l S
+88.39 59.04 m 612.82 59.04 l S
+88.39 59.04 m 88.39 57.60 l S
+103.61 59.04 m 103.61 57.60 l S
+118.35 59.04 m 118.35 57.60 l S
+133.57 59.04 m 133.57 57.60 l S
+148.30 59.04 m 148.30 57.60 l S
+163.52 59.04 m 163.52 57.60 l S
+178.74 59.04 m 178.74 57.60 l S
+193.47 59.04 m 193.47 57.60 l S
+208.70 59.04 m 208.70 57.60 l S
+223.43 59.04 m 223.43 57.60 l S
+238.65 59.04 m 238.65 57.60 l S
+253.87 59.04 m 253.87 57.60 l S
+267.62 59.04 m 267.62 57.60 l S
+282.84 59.04 m 282.84 57.60 l S
+297.57 59.04 m 297.57 57.60 l S
+312.80 59.04 m 312.80 57.60 l S
+327.53 59.04 m 327.53 57.60 l S
+342.75 59.04 m 342.75 57.60 l S
+357.97 59.04 m 357.97 57.60 l S
+372.70 59.04 m 372.70 57.60 l S
+387.93 59.04 m 387.93 57.60 l S
+402.66 59.04 m 402.66 57.60 l S
+417.88 59.04 m 417.88 57.60 l S
+433.10 59.04 m 433.10 57.60 l S
+447.34 59.04 m 447.34 57.60 l S
+462.56 59.04 m 462.56 57.60 l S
+477.30 59.04 m 477.30 57.60 l S
+492.52 59.04 m 492.52 57.60 l S
+507.25 59.04 m 507.25 57.60 l S
+522.47 59.04 m 522.47 57.60 l S
+537.69 59.04 m 537.69 57.60 l S
+552.42 59.04 m 552.42 57.60 l S
+567.65 59.04 m 567.65 57.60 l S
+582.38 59.04 m 582.38 57.60 l S
+597.60 59.04 m 597.60 57.60 l S
+612.82 59.04 m 612.82 57.60 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 7.00 0.00 -0.00 7.00 92.84 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 108.65 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 122.80 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 139.18 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 153.91 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 168.55 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 183.77 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 198.12 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 213.54 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 228.27 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 244.27 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 259.10 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 272.07 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 287.87 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 302.02 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 318.41 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 333.14 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 347.78 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 363.00 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 377.35 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 392.76 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 407.50 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 423.49 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 438.33 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 451.79 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 467.59 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 481.75 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 498.13 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 512.86 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 527.50 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 542.72 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 557.07 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 572.48 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 587.22 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 603.22 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 618.05 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 135.45 33.12 Tm (2006) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 314.68 33.12 Tm (2007) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 493.90 33.12 Tm (2008) Tj
+ET
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+78.08 59.04 m
+626.08 59.04 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+56.16 72.11 m 56.16 333.62 l S
+56.16 72.11 m 48.96 72.11 l S
+56.16 159.28 m 48.96 159.28 l S
+56.16 246.45 m 48.96 246.45 l S
+56.16 333.62 m 48.96 333.62 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 35.09 67.80 Tm (0) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 154.97 Tm (100) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 242.14 Tm (200) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 329.31 Tm (300) Tj
+ET
+Q q 56.16 59.04 591.84 352.80 re W n
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 572.20 391.77 Tm (Capacity) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 584.20 249.68 Tm (Usage) Tj
+ET
+Q
+endstream
+endobj
+7 0 obj
+40512
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+5 0 R
+]
+/Count 1
+/MediaBox [0 0 648 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font <</F2 9 0 R /F3 10 0 R >>
+/ExtGState << >>
+>>
+endobj
+8 0 obj
+<<
+/Type /Encoding
+/BaseEncoding /WinAnsiEncoding
+/Differences [ 45/minus 96/quoteleft
+144/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
+/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space]
+>>
+endobj
+9 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 8 0 R
+>> endobj
+10 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F3
+/BaseFont /Helvetica-Bold
+/Encoding 8 0 R
+>> endobj
+xref
+0 11
+0000000000 65535 f
+0000000021 00000 n
+0000000163 00000 n
+0000040878 00000 n
+0000040961 00000 n
+0000000212 00000 n
+0000000292 00000 n
+0000040857 00000 n
+0000041053 00000 n
+0000041310 00000 n
+0000041406 00000 n
+trailer
+<<
+/Size 11
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+41508
+%%EOF
diff --git a/2009/metrics/country-hotpets.pdf b/2009/metrics/country-hotpets.pdf
new file mode 100755
index 0000000..e5b1221
--- /dev/null
+++ b/2009/metrics/country-hotpets.pdf
@@ -0,0 +1,5946 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20090505221108)
+/ModDate (D:20090505221108)
+/Title (R Graphics Output)
+/Producer (R 2.8.1)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+5 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 6 0 R
+/Resources 4 0 R
+>>
+endobj
+6 0 obj
+<<
+/Length 7 0 R
+>>
+stream
+q
+Q q 56.16 59.04 525.60 352.80 re W n
+1.000 0.647 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+75.63 128.12 m
+76.06 125.61 l
+76.50 128.12 l
+76.93 126.87 l
+77.37 129.38 l
+77.81 129.38 l
+78.24 128.12 l
+78.68 133.16 l
+79.12 136.31 l
+79.55 138.20 l
+79.99 139.45 l
+80.42 141.34 l
+80.86 145.75 l
+81.30 147.01 l
+81.73 144.49 l
+82.17 142.60 l
+82.60 142.60 l
+83.04 141.34 l
+83.48 143.23 l
+83.91 147.64 l
+84.35 146.38 l
+84.78 145.75 l
+85.22 147.01 l
+85.66 149.52 l
+86.09 147.64 l
+86.53 148.27 l
+86.96 146.38 l
+87.40 143.86 l
+87.84 141.97 l
+88.27 143.86 l
+88.71 141.97 l
+89.15 139.45 l
+89.58 141.97 l
+90.02 143.86 l
+90.45 139.45 l
+90.89 140.71 l
+91.33 141.34 l
+91.76 140.71 l
+92.20 144.49 l
+92.63 144.49 l
+93.07 145.12 l
+93.51 143.23 l
+93.94 148.27 l
+94.38 150.15 l
+94.81 151.41 l
+95.25 152.04 l
+95.69 149.52 l
+96.12 155.82 l
+96.56 154.56 l
+96.99 157.08 l
+97.43 153.30 l
+97.87 150.78 l
+98.30 159.60 l
+98.74 156.45 l
+99.18 156.45 l
+99.61 154.56 l
+100.05 155.82 l
+100.48 157.71 l
+100.92 158.97 l
+101.36 153.30 l
+101.79 153.93 l
+102.23 157.71 l
+102.66 153.93 l
+103.10 158.34 l
+103.54 155.19 l
+103.97 152.67 l
+104.41 150.15 l
+104.84 152.04 l
+105.28 153.93 l
+105.72 152.67 l
+106.15 153.30 l
+106.59 152.67 l
+107.02 155.82 l
+107.46 155.19 l
+107.90 155.82 l
+108.33 157.71 l
+108.77 158.97 l
+109.20 156.45 l
+109.64 156.45 l
+110.08 155.19 l
+110.51 153.30 l
+110.95 152.67 l
+111.39 158.97 l
+111.82 156.45 l
+112.26 155.82 l
+112.69 153.93 l
+113.13 153.93 l
+113.57 154.56 l
+114.00 155.19 l
+114.44 159.60 l
+114.87 158.97 l
+115.31 159.60 l
+115.75 161.48 l
+116.18 158.97 l
+116.62 155.82 l
+117.05 155.82 l
+117.49 160.22 l
+117.93 157.08 l
+118.36 156.45 l
+118.80 155.19 l
+119.23 155.19 l
+119.67 151.41 l
+120.11 153.93 l
+120.54 154.56 l
+120.98 155.82 l
+121.42 157.08 l
+121.85 162.74 l
+122.29 158.97 l
+122.72 160.22 l
+123.16 160.85 l
+123.60 160.85 l
+124.03 162.74 l
+124.47 162.11 l
+124.90 165.26 l
+125.34 164.00 l
+125.78 160.22 l
+126.21 160.85 l
+126.65 162.11 l
+127.08 164.63 l
+127.52 162.74 l
+127.96 160.85 l
+128.39 162.11 l
+128.83 161.48 l
+129.26 161.48 l
+129.70 167.15 l
+130.14 169.04 l
+130.57 166.52 l
+131.01 168.41 l
+131.45 167.78 l
+131.88 166.52 l
+132.32 165.89 l
+132.75 172.18 l
+133.19 174.70 l
+133.63 176.59 l
+134.06 175.96 l
+134.50 174.70 l
+134.93 173.44 l
+135.37 169.67 l
+135.81 170.30 l
+136.24 172.18 l
+136.68 173.44 l
+137.11 174.07 l
+137.55 175.96 l
+137.99 172.18 l
+138.42 169.67 l
+138.86 171.55 l
+139.29 170.30 l
+139.73 170.30 l
+140.17 167.15 l
+140.60 170.92 l
+141.04 171.55 l
+141.47 172.18 l
+141.91 174.70 l
+142.35 179.11 l
+142.78 177.85 l
+143.22 182.25 l
+143.66 182.88 l
+144.09 182.25 l
+144.53 177.85 l
+144.96 179.11 l
+145.40 182.25 l
+145.84 181.62 l
+146.27 182.88 l
+146.71 179.74 l
+147.14 176.59 l
+147.58 174.70 l
+148.02 180.37 l
+148.45 180.37 l
+148.89 182.25 l
+149.32 180.37 l
+149.76 181.00 l
+150.20 177.85 l
+150.63 174.70 l
+151.07 179.11 l
+151.50 182.88 l
+151.94 182.88 l
+152.38 182.88 l
+152.81 184.77 l
+153.25 181.62 l
+153.69 181.62 l
+154.12 182.25 l
+154.56 182.88 l
+154.99 186.03 l
+155.43 180.37 l
+155.87 179.74 l
+156.30 181.62 l
+156.74 184.77 l
+157.17 186.03 l
+157.61 186.03 l
+158.05 192.33 l
+158.48 192.33 l
+158.92 192.33 l
+159.35 188.55 l
+159.79 188.55 l
+160.23 190.44 l
+160.66 194.84 l
+161.10 193.58 l
+161.53 199.25 l
+161.97 201.14 l
+162.41 199.88 l
+162.84 201.14 l
+163.28 208.06 l
+163.72 205.54 l
+164.15 202.40 l
+164.59 203.65 l
+165.02 204.28 l
+165.46 198.62 l
+165.90 196.73 l
+166.33 196.73 l
+166.77 198.62 l
+167.20 201.14 l
+167.64 197.99 l
+168.08 195.47 l
+168.51 193.58 l
+168.95 186.03 l
+169.38 184.77 l
+169.82 190.44 l
+170.26 191.07 l
+170.69 194.84 l
+171.13 197.36 l
+171.56 194.21 l
+172.00 194.21 l
+172.44 195.47 l
+172.87 196.73 l
+173.31 192.95 l
+173.74 194.21 l
+174.18 191.07 l
+174.62 195.47 l
+175.05 196.73 l
+175.49 194.84 l
+175.93 197.36 l
+176.36 201.77 l
+176.80 202.40 l
+177.23 197.36 l
+177.67 200.51 l
+178.11 205.54 l
+178.54 203.65 l
+178.98 206.80 l
+179.41 203.65 l
+179.85 204.28 l
+180.29 204.91 l
+180.72 208.69 l
+181.16 211.21 l
+181.59 208.06 l
+182.03 210.58 l
+182.47 208.06 l
+182.90 204.91 l
+183.34 204.28 l
+183.77 205.54 l
+184.21 208.69 l
+184.65 205.54 l
+185.08 201.77 l
+185.52 204.28 l
+185.96 203.03 l
+186.39 204.91 l
+186.83 208.06 l
+187.26 204.28 l
+187.70 204.91 l
+188.14 203.65 l
+188.57 201.14 l
+189.01 193.58 l
+189.44 200.51 l
+189.88 198.62 l
+190.32 199.25 l
+190.75 195.47 l
+191.19 194.84 l
+191.62 201.77 l
+192.06 198.62 l
+192.50 199.25 l
+192.93 202.40 l
+193.37 204.91 l
+193.80 205.54 l
+194.24 203.65 l
+194.68 201.77 l
+195.11 197.36 l
+195.55 196.73 l
+195.99 199.25 l
+196.42 203.65 l
+196.86 201.14 l
+197.29 200.51 l
+197.73 201.14 l
+198.17 194.21 l
+198.60 196.10 l
+199.04 194.21 l
+199.47 192.33 l
+199.91 194.21 l
+200.35 196.10 l
+200.78 200.51 l
+201.22 204.28 l
+201.65 202.40 l
+202.09 201.77 l
+202.53 203.65 l
+202.96 203.65 l
+203.40 206.80 l
+203.83 203.65 l
+204.27 198.62 l
+204.71 200.51 l
+205.14 201.77 l
+205.58 201.77 l
+206.01 199.88 l
+206.45 200.51 l
+206.89 196.10 l
+207.32 194.21 l
+207.76 198.62 l
+208.20 197.99 l
+208.63 199.88 l
+209.07 203.03 l
+209.50 204.91 l
+209.94 203.65 l
+210.38 201.14 l
+210.81 201.77 l
+211.25 197.99 l
+211.68 199.88 l
+212.12 205.54 l
+212.56 199.88 l
+212.99 204.28 l
+213.43 201.77 l
+213.86 201.77 l
+214.30 203.65 l
+214.74 203.03 l
+215.17 202.40 l
+215.61 204.91 l
+216.04 201.77 l
+216.48 203.65 l
+216.92 217.50 l
+217.35 220.02 l
+217.79 220.02 l
+218.23 221.28 l
+218.66 226.31 l
+219.10 223.80 l
+219.53 226.31 l
+219.97 226.94 l
+220.41 232.61 l
+220.84 237.64 l
+221.28 230.09 l
+221.71 235.13 l
+222.15 235.75 l
+222.59 244.57 l
+223.02 244.57 l
+223.46 238.90 l
+223.89 240.16 l
+224.33 237.64 l
+224.77 237.01 l
+225.20 240.79 l
+225.64 238.90 l
+226.07 242.68 l
+226.51 245.20 l
+226.95 246.45 l
+227.38 246.45 l
+227.82 248.97 l
+228.26 247.71 l
+228.69 248.97 l
+229.13 248.34 l
+229.56 246.45 l
+230.00 242.68 l
+230.44 245.20 l
+230.87 245.20 l
+231.31 247.08 l
+231.74 248.34 l
+232.18 251.49 l
+232.62 247.71 l
+233.05 251.49 l
+233.49 247.08 l
+233.92 243.31 l
+234.36 252.75 l
+234.80 253.38 l
+235.23 251.49 l
+235.67 249.60 l
+236.10 252.12 l
+236.54 257.78 l
+236.98 255.27 l
+237.41 256.53 l
+237.85 255.27 l
+238.28 257.78 l
+238.72 250.23 l
+239.16 254.64 l
+239.59 257.15 l
+240.03 258.41 l
+240.47 252.75 l
+240.90 250.86 l
+241.34 247.08 l
+241.77 250.86 l
+242.21 254.01 l
+242.65 248.97 l
+243.08 250.23 l
+243.52 250.23 l
+243.95 252.12 l
+244.39 252.75 l
+244.83 255.90 l
+245.26 255.27 l
+245.70 255.90 l
+246.13 256.53 l
+246.57 259.67 l
+247.01 247.71 l
+247.44 254.64 l
+247.88 255.27 l
+248.31 252.12 l
+248.75 241.42 l
+249.19 247.08 l
+249.62 247.08 l
+250.06 245.83 l
+250.50 245.83 l
+250.93 251.49 l
+251.37 253.38 l
+251.80 250.86 l
+252.24 248.97 l
+252.68 247.08 l
+253.11 248.34 l
+253.55 254.64 l
+253.98 255.90 l
+254.42 255.90 l
+254.86 249.60 l
+255.29 246.45 l
+255.73 250.86 l
+256.16 253.38 l
+256.60 248.34 l
+257.04 248.34 l
+257.47 250.23 l
+257.91 250.23 l
+258.34 254.64 l
+258.78 253.38 l
+259.22 259.04 l
+259.65 261.56 l
+260.09 262.19 l
+260.53 259.04 l
+260.96 258.41 l
+261.40 252.12 l
+261.83 253.38 l
+262.27 255.27 l
+262.71 251.49 l
+263.14 240.79 l
+263.58 243.31 l
+264.01 243.94 l
+264.45 245.83 l
+264.89 247.71 l
+265.32 255.27 l
+265.76 253.38 l
+266.19 248.34 l
+266.63 252.12 l
+267.07 252.75 l
+267.50 251.49 l
+267.94 254.64 l
+268.37 258.41 l
+268.81 256.53 l
+269.25 255.27 l
+269.68 257.78 l
+270.12 253.38 l
+270.55 253.38 l
+270.99 254.01 l
+271.43 247.08 l
+271.86 248.97 l
+272.30 243.94 l
+272.74 245.83 l
+273.17 247.71 l
+273.61 247.71 l
+274.04 252.75 l
+274.48 255.90 l
+274.92 255.90 l
+275.35 247.71 l
+275.79 255.90 l
+276.22 257.78 l
+276.66 255.27 l
+277.10 260.30 l
+277.53 261.56 l
+277.97 268.48 l
+278.40 269.11 l
+278.84 269.11 l
+279.28 264.71 l
+279.71 268.48 l
+280.15 266.60 l
+280.58 262.19 l
+281.02 260.30 l
+281.46 257.78 l
+281.89 257.78 l
+282.33 257.78 l
+282.77 257.78 l
+283.20 259.67 l
+283.64 259.04 l
+284.07 260.93 l
+284.51 259.67 l
+284.95 263.45 l
+285.38 260.93 l
+285.82 264.71 l
+286.25 259.67 l
+286.69 259.67 l
+287.13 258.41 l
+287.56 256.53 l
+288.00 254.64 l
+288.43 258.41 l
+288.87 259.04 l
+289.31 255.90 l
+289.74 255.90 l
+290.18 259.67 l
+290.61 288.00 l
+291.05 256.53 l
+291.49 257.15 l
+291.92 266.60 l
+292.36 288.00 l
+292.80 282.96 l
+293.23 261.56 l
+293.67 264.08 l
+294.10 262.19 l
+294.54 260.30 l
+294.98 272.89 l
+295.41 296.18 l
+295.85 286.11 l
+296.28 259.67 l
+296.72 257.78 l
+297.16 265.34 l
+297.59 258.41 l
+298.03 264.71 l
+298.46 262.19 l
+298.90 263.45 l
+299.34 264.08 l
+299.77 259.67 l
+300.21 263.45 l
+300.64 268.48 l
+301.08 268.48 l
+301.52 276.67 l
+301.95 272.89 l
+302.39 271.00 l
+302.82 272.89 l
+303.26 273.52 l
+303.70 274.15 l
+304.13 286.11 l
+304.57 296.18 l
+305.01 298.07 l
+305.44 287.37 l
+305.88 266.60 l
+306.31 267.23 l
+306.75 269.11 l
+307.19 269.74 l
+307.62 273.52 l
+308.06 274.78 l
+308.49 276.04 l
+308.93 274.15 l
+309.37 277.30 l
+309.80 270.37 l
+310.24 273.52 l
+310.67 277.30 l
+311.11 279.18 l
+311.55 276.04 l
+311.98 277.30 l
+312.42 285.48 l
+312.85 286.11 l
+313.29 282.96 l
+313.73 290.51 l
+314.16 284.85 l
+314.60 282.33 l
+315.04 285.48 l
+315.47 291.14 l
+315.91 290.51 l
+316.34 288.00 l
+316.78 293.03 l
+317.22 288.63 l
+317.65 280.44 l
+318.09 280.44 l
+318.52 279.18 l
+318.96 279.18 l
+319.40 279.81 l
+319.83 282.96 l
+320.27 279.18 l
+320.70 283.59 l
+321.14 287.37 l
+321.58 282.96 l
+322.01 282.96 l
+322.45 279.81 l
+322.88 284.22 l
+323.32 279.81 l
+323.76 285.48 l
+324.19 284.22 l
+324.63 294.92 l
+325.07 293.66 l
+325.50 293.03 l
+325.94 289.88 l
+326.37 288.63 l
+326.81 291.14 l
+327.25 282.33 l
+327.68 274.15 l
+328.12 276.04 l
+328.55 279.81 l
+328.99 282.96 l
+329.43 288.00 l
+329.86 286.74 l
+330.30 286.11 l
+330.73 289.26 l
+331.17 288.00 l
+331.61 290.51 l
+332.04 288.63 l
+332.48 285.48 l
+332.91 287.37 l
+333.35 294.29 l
+333.79 299.33 l
+334.22 296.18 l
+334.66 301.84 l
+335.10 300.58 l
+335.53 295.55 l
+335.97 303.73 l
+336.40 306.88 l
+336.84 298.70 l
+337.28 293.66 l
+337.71 293.03 l
+338.15 298.07 l
+338.58 297.44 l
+339.02 294.92 l
+339.46 294.92 l
+339.89 298.07 l
+340.33 305.62 l
+340.76 311.28 l
+341.20 305.62 l
+341.64 300.58 l
+342.07 291.77 l
+342.51 304.99 l
+342.94 306.25 l
+343.38 298.07 l
+343.82 299.33 l
+344.25 304.99 l
+344.69 296.18 l
+345.12 292.40 l
+345.56 296.18 l
+346.00 297.44 l
+346.43 293.03 l
+346.87 296.18 l
+347.31 303.10 l
+347.74 301.84 l
+348.18 303.73 l
+348.61 300.58 l
+349.05 303.73 l
+349.49 297.44 l
+349.92 306.25 l
+350.36 299.33 l
+350.79 310.66 l
+351.23 304.36 l
+351.67 303.10 l
+352.10 311.28 l
+352.54 308.14 l
+352.97 308.77 l
+353.41 311.28 l
+353.85 220.02 l
+354.28 237.64 l
+354.72 231.98 l
+355.15 227.57 l
+355.59 266.60 l
+356.03 314.43 l
+356.46 320.73 l
+356.90 322.61 l
+357.34 330.80 l
+357.77 335.83 l
+358.21 340.87 l
+358.64 338.98 l
+359.08 334.57 l
+359.52 333.94 l
+359.95 347.16 l
+360.39 344.01 l
+360.82 340.24 l
+361.26 349.05 l
+361.70 337.09 l
+362.13 342.13 l
+362.57 333.94 l
+363.00 333.94 l
+363.44 333.31 l
+363.88 334.57 l
+364.31 338.35 l
+364.75 335.20 l
+365.18 332.06 l
+365.62 323.24 l
+366.06 325.76 l
+366.49 337.09 l
+366.93 334.57 l
+367.37 342.76 l
+367.80 333.31 l
+368.24 328.91 l
+368.67 330.17 l
+369.11 328.91 l
+369.55 328.28 l
+369.98 336.46 l
+370.42 338.35 l
+370.85 329.54 l
+371.29 333.31 l
+371.73 323.87 l
+372.16 328.28 l
+372.60 327.65 l
+373.03 325.13 l
+373.47 327.65 l
+373.91 318.21 l
+374.34 321.36 l
+374.78 321.98 l
+375.21 320.10 l
+375.65 324.50 l
+376.09 330.80 l
+376.52 343.38 l
+376.96 345.90 l
+377.39 350.31 l
+377.83 364.16 l
+378.27 367.30 l
+378.70 359.12 l
+379.14 378.00 l
+379.58 386.19 l
+380.01 377.37 l
+380.45 377.37 l
+380.88 378.63 l
+381.32 384.30 l
+381.76 383.04 l
+382.19 386.81 l
+382.63 391.85 l
+383.06 374.86 l
+383.50 379.89 l
+383.94 384.93 l
+384.37 384.93 l
+384.81 379.89 l
+385.24 398.14 l
+385.68 398.77 l
+386.12 384.30 l
+386.55 384.30 l
+386.99 377.37 l
+387.42 377.37 l
+387.86 382.41 l
+388.30 394.37 l
+388.73 393.74 l
+389.17 374.86 l
+389.61 371.71 l
+390.04 372.34 l
+390.48 376.74 l
+390.91 378.63 l
+391.35 381.78 l
+391.79 384.30 l
+392.22 378.00 l
+392.66 374.23 l
+393.09 367.30 l
+393.53 372.34 l
+393.97 371.71 l
+394.40 375.48 l
+394.84 374.86 l
+395.27 360.38 l
+395.71 356.60 l
+396.15 361.01 l
+396.58 367.30 l
+397.02 367.93 l
+397.45 375.48 l
+397.89 374.86 l
+398.33 366.04 l
+398.76 369.19 l
+399.20 366.04 l
+399.64 358.49 l
+400.07 355.34 l
+400.51 362.27 l
+400.94 362.90 l
+401.38 356.60 l
+401.82 352.83 l
+402.25 353.46 l
+402.69 349.05 l
+403.12 342.76 l
+403.56 357.23 l
+404.00 359.12 l
+404.43 344.64 l
+404.87 351.57 l
+405.30 361.01 l
+405.74 355.34 l
+406.18 355.34 l
+406.61 359.12 l
+407.05 351.57 l
+407.48 345.27 l
+407.92 347.16 l
+408.36 354.08 l
+408.79 348.42 l
+409.23 344.64 l
+409.66 351.57 l
+410.10 354.08 l
+410.54 355.97 l
+410.97 353.46 l
+411.41 347.16 l
+411.85 345.90 l
+412.28 354.08 l
+412.72 351.57 l
+413.15 351.57 l
+413.59 353.46 l
+414.03 346.53 l
+414.46 339.61 l
+414.90 335.83 l
+415.33 328.28 l
+415.77 332.68 l
+416.21 330.17 l
+416.64 325.76 l
+417.08 325.13 l
+417.51 325.13 l
+417.95 323.24 l
+418.39 335.20 l
+418.82 332.06 l
+419.26 338.98 l
+419.69 337.09 l
+420.13 330.17 l
+420.57 333.94 l
+421.00 326.39 l
+421.44 327.02 l
+421.88 332.06 l
+422.31 335.20 l
+422.75 322.61 l
+423.18 324.50 l
+423.62 325.76 l
+424.06 325.76 l
+424.49 326.39 l
+424.93 328.91 l
+425.36 333.31 l
+425.80 330.17 l
+426.24 335.83 l
+426.67 339.61 l
+427.11 320.73 l
+427.54 326.39 l
+427.98 327.65 l
+428.42 330.80 l
+428.85 321.98 l
+429.29 323.87 l
+429.72 321.36 l
+430.16 326.39 l
+430.60 324.50 l
+431.03 328.91 l
+431.47 330.17 l
+431.91 317.58 l
+432.34 321.98 l
+432.78 320.73 l
+433.21 323.87 l
+433.65 317.58 l
+434.09 313.80 l
+434.52 318.21 l
+434.96 321.36 l
+435.39 321.36 l
+435.83 301.21 l
+436.27 294.92 l
+436.70 299.33 l
+437.14 310.66 l
+437.57 321.98 l
+438.01 316.32 l
+438.45 312.54 l
+438.88 311.91 l
+439.32 313.17 l
+439.75 318.21 l
+440.19 315.69 l
+440.63 319.47 l
+441.06 315.06 l
+441.50 304.36 l
+441.93 304.99 l
+442.37 301.21 l
+442.81 296.18 l
+443.24 291.14 l
+443.68 310.03 l
+444.12 302.47 l
+444.55 304.99 l
+444.99 297.44 l
+445.42 309.40 l
+445.86 308.77 l
+446.30 313.17 l
+446.73 318.21 l
+447.17 305.62 l
+447.60 304.36 l
+448.04 307.51 l
+448.48 301.21 l
+448.91 301.21 l
+449.35 306.88 l
+449.78 315.69 l
+450.22 310.03 l
+450.66 309.40 l
+451.09 317.58 l
+451.53 308.77 l
+451.96 301.84 l
+452.40 304.36 l
+452.84 308.14 l
+453.27 305.62 l
+453.71 300.58 l
+454.15 296.81 l
+454.58 301.21 l
+455.02 300.58 l
+455.45 308.77 l
+455.89 310.66 l
+456.33 302.47 l
+456.76 298.70 l
+457.20 306.88 l
+457.63 306.88 l
+458.07 308.77 l
+458.51 311.28 l
+458.94 319.47 l
+459.38 309.40 l
+459.81 313.80 l
+460.25 308.14 l
+460.69 313.17 l
+461.12 316.95 l
+461.56 316.95 l
+461.99 319.47 l
+462.43 305.62 l
+462.87 304.36 l
+463.30 309.40 l
+463.74 309.40 l
+464.18 303.73 l
+464.61 308.14 l
+465.05 308.77 l
+465.48 304.36 l
+465.92 307.51 l
+466.36 294.29 l
+466.79 303.10 l
+467.23 302.47 l
+467.66 300.58 l
+468.10 303.73 l
+468.54 292.40 l
+468.97 296.81 l
+469.41 293.03 l
+469.84 294.92 l
+470.28 299.96 l
+470.72 298.70 l
+471.15 302.47 l
+471.59 298.70 l
+472.02 305.62 l
+472.46 303.73 l
+472.90 303.73 l
+473.33 311.91 l
+473.77 311.28 l
+474.20 318.84 l
+474.64 306.88 l
+475.08 310.66 l
+475.51 309.40 l
+475.95 308.77 l
+476.39 302.47 l
+476.82 301.21 l
+477.26 309.40 l
+477.69 308.14 l
+478.13 304.99 l
+478.57 308.14 l
+479.00 308.14 l
+479.44 313.17 l
+479.87 306.25 l
+480.31 311.28 l
+480.75 304.99 l
+481.18 303.10 l
+481.62 305.62 l
+482.05 307.51 l
+482.49 308.14 l
+482.93 303.73 l
+483.36 303.10 l
+483.80 304.99 l
+484.23 310.66 l
+484.67 311.28 l
+485.11 313.17 l
+485.54 312.54 l
+485.98 309.40 l
+486.42 315.69 l
+486.85 313.80 l
+487.29 311.91 l
+487.72 310.03 l
+488.16 313.17 l
+488.60 311.28 l
+489.03 309.40 l
+489.47 313.17 l
+489.90 301.84 l
+490.34 304.99 l
+490.78 299.96 l
+491.21 301.84 l
+491.65 296.18 l
+492.08 304.99 l
+492.52 303.10 l
+492.96 293.03 l
+493.39 298.07 l
+493.83 292.40 l
+494.26 294.29 l
+494.70 294.92 l
+495.14 294.29 l
+495.57 301.21 l
+496.01 294.92 l
+496.45 291.77 l
+496.88 293.66 l
+497.32 292.40 l
+497.75 296.81 l
+498.19 288.63 l
+498.63 299.33 l
+499.06 284.85 l
+499.50 293.03 l
+499.93 289.88 l
+500.37 291.77 l
+500.81 294.92 l
+501.24 293.03 l
+501.68 291.14 l
+502.11 282.33 l
+502.55 281.07 l
+502.99 286.74 l
+503.42 281.07 l
+503.86 280.44 l
+504.29 282.96 l
+504.73 288.63 l
+505.17 281.07 l
+505.60 286.11 l
+506.04 286.74 l
+506.47 280.44 l
+506.91 272.26 l
+S
+507.78 286.74 m
+508.22 274.78 l
+508.66 272.26 l
+509.09 264.08 l
+509.53 267.23 l
+509.96 265.97 l
+510.40 276.67 l
+510.84 274.78 l
+511.27 269.11 l
+511.71 271.00 l
+512.14 269.11 l
+512.58 268.48 l
+513.02 262.19 l
+513.45 265.97 l
+513.89 265.34 l
+514.32 262.82 l
+514.76 259.04 l
+515.20 257.78 l
+515.63 267.23 l
+516.07 265.34 l
+516.50 271.63 l
+516.94 276.67 l
+517.38 262.19 l
+517.81 267.23 l
+518.25 270.37 l
+518.69 267.23 l
+519.12 265.97 l
+519.56 274.78 l
+519.99 276.67 l
+520.43 276.04 l
+520.87 272.26 l
+521.30 271.00 l
+521.74 274.78 l
+522.17 276.67 l
+522.61 271.00 l
+523.05 277.30 l
+523.48 270.37 l
+523.92 274.15 l
+524.35 277.30 l
+524.79 277.30 l
+525.23 279.18 l
+525.66 278.55 l
+526.10 286.11 l
+526.53 271.00 l
+526.97 274.78 l
+527.41 274.15 l
+527.84 272.89 l
+528.28 272.89 l
+528.72 278.55 l
+529.15 285.48 l
+529.59 274.15 l
+530.02 277.93 l
+530.46 278.55 l
+530.90 279.18 l
+531.33 281.07 l
+531.77 286.74 l
+532.20 286.11 l
+532.64 281.07 l
+533.08 282.33 l
+533.51 273.52 l
+533.95 265.34 l
+534.38 269.74 l
+534.82 269.11 l
+535.26 277.30 l
+535.69 276.67 l
+536.13 273.52 l
+536.56 273.52 l
+537.00 267.23 l
+537.44 276.04 l
+537.87 274.78 l
+538.31 282.33 l
+538.74 275.41 l
+539.18 274.78 l
+539.62 272.89 l
+540.05 268.48 l
+540.49 270.37 l
+540.93 271.63 l
+541.36 275.41 l
+541.80 269.11 l
+542.23 268.48 l
+542.67 265.97 l
+543.11 258.41 l
+543.54 264.71 l
+543.98 272.89 l
+544.41 270.37 l
+544.85 267.85 l
+545.29 263.45 l
+545.72 269.74 l
+546.16 267.23 l
+546.59 273.52 l
+547.03 276.04 l
+547.47 271.00 l
+547.90 261.56 l
+548.34 262.82 l
+548.77 268.48 l
+549.21 263.45 l
+549.65 267.23 l
+550.08 271.00 l
+550.52 274.15 l
+550.96 272.26 l
+551.39 274.78 l
+551.83 268.48 l
+552.26 273.52 l
+552.70 276.04 l
+553.14 275.41 l
+553.57 276.04 l
+554.01 276.04 l
+554.44 276.04 l
+554.88 272.26 l
+555.32 272.26 l
+555.75 274.78 l
+556.19 281.07 l
+556.62 282.33 l
+557.06 279.18 l
+557.50 270.37 l
+557.93 273.52 l
+558.37 270.37 l
+558.80 267.85 l
+559.24 275.41 l
+559.68 281.07 l
+560.11 270.37 l
+560.55 268.48 l
+560.99 266.60 l
+561.42 269.74 l
+561.86 271.63 l
+562.29 272.89 l
+S
+Q q
+BT
+0.000 0.000 0.000 rg
+/F3 1 Tf 14.00 0.00 -0.00 14.00 267.75 416.89 Tm (Relay locations) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 306.29 4.32 Tm (Date) Tj
+ET
+BT
+/F2 1 Tf 0.00 12.00 -12.00 0.00 10.08 195.61 Tm (Running relays) Tj
+ET
+Q q 56.16 59.04 525.60 352.80 re W n
+0.000 0.000 1.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+75.63 179.11 m
+76.06 181.00 l
+76.50 179.74 l
+76.93 184.77 l
+77.37 183.51 l
+77.81 182.88 l
+78.24 173.44 l
+78.68 184.77 l
+79.12 186.66 l
+79.55 187.92 l
+79.99 187.92 l
+80.42 184.14 l
+80.86 186.03 l
+81.30 186.03 l
+81.73 182.25 l
+82.17 181.62 l
+82.60 184.14 l
+83.04 186.66 l
+83.48 184.77 l
+83.91 187.92 l
+84.35 187.92 l
+84.78 187.29 l
+85.22 187.92 l
+85.66 187.92 l
+86.09 186.66 l
+86.53 187.29 l
+86.96 187.29 l
+87.40 188.55 l
+87.84 188.55 l
+88.27 183.51 l
+88.71 185.40 l
+89.15 185.40 l
+89.58 187.92 l
+90.02 189.18 l
+90.45 184.14 l
+90.89 185.40 l
+91.33 187.92 l
+91.76 186.66 l
+92.20 185.40 l
+92.63 187.29 l
+93.07 190.44 l
+93.51 191.07 l
+93.94 190.44 l
+94.38 187.92 l
+94.81 189.81 l
+95.25 187.92 l
+95.69 186.66 l
+96.12 187.29 l
+96.56 190.44 l
+96.99 190.44 l
+97.43 189.81 l
+97.87 183.51 l
+98.30 185.40 l
+98.74 186.66 l
+99.18 185.40 l
+99.61 186.03 l
+100.05 191.07 l
+100.48 192.33 l
+100.92 190.44 l
+101.36 191.07 l
+101.79 192.33 l
+102.23 188.55 l
+102.66 185.40 l
+103.10 184.14 l
+103.54 187.29 l
+103.97 188.55 l
+104.41 192.95 l
+104.84 194.84 l
+105.28 198.62 l
+105.72 206.17 l
+106.15 209.95 l
+106.59 209.32 l
+107.02 210.58 l
+107.46 204.28 l
+107.90 206.80 l
+108.33 209.32 l
+108.77 209.95 l
+109.20 211.21 l
+109.64 213.73 l
+110.08 214.35 l
+110.51 213.10 l
+110.95 213.73 l
+111.39 215.61 l
+111.82 212.47 l
+112.26 212.47 l
+112.69 208.06 l
+113.13 206.17 l
+113.57 203.03 l
+114.00 201.77 l
+114.44 209.32 l
+114.87 208.69 l
+115.31 205.54 l
+115.75 206.80 l
+116.18 209.32 l
+116.62 210.58 l
+117.05 211.84 l
+117.49 222.54 l
+117.93 223.80 l
+118.36 225.05 l
+118.80 220.02 l
+119.23 210.58 l
+119.67 222.54 l
+120.11 223.80 l
+120.54 223.17 l
+120.98 216.87 l
+121.42 217.50 l
+121.85 221.91 l
+122.29 216.24 l
+122.72 218.13 l
+123.16 217.50 l
+123.60 218.13 l
+124.03 218.13 l
+124.47 219.39 l
+124.90 228.83 l
+125.34 228.20 l
+125.78 230.09 l
+126.21 233.87 l
+126.65 234.50 l
+127.08 233.24 l
+127.52 226.31 l
+127.96 228.83 l
+128.39 228.20 l
+128.83 225.05 l
+129.26 227.57 l
+129.70 228.20 l
+130.14 231.98 l
+130.57 233.24 l
+131.01 232.61 l
+131.45 232.61 l
+131.88 230.09 l
+132.32 228.83 l
+132.75 232.61 l
+133.19 241.42 l
+133.63 248.34 l
+134.06 245.83 l
+134.50 245.83 l
+134.93 250.23 l
+135.37 245.20 l
+135.81 244.57 l
+136.24 241.42 l
+136.68 238.90 l
+137.11 242.68 l
+137.55 239.53 l
+137.99 245.83 l
+138.42 247.08 l
+138.86 248.34 l
+139.29 244.57 l
+139.73 253.38 l
+140.17 255.90 l
+140.60 244.57 l
+141.04 248.97 l
+141.47 252.75 l
+141.91 254.64 l
+142.35 261.56 l
+142.78 264.71 l
+143.22 264.71 l
+143.66 269.74 l
+144.09 272.89 l
+144.53 274.15 l
+144.96 265.97 l
+145.40 253.38 l
+145.84 257.78 l
+146.27 257.78 l
+146.71 247.71 l
+147.14 247.08 l
+147.58 255.27 l
+148.02 265.97 l
+148.45 262.19 l
+148.89 256.53 l
+149.32 259.04 l
+149.76 257.15 l
+150.20 260.30 l
+150.63 262.82 l
+151.07 271.00 l
+151.50 272.26 l
+151.94 271.00 l
+152.38 273.52 l
+152.81 265.34 l
+153.25 259.67 l
+153.69 255.27 l
+154.12 258.41 l
+154.56 261.56 l
+154.99 269.11 l
+155.43 271.00 l
+155.87 271.63 l
+156.30 259.67 l
+156.74 255.90 l
+157.17 257.78 l
+157.61 271.63 l
+158.05 276.67 l
+158.48 277.93 l
+158.92 274.15 l
+159.35 274.78 l
+159.79 277.30 l
+160.23 280.44 l
+160.66 279.81 l
+161.10 284.85 l
+161.53 285.48 l
+161.97 283.59 l
+162.41 282.96 l
+162.84 283.59 l
+163.28 284.22 l
+163.72 291.14 l
+164.15 285.48 l
+164.59 288.63 l
+165.02 275.41 l
+165.46 266.60 l
+165.90 269.74 l
+166.33 276.67 l
+166.77 273.52 l
+167.20 275.41 l
+167.64 274.15 l
+168.08 276.67 l
+168.51 273.52 l
+168.95 276.67 l
+169.38 284.22 l
+169.82 283.59 l
+170.26 284.85 l
+170.69 292.40 l
+171.13 292.40 l
+171.56 284.85 l
+172.00 281.07 l
+172.44 281.07 l
+172.87 282.96 l
+173.31 277.30 l
+173.74 276.67 l
+174.18 274.78 l
+174.62 274.15 l
+175.05 285.48 l
+175.49 278.55 l
+175.93 280.44 l
+176.36 281.07 l
+176.80 284.22 l
+177.23 282.96 l
+177.67 280.44 l
+178.11 283.59 l
+178.54 283.59 l
+178.98 288.00 l
+179.41 281.70 l
+179.85 281.07 l
+180.29 283.59 l
+180.72 286.74 l
+181.16 284.22 l
+181.59 288.00 l
+182.03 283.59 l
+182.47 279.18 l
+182.90 281.07 l
+183.34 278.55 l
+183.77 276.04 l
+184.21 278.55 l
+184.65 284.22 l
+185.08 279.18 l
+185.52 278.55 l
+185.96 279.18 l
+186.39 277.30 l
+186.83 279.81 l
+187.26 276.67 l
+187.70 276.04 l
+188.14 279.18 l
+188.57 274.15 l
+189.01 262.19 l
+189.44 264.08 l
+189.88 266.60 l
+190.32 261.56 l
+190.75 259.04 l
+191.19 255.90 l
+191.62 265.34 l
+192.06 259.67 l
+192.50 260.30 l
+192.93 262.19 l
+193.37 258.41 l
+193.80 260.93 l
+194.24 260.93 l
+194.68 262.19 l
+195.11 263.45 l
+195.55 258.41 l
+195.99 262.82 l
+196.42 260.30 l
+196.86 260.93 l
+197.29 259.04 l
+197.73 255.90 l
+198.17 251.49 l
+198.60 248.97 l
+199.04 252.75 l
+199.47 254.01 l
+199.91 249.60 l
+200.35 249.60 l
+200.78 243.31 l
+201.22 243.94 l
+201.65 244.57 l
+202.09 242.05 l
+202.53 240.79 l
+202.96 245.20 l
+203.40 244.57 l
+203.83 242.68 l
+204.27 242.68 l
+204.71 242.68 l
+205.14 254.01 l
+205.58 255.27 l
+206.01 257.78 l
+206.45 248.97 l
+206.89 242.68 l
+207.32 242.68 l
+207.76 243.94 l
+208.20 245.83 l
+208.63 251.49 l
+209.07 254.01 l
+209.50 251.49 l
+209.94 252.75 l
+210.38 246.45 l
+210.81 247.71 l
+211.25 250.86 l
+211.68 256.53 l
+212.12 250.86 l
+212.56 249.60 l
+212.99 245.83 l
+213.43 247.71 l
+213.86 248.97 l
+214.30 247.71 l
+214.74 241.42 l
+215.17 243.94 l
+215.61 239.53 l
+216.04 239.53 l
+216.48 242.05 l
+216.92 245.20 l
+217.35 243.31 l
+217.79 245.20 l
+218.23 242.05 l
+218.66 243.94 l
+219.10 244.57 l
+219.53 246.45 l
+219.97 244.57 l
+220.41 245.20 l
+220.84 246.45 l
+221.28 243.94 l
+221.71 242.05 l
+222.15 243.94 l
+222.59 247.71 l
+223.02 247.71 l
+223.46 245.83 l
+223.89 250.23 l
+224.33 255.90 l
+224.77 261.56 l
+225.20 267.85 l
+225.64 264.08 l
+226.07 258.41 l
+226.51 257.15 l
+226.95 260.30 l
+227.38 255.27 l
+227.82 258.41 l
+228.26 257.78 l
+228.69 255.27 l
+229.13 256.53 l
+229.56 255.90 l
+230.00 257.78 l
+230.44 245.83 l
+230.87 250.86 l
+231.31 247.71 l
+231.74 245.20 l
+232.18 250.23 l
+232.62 243.94 l
+233.05 245.83 l
+233.49 248.34 l
+233.92 243.31 l
+234.36 250.86 l
+234.80 249.60 l
+235.23 262.82 l
+235.67 276.67 l
+236.10 275.41 l
+236.54 269.74 l
+236.98 274.15 l
+237.41 273.52 l
+237.85 271.00 l
+238.28 267.85 l
+238.72 267.85 l
+239.16 269.74 l
+239.59 267.85 l
+240.03 270.37 l
+240.47 262.82 l
+240.90 261.56 l
+241.34 260.93 l
+241.77 254.64 l
+242.21 256.53 l
+242.65 264.71 l
+243.08 264.71 l
+243.52 259.04 l
+243.95 262.19 l
+244.39 262.19 l
+244.83 268.48 l
+245.26 271.63 l
+245.70 262.19 l
+246.13 264.08 l
+246.57 267.23 l
+247.01 262.19 l
+247.44 260.30 l
+247.88 261.56 l
+248.31 259.67 l
+248.75 264.08 l
+249.19 260.30 l
+249.62 265.97 l
+250.06 267.85 l
+250.50 264.08 l
+250.93 263.45 l
+251.37 263.45 l
+251.80 260.30 l
+252.24 261.56 l
+252.68 256.53 l
+253.11 252.12 l
+253.55 251.49 l
+253.98 254.01 l
+254.42 260.30 l
+254.86 265.34 l
+255.29 268.48 l
+255.73 259.04 l
+256.16 252.12 l
+256.60 256.53 l
+257.04 256.53 l
+257.47 248.97 l
+257.91 247.08 l
+258.34 248.34 l
+258.78 251.49 l
+259.22 254.01 l
+259.65 254.01 l
+260.09 257.15 l
+260.53 259.04 l
+260.96 259.67 l
+261.40 260.93 l
+261.83 264.08 l
+262.27 263.45 l
+262.71 255.90 l
+263.14 257.78 l
+263.58 259.67 l
+264.01 260.93 l
+264.45 255.27 l
+264.89 254.64 l
+265.32 257.15 l
+265.76 259.67 l
+266.19 265.34 l
+266.63 257.78 l
+267.07 257.78 l
+267.50 259.04 l
+267.94 260.30 l
+268.37 257.78 l
+268.81 258.41 l
+269.25 257.78 l
+269.68 263.45 l
+270.12 260.30 l
+270.55 256.53 l
+270.99 259.04 l
+271.43 255.27 l
+271.86 252.75 l
+272.30 248.34 l
+272.74 250.23 l
+273.17 257.78 l
+273.61 257.15 l
+274.04 258.41 l
+274.48 262.82 l
+274.92 265.34 l
+275.35 254.64 l
+275.79 260.30 l
+276.22 265.97 l
+276.66 265.34 l
+277.10 265.34 l
+277.53 265.97 l
+277.97 265.34 l
+278.40 258.41 l
+278.84 258.41 l
+279.28 261.56 l
+279.71 263.45 l
+280.15 257.78 l
+280.58 262.19 l
+281.02 256.53 l
+281.46 255.27 l
+281.89 255.90 l
+282.33 255.90 l
+282.77 257.15 l
+283.20 252.12 l
+283.64 251.49 l
+284.07 256.53 l
+284.51 257.78 l
+284.95 260.93 l
+285.38 264.08 l
+285.82 259.67 l
+286.25 257.15 l
+286.69 258.41 l
+287.13 254.01 l
+287.56 259.67 l
+288.00 259.67 l
+288.43 255.90 l
+288.87 260.30 l
+289.31 254.64 l
+289.74 254.01 l
+290.18 255.27 l
+290.61 257.78 l
+291.05 255.90 l
+291.49 254.64 l
+291.92 252.12 l
+292.36 248.34 l
+292.80 244.57 l
+293.23 243.94 l
+293.67 248.97 l
+294.10 250.23 l
+294.54 252.75 l
+294.98 248.34 l
+295.41 250.23 l
+295.85 251.49 l
+296.28 249.60 l
+296.72 253.38 l
+297.16 252.12 l
+297.59 250.86 l
+298.03 249.60 l
+298.46 250.86 l
+298.90 255.90 l
+299.34 259.67 l
+299.77 257.15 l
+300.21 259.67 l
+300.64 257.78 l
+301.08 255.27 l
+301.52 256.53 l
+301.95 255.90 l
+302.39 256.53 l
+302.82 255.27 l
+303.26 255.27 l
+303.70 252.12 l
+304.13 254.64 l
+304.57 256.53 l
+305.01 254.01 l
+305.44 261.56 l
+305.88 266.60 l
+306.31 267.85 l
+306.75 260.93 l
+307.19 260.30 l
+307.62 255.90 l
+308.06 248.97 l
+308.49 252.12 l
+308.93 251.49 l
+309.37 248.97 l
+309.80 254.01 l
+310.24 248.34 l
+310.67 252.12 l
+311.11 252.75 l
+311.55 255.27 l
+311.98 255.90 l
+312.42 253.38 l
+312.85 250.86 l
+313.29 255.90 l
+313.73 256.53 l
+314.16 254.01 l
+314.60 257.15 l
+315.04 256.53 l
+315.47 259.04 l
+315.91 265.34 l
+316.34 259.04 l
+316.78 253.38 l
+317.22 252.12 l
+317.65 248.97 l
+318.09 249.60 l
+318.52 250.86 l
+318.96 251.49 l
+319.40 253.38 l
+319.83 250.86 l
+320.27 259.04 l
+320.70 260.93 l
+321.14 261.56 l
+321.58 262.82 l
+322.01 257.15 l
+322.45 256.53 l
+322.88 260.93 l
+323.32 258.41 l
+323.76 264.08 l
+324.19 267.23 l
+324.63 277.93 l
+325.07 285.48 l
+325.50 286.11 l
+325.94 284.22 l
+326.37 286.74 l
+326.81 280.44 l
+327.25 277.93 l
+327.68 284.22 l
+328.12 280.44 l
+328.55 288.00 l
+328.99 290.51 l
+329.43 291.77 l
+329.86 286.11 l
+330.30 289.88 l
+330.73 288.00 l
+331.17 289.26 l
+331.61 288.63 l
+332.04 295.55 l
+332.48 289.26 l
+332.91 288.00 l
+333.35 287.37 l
+333.79 291.14 l
+334.22 285.48 l
+334.66 284.22 l
+335.10 289.26 l
+335.53 280.44 l
+335.97 291.77 l
+336.40 281.70 l
+336.84 285.48 l
+337.28 289.88 l
+337.71 288.00 l
+338.15 293.66 l
+338.58 293.03 l
+339.02 286.74 l
+339.46 290.51 l
+339.89 293.66 l
+340.33 286.74 l
+340.76 292.40 l
+341.20 286.74 l
+341.64 285.48 l
+342.07 286.74 l
+342.51 291.77 l
+342.94 296.18 l
+343.38 295.55 l
+343.82 295.55 l
+344.25 295.55 l
+344.69 294.29 l
+345.12 286.74 l
+345.56 292.40 l
+346.00 289.88 l
+346.43 294.29 l
+346.87 298.70 l
+347.31 299.33 l
+347.74 296.81 l
+348.18 299.96 l
+348.61 303.10 l
+349.05 305.62 l
+349.49 299.96 l
+349.92 304.99 l
+350.36 301.84 l
+350.79 308.14 l
+351.23 303.73 l
+351.67 301.84 l
+352.10 304.36 l
+352.54 301.21 l
+352.97 299.33 l
+353.41 300.58 l
+353.85 226.31 l
+354.28 244.57 l
+354.72 222.54 l
+355.15 220.02 l
+355.59 250.86 l
+356.03 286.11 l
+356.46 291.77 l
+356.90 296.81 l
+357.34 304.99 l
+357.77 303.73 l
+358.21 303.73 l
+358.64 310.66 l
+359.08 313.80 l
+359.52 306.25 l
+359.95 310.03 l
+360.39 300.58 l
+360.82 299.33 l
+361.26 299.33 l
+361.70 299.96 l
+362.13 306.88 l
+362.57 306.25 l
+363.00 305.62 l
+363.44 304.99 l
+363.88 304.99 l
+364.31 303.10 l
+364.75 305.62 l
+365.18 305.62 l
+365.62 304.36 l
+366.06 297.44 l
+366.49 296.81 l
+366.93 306.88 l
+367.37 315.69 l
+367.80 317.58 l
+368.24 311.91 l
+368.67 312.54 l
+369.11 302.47 l
+369.55 308.14 l
+369.98 307.51 l
+370.42 303.10 l
+370.85 303.10 l
+371.29 301.84 l
+371.73 298.07 l
+372.16 296.18 l
+372.60 292.40 l
+373.03 284.85 l
+373.47 281.70 l
+373.91 280.44 l
+374.34 286.11 l
+374.78 283.59 l
+375.21 288.00 l
+375.65 288.63 l
+376.09 283.59 l
+376.52 289.88 l
+376.96 291.77 l
+377.39 297.44 l
+377.83 292.40 l
+378.27 290.51 l
+378.70 292.40 l
+379.14 291.77 l
+379.58 288.63 l
+380.01 290.51 l
+380.45 294.29 l
+380.88 293.03 l
+381.32 296.81 l
+381.76 298.70 l
+382.19 301.21 l
+382.63 304.36 l
+383.06 298.07 l
+383.50 303.73 l
+383.94 300.58 l
+384.37 301.21 l
+384.81 304.36 l
+385.24 304.36 l
+385.68 304.36 l
+386.12 312.54 l
+386.55 303.73 l
+386.99 292.40 l
+387.42 294.92 l
+387.86 296.18 l
+388.30 298.70 l
+388.73 295.55 l
+389.17 300.58 l
+389.61 299.33 l
+390.04 302.47 l
+390.48 303.73 l
+390.91 305.62 l
+391.35 308.14 l
+391.79 300.58 l
+392.22 301.21 l
+392.66 301.21 l
+393.09 299.96 l
+393.53 302.47 l
+393.97 303.10 l
+394.40 301.84 l
+394.84 301.84 l
+395.27 307.51 l
+395.71 303.10 l
+396.15 299.96 l
+396.58 299.33 l
+397.02 306.88 l
+397.45 308.14 l
+397.89 301.21 l
+398.33 303.73 l
+398.76 300.58 l
+399.20 301.21 l
+399.64 301.21 l
+400.07 304.36 l
+400.51 294.92 l
+400.94 296.18 l
+401.38 299.96 l
+401.82 301.84 l
+402.25 300.58 l
+402.69 301.21 l
+403.12 299.96 l
+403.56 299.33 l
+404.00 296.81 l
+404.43 299.33 l
+404.87 301.21 l
+405.30 296.18 l
+405.74 289.88 l
+406.18 291.14 l
+406.61 293.03 l
+407.05 288.63 l
+407.48 296.18 l
+407.92 296.18 l
+408.36 292.40 l
+408.79 291.77 l
+409.23 296.81 l
+409.66 298.70 l
+410.10 293.03 l
+410.54 293.66 l
+410.97 295.55 l
+411.41 296.81 l
+411.85 291.77 l
+412.28 289.88 l
+412.72 289.26 l
+413.15 293.03 l
+413.59 301.84 l
+414.03 309.40 l
+414.46 310.66 l
+414.90 307.51 l
+415.33 300.58 l
+415.77 306.25 l
+416.21 308.14 l
+416.64 304.36 l
+417.08 300.58 l
+417.51 293.66 l
+417.95 297.44 l
+418.39 301.21 l
+418.82 294.29 l
+419.26 298.07 l
+419.69 298.70 l
+420.13 301.84 l
+420.57 301.21 l
+421.00 298.07 l
+421.44 299.96 l
+421.88 299.96 l
+422.31 302.47 l
+422.75 307.51 l
+423.18 306.88 l
+423.62 311.91 l
+424.06 313.80 l
+424.49 304.99 l
+424.93 304.99 l
+425.36 305.62 l
+425.80 306.25 l
+426.24 309.40 l
+426.67 304.36 l
+427.11 301.21 l
+427.54 303.10 l
+427.98 302.47 l
+428.42 297.44 l
+428.85 300.58 l
+429.29 292.40 l
+429.72 293.66 l
+430.16 296.18 l
+430.60 293.66 l
+431.03 300.58 l
+431.47 305.62 l
+431.91 308.14 l
+432.34 308.77 l
+432.78 303.10 l
+433.21 305.62 l
+433.65 307.51 l
+434.09 310.03 l
+434.52 306.88 l
+434.96 303.73 l
+435.39 304.36 l
+435.83 278.55 l
+436.27 285.48 l
+436.70 282.96 l
+437.14 288.63 l
+437.57 281.70 l
+438.01 288.63 l
+438.45 291.14 l
+438.88 289.88 l
+439.32 286.11 l
+439.75 286.74 l
+440.19 286.74 l
+440.63 284.22 l
+441.06 285.48 l
+441.50 279.18 l
+441.93 288.63 l
+442.37 286.74 l
+442.81 288.63 l
+443.24 292.40 l
+443.68 292.40 l
+444.12 294.29 l
+444.55 291.77 l
+444.99 292.40 l
+445.42 291.77 l
+445.86 298.70 l
+446.30 297.44 l
+446.73 302.47 l
+447.17 301.21 l
+447.60 302.47 l
+448.04 296.81 l
+448.48 296.81 l
+448.91 295.55 l
+449.35 285.48 l
+449.78 290.51 l
+450.22 294.92 l
+450.66 298.70 l
+451.09 294.29 l
+451.53 292.40 l
+451.96 289.88 l
+452.40 295.55 l
+452.84 298.70 l
+453.27 297.44 l
+453.71 296.81 l
+454.15 297.44 l
+454.58 296.81 l
+455.02 295.55 l
+455.45 292.40 l
+455.89 295.55 l
+456.33 294.92 l
+456.76 298.70 l
+457.20 294.29 l
+457.63 291.77 l
+458.07 294.92 l
+458.51 293.66 l
+458.94 299.33 l
+459.38 301.21 l
+459.81 296.81 l
+460.25 294.92 l
+460.69 291.14 l
+461.12 287.37 l
+461.56 294.29 l
+461.99 289.26 l
+462.43 293.03 l
+462.87 293.03 l
+463.30 292.40 l
+463.74 291.14 l
+464.18 284.22 l
+464.61 284.85 l
+465.05 282.96 l
+465.48 282.33 l
+465.92 282.96 l
+466.36 279.18 l
+466.79 281.07 l
+467.23 286.11 l
+467.66 286.11 l
+468.10 289.26 l
+468.54 281.70 l
+468.97 285.48 l
+469.41 289.26 l
+469.84 282.33 l
+470.28 289.26 l
+470.72 288.00 l
+471.15 289.88 l
+471.59 288.63 l
+472.02 293.03 l
+472.46 296.81 l
+472.90 298.07 l
+473.33 296.18 l
+473.77 294.92 l
+474.20 298.07 l
+474.64 305.62 l
+475.08 299.33 l
+475.51 291.77 l
+475.95 290.51 l
+476.39 281.70 l
+476.82 284.22 l
+477.26 286.11 l
+477.69 283.59 l
+478.13 279.81 l
+478.57 278.55 l
+479.00 281.07 l
+479.44 279.81 l
+479.87 280.44 l
+480.31 280.44 l
+480.75 278.55 l
+481.18 277.93 l
+481.62 280.44 l
+482.05 284.85 l
+482.49 289.26 l
+482.93 293.66 l
+483.36 295.55 l
+483.80 296.81 l
+484.23 289.88 l
+484.67 289.88 l
+485.11 299.33 l
+485.54 293.66 l
+485.98 289.88 l
+486.42 297.44 l
+486.85 294.92 l
+487.29 304.36 l
+487.72 300.58 l
+488.16 303.10 l
+488.60 299.96 l
+489.03 301.84 l
+489.47 297.44 l
+489.90 294.29 l
+490.34 291.77 l
+490.78 295.55 l
+491.21 290.51 l
+491.65 289.88 l
+492.08 294.92 l
+492.52 291.14 l
+492.96 291.77 l
+493.39 295.55 l
+493.83 298.07 l
+494.26 301.21 l
+494.70 298.07 l
+495.14 293.66 l
+495.57 294.29 l
+496.01 291.14 l
+496.45 292.40 l
+496.88 293.03 l
+497.32 294.29 l
+497.75 286.74 l
+498.19 292.40 l
+498.63 293.03 l
+499.06 289.88 l
+499.50 294.92 l
+499.93 291.77 l
+500.37 289.88 l
+500.81 293.66 l
+501.24 294.92 l
+501.68 296.81 l
+502.11 296.18 l
+502.55 293.66 l
+502.99 287.37 l
+503.42 286.74 l
+503.86 289.88 l
+504.29 289.26 l
+504.73 293.03 l
+505.17 295.55 l
+505.60 289.88 l
+506.04 287.37 l
+506.47 284.22 l
+506.91 284.85 l
+S
+507.78 288.00 m
+508.22 284.22 l
+508.66 274.78 l
+509.09 279.18 l
+509.53 277.93 l
+509.96 281.07 l
+510.40 283.59 l
+510.84 284.22 l
+511.27 288.63 l
+511.71 284.85 l
+512.14 281.07 l
+512.58 287.37 l
+513.02 285.48 l
+513.45 278.55 l
+513.89 286.11 l
+514.32 286.74 l
+514.76 286.11 l
+515.20 281.07 l
+515.63 286.74 l
+516.07 293.03 l
+516.50 301.21 l
+516.94 304.99 l
+517.38 304.99 l
+517.81 298.70 l
+518.25 296.18 l
+518.69 296.18 l
+519.12 288.00 l
+519.56 286.11 l
+519.99 287.37 l
+520.43 287.37 l
+520.87 282.96 l
+521.30 280.44 l
+521.74 277.93 l
+522.17 280.44 l
+522.61 277.30 l
+523.05 279.81 l
+523.48 279.81 l
+523.92 278.55 l
+524.35 276.67 l
+524.79 277.93 l
+525.23 276.04 l
+525.66 281.07 l
+526.10 279.81 l
+526.53 272.89 l
+526.97 266.60 l
+527.41 267.23 l
+527.84 274.15 l
+528.28 268.48 l
+528.72 268.48 l
+529.15 274.15 l
+529.59 273.52 l
+530.02 270.37 l
+530.46 267.23 l
+530.90 268.48 l
+531.33 270.37 l
+531.77 271.00 l
+532.20 268.48 l
+532.64 266.60 l
+533.08 259.04 l
+533.51 258.41 l
+533.95 258.41 l
+534.38 258.41 l
+534.82 264.71 l
+535.26 263.45 l
+535.69 273.52 l
+536.13 272.26 l
+536.56 269.74 l
+537.00 265.34 l
+537.44 264.08 l
+537.87 264.08 l
+538.31 267.23 l
+538.74 264.08 l
+539.18 260.93 l
+539.62 262.19 l
+540.05 255.90 l
+540.49 260.93 l
+540.93 261.56 l
+541.36 256.53 l
+541.80 262.82 l
+542.23 259.67 l
+542.67 262.19 l
+543.11 260.93 l
+543.54 267.23 l
+543.98 267.23 l
+544.41 270.37 l
+544.85 268.48 l
+545.29 270.37 l
+545.72 266.60 l
+546.16 265.97 l
+546.59 265.34 l
+547.03 274.78 l
+547.47 276.04 l
+547.90 272.89 l
+548.34 277.93 l
+548.77 273.52 l
+549.21 272.89 l
+549.65 269.11 l
+550.08 272.26 l
+550.52 271.00 l
+550.96 272.26 l
+551.39 270.37 l
+551.83 269.74 l
+552.26 269.74 l
+552.70 267.85 l
+553.14 269.74 l
+553.57 268.48 l
+554.01 272.26 l
+554.44 272.89 l
+554.88 267.85 l
+555.32 272.26 l
+555.75 277.93 l
+556.19 279.18 l
+556.62 271.00 l
+557.06 275.41 l
+557.50 269.74 l
+557.93 265.97 l
+558.37 264.08 l
+558.80 271.00 l
+559.24 269.74 l
+559.68 266.60 l
+560.11 265.97 l
+560.55 265.97 l
+560.99 268.48 l
+561.42 272.26 l
+561.86 271.63 l
+562.29 267.23 l
+S
+0.000 0.392 0.000 RG
+75.63 75.88 m
+76.06 75.88 l
+76.50 75.88 l
+76.93 75.88 l
+77.37 76.51 l
+77.81 76.51 l
+78.24 77.14 l
+78.68 77.77 l
+79.12 77.77 l
+79.55 76.51 l
+79.99 76.51 l
+80.42 76.51 l
+80.86 77.14 l
+81.30 77.14 l
+81.73 77.77 l
+82.17 77.77 l
+82.60 77.77 l
+83.04 77.77 l
+83.48 76.51 l
+83.91 76.51 l
+84.35 77.14 l
+84.78 77.14 l
+85.22 77.14 l
+85.66 76.51 l
+86.09 77.14 l
+86.53 77.14 l
+86.96 77.14 l
+87.40 77.77 l
+87.84 77.77 l
+88.27 77.77 l
+88.71 77.14 l
+89.15 76.51 l
+89.58 76.51 l
+90.02 77.77 l
+90.45 77.14 l
+90.89 77.14 l
+91.33 76.51 l
+91.76 77.14 l
+92.20 78.40 l
+92.63 78.40 l
+93.07 79.03 l
+93.51 80.29 l
+93.94 79.66 l
+94.38 79.66 l
+94.81 79.66 l
+95.25 80.29 l
+95.69 79.66 l
+96.12 79.66 l
+96.56 80.29 l
+96.99 79.66 l
+97.43 80.92 l
+97.87 80.29 l
+98.30 80.29 l
+98.74 79.66 l
+99.18 81.55 l
+99.61 82.18 l
+100.05 82.81 l
+100.48 80.92 l
+100.92 82.18 l
+101.36 80.92 l
+101.79 80.92 l
+102.23 81.55 l
+102.66 80.92 l
+103.10 80.92 l
+103.54 81.55 l
+103.97 82.81 l
+104.41 82.18 l
+104.84 82.18 l
+105.28 84.07 l
+105.72 83.44 l
+106.15 82.18 l
+106.59 82.18 l
+107.02 80.92 l
+107.46 81.55 l
+107.90 81.55 l
+108.33 81.55 l
+108.77 82.18 l
+109.20 81.55 l
+109.64 80.92 l
+110.08 80.29 l
+110.51 80.29 l
+110.95 80.29 l
+111.39 79.66 l
+111.82 79.66 l
+112.26 80.92 l
+112.69 80.29 l
+113.13 81.55 l
+113.57 80.92 l
+114.00 80.92 l
+114.44 80.29 l
+114.87 80.92 l
+115.31 80.29 l
+115.75 80.92 l
+116.18 80.92 l
+116.62 81.55 l
+117.05 81.55 l
+117.49 81.55 l
+117.93 80.29 l
+118.36 80.92 l
+118.80 80.92 l
+119.23 80.92 l
+119.67 79.66 l
+120.11 80.29 l
+120.54 80.29 l
+120.98 80.92 l
+121.42 81.55 l
+121.85 80.92 l
+122.29 79.66 l
+122.72 79.66 l
+123.16 80.29 l
+123.60 82.18 l
+124.03 80.92 l
+124.47 80.92 l
+124.90 82.18 l
+125.34 80.92 l
+125.78 81.55 l
+126.21 84.07 l
+126.65 83.44 l
+127.08 82.18 l
+127.52 82.81 l
+127.96 80.92 l
+128.39 80.92 l
+128.83 81.55 l
+129.26 82.81 l
+129.70 82.81 l
+130.14 82.81 l
+130.57 83.44 l
+131.01 84.69 l
+131.45 83.44 l
+131.88 84.07 l
+132.32 83.44 l
+132.75 83.44 l
+133.19 84.69 l
+133.63 86.58 l
+134.06 90.36 l
+134.50 87.84 l
+134.93 87.21 l
+135.37 85.32 l
+135.81 87.21 l
+136.24 87.21 l
+136.68 88.47 l
+137.11 89.10 l
+137.55 89.73 l
+137.99 89.10 l
+138.42 87.84 l
+138.86 86.58 l
+139.29 87.84 l
+139.73 88.47 l
+140.17 88.47 l
+140.60 87.84 l
+141.04 88.47 l
+141.47 86.58 l
+141.91 88.47 l
+142.35 89.73 l
+142.78 89.73 l
+143.22 89.10 l
+143.66 89.73 l
+144.09 89.10 l
+144.53 89.10 l
+144.96 89.73 l
+145.40 89.10 l
+145.84 89.10 l
+146.27 90.36 l
+146.71 87.21 l
+147.14 86.58 l
+147.58 86.58 l
+148.02 86.58 l
+148.45 85.95 l
+148.89 87.21 l
+149.32 85.95 l
+149.76 85.32 l
+150.20 85.95 l
+150.63 89.10 l
+151.07 90.36 l
+151.50 87.84 l
+151.94 87.21 l
+152.38 89.10 l
+152.81 88.47 l
+153.25 89.10 l
+153.69 89.73 l
+154.12 90.99 l
+154.56 90.36 l
+154.99 89.73 l
+155.43 87.84 l
+155.87 89.10 l
+156.30 89.10 l
+156.74 88.47 l
+157.17 89.73 l
+157.61 90.36 l
+158.05 93.51 l
+158.48 93.51 l
+158.92 90.99 l
+159.35 92.25 l
+159.79 92.88 l
+160.23 92.88 l
+160.66 93.51 l
+161.10 94.14 l
+161.53 94.77 l
+161.97 94.77 l
+162.41 94.77 l
+162.84 92.88 l
+163.28 92.25 l
+163.72 95.40 l
+164.15 95.40 l
+164.59 94.77 l
+165.02 92.88 l
+165.46 92.88 l
+165.90 92.25 l
+166.33 94.14 l
+166.77 94.14 l
+167.20 92.25 l
+167.64 90.99 l
+168.08 89.73 l
+168.51 89.73 l
+168.95 89.73 l
+169.38 91.62 l
+169.82 90.36 l
+170.26 90.99 l
+170.69 90.99 l
+171.13 92.25 l
+171.56 90.99 l
+172.00 92.88 l
+172.44 90.36 l
+172.87 90.99 l
+173.31 92.88 l
+173.74 92.25 l
+174.18 92.88 l
+174.62 93.51 l
+175.05 94.77 l
+175.49 94.14 l
+175.93 94.77 l
+176.36 95.40 l
+176.80 96.02 l
+177.23 95.40 l
+177.67 94.77 l
+178.11 94.77 l
+178.54 95.40 l
+178.98 96.65 l
+179.41 97.91 l
+179.85 96.65 l
+180.29 97.28 l
+180.72 97.28 l
+181.16 96.02 l
+181.59 93.51 l
+182.03 93.51 l
+182.47 94.77 l
+182.90 96.65 l
+183.34 96.02 l
+183.77 96.65 l
+184.21 97.91 l
+184.65 96.02 l
+185.08 96.02 l
+185.52 97.28 l
+185.96 95.40 l
+186.39 96.02 l
+186.83 96.02 l
+187.26 94.77 l
+187.70 96.65 l
+188.14 96.02 l
+188.57 96.02 l
+189.01 94.14 l
+189.44 92.88 l
+189.88 92.88 l
+190.32 92.88 l
+190.75 93.51 l
+191.19 93.51 l
+191.62 93.51 l
+192.06 92.88 l
+192.50 94.77 l
+192.93 95.40 l
+193.37 94.77 l
+193.80 95.40 l
+194.24 94.77 l
+194.68 95.40 l
+195.11 95.40 l
+195.55 92.25 l
+195.99 92.25 l
+196.42 92.88 l
+196.86 92.25 l
+197.29 91.62 l
+197.73 92.25 l
+198.17 90.99 l
+198.60 90.36 l
+199.04 92.25 l
+199.47 90.99 l
+199.91 90.99 l
+200.35 89.73 l
+200.78 92.25 l
+201.22 91.62 l
+201.65 90.36 l
+202.09 90.99 l
+202.53 90.36 l
+202.96 90.99 l
+203.40 90.99 l
+203.83 89.73 l
+204.27 89.73 l
+204.71 90.36 l
+205.14 89.73 l
+205.58 90.36 l
+206.01 91.62 l
+206.45 92.88 l
+206.89 92.25 l
+207.32 90.36 l
+207.76 88.47 l
+208.20 90.36 l
+208.63 90.99 l
+209.07 90.99 l
+209.50 90.36 l
+209.94 90.99 l
+210.38 92.88 l
+210.81 92.88 l
+211.25 92.88 l
+211.68 92.25 l
+212.12 93.51 l
+212.56 94.14 l
+212.99 93.51 l
+213.43 92.88 l
+213.86 92.25 l
+214.30 90.36 l
+214.74 90.99 l
+215.17 90.99 l
+215.61 92.88 l
+216.04 93.51 l
+216.48 94.14 l
+216.92 93.51 l
+217.35 92.25 l
+217.79 92.88 l
+218.23 92.88 l
+218.66 92.88 l
+219.10 92.88 l
+219.53 92.25 l
+219.97 92.88 l
+220.41 90.99 l
+220.84 93.51 l
+221.28 92.25 l
+221.71 92.88 l
+222.15 92.88 l
+222.59 93.51 l
+223.02 94.14 l
+223.46 91.62 l
+223.89 92.88 l
+224.33 94.14 l
+224.77 92.25 l
+225.20 93.51 l
+225.64 94.77 l
+226.07 95.40 l
+226.51 94.77 l
+226.95 93.51 l
+227.38 96.02 l
+227.82 92.88 l
+228.26 92.88 l
+228.69 92.88 l
+229.13 92.88 l
+229.56 90.99 l
+230.00 89.73 l
+230.44 92.25 l
+230.87 91.62 l
+231.31 92.25 l
+231.74 92.88 l
+232.18 92.25 l
+232.62 93.51 l
+233.05 93.51 l
+233.49 93.51 l
+233.92 91.62 l
+234.36 94.14 l
+234.80 93.51 l
+235.23 92.25 l
+235.67 91.62 l
+236.10 91.62 l
+236.54 91.62 l
+236.98 90.99 l
+237.41 93.51 l
+237.85 93.51 l
+238.28 94.14 l
+238.72 94.14 l
+239.16 94.77 l
+239.59 95.40 l
+240.03 94.14 l
+240.47 96.02 l
+240.90 95.40 l
+241.34 94.14 l
+241.77 92.25 l
+242.21 92.88 l
+242.65 93.51 l
+243.08 92.25 l
+243.52 90.99 l
+243.95 92.25 l
+244.39 92.25 l
+244.83 92.25 l
+245.26 94.14 l
+245.70 94.14 l
+246.13 92.88 l
+246.57 92.25 l
+247.01 93.51 l
+247.44 94.77 l
+247.88 94.77 l
+248.31 93.51 l
+248.75 92.88 l
+249.19 92.88 l
+249.62 95.40 l
+250.06 95.40 l
+250.50 96.02 l
+250.93 94.14 l
+251.37 94.14 l
+251.80 92.88 l
+252.24 94.77 l
+252.68 96.02 l
+253.11 96.02 l
+253.55 97.91 l
+253.98 96.02 l
+254.42 96.65 l
+254.86 97.28 l
+255.29 96.65 l
+255.73 96.65 l
+256.16 97.28 l
+256.60 97.91 l
+257.04 99.17 l
+257.47 97.28 l
+257.91 97.28 l
+258.34 96.65 l
+258.78 97.91 l
+259.22 97.91 l
+259.65 98.54 l
+260.09 98.54 l
+260.53 98.54 l
+260.96 98.54 l
+261.40 99.17 l
+261.83 100.43 l
+262.27 99.17 l
+262.71 99.17 l
+263.14 99.80 l
+263.58 101.06 l
+264.01 99.80 l
+264.45 100.43 l
+264.89 101.69 l
+265.32 101.69 l
+265.76 101.06 l
+266.19 101.69 l
+266.63 102.95 l
+267.07 101.69 l
+267.50 101.06 l
+267.94 101.06 l
+268.37 101.69 l
+268.81 101.06 l
+269.25 101.69 l
+269.68 102.95 l
+270.12 101.69 l
+270.55 103.58 l
+270.99 102.32 l
+271.43 101.69 l
+271.86 104.21 l
+272.30 106.10 l
+272.74 107.35 l
+273.17 107.35 l
+273.61 107.35 l
+274.04 106.72 l
+274.48 104.84 l
+274.92 102.32 l
+275.35 102.32 l
+275.79 102.32 l
+276.22 102.95 l
+276.66 104.84 l
+277.10 104.21 l
+277.53 101.69 l
+277.97 102.95 l
+278.40 104.21 l
+278.84 107.35 l
+279.28 107.35 l
+279.71 105.47 l
+280.15 106.72 l
+280.58 107.98 l
+281.02 106.10 l
+281.46 104.21 l
+281.89 102.95 l
+282.33 106.10 l
+282.77 106.72 l
+283.20 106.10 l
+283.64 105.47 l
+284.07 106.10 l
+284.51 106.72 l
+284.95 105.47 l
+285.38 102.32 l
+285.82 106.10 l
+286.25 104.84 l
+286.69 104.21 l
+287.13 102.32 l
+287.56 103.58 l
+288.00 101.69 l
+288.43 103.58 l
+288.87 102.95 l
+289.31 104.84 l
+289.74 104.21 l
+290.18 105.47 l
+290.61 108.61 l
+291.05 109.24 l
+291.49 107.98 l
+291.92 106.72 l
+292.36 107.98 l
+292.80 105.47 l
+293.23 106.72 l
+293.67 107.98 l
+294.10 105.47 l
+294.54 106.72 l
+294.98 102.32 l
+295.41 104.21 l
+295.85 104.84 l
+296.28 107.35 l
+296.72 106.10 l
+297.16 105.47 l
+297.59 102.95 l
+298.03 102.95 l
+298.46 103.58 l
+298.90 104.21 l
+299.34 103.58 l
+299.77 105.47 l
+300.21 105.47 l
+300.64 100.43 l
+301.08 102.95 l
+301.52 103.58 l
+301.95 100.43 l
+302.39 101.06 l
+302.82 102.95 l
+303.26 102.32 l
+303.70 101.06 l
+304.13 101.69 l
+304.57 102.95 l
+305.01 104.84 l
+305.44 104.21 l
+305.88 104.21 l
+306.31 104.84 l
+306.75 105.47 l
+307.19 103.58 l
+307.62 104.84 l
+308.06 102.95 l
+308.49 100.43 l
+308.93 102.32 l
+309.37 103.58 l
+309.80 104.21 l
+310.24 106.72 l
+310.67 107.98 l
+311.11 107.98 l
+311.55 107.35 l
+311.98 105.47 l
+312.42 106.10 l
+312.85 104.84 l
+313.29 107.35 l
+313.73 107.98 l
+314.16 107.35 l
+314.60 107.35 l
+315.04 109.24 l
+315.47 108.61 l
+315.91 105.47 l
+316.34 106.10 l
+316.78 106.72 l
+317.22 104.84 l
+317.65 106.72 l
+318.09 106.72 l
+318.52 108.61 l
+318.96 107.98 l
+319.40 107.35 l
+319.83 108.61 l
+320.27 106.72 l
+320.70 107.35 l
+321.14 107.98 l
+321.58 109.87 l
+322.01 107.98 l
+322.45 110.50 l
+322.88 111.13 l
+323.32 109.87 l
+323.76 112.39 l
+324.19 112.39 l
+324.63 113.02 l
+325.07 110.50 l
+325.50 109.24 l
+325.94 107.35 l
+326.37 106.10 l
+326.81 106.10 l
+327.25 104.84 l
+327.68 103.58 l
+328.12 104.21 l
+328.55 104.84 l
+328.99 106.72 l
+329.43 106.10 l
+329.86 107.35 l
+330.30 106.72 l
+330.73 104.84 l
+331.17 108.61 l
+331.61 107.98 l
+332.04 109.87 l
+332.48 106.10 l
+332.91 109.24 l
+333.35 107.98 l
+333.79 108.61 l
+334.22 107.98 l
+334.66 104.84 l
+335.10 106.10 l
+335.53 103.58 l
+335.97 104.84 l
+336.40 106.72 l
+336.84 105.47 l
+337.28 104.21 l
+337.71 102.95 l
+338.15 105.47 l
+338.58 105.47 l
+339.02 108.61 l
+339.46 107.98 l
+339.89 107.35 l
+340.33 108.61 l
+340.76 109.87 l
+341.20 111.76 l
+341.64 108.61 l
+342.07 107.98 l
+342.51 110.50 l
+342.94 111.13 l
+343.38 112.39 l
+343.82 111.13 l
+344.25 111.13 l
+344.69 111.76 l
+345.12 114.28 l
+345.56 115.54 l
+346.00 115.54 l
+346.43 114.28 l
+346.87 112.39 l
+347.31 112.39 l
+347.74 110.50 l
+348.18 109.24 l
+348.61 109.87 l
+349.05 111.76 l
+349.49 113.02 l
+349.92 113.65 l
+350.36 110.50 l
+350.79 111.13 l
+351.23 113.02 l
+351.67 110.50 l
+352.10 112.39 l
+352.54 111.13 l
+352.97 110.50 l
+353.41 111.76 l
+353.85 98.54 l
+354.28 102.95 l
+354.72 101.06 l
+355.15 99.80 l
+355.59 103.58 l
+356.03 114.28 l
+356.46 113.65 l
+356.90 111.76 l
+357.34 113.02 l
+357.77 113.02 l
+358.21 113.65 l
+358.64 114.28 l
+359.08 111.76 l
+359.52 109.87 l
+359.95 112.39 l
+360.39 112.39 l
+360.82 114.91 l
+361.26 118.05 l
+361.70 118.68 l
+362.13 116.80 l
+362.57 114.91 l
+363.00 116.17 l
+363.44 116.80 l
+363.88 118.05 l
+364.31 116.17 l
+364.75 118.05 l
+365.18 114.91 l
+365.62 116.17 l
+366.06 119.94 l
+366.49 119.31 l
+366.93 121.83 l
+367.37 117.42 l
+367.80 114.28 l
+368.24 113.02 l
+368.67 114.91 l
+369.11 117.42 l
+369.55 114.28 l
+369.98 114.91 l
+370.42 117.42 l
+370.85 118.68 l
+371.29 116.80 l
+371.73 120.57 l
+372.16 118.05 l
+372.60 119.31 l
+373.03 120.57 l
+373.47 118.05 l
+373.91 118.05 l
+374.34 111.76 l
+374.78 112.39 l
+375.21 120.57 l
+375.65 119.94 l
+376.09 117.42 l
+376.52 119.94 l
+376.96 118.68 l
+377.39 118.68 l
+377.83 119.94 l
+378.27 118.68 l
+378.70 118.68 l
+379.14 117.42 l
+379.58 116.17 l
+380.01 116.17 l
+380.45 116.80 l
+380.88 114.91 l
+381.32 114.91 l
+381.76 114.91 l
+382.19 118.05 l
+382.63 119.31 l
+383.06 117.42 l
+383.50 117.42 l
+383.94 116.17 l
+384.37 116.17 l
+384.81 118.68 l
+385.24 119.94 l
+385.68 120.57 l
+386.12 118.05 l
+386.55 118.68 l
+386.99 119.31 l
+387.42 119.94 l
+387.86 120.57 l
+388.30 122.46 l
+388.73 123.72 l
+389.17 118.68 l
+389.61 123.09 l
+390.04 118.05 l
+390.48 119.94 l
+390.91 122.46 l
+391.35 123.72 l
+391.79 122.46 l
+392.22 123.72 l
+392.66 123.72 l
+393.09 121.20 l
+393.53 119.94 l
+393.97 121.20 l
+394.40 121.83 l
+394.84 123.72 l
+395.27 121.83 l
+395.71 120.57 l
+396.15 121.20 l
+396.58 118.05 l
+397.02 119.31 l
+397.45 121.20 l
+397.89 122.46 l
+398.33 119.94 l
+398.76 119.94 l
+399.20 118.68 l
+399.64 118.68 l
+400.07 123.72 l
+400.51 124.35 l
+400.94 124.35 l
+401.38 125.61 l
+401.82 121.83 l
+402.25 123.09 l
+402.69 121.83 l
+403.12 123.72 l
+403.56 126.24 l
+404.00 122.46 l
+404.43 123.72 l
+404.87 123.09 l
+405.30 121.20 l
+405.74 121.20 l
+406.18 121.83 l
+406.61 122.46 l
+407.05 123.72 l
+407.48 124.98 l
+407.92 121.20 l
+408.36 119.94 l
+408.79 121.20 l
+409.23 123.09 l
+409.66 126.24 l
+410.10 128.75 l
+410.54 123.72 l
+410.97 123.72 l
+411.41 123.72 l
+411.85 126.24 l
+412.28 123.09 l
+412.72 125.61 l
+413.15 124.98 l
+413.59 127.50 l
+414.03 122.46 l
+414.46 123.72 l
+414.90 121.20 l
+415.33 119.94 l
+415.77 124.98 l
+416.21 125.61 l
+416.64 123.09 l
+417.08 124.35 l
+417.51 124.98 l
+417.95 123.09 l
+418.39 122.46 l
+418.82 121.20 l
+419.26 124.98 l
+419.69 123.09 l
+420.13 120.57 l
+420.57 122.46 l
+421.00 121.20 l
+421.44 121.83 l
+421.88 123.72 l
+422.31 123.09 l
+422.75 118.05 l
+423.18 116.17 l
+423.62 115.54 l
+424.06 117.42 l
+424.49 115.54 l
+424.93 121.20 l
+425.36 119.31 l
+425.80 120.57 l
+426.24 121.20 l
+426.67 121.20 l
+427.11 119.94 l
+427.54 121.20 l
+427.98 121.20 l
+428.42 124.35 l
+428.85 122.46 l
+429.29 123.09 l
+429.72 122.46 l
+430.16 123.09 l
+430.60 120.57 l
+431.03 117.42 l
+431.47 121.20 l
+431.91 118.68 l
+432.34 119.94 l
+432.78 119.31 l
+433.21 121.20 l
+433.65 118.68 l
+434.09 118.05 l
+434.52 119.31 l
+434.96 119.94 l
+435.39 118.68 l
+435.83 108.61 l
+436.27 107.98 l
+436.70 113.02 l
+437.14 116.80 l
+437.57 115.54 l
+438.01 117.42 l
+438.45 118.05 l
+438.88 115.54 l
+439.32 119.31 l
+439.75 117.42 l
+440.19 119.94 l
+440.63 119.31 l
+441.06 116.80 l
+441.50 116.80 l
+441.93 118.05 l
+442.37 118.05 l
+442.81 118.05 l
+443.24 119.94 l
+443.68 121.20 l
+444.12 120.57 l
+444.55 119.94 l
+444.99 121.20 l
+445.42 121.83 l
+445.86 123.09 l
+446.30 122.46 l
+446.73 123.09 l
+447.17 123.09 l
+447.60 124.98 l
+448.04 123.72 l
+448.48 126.87 l
+448.91 127.50 l
+449.35 128.12 l
+449.78 130.64 l
+450.22 128.75 l
+450.66 128.75 l
+451.09 128.75 l
+451.53 128.12 l
+451.96 126.24 l
+452.40 128.12 l
+452.84 128.12 l
+453.27 126.87 l
+453.71 127.50 l
+454.15 128.12 l
+454.58 129.38 l
+455.02 128.75 l
+455.45 130.64 l
+455.89 129.38 l
+456.33 129.38 l
+456.76 126.87 l
+457.20 128.75 l
+457.63 129.38 l
+458.07 125.61 l
+458.51 125.61 l
+458.94 125.61 l
+459.38 127.50 l
+459.81 126.87 l
+460.25 126.87 l
+460.69 127.50 l
+461.12 126.24 l
+461.56 126.87 l
+461.99 125.61 l
+462.43 126.24 l
+462.87 123.09 l
+463.30 127.50 l
+463.74 125.61 l
+464.18 125.61 l
+464.61 126.87 l
+465.05 124.98 l
+465.48 126.87 l
+465.92 124.98 l
+466.36 123.72 l
+466.79 122.46 l
+467.23 120.57 l
+467.66 124.35 l
+468.10 126.24 l
+468.54 124.35 l
+468.97 123.09 l
+469.41 123.09 l
+469.84 124.98 l
+470.28 122.46 l
+470.72 123.09 l
+471.15 121.20 l
+471.59 118.68 l
+472.02 119.31 l
+472.46 109.24 l
+472.90 109.24 l
+473.33 110.50 l
+473.77 109.87 l
+474.20 108.61 l
+474.64 109.24 l
+475.08 112.39 l
+475.51 111.13 l
+475.95 110.50 l
+476.39 109.24 l
+476.82 107.35 l
+477.26 108.61 l
+477.69 109.24 l
+478.13 109.24 l
+478.57 109.24 l
+479.00 110.50 l
+479.44 110.50 l
+479.87 111.13 l
+480.31 113.02 l
+480.75 113.02 l
+481.18 113.65 l
+481.62 112.39 l
+482.05 112.39 l
+482.49 114.91 l
+482.93 114.91 l
+483.36 113.02 l
+483.80 113.02 l
+484.23 113.65 l
+484.67 114.28 l
+485.11 115.54 l
+485.54 117.42 l
+485.98 118.05 l
+486.42 116.80 l
+486.85 116.80 l
+487.29 117.42 l
+487.72 115.54 l
+488.16 114.91 l
+488.60 114.91 l
+489.03 113.02 l
+489.47 112.39 l
+489.90 114.28 l
+490.34 114.91 l
+490.78 117.42 l
+491.21 120.57 l
+491.65 116.80 l
+492.08 115.54 l
+492.52 114.91 l
+492.96 116.17 l
+493.39 112.39 l
+493.83 111.76 l
+494.26 116.17 l
+494.70 114.28 l
+495.14 115.54 l
+495.57 115.54 l
+496.01 115.54 l
+496.45 114.28 l
+496.88 111.13 l
+497.32 113.65 l
+497.75 116.80 l
+498.19 116.80 l
+498.63 116.17 l
+499.06 118.05 l
+499.50 118.68 l
+499.93 118.05 l
+500.37 116.17 l
+500.81 117.42 l
+501.24 114.91 l
+501.68 114.91 l
+502.11 116.80 l
+502.55 114.91 l
+502.99 113.65 l
+503.42 114.91 l
+503.86 117.42 l
+504.29 116.80 l
+504.73 115.54 l
+505.17 115.54 l
+505.60 113.65 l
+506.04 113.65 l
+506.47 114.91 l
+506.91 117.42 l
+S
+507.78 116.80 m
+508.22 114.91 l
+508.66 116.17 l
+509.09 114.91 l
+509.53 113.02 l
+509.96 116.17 l
+510.40 115.54 l
+510.84 116.80 l
+511.27 119.31 l
+511.71 116.17 l
+512.14 118.05 l
+512.58 119.31 l
+513.02 117.42 l
+513.45 117.42 l
+513.89 119.31 l
+514.32 119.94 l
+514.76 116.80 l
+515.20 113.65 l
+515.63 114.91 l
+516.07 116.80 l
+516.50 119.94 l
+516.94 119.31 l
+517.38 120.57 l
+517.81 118.05 l
+518.25 118.68 l
+518.69 118.05 l
+519.12 116.17 l
+519.56 116.17 l
+519.99 117.42 l
+520.43 117.42 l
+520.87 115.54 l
+521.30 116.17 l
+521.74 117.42 l
+522.17 118.05 l
+522.61 118.68 l
+523.05 118.68 l
+523.48 117.42 l
+523.92 119.31 l
+524.35 120.57 l
+524.79 121.83 l
+525.23 121.20 l
+525.66 121.20 l
+526.10 118.68 l
+526.53 118.05 l
+526.97 118.68 l
+527.41 119.31 l
+527.84 119.94 l
+528.28 119.31 l
+528.72 120.57 l
+529.15 117.42 l
+529.59 118.05 l
+530.02 118.68 l
+530.46 115.54 l
+530.90 118.68 l
+531.33 116.80 l
+531.77 118.05 l
+532.20 121.20 l
+532.64 114.91 l
+533.08 119.31 l
+533.51 115.54 l
+533.95 113.02 l
+534.38 116.80 l
+534.82 117.42 l
+535.26 116.80 l
+535.69 116.80 l
+536.13 115.54 l
+536.56 113.65 l
+537.00 116.17 l
+537.44 115.54 l
+537.87 117.42 l
+538.31 118.05 l
+538.74 117.42 l
+539.18 118.05 l
+539.62 116.80 l
+540.05 116.17 l
+540.49 115.54 l
+540.93 117.42 l
+541.36 112.39 l
+541.80 112.39 l
+542.23 110.50 l
+542.67 111.76 l
+543.11 114.28 l
+543.54 113.65 l
+543.98 115.54 l
+544.41 109.87 l
+544.85 107.98 l
+545.29 109.24 l
+545.72 112.39 l
+546.16 114.91 l
+546.59 111.13 l
+547.03 113.02 l
+547.47 114.91 l
+547.90 113.65 l
+548.34 113.02 l
+548.77 115.54 l
+549.21 115.54 l
+549.65 114.91 l
+550.08 115.54 l
+550.52 113.65 l
+550.96 110.50 l
+551.39 111.76 l
+551.83 108.61 l
+552.26 114.28 l
+552.70 115.54 l
+553.14 114.91 l
+553.57 116.80 l
+554.01 114.28 l
+554.44 115.54 l
+554.88 114.91 l
+555.32 114.28 l
+555.75 114.28 l
+556.19 117.42 l
+556.62 118.05 l
+557.06 114.28 l
+557.50 112.39 l
+557.93 116.17 l
+558.37 115.54 l
+558.80 117.42 l
+559.24 121.83 l
+559.68 119.31 l
+560.11 119.31 l
+560.55 117.42 l
+560.99 116.17 l
+561.42 116.80 l
+561.86 119.31 l
+562.29 122.46 l
+S
+1.000 0.000 0.000 RG
+75.63 72.74 m
+76.06 72.74 l
+76.50 72.74 l
+76.93 72.74 l
+77.37 72.74 l
+77.81 72.74 l
+78.24 72.11 l
+78.68 72.74 l
+79.12 72.74 l
+79.55 73.37 l
+79.99 73.37 l
+80.42 73.37 l
+80.86 73.37 l
+81.30 73.37 l
+81.73 73.37 l
+82.17 73.37 l
+82.60 73.37 l
+83.04 73.37 l
+83.48 73.37 l
+83.91 73.37 l
+84.35 73.37 l
+84.78 73.37 l
+85.22 73.37 l
+85.66 73.37 l
+86.09 73.37 l
+86.53 72.74 l
+86.96 73.37 l
+87.40 73.99 l
+87.84 74.62 l
+88.27 74.62 l
+88.71 74.62 l
+89.15 74.62 l
+89.58 73.99 l
+90.02 74.62 l
+90.45 73.99 l
+90.89 74.62 l
+91.33 74.62 l
+91.76 73.99 l
+92.20 73.99 l
+92.63 73.99 l
+93.07 73.99 l
+93.51 74.62 l
+93.94 74.62 l
+94.38 74.62 l
+94.81 74.62 l
+95.25 74.62 l
+95.69 74.62 l
+96.12 74.62 l
+96.56 74.62 l
+96.99 75.25 l
+97.43 75.25 l
+97.87 74.62 l
+98.30 75.88 l
+98.74 75.88 l
+99.18 75.25 l
+99.61 75.25 l
+100.05 74.62 l
+100.48 75.25 l
+100.92 75.25 l
+101.36 75.88 l
+101.79 75.88 l
+102.23 75.88 l
+102.66 75.88 l
+103.10 76.51 l
+103.54 76.51 l
+103.97 76.51 l
+104.41 76.51 l
+104.84 76.51 l
+105.28 76.51 l
+105.72 76.51 l
+106.15 76.51 l
+106.59 76.51 l
+107.02 76.51 l
+107.46 75.25 l
+107.90 76.51 l
+108.33 77.14 l
+108.77 77.14 l
+109.20 77.14 l
+109.64 75.88 l
+110.08 75.88 l
+110.51 75.25 l
+110.95 75.88 l
+111.39 75.25 l
+111.82 75.25 l
+112.26 75.88 l
+112.69 75.25 l
+113.13 75.25 l
+113.57 75.25 l
+114.00 75.88 l
+114.44 75.88 l
+114.87 76.51 l
+115.31 77.14 l
+115.75 77.14 l
+116.18 77.14 l
+116.62 77.77 l
+117.05 77.14 l
+117.49 78.40 l
+117.93 77.14 l
+118.36 76.51 l
+118.80 79.03 l
+119.23 78.40 l
+119.67 78.40 l
+120.11 79.03 l
+120.54 78.40 l
+120.98 78.40 l
+121.42 79.66 l
+121.85 79.03 l
+122.29 79.03 l
+122.72 79.03 l
+123.16 79.03 l
+123.60 77.77 l
+124.03 79.03 l
+124.47 79.03 l
+124.90 79.03 l
+125.34 79.03 l
+125.78 79.66 l
+126.21 80.29 l
+126.65 81.55 l
+127.08 80.92 l
+127.52 80.92 l
+127.96 80.29 l
+128.39 79.03 l
+128.83 78.40 l
+129.26 77.77 l
+129.70 77.77 l
+130.14 78.40 l
+130.57 77.77 l
+131.01 77.77 l
+131.45 77.77 l
+131.88 77.77 l
+132.32 78.40 l
+132.75 79.03 l
+133.19 79.03 l
+133.63 79.66 l
+134.06 80.29 l
+134.50 80.29 l
+134.93 79.66 l
+135.37 80.29 l
+135.81 78.40 l
+136.24 78.40 l
+136.68 79.03 l
+137.11 80.29 l
+137.55 79.66 l
+137.99 79.03 l
+138.42 79.03 l
+138.86 78.40 l
+139.29 79.03 l
+139.73 78.40 l
+140.17 77.14 l
+140.60 78.40 l
+141.04 78.40 l
+141.47 77.77 l
+141.91 79.66 l
+142.35 79.66 l
+142.78 79.03 l
+143.22 78.40 l
+143.66 77.77 l
+144.09 77.77 l
+144.53 77.77 l
+144.96 77.14 l
+145.40 78.40 l
+145.84 77.77 l
+146.27 77.14 l
+146.71 75.88 l
+147.14 76.51 l
+147.58 77.14 l
+148.02 76.51 l
+148.45 76.51 l
+148.89 77.14 l
+149.32 77.14 l
+149.76 77.14 l
+150.20 76.51 l
+150.63 77.77 l
+151.07 77.77 l
+151.50 78.40 l
+151.94 78.40 l
+152.38 79.03 l
+152.81 78.40 l
+153.25 80.92 l
+153.69 80.29 l
+154.12 79.66 l
+154.56 80.29 l
+154.99 79.03 l
+155.43 80.29 l
+155.87 79.03 l
+156.30 79.66 l
+156.74 80.29 l
+157.17 79.03 l
+157.61 76.51 l
+158.05 77.14 l
+158.48 77.77 l
+158.92 77.14 l
+159.35 78.40 l
+159.79 78.40 l
+160.23 77.14 l
+160.66 77.77 l
+161.10 77.77 l
+161.53 77.77 l
+161.97 77.14 l
+162.41 79.66 l
+162.84 79.03 l
+163.28 77.14 l
+163.72 77.14 l
+164.15 77.77 l
+164.59 77.77 l
+165.02 78.40 l
+165.46 79.66 l
+165.90 79.03 l
+166.33 77.77 l
+166.77 77.77 l
+167.20 77.14 l
+167.64 77.77 l
+168.08 79.03 l
+168.51 77.77 l
+168.95 77.77 l
+169.38 77.14 l
+169.82 77.14 l
+170.26 78.40 l
+170.69 79.03 l
+171.13 78.40 l
+171.56 79.66 l
+172.00 77.77 l
+172.44 77.77 l
+172.87 79.03 l
+173.31 77.77 l
+173.74 77.77 l
+174.18 79.66 l
+174.62 82.18 l
+175.05 81.55 l
+175.49 81.55 l
+175.93 80.29 l
+176.36 79.66 l
+176.80 77.77 l
+177.23 79.66 l
+177.67 79.03 l
+178.11 78.40 l
+178.54 80.29 l
+178.98 80.29 l
+179.41 80.92 l
+179.85 81.55 l
+180.29 80.29 l
+180.72 82.18 l
+181.16 79.66 l
+181.59 79.66 l
+182.03 79.66 l
+182.47 80.29 l
+182.90 80.29 l
+183.34 79.66 l
+183.77 80.29 l
+184.21 80.29 l
+184.65 78.40 l
+185.08 77.77 l
+185.52 79.66 l
+185.96 79.03 l
+186.39 79.66 l
+186.83 80.92 l
+187.26 79.03 l
+187.70 79.03 l
+188.14 80.29 l
+188.57 78.40 l
+189.01 80.92 l
+189.44 80.29 l
+189.88 80.92 l
+190.32 81.55 l
+190.75 80.29 l
+191.19 80.92 l
+191.62 81.55 l
+192.06 81.55 l
+192.50 80.29 l
+192.93 79.03 l
+193.37 80.29 l
+193.80 80.92 l
+194.24 79.66 l
+194.68 79.03 l
+195.11 79.66 l
+195.55 81.55 l
+195.99 80.92 l
+196.42 82.18 l
+196.86 82.18 l
+197.29 82.18 l
+197.73 82.18 l
+198.17 82.81 l
+198.60 82.81 l
+199.04 83.44 l
+199.47 84.07 l
+199.91 82.18 l
+200.35 84.07 l
+200.78 81.55 l
+201.22 82.18 l
+201.65 81.55 l
+202.09 80.92 l
+202.53 82.18 l
+202.96 80.29 l
+203.40 79.66 l
+203.83 80.92 l
+204.27 80.92 l
+204.71 80.29 l
+205.14 80.92 l
+205.58 80.92 l
+206.01 79.03 l
+206.45 79.03 l
+206.89 80.92 l
+207.32 80.92 l
+207.76 80.29 l
+208.20 80.92 l
+208.63 80.92 l
+209.07 80.92 l
+209.50 79.03 l
+209.94 80.92 l
+210.38 80.29 l
+210.81 79.03 l
+211.25 79.03 l
+211.68 79.66 l
+212.12 79.66 l
+212.56 79.03 l
+212.99 79.03 l
+213.43 78.40 l
+213.86 78.40 l
+214.30 80.29 l
+214.74 79.66 l
+215.17 79.03 l
+215.61 78.40 l
+216.04 77.77 l
+216.48 78.40 l
+216.92 77.14 l
+217.35 77.14 l
+217.79 75.88 l
+218.23 75.88 l
+218.66 77.14 l
+219.10 77.14 l
+219.53 79.03 l
+219.97 81.55 l
+220.41 82.81 l
+220.84 81.55 l
+221.28 79.66 l
+221.71 77.77 l
+222.15 77.77 l
+222.59 77.77 l
+223.02 78.40 l
+223.46 78.40 l
+223.89 79.03 l
+224.33 79.03 l
+224.77 78.40 l
+225.20 77.77 l
+225.64 77.14 l
+226.07 77.77 l
+226.51 78.40 l
+226.95 78.40 l
+227.38 77.77 l
+227.82 76.51 l
+228.26 76.51 l
+228.69 76.51 l
+229.13 77.77 l
+229.56 78.40 l
+230.00 75.88 l
+230.44 76.51 l
+230.87 77.77 l
+231.31 78.40 l
+231.74 78.40 l
+232.18 77.77 l
+232.62 77.77 l
+233.05 78.40 l
+233.49 76.51 l
+233.92 75.88 l
+234.36 78.40 l
+234.80 77.14 l
+235.23 78.40 l
+235.67 78.40 l
+236.10 80.29 l
+236.54 79.66 l
+236.98 80.29 l
+237.41 80.29 l
+237.85 78.40 l
+238.28 80.29 l
+238.72 77.77 l
+239.16 77.14 l
+239.59 76.51 l
+240.03 77.77 l
+240.47 77.14 l
+240.90 77.77 l
+241.34 78.40 l
+241.77 79.66 l
+242.21 79.03 l
+242.65 78.40 l
+243.08 79.66 l
+243.52 80.29 l
+243.95 80.29 l
+244.39 80.92 l
+244.83 80.29 l
+245.26 81.55 l
+245.70 79.03 l
+246.13 79.66 l
+246.57 79.66 l
+247.01 80.29 l
+247.44 80.29 l
+247.88 79.66 l
+248.31 79.66 l
+248.75 80.29 l
+249.19 80.29 l
+249.62 80.29 l
+250.06 79.66 l
+250.50 79.66 l
+250.93 80.29 l
+251.37 80.29 l
+251.80 80.92 l
+252.24 82.81 l
+252.68 83.44 l
+253.11 85.95 l
+253.55 85.95 l
+253.98 85.32 l
+254.42 83.44 l
+254.86 84.69 l
+255.29 85.32 l
+255.73 84.69 l
+256.16 87.84 l
+256.60 85.95 l
+257.04 87.84 l
+257.47 87.84 l
+257.91 85.95 l
+258.34 83.44 l
+258.78 82.81 l
+259.22 83.44 l
+259.65 84.07 l
+260.09 84.69 l
+260.53 84.07 l
+260.96 84.69 l
+261.40 86.58 l
+261.83 85.95 l
+262.27 86.58 l
+262.71 83.44 l
+263.14 84.07 l
+263.58 84.07 l
+264.01 84.07 l
+264.45 84.69 l
+264.89 85.95 l
+265.32 87.21 l
+265.76 88.47 l
+266.19 91.62 l
+266.63 87.84 l
+267.07 87.84 l
+267.50 88.47 l
+267.94 84.07 l
+268.37 86.58 l
+268.81 85.95 l
+269.25 86.58 l
+269.68 86.58 l
+270.12 86.58 l
+270.55 87.21 l
+270.99 85.95 l
+271.43 85.32 l
+271.86 85.32 l
+272.30 85.95 l
+272.74 84.07 l
+273.17 84.69 l
+273.61 82.81 l
+274.04 84.07 l
+274.48 85.95 l
+274.92 85.95 l
+275.35 82.81 l
+275.79 84.69 l
+276.22 84.07 l
+276.66 84.69 l
+277.10 84.69 l
+277.53 83.44 l
+277.97 85.95 l
+278.40 85.32 l
+278.84 84.69 l
+279.28 83.44 l
+279.71 82.18 l
+280.15 83.44 l
+280.58 84.07 l
+281.02 85.95 l
+281.46 84.69 l
+281.89 85.95 l
+282.33 83.44 l
+282.77 83.44 l
+283.20 83.44 l
+283.64 84.69 l
+284.07 85.95 l
+284.51 87.21 l
+284.95 88.47 l
+285.38 88.47 l
+285.82 88.47 l
+286.25 86.58 l
+286.69 85.95 l
+287.13 86.58 l
+287.56 88.47 l
+288.00 90.99 l
+288.43 89.10 l
+288.87 86.58 l
+289.31 86.58 l
+289.74 86.58 l
+290.18 89.10 l
+290.61 91.62 l
+291.05 90.99 l
+291.49 90.36 l
+291.92 91.62 l
+292.36 88.47 l
+292.80 85.95 l
+293.23 89.10 l
+293.67 88.47 l
+294.10 89.73 l
+294.54 88.47 l
+294.98 87.84 l
+295.41 89.10 l
+295.85 87.84 l
+296.28 90.99 l
+296.72 93.51 l
+297.16 92.88 l
+297.59 86.58 l
+298.03 89.10 l
+298.46 88.47 l
+298.90 89.73 l
+299.34 89.10 l
+299.77 88.47 l
+300.21 89.10 l
+300.64 89.10 l
+301.08 90.99 l
+301.52 90.99 l
+301.95 90.36 l
+302.39 90.36 l
+302.82 89.10 l
+303.26 86.58 l
+303.70 85.32 l
+304.13 87.21 l
+304.57 84.69 l
+305.01 82.81 l
+305.44 85.32 l
+305.88 87.84 l
+306.31 90.36 l
+306.75 85.95 l
+307.19 85.95 l
+307.62 86.58 l
+308.06 86.58 l
+308.49 85.95 l
+308.93 87.21 l
+309.37 87.84 l
+309.80 85.32 l
+310.24 87.21 l
+310.67 89.10 l
+311.11 87.84 l
+311.55 90.99 l
+311.98 94.14 l
+312.42 92.88 l
+312.85 92.25 l
+313.29 92.25 l
+313.73 97.28 l
+314.16 97.28 l
+314.60 101.06 l
+315.04 103.58 l
+315.47 106.10 l
+315.91 103.58 l
+316.34 101.69 l
+316.78 103.58 l
+317.22 105.47 l
+317.65 108.61 l
+318.09 108.61 l
+318.52 106.10 l
+318.96 106.72 l
+319.40 108.61 l
+319.83 106.72 l
+320.27 107.98 l
+320.70 108.61 l
+321.14 102.95 l
+321.58 104.84 l
+322.01 104.21 l
+322.45 106.10 l
+322.88 104.21 l
+323.32 103.58 l
+323.76 101.69 l
+324.19 103.58 l
+324.63 102.32 l
+325.07 101.06 l
+325.50 103.58 l
+325.94 106.10 l
+326.37 103.58 l
+326.81 105.47 l
+327.25 107.35 l
+327.68 107.35 l
+328.12 102.32 l
+328.55 104.21 l
+328.99 106.10 l
+329.43 111.76 l
+329.86 110.50 l
+330.30 114.28 l
+330.73 111.13 l
+331.17 112.39 l
+331.61 113.02 l
+332.04 111.76 l
+332.48 109.87 l
+332.91 113.02 l
+333.35 119.31 l
+333.79 116.17 l
+334.22 112.39 l
+334.66 113.65 l
+335.10 113.02 l
+335.53 111.13 l
+335.97 116.17 l
+336.40 118.05 l
+336.84 116.80 l
+337.28 118.05 l
+337.71 115.54 l
+338.15 116.17 l
+338.58 116.17 l
+339.02 116.80 l
+339.46 118.68 l
+339.89 117.42 l
+340.33 113.02 l
+340.76 111.76 l
+341.20 116.17 l
+341.64 111.76 l
+342.07 109.87 l
+342.51 118.05 l
+342.94 118.05 l
+343.38 111.13 l
+343.82 109.24 l
+344.25 113.02 l
+344.69 116.80 l
+345.12 118.05 l
+345.56 126.87 l
+346.00 124.98 l
+346.43 117.42 l
+346.87 113.02 l
+347.31 117.42 l
+347.74 117.42 l
+348.18 120.57 l
+348.61 123.72 l
+349.05 123.72 l
+349.49 120.57 l
+349.92 123.72 l
+350.36 120.57 l
+350.79 118.05 l
+351.23 118.68 l
+351.67 119.94 l
+352.10 123.72 l
+352.54 121.20 l
+352.97 125.61 l
+353.41 121.20 l
+353.85 105.47 l
+354.28 107.98 l
+354.72 106.72 l
+355.15 104.84 l
+355.59 107.35 l
+356.03 118.05 l
+356.46 113.02 l
+356.90 113.02 l
+357.34 117.42 l
+357.77 124.35 l
+358.21 122.46 l
+358.64 113.65 l
+359.08 115.54 l
+359.52 119.31 l
+359.95 119.31 l
+360.39 122.46 l
+360.82 126.87 l
+361.26 121.20 l
+361.70 116.17 l
+362.13 116.17 l
+362.57 118.05 l
+363.00 120.57 l
+363.44 121.83 l
+363.88 123.72 l
+364.31 123.09 l
+364.75 114.91 l
+365.18 113.02 l
+365.62 119.31 l
+366.06 119.94 l
+366.49 116.17 l
+366.93 118.68 l
+367.37 118.68 l
+367.80 114.91 l
+368.24 113.65 l
+368.67 116.17 l
+369.11 115.54 l
+369.55 116.80 l
+369.98 119.31 l
+370.42 116.17 l
+370.85 114.28 l
+371.29 109.24 l
+371.73 113.65 l
+372.16 111.13 l
+372.60 111.13 l
+373.03 117.42 l
+373.47 116.17 l
+373.91 114.28 l
+374.34 114.28 l
+374.78 111.13 l
+375.21 114.28 l
+375.65 111.76 l
+376.09 113.65 l
+376.52 118.05 l
+376.96 118.68 l
+377.39 118.05 l
+377.83 113.02 l
+378.27 113.65 l
+378.70 111.76 l
+379.14 116.80 l
+379.58 114.91 l
+380.01 113.02 l
+380.45 114.28 l
+380.88 113.65 l
+381.32 115.54 l
+381.76 114.28 l
+382.19 116.80 l
+382.63 114.28 l
+383.06 109.87 l
+383.50 110.50 l
+383.94 109.87 l
+384.37 111.76 l
+384.81 109.87 l
+385.24 112.39 l
+385.68 111.76 l
+386.12 111.13 l
+386.55 111.76 l
+386.99 107.98 l
+387.42 108.61 l
+387.86 107.35 l
+388.30 108.61 l
+388.73 106.72 l
+389.17 106.72 l
+389.61 108.61 l
+390.04 109.87 l
+390.48 111.13 l
+390.91 111.76 l
+391.35 111.13 l
+391.79 111.76 l
+392.22 110.50 l
+392.66 108.61 l
+393.09 106.10 l
+393.53 107.35 l
+393.97 106.10 l
+394.40 107.35 l
+394.84 110.50 l
+395.27 114.28 l
+395.71 114.91 l
+396.15 116.17 l
+396.58 112.39 l
+397.02 116.17 l
+397.45 114.91 l
+397.89 115.54 l
+398.33 114.91 l
+398.76 116.17 l
+399.20 115.54 l
+399.64 114.91 l
+400.07 117.42 l
+400.51 121.20 l
+400.94 115.54 l
+401.38 110.50 l
+401.82 112.39 l
+402.25 114.91 l
+402.69 112.39 l
+403.12 110.50 l
+403.56 117.42 l
+404.00 116.17 l
+404.43 107.98 l
+404.87 109.24 l
+405.30 114.91 l
+405.74 110.50 l
+406.18 110.50 l
+406.61 112.39 l
+407.05 108.61 l
+407.48 106.72 l
+407.92 106.10 l
+408.36 107.98 l
+408.79 109.87 l
+409.23 111.76 l
+409.66 115.54 l
+410.10 114.91 l
+410.54 116.80 l
+410.97 115.54 l
+411.41 113.65 l
+411.85 116.80 l
+412.28 117.42 l
+412.72 122.46 l
+413.15 115.54 l
+413.59 111.76 l
+414.03 116.17 l
+414.46 111.13 l
+414.90 111.76 l
+415.33 114.28 l
+415.77 117.42 l
+416.21 118.05 l
+416.64 111.76 l
+417.08 113.65 l
+417.51 112.39 l
+417.95 114.28 l
+418.39 116.80 l
+418.82 109.24 l
+419.26 111.13 l
+419.69 111.13 l
+420.13 108.61 l
+420.57 109.24 l
+421.00 109.87 l
+421.44 109.87 l
+421.88 111.76 l
+422.31 114.28 l
+422.75 110.50 l
+423.18 112.39 l
+423.62 111.76 l
+424.06 111.76 l
+424.49 111.13 l
+424.93 112.39 l
+425.36 111.76 l
+425.80 107.35 l
+426.24 107.98 l
+426.67 109.24 l
+427.11 107.35 l
+427.54 107.98 l
+427.98 109.87 l
+428.42 109.24 l
+428.85 107.98 l
+429.29 109.87 l
+429.72 111.76 l
+430.16 114.28 l
+430.60 112.39 l
+431.03 107.35 l
+431.47 107.98 l
+431.91 107.35 l
+432.34 111.76 l
+432.78 109.24 l
+433.21 113.02 l
+433.65 115.54 l
+434.09 115.54 l
+434.52 113.65 l
+434.96 110.50 l
+435.39 109.87 l
+435.83 107.35 l
+436.27 107.35 l
+436.70 108.61 l
+437.14 113.65 l
+437.57 112.39 l
+438.01 109.87 l
+438.45 110.50 l
+438.88 111.76 l
+439.32 108.61 l
+439.75 109.24 l
+440.19 109.87 l
+440.63 112.39 l
+441.06 107.35 l
+441.50 105.47 l
+441.93 108.61 l
+442.37 107.98 l
+442.81 105.47 l
+443.24 110.50 l
+443.68 107.35 l
+444.12 102.95 l
+444.55 108.61 l
+444.99 109.24 l
+445.42 111.13 l
+445.86 105.47 l
+446.30 108.61 l
+446.73 109.87 l
+447.17 109.24 l
+447.60 111.76 l
+448.04 111.13 l
+448.48 107.98 l
+448.91 107.98 l
+449.35 111.13 l
+449.78 112.39 l
+450.22 104.84 l
+450.66 108.61 l
+451.09 113.65 l
+451.53 110.50 l
+451.96 111.76 l
+452.40 114.91 l
+452.84 114.28 l
+453.27 107.35 l
+453.71 107.35 l
+454.15 110.50 l
+454.58 111.76 l
+455.02 109.24 l
+455.45 115.54 l
+455.89 114.91 l
+456.33 110.50 l
+456.76 107.98 l
+457.20 107.98 l
+457.63 109.24 l
+458.07 110.50 l
+458.51 114.28 l
+458.94 110.50 l
+459.38 110.50 l
+459.81 112.39 l
+460.25 107.98 l
+460.69 106.72 l
+461.12 106.10 l
+461.56 108.61 l
+461.99 110.50 l
+462.43 108.61 l
+462.87 106.10 l
+463.30 106.72 l
+463.74 108.61 l
+464.18 107.35 l
+464.61 107.98 l
+465.05 108.61 l
+465.48 108.61 l
+465.92 107.98 l
+466.36 106.10 l
+466.79 107.98 l
+467.23 112.39 l
+467.66 119.31 l
+468.10 114.28 l
+468.54 107.98 l
+468.97 105.47 l
+469.41 109.24 l
+469.84 106.72 l
+470.28 105.47 l
+470.72 109.24 l
+471.15 110.50 l
+471.59 111.13 l
+472.02 107.98 l
+472.46 110.50 l
+472.90 107.35 l
+473.33 104.21 l
+473.77 109.87 l
+474.20 104.21 l
+474.64 99.17 l
+475.08 98.54 l
+475.51 102.32 l
+475.95 102.32 l
+476.39 105.47 l
+476.82 104.21 l
+477.26 101.69 l
+477.69 103.58 l
+478.13 102.32 l
+478.57 104.21 l
+479.00 100.43 l
+479.44 102.32 l
+479.87 102.32 l
+480.31 104.84 l
+480.75 99.17 l
+481.18 100.43 l
+481.62 97.28 l
+482.05 98.54 l
+482.49 99.17 l
+482.93 103.58 l
+483.36 101.06 l
+483.80 97.28 l
+484.23 99.80 l
+484.67 99.80 l
+485.11 99.17 l
+485.54 100.43 l
+485.98 100.43 l
+486.42 101.69 l
+486.85 96.65 l
+487.29 97.91 l
+487.72 99.17 l
+488.16 98.54 l
+488.60 100.43 l
+489.03 100.43 l
+489.47 100.43 l
+489.90 106.72 l
+490.34 102.95 l
+490.78 101.69 l
+491.21 101.06 l
+491.65 100.43 l
+492.08 104.21 l
+492.52 104.84 l
+492.96 102.95 l
+493.39 101.69 l
+493.83 100.43 l
+494.26 102.32 l
+494.70 101.69 l
+495.14 99.80 l
+495.57 99.17 l
+496.01 102.95 l
+496.45 98.54 l
+496.88 98.54 l
+497.32 102.95 l
+497.75 102.32 l
+498.19 104.21 l
+498.63 100.43 l
+499.06 97.28 l
+499.50 101.06 l
+499.93 99.80 l
+500.37 97.91 l
+500.81 100.43 l
+501.24 102.32 l
+501.68 101.06 l
+502.11 100.43 l
+502.55 104.21 l
+502.99 102.95 l
+503.42 102.95 l
+503.86 101.06 l
+504.29 102.32 l
+504.73 101.06 l
+505.17 101.06 l
+505.60 100.43 l
+506.04 99.80 l
+506.47 98.54 l
+506.91 99.17 l
+S
+507.78 99.17 m
+508.22 96.02 l
+508.66 94.14 l
+509.09 95.40 l
+509.53 92.88 l
+509.96 97.28 l
+510.40 99.17 l
+510.84 96.02 l
+511.27 96.02 l
+511.71 97.28 l
+512.14 97.28 l
+512.58 96.65 l
+513.02 99.17 l
+513.45 97.91 l
+513.89 97.28 l
+514.32 96.02 l
+514.76 94.14 l
+515.20 97.28 l
+515.63 97.91 l
+516.07 95.40 l
+516.50 97.28 l
+516.94 97.91 l
+517.38 91.62 l
+517.81 94.14 l
+518.25 94.14 l
+518.69 94.14 l
+519.12 94.14 l
+519.56 96.02 l
+519.99 92.88 l
+520.43 92.88 l
+520.87 92.88 l
+521.30 94.14 l
+521.74 96.02 l
+522.17 97.28 l
+522.61 96.65 l
+523.05 92.25 l
+523.48 96.02 l
+523.92 94.77 l
+524.35 96.02 l
+524.79 98.54 l
+525.23 96.65 l
+525.66 99.80 l
+526.10 97.91 l
+526.53 96.65 l
+526.97 97.28 l
+527.41 96.02 l
+527.84 99.80 l
+528.28 99.80 l
+528.72 98.54 l
+529.15 98.54 l
+529.59 97.28 l
+530.02 99.17 l
+530.46 97.28 l
+530.90 95.40 l
+531.33 94.77 l
+531.77 97.91 l
+532.20 97.28 l
+532.64 94.77 l
+533.08 93.51 l
+533.51 92.88 l
+533.95 95.40 l
+534.38 98.54 l
+534.82 97.91 l
+535.26 95.40 l
+535.69 94.77 l
+536.13 92.88 l
+536.56 92.88 l
+537.00 95.40 l
+537.44 97.28 l
+537.87 97.28 l
+538.31 93.51 l
+538.74 93.51 l
+539.18 96.02 l
+539.62 95.40 l
+540.05 92.88 l
+540.49 94.77 l
+540.93 94.77 l
+541.36 92.88 l
+541.80 90.99 l
+542.23 92.25 l
+542.67 93.51 l
+543.11 92.25 l
+543.54 91.62 l
+543.98 94.77 l
+544.41 90.99 l
+544.85 89.73 l
+545.29 92.88 l
+545.72 91.62 l
+546.16 93.51 l
+546.59 94.14 l
+547.03 94.14 l
+547.47 91.62 l
+547.90 89.73 l
+548.34 89.10 l
+548.77 90.36 l
+549.21 89.10 l
+549.65 92.25 l
+550.08 92.25 l
+550.52 91.62 l
+550.96 92.88 l
+551.39 94.77 l
+551.83 92.88 l
+552.26 92.25 l
+552.70 94.77 l
+553.14 96.65 l
+553.57 96.65 l
+554.01 95.40 l
+554.44 95.40 l
+554.88 95.40 l
+555.32 97.28 l
+555.75 94.77 l
+556.19 96.02 l
+556.62 96.65 l
+557.06 94.14 l
+557.50 93.51 l
+557.93 95.40 l
+558.37 96.65 l
+558.80 94.77 l
+559.24 97.91 l
+559.68 98.54 l
+560.11 96.65 l
+560.55 98.54 l
+560.99 95.40 l
+561.42 97.91 l
+561.86 96.65 l
+562.29 95.40 l
+S
+0.627 0.125 0.941 RG
+75.63 81.55 m
+76.06 81.55 l
+76.50 81.55 l
+76.93 82.18 l
+77.37 82.81 l
+77.81 83.44 l
+78.24 83.44 l
+78.68 84.69 l
+79.12 84.69 l
+79.55 85.95 l
+79.99 84.69 l
+80.42 84.69 l
+80.86 85.32 l
+81.30 85.95 l
+81.73 86.58 l
+82.17 87.21 l
+82.60 87.21 l
+83.04 87.21 l
+83.48 85.95 l
+83.91 86.58 l
+84.35 87.84 l
+84.78 89.10 l
+85.22 89.10 l
+85.66 88.47 l
+86.09 87.84 l
+86.53 88.47 l
+86.96 87.84 l
+87.40 86.58 l
+87.84 86.58 l
+88.27 86.58 l
+88.71 86.58 l
+89.15 88.47 l
+89.58 88.47 l
+90.02 87.84 l
+90.45 86.58 l
+90.89 85.95 l
+91.33 85.95 l
+91.76 86.58 l
+92.20 85.32 l
+92.63 84.69 l
+93.07 84.69 l
+93.51 84.69 l
+93.94 84.69 l
+94.38 84.07 l
+94.81 83.44 l
+95.25 84.69 l
+95.69 84.07 l
+96.12 84.07 l
+96.56 82.81 l
+96.99 83.44 l
+97.43 84.07 l
+97.87 84.07 l
+98.30 84.69 l
+98.74 84.07 l
+99.18 85.32 l
+99.61 84.69 l
+100.05 84.07 l
+100.48 82.81 l
+100.92 82.81 l
+101.36 81.55 l
+101.79 80.92 l
+102.23 82.18 l
+102.66 82.18 l
+103.10 80.92 l
+103.54 79.66 l
+103.97 80.29 l
+104.41 81.55 l
+104.84 80.92 l
+105.28 82.18 l
+105.72 82.81 l
+106.15 82.81 l
+106.59 84.07 l
+107.02 84.07 l
+107.46 83.44 l
+107.90 82.81 l
+108.33 82.81 l
+108.77 82.81 l
+109.20 82.18 l
+109.64 81.55 l
+110.08 82.18 l
+110.51 82.81 l
+110.95 83.44 l
+111.39 82.81 l
+111.82 83.44 l
+112.26 84.07 l
+112.69 83.44 l
+113.13 82.81 l
+113.57 82.81 l
+114.00 85.95 l
+114.44 86.58 l
+114.87 86.58 l
+115.31 85.95 l
+115.75 87.21 l
+116.18 87.21 l
+116.62 85.95 l
+117.05 86.58 l
+117.49 87.21 l
+117.93 87.21 l
+118.36 89.10 l
+118.80 91.62 l
+119.23 89.73 l
+119.67 87.84 l
+120.11 88.47 l
+120.54 87.84 l
+120.98 87.21 l
+121.42 85.95 l
+121.85 85.95 l
+122.29 85.95 l
+122.72 85.95 l
+123.16 85.95 l
+123.60 84.69 l
+124.03 85.32 l
+124.47 85.95 l
+124.90 86.58 l
+125.34 85.95 l
+125.78 85.95 l
+126.21 87.21 l
+126.65 87.84 l
+127.08 87.84 l
+127.52 87.84 l
+127.96 87.21 l
+128.39 87.21 l
+128.83 88.47 l
+129.26 89.10 l
+129.70 89.10 l
+130.14 87.21 l
+130.57 87.21 l
+131.01 87.21 l
+131.45 85.32 l
+131.88 85.95 l
+132.32 85.32 l
+132.75 85.32 l
+133.19 87.21 l
+133.63 87.21 l
+134.06 89.10 l
+134.50 87.21 l
+134.93 86.58 l
+135.37 87.21 l
+135.81 87.21 l
+136.24 86.58 l
+136.68 86.58 l
+137.11 86.58 l
+137.55 85.32 l
+137.99 85.32 l
+138.42 83.44 l
+138.86 85.32 l
+139.29 85.95 l
+139.73 86.58 l
+140.17 87.21 l
+140.60 86.58 l
+141.04 85.95 l
+141.47 86.58 l
+141.91 85.95 l
+142.35 85.95 l
+142.78 84.69 l
+143.22 85.32 l
+143.66 85.95 l
+144.09 85.95 l
+144.53 85.95 l
+144.96 82.18 l
+145.40 82.18 l
+145.84 84.07 l
+146.27 84.69 l
+146.71 85.32 l
+147.14 84.07 l
+147.58 84.07 l
+148.02 85.32 l
+148.45 84.69 l
+148.89 85.95 l
+149.32 84.69 l
+149.76 84.07 l
+150.20 83.44 l
+150.63 85.32 l
+151.07 85.32 l
+151.50 85.95 l
+151.94 85.32 l
+152.38 86.58 l
+152.81 85.32 l
+153.25 84.69 l
+153.69 85.95 l
+154.12 85.95 l
+154.56 84.07 l
+154.99 85.95 l
+155.43 87.21 l
+155.87 88.47 l
+156.30 89.73 l
+156.74 90.99 l
+157.17 90.99 l
+157.61 90.36 l
+158.05 89.73 l
+158.48 91.62 l
+158.92 90.36 l
+159.35 89.73 l
+159.79 87.84 l
+160.23 89.10 l
+160.66 90.36 l
+161.10 89.73 l
+161.53 89.10 l
+161.97 86.58 l
+162.41 87.21 l
+162.84 89.10 l
+163.28 88.47 l
+163.72 88.47 l
+164.15 89.10 l
+164.59 89.73 l
+165.02 89.10 l
+165.46 89.73 l
+165.90 88.47 l
+166.33 87.84 l
+166.77 87.21 l
+167.20 85.95 l
+167.64 87.21 l
+168.08 88.47 l
+168.51 87.21 l
+168.95 87.21 l
+169.38 85.95 l
+169.82 84.69 l
+170.26 86.58 l
+170.69 85.32 l
+171.13 84.69 l
+171.56 85.95 l
+172.00 84.69 l
+172.44 84.07 l
+172.87 84.07 l
+173.31 84.07 l
+173.74 84.07 l
+174.18 84.07 l
+174.62 83.44 l
+175.05 83.44 l
+175.49 84.69 l
+175.93 84.69 l
+176.36 84.69 l
+176.80 84.07 l
+177.23 85.32 l
+177.67 84.69 l
+178.11 84.69 l
+178.54 84.69 l
+178.98 84.07 l
+179.41 84.07 l
+179.85 84.07 l
+180.29 83.44 l
+180.72 83.44 l
+181.16 83.44 l
+181.59 84.07 l
+182.03 84.69 l
+182.47 84.07 l
+182.90 83.44 l
+183.34 84.07 l
+183.77 83.44 l
+184.21 84.07 l
+184.65 84.07 l
+185.08 82.81 l
+185.52 83.44 l
+185.96 80.92 l
+186.39 82.81 l
+186.83 83.44 l
+187.26 83.44 l
+187.70 83.44 l
+188.14 82.81 l
+188.57 81.55 l
+189.01 81.55 l
+189.44 82.18 l
+189.88 81.55 l
+190.32 82.81 l
+190.75 82.81 l
+191.19 82.18 l
+191.62 82.18 l
+192.06 84.07 l
+192.50 83.44 l
+192.93 83.44 l
+193.37 82.18 l
+193.80 82.81 l
+194.24 84.07 l
+194.68 84.07 l
+195.11 82.81 l
+195.55 82.81 l
+195.99 83.44 l
+196.42 83.44 l
+196.86 82.81 l
+197.29 84.07 l
+197.73 83.44 l
+198.17 83.44 l
+198.60 84.69 l
+199.04 83.44 l
+199.47 83.44 l
+199.91 83.44 l
+200.35 83.44 l
+200.78 83.44 l
+201.22 82.81 l
+201.65 84.07 l
+202.09 82.81 l
+202.53 83.44 l
+202.96 82.18 l
+203.40 84.07 l
+203.83 83.44 l
+204.27 82.18 l
+204.71 82.18 l
+205.14 84.07 l
+205.58 83.44 l
+206.01 84.69 l
+206.45 84.07 l
+206.89 84.69 l
+207.32 83.44 l
+207.76 83.44 l
+208.20 84.07 l
+208.63 83.44 l
+209.07 83.44 l
+209.50 83.44 l
+209.94 85.32 l
+210.38 85.32 l
+210.81 85.95 l
+211.25 86.58 l
+211.68 87.84 l
+212.12 88.47 l
+212.56 87.84 l
+212.99 88.47 l
+213.43 86.58 l
+213.86 86.58 l
+214.30 87.21 l
+214.74 85.95 l
+215.17 84.07 l
+215.61 84.69 l
+216.04 84.07 l
+216.48 85.95 l
+216.92 84.69 l
+217.35 84.69 l
+217.79 85.32 l
+218.23 84.69 l
+218.66 84.07 l
+219.10 85.95 l
+219.53 86.58 l
+219.97 85.95 l
+220.41 86.58 l
+220.84 85.32 l
+221.28 84.07 l
+221.71 85.95 l
+222.15 85.95 l
+222.59 87.21 l
+223.02 89.10 l
+223.46 90.36 l
+223.89 88.47 l
+224.33 87.21 l
+224.77 86.58 l
+225.20 87.21 l
+225.64 87.84 l
+226.07 89.10 l
+226.51 87.84 l
+226.95 87.21 l
+227.38 88.47 l
+227.82 89.10 l
+228.26 87.84 l
+228.69 88.47 l
+229.13 89.10 l
+229.56 89.73 l
+230.00 90.36 l
+230.44 90.36 l
+230.87 90.36 l
+231.31 90.99 l
+231.74 89.10 l
+232.18 87.84 l
+232.62 86.58 l
+233.05 89.10 l
+233.49 88.47 l
+233.92 87.21 l
+234.36 87.84 l
+234.80 87.21 l
+235.23 87.84 l
+235.67 88.47 l
+236.10 87.84 l
+236.54 88.47 l
+236.98 89.10 l
+237.41 88.47 l
+237.85 89.73 l
+238.28 90.36 l
+238.72 90.36 l
+239.16 89.10 l
+239.59 86.58 l
+240.03 87.84 l
+240.47 86.58 l
+240.90 87.84 l
+241.34 87.84 l
+241.77 87.84 l
+242.21 89.73 l
+242.65 89.73 l
+243.08 88.47 l
+243.52 87.21 l
+243.95 86.58 l
+244.39 87.84 l
+244.83 87.21 l
+245.26 86.58 l
+245.70 87.21 l
+246.13 87.21 l
+246.57 86.58 l
+247.01 85.95 l
+247.44 85.95 l
+247.88 87.84 l
+248.31 86.58 l
+248.75 85.95 l
+249.19 87.84 l
+249.62 87.84 l
+250.06 87.84 l
+250.50 87.21 l
+250.93 85.95 l
+251.37 86.58 l
+251.80 86.58 l
+252.24 86.58 l
+252.68 85.95 l
+253.11 86.58 l
+253.55 85.32 l
+253.98 84.69 l
+254.42 84.69 l
+254.86 85.95 l
+255.29 85.32 l
+255.73 85.32 l
+256.16 86.58 l
+256.60 86.58 l
+257.04 85.32 l
+257.47 86.58 l
+257.91 86.58 l
+258.34 86.58 l
+258.78 86.58 l
+259.22 85.32 l
+259.65 85.32 l
+260.09 85.95 l
+260.53 84.69 l
+260.96 85.95 l
+261.40 84.69 l
+261.83 85.95 l
+262.27 85.95 l
+262.71 86.58 l
+263.14 86.58 l
+263.58 87.21 l
+264.01 87.21 l
+264.45 86.58 l
+264.89 87.21 l
+265.32 88.47 l
+265.76 88.47 l
+266.19 87.84 l
+266.63 89.10 l
+267.07 88.47 l
+267.50 87.84 l
+267.94 89.10 l
+268.37 89.10 l
+268.81 88.47 l
+269.25 89.10 l
+269.68 87.84 l
+270.12 90.36 l
+270.55 89.10 l
+270.99 87.84 l
+271.43 88.47 l
+271.86 88.47 l
+272.30 88.47 l
+272.74 88.47 l
+273.17 87.84 l
+273.61 85.95 l
+274.04 85.95 l
+274.48 85.95 l
+274.92 86.58 l
+275.35 85.95 l
+275.79 86.58 l
+276.22 87.21 l
+276.66 87.84 l
+277.10 86.58 l
+277.53 86.58 l
+277.97 87.84 l
+278.40 87.84 l
+278.84 86.58 l
+279.28 86.58 l
+279.71 87.84 l
+280.15 88.47 l
+280.58 87.84 l
+281.02 88.47 l
+281.46 89.10 l
+281.89 89.10 l
+282.33 89.10 l
+282.77 89.10 l
+283.20 89.73 l
+283.64 87.21 l
+284.07 87.84 l
+284.51 87.84 l
+284.95 89.10 l
+285.38 89.10 l
+285.82 87.84 l
+286.25 87.84 l
+286.69 89.10 l
+287.13 88.47 l
+287.56 88.47 l
+288.00 90.36 l
+288.43 85.32 l
+288.87 85.32 l
+289.31 84.69 l
+289.74 85.32 l
+290.18 85.95 l
+290.61 87.21 l
+291.05 87.21 l
+291.49 87.84 l
+291.92 86.58 l
+292.36 85.32 l
+292.80 85.32 l
+293.23 84.07 l
+293.67 82.81 l
+294.10 82.81 l
+294.54 84.07 l
+294.98 86.58 l
+295.41 86.58 l
+295.85 85.32 l
+296.28 84.69 l
+296.72 84.69 l
+297.16 83.44 l
+297.59 83.44 l
+298.03 84.69 l
+298.46 85.32 l
+298.90 84.07 l
+299.34 84.07 l
+299.77 84.07 l
+300.21 84.07 l
+300.64 82.81 l
+301.08 82.18 l
+301.52 82.81 l
+301.95 84.69 l
+302.39 84.07 l
+302.82 83.44 l
+303.26 85.32 l
+303.70 86.58 l
+304.13 84.69 l
+304.57 85.95 l
+305.01 85.32 l
+305.44 85.32 l
+305.88 83.44 l
+306.31 85.32 l
+306.75 85.32 l
+307.19 84.69 l
+307.62 85.32 l
+308.06 85.32 l
+308.49 84.69 l
+308.93 83.44 l
+309.37 84.07 l
+309.80 85.95 l
+310.24 84.69 l
+310.67 86.58 l
+311.11 85.95 l
+311.55 84.69 l
+311.98 85.32 l
+312.42 85.95 l
+312.85 87.84 l
+313.29 86.58 l
+313.73 86.58 l
+314.16 87.84 l
+314.60 85.95 l
+315.04 87.21 l
+315.47 86.58 l
+315.91 85.95 l
+316.34 85.95 l
+316.78 86.58 l
+317.22 86.58 l
+317.65 87.21 l
+318.09 87.84 l
+318.52 90.36 l
+318.96 89.10 l
+319.40 89.10 l
+319.83 89.73 l
+320.27 89.10 l
+320.70 88.47 l
+321.14 89.10 l
+321.58 88.47 l
+322.01 87.21 l
+322.45 87.21 l
+322.88 85.95 l
+323.32 85.95 l
+323.76 86.58 l
+324.19 88.47 l
+324.63 89.10 l
+325.07 89.10 l
+325.50 89.73 l
+325.94 90.36 l
+326.37 90.36 l
+326.81 87.84 l
+327.25 87.84 l
+327.68 88.47 l
+328.12 90.99 l
+328.55 94.77 l
+328.99 94.14 l
+329.43 94.77 l
+329.86 94.14 l
+330.30 92.25 l
+330.73 91.62 l
+331.17 90.99 l
+331.61 91.62 l
+332.04 93.51 l
+332.48 93.51 l
+332.91 94.77 l
+333.35 94.77 l
+333.79 92.88 l
+334.22 92.25 l
+334.66 93.51 l
+335.10 93.51 l
+335.53 92.25 l
+335.97 92.88 l
+336.40 90.99 l
+336.84 94.77 l
+337.28 96.02 l
+337.71 99.80 l
+338.15 99.17 l
+338.58 98.54 l
+339.02 97.28 l
+339.46 93.51 l
+339.89 93.51 l
+340.33 94.14 l
+340.76 96.02 l
+341.20 95.40 l
+341.64 96.02 l
+342.07 96.02 l
+342.51 96.02 l
+342.94 96.02 l
+343.38 94.77 l
+343.82 98.54 l
+344.25 97.28 l
+344.69 95.40 l
+345.12 90.99 l
+345.56 89.73 l
+346.00 89.73 l
+346.43 89.73 l
+346.87 90.36 l
+347.31 90.99 l
+347.74 91.62 l
+348.18 91.62 l
+348.61 91.62 l
+349.05 91.62 l
+349.49 89.73 l
+349.92 90.99 l
+350.36 91.62 l
+350.79 90.99 l
+351.23 90.99 l
+351.67 92.25 l
+352.10 90.99 l
+352.54 90.99 l
+352.97 90.99 l
+353.41 90.36 l
+353.85 86.58 l
+354.28 89.10 l
+354.72 87.84 l
+355.15 87.84 l
+355.59 90.99 l
+356.03 96.02 l
+356.46 95.40 l
+356.90 95.40 l
+357.34 96.65 l
+357.77 94.77 l
+358.21 94.14 l
+358.64 96.02 l
+359.08 95.40 l
+359.52 96.65 l
+359.95 95.40 l
+360.39 97.28 l
+360.82 94.77 l
+361.26 95.40 l
+361.70 96.65 l
+362.13 94.77 l
+362.57 96.02 l
+363.00 94.14 l
+363.44 92.88 l
+363.88 93.51 l
+364.31 93.51 l
+364.75 96.65 l
+365.18 97.28 l
+365.62 94.77 l
+366.06 94.77 l
+366.49 94.77 l
+366.93 92.88 l
+367.37 93.51 l
+367.80 93.51 l
+368.24 93.51 l
+368.67 94.14 l
+369.11 94.14 l
+369.55 98.54 l
+369.98 94.77 l
+370.42 94.14 l
+370.85 94.14 l
+371.29 93.51 l
+371.73 94.14 l
+372.16 91.62 l
+372.60 89.73 l
+373.03 89.73 l
+373.47 91.62 l
+373.91 90.36 l
+374.34 90.36 l
+374.78 88.47 l
+375.21 88.47 l
+375.65 89.73 l
+376.09 90.36 l
+376.52 90.36 l
+376.96 90.36 l
+377.39 90.99 l
+377.83 91.62 l
+378.27 92.25 l
+378.70 93.51 l
+379.14 96.02 l
+379.58 96.02 l
+380.01 94.77 l
+380.45 94.77 l
+380.88 94.14 l
+381.32 96.65 l
+381.76 97.28 l
+382.19 99.80 l
+382.63 99.80 l
+383.06 101.69 l
+383.50 99.80 l
+383.94 102.32 l
+384.37 101.69 l
+384.81 99.17 l
+385.24 99.17 l
+385.68 99.80 l
+386.12 98.54 l
+386.55 97.91 l
+386.99 98.54 l
+387.42 96.65 l
+387.86 97.28 l
+388.30 97.28 l
+388.73 96.65 l
+389.17 98.54 l
+389.61 96.65 l
+390.04 96.02 l
+390.48 95.40 l
+390.91 94.14 l
+391.35 96.65 l
+391.79 97.91 l
+392.22 96.02 l
+392.66 97.91 l
+393.09 96.02 l
+393.53 96.02 l
+393.97 96.02 l
+394.40 97.28 l
+394.84 97.91 l
+395.27 98.54 l
+395.71 97.91 l
+396.15 100.43 l
+396.58 100.43 l
+397.02 102.95 l
+397.45 102.32 l
+397.89 99.80 l
+398.33 98.54 l
+398.76 97.91 l
+399.20 96.65 l
+399.64 99.17 l
+400.07 99.17 l
+400.51 98.54 l
+400.94 101.69 l
+401.38 99.17 l
+401.82 98.54 l
+402.25 98.54 l
+402.69 98.54 l
+403.12 97.28 l
+403.56 97.91 l
+404.00 99.80 l
+404.43 98.54 l
+404.87 98.54 l
+405.30 97.91 l
+405.74 98.54 l
+406.18 95.40 l
+406.61 97.28 l
+407.05 96.02 l
+407.48 95.40 l
+407.92 96.65 l
+408.36 96.65 l
+408.79 96.02 l
+409.23 97.91 l
+409.66 99.17 l
+410.10 98.54 l
+410.54 99.80 l
+410.97 97.28 l
+411.41 97.28 l
+411.85 97.28 l
+412.28 97.91 l
+412.72 98.54 l
+413.15 95.40 l
+413.59 96.65 l
+414.03 97.91 l
+414.46 97.91 l
+414.90 96.02 l
+415.33 95.40 l
+415.77 96.02 l
+416.21 96.65 l
+416.64 94.14 l
+417.08 94.77 l
+417.51 95.40 l
+417.95 94.14 l
+418.39 95.40 l
+418.82 95.40 l
+419.26 96.65 l
+419.69 96.65 l
+420.13 94.77 l
+420.57 94.77 l
+421.00 94.14 l
+421.44 94.14 l
+421.88 95.40 l
+422.31 94.77 l
+422.75 96.02 l
+423.18 96.02 l
+423.62 94.77 l
+424.06 93.51 l
+424.49 96.02 l
+424.93 94.14 l
+425.36 93.51 l
+425.80 94.14 l
+426.24 96.02 l
+426.67 95.40 l
+427.11 92.88 l
+427.54 92.25 l
+427.98 93.51 l
+428.42 91.62 l
+428.85 92.25 l
+429.29 89.10 l
+429.72 91.62 l
+430.16 92.88 l
+430.60 93.51 l
+431.03 94.14 l
+431.47 94.77 l
+431.91 94.14 l
+432.34 94.14 l
+432.78 94.77 l
+433.21 92.88 l
+433.65 92.25 l
+434.09 90.99 l
+434.52 92.25 l
+434.96 91.62 l
+435.39 90.99 l
+435.83 92.25 l
+436.27 92.88 l
+436.70 94.77 l
+437.14 94.14 l
+437.57 92.25 l
+438.01 91.62 l
+438.45 92.88 l
+438.88 92.88 l
+439.32 93.51 l
+439.75 92.88 l
+440.19 94.14 l
+440.63 92.25 l
+441.06 91.62 l
+441.50 92.25 l
+441.93 92.25 l
+442.37 89.73 l
+442.81 89.73 l
+443.24 90.36 l
+443.68 92.25 l
+444.12 92.25 l
+444.55 92.88 l
+444.99 94.14 l
+445.42 94.14 l
+445.86 94.14 l
+446.30 94.14 l
+446.73 94.14 l
+447.17 92.88 l
+447.60 92.88 l
+448.04 94.14 l
+448.48 93.51 l
+448.91 94.14 l
+449.35 96.65 l
+449.78 96.65 l
+450.22 96.65 l
+450.66 96.65 l
+451.09 101.06 l
+451.53 106.10 l
+451.96 108.61 l
+452.40 109.24 l
+452.84 111.13 l
+453.27 111.13 l
+453.71 117.42 l
+454.15 116.17 l
+454.58 116.17 l
+455.02 116.17 l
+455.45 114.91 l
+455.89 115.54 l
+456.33 114.91 l
+456.76 114.91 l
+457.20 111.76 l
+457.63 112.39 l
+458.07 113.02 l
+458.51 112.39 l
+458.94 113.65 l
+459.38 111.13 l
+459.81 110.50 l
+460.25 111.76 l
+460.69 110.50 l
+461.12 110.50 l
+461.56 109.24 l
+461.99 108.61 l
+462.43 106.72 l
+462.87 105.47 l
+463.30 103.58 l
+463.74 101.69 l
+464.18 100.43 l
+464.61 101.06 l
+465.05 102.95 l
+465.48 104.21 l
+465.92 102.95 l
+466.36 99.17 l
+466.79 98.54 l
+467.23 99.80 l
+467.66 100.43 l
+468.10 99.80 l
+468.54 101.69 l
+468.97 99.80 l
+469.41 101.06 l
+469.84 102.95 l
+470.28 101.69 l
+470.72 101.69 l
+471.15 103.58 l
+471.59 102.95 l
+472.02 102.95 l
+472.46 106.10 l
+472.90 107.98 l
+473.33 107.35 l
+473.77 108.61 l
+474.20 108.61 l
+474.64 109.24 l
+475.08 107.98 l
+475.51 106.72 l
+475.95 107.35 l
+476.39 107.35 l
+476.82 103.58 l
+477.26 104.21 l
+477.69 104.21 l
+478.13 103.58 l
+478.57 104.84 l
+479.00 103.58 l
+479.44 101.69 l
+479.87 103.58 l
+480.31 103.58 l
+480.75 104.84 l
+481.18 102.95 l
+481.62 100.43 l
+482.05 101.06 l
+482.49 101.69 l
+482.93 102.32 l
+483.36 103.58 l
+483.80 102.95 l
+484.23 102.32 l
+484.67 102.32 l
+485.11 102.95 l
+485.54 101.69 l
+485.98 101.69 l
+486.42 101.06 l
+486.85 101.06 l
+487.29 103.58 l
+487.72 105.47 l
+488.16 106.10 l
+488.60 102.95 l
+489.03 104.21 l
+489.47 102.95 l
+489.90 102.32 l
+490.34 99.80 l
+490.78 98.54 l
+491.21 99.80 l
+491.65 98.54 l
+492.08 99.80 l
+492.52 99.17 l
+492.96 99.17 l
+493.39 97.91 l
+493.83 98.54 l
+494.26 97.28 l
+494.70 97.91 l
+495.14 100.43 l
+495.57 101.06 l
+496.01 99.17 l
+496.45 99.80 l
+496.88 97.91 l
+497.32 97.91 l
+497.75 97.91 l
+498.19 97.28 l
+498.63 97.28 l
+499.06 96.02 l
+499.50 96.02 l
+499.93 94.14 l
+500.37 95.40 l
+500.81 96.02 l
+501.24 97.91 l
+501.68 96.65 l
+502.11 99.17 l
+502.55 100.43 l
+502.99 101.06 l
+503.42 98.54 l
+503.86 99.17 l
+504.29 99.17 l
+504.73 98.54 l
+505.17 96.02 l
+505.60 97.28 l
+506.04 97.91 l
+506.47 96.02 l
+506.91 97.28 l
+S
+507.78 99.17 m
+508.22 99.17 l
+508.66 98.54 l
+509.09 96.65 l
+509.53 99.17 l
+509.96 97.28 l
+510.40 99.80 l
+510.84 98.54 l
+511.27 96.65 l
+511.71 96.65 l
+512.14 97.28 l
+512.58 99.17 l
+513.02 98.54 l
+513.45 98.54 l
+513.89 101.06 l
+514.32 101.06 l
+514.76 102.95 l
+515.20 99.17 l
+515.63 98.54 l
+516.07 100.43 l
+516.50 100.43 l
+516.94 100.43 l
+517.38 99.17 l
+517.81 97.28 l
+518.25 97.28 l
+518.69 96.02 l
+519.12 97.28 l
+519.56 98.54 l
+519.99 99.17 l
+520.43 99.80 l
+520.87 101.06 l
+521.30 102.32 l
+521.74 102.32 l
+522.17 103.58 l
+522.61 104.21 l
+523.05 106.10 l
+523.48 105.47 l
+523.92 106.72 l
+524.35 104.84 l
+524.79 105.47 l
+525.23 106.10 l
+525.66 107.98 l
+526.10 104.21 l
+526.53 105.47 l
+526.97 105.47 l
+527.41 107.35 l
+527.84 106.10 l
+528.28 104.84 l
+528.72 104.84 l
+529.15 104.21 l
+529.59 106.10 l
+530.02 107.98 l
+530.46 105.47 l
+530.90 105.47 l
+531.33 107.35 l
+531.77 105.47 l
+532.20 102.95 l
+532.64 104.84 l
+533.08 104.21 l
+533.51 103.58 l
+533.95 102.32 l
+534.38 102.95 l
+534.82 103.58 l
+535.26 106.72 l
+535.69 106.72 l
+536.13 105.47 l
+536.56 104.21 l
+537.00 106.72 l
+537.44 106.72 l
+537.87 106.72 l
+538.31 102.95 l
+538.74 102.32 l
+539.18 102.95 l
+539.62 103.58 l
+540.05 104.21 l
+540.49 105.47 l
+540.93 104.84 l
+541.36 102.95 l
+541.80 102.95 l
+542.23 99.80 l
+542.67 101.06 l
+543.11 101.06 l
+543.54 100.43 l
+543.98 100.43 l
+544.41 101.69 l
+544.85 101.69 l
+545.29 101.06 l
+545.72 99.80 l
+546.16 98.54 l
+546.59 103.58 l
+547.03 102.32 l
+547.47 101.06 l
+547.90 102.95 l
+548.34 101.06 l
+548.77 101.69 l
+549.21 101.06 l
+549.65 99.17 l
+550.08 102.32 l
+550.52 102.32 l
+550.96 99.17 l
+551.39 99.80 l
+551.83 97.28 l
+552.26 98.54 l
+552.70 99.17 l
+553.14 97.91 l
+553.57 97.91 l
+554.01 99.80 l
+554.44 99.17 l
+554.88 97.28 l
+555.32 96.65 l
+555.75 100.43 l
+556.19 100.43 l
+556.62 99.17 l
+557.06 101.06 l
+557.50 100.43 l
+557.93 101.06 l
+558.37 101.06 l
+558.80 101.69 l
+559.24 102.95 l
+559.68 102.32 l
+560.11 99.80 l
+560.55 99.80 l
+560.99 102.32 l
+561.42 102.32 l
+561.86 103.58 l
+562.29 102.32 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.60 w
+[] 0 d
+1 J
+1 j
+10.00 M
+218.23 59.04 m 537.00 59.04 l S
+218.23 59.04 m 218.23 51.84 l S
+377.39 59.04 m 377.39 51.84 l S
+537.00 59.04 m 537.00 51.84 l S
+84.78 59.04 m 550.52 59.04 l S
+84.78 59.04 m 84.78 57.60 l S
+98.30 59.04 m 98.30 57.60 l S
+111.39 59.04 m 111.39 57.60 l S
+124.90 59.04 m 124.90 57.60 l S
+137.99 59.04 m 137.99 57.60 l S
+151.50 59.04 m 151.50 57.60 l S
+165.02 59.04 m 165.02 57.60 l S
+178.11 59.04 m 178.11 57.60 l S
+191.62 59.04 m 191.62 57.60 l S
+204.71 59.04 m 204.71 57.60 l S
+218.23 59.04 m 218.23 57.60 l S
+231.74 59.04 m 231.74 57.60 l S
+243.95 59.04 m 243.95 57.60 l S
+257.47 59.04 m 257.47 57.60 l S
+270.55 59.04 m 270.55 57.60 l S
+284.07 59.04 m 284.07 57.60 l S
+297.16 59.04 m 297.16 57.60 l S
+310.67 59.04 m 310.67 57.60 l S
+324.19 59.04 m 324.19 57.60 l S
+337.28 59.04 m 337.28 57.60 l S
+350.79 59.04 m 350.79 57.60 l S
+363.88 59.04 m 363.88 57.60 l S
+377.39 59.04 m 377.39 57.60 l S
+390.91 59.04 m 390.91 57.60 l S
+403.56 59.04 m 403.56 57.60 l S
+417.08 59.04 m 417.08 57.60 l S
+430.16 59.04 m 430.16 57.60 l S
+443.68 59.04 m 443.68 57.60 l S
+456.76 59.04 m 456.76 57.60 l S
+470.28 59.04 m 470.28 57.60 l S
+483.80 59.04 m 483.80 57.60 l S
+496.88 59.04 m 496.88 57.60 l S
+510.40 59.04 m 510.40 57.60 l S
+523.48 59.04 m 523.48 57.60 l S
+537.00 59.04 m 537.00 57.60 l S
+550.52 59.04 m 550.52 57.60 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 6.00 0.00 -0.00 6.00 88.83 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 102.84 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 115.43 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 129.95 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 143.03 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 156.05 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 169.56 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 182.31 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 196.00 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 209.08 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 223.27 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 236.45 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 248.00 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 262.01 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 274.60 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 289.11 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 302.20 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 315.21 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 328.73 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 341.48 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 355.17 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 368.25 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 382.44 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 395.62 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 407.60 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 421.62 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 434.20 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 448.72 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 461.80 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 474.82 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 488.34 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 501.09 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 514.77 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 527.86 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 542.04 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 555.23 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 125.08 33.12 Tm (2006) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 284.25 33.12 Tm (2007) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 443.42 33.12 Tm (2008) Tj
+ET
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+75.63 59.04 m
+562.29 59.04 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+56.16 72.11 m 56.16 386.81 l S
+56.16 72.11 m 48.96 72.11 l S
+56.16 135.05 m 48.96 135.05 l S
+56.16 197.99 m 48.96 197.99 l S
+56.16 260.93 m 48.96 260.93 l S
+56.16 323.87 m 48.96 323.87 l S
+56.16 386.81 m 48.96 386.81 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 35.09 67.80 Tm (0) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 130.74 Tm (100) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 193.68 Tm (200) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 256.62 Tm (300) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 319.56 Tm (400) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 382.51 Tm (500) Tj
+ET
+BT
+1.000 0.647 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 272.99 Tm (Germany) Tj
+ET
+BT
+0.000 0.000 1.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 259.77 Tm (U.S.A.) Tj
+ET
+BT
+0.000 0.392 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 121.30 Tm (France) Tj
+ET
+BT
+0.627 0.125 0.941 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 101.16 Tm (Sweden) Tj
+ET
+BT
+1.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 89.83 Tm (China) Tj
+ET
+Q
+endstream
+endobj
+7 0 obj
+92330
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+5 0 R
+]
+/Count 1
+/MediaBox [0 0 648 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font <</F2 9 0 R /F3 10 0 R >>
+/ExtGState << >>
+>>
+endobj
+8 0 obj
+<<
+/Type /Encoding
+/BaseEncoding /WinAnsiEncoding
+/Differences [ 45/minus 96/quoteleft
+144/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
+/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space]
+>>
+endobj
+9 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 8 0 R
+>> endobj
+10 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F3
+/BaseFont /Helvetica-Bold
+/Encoding 8 0 R
+>> endobj
+xref
+0 11
+0000000000 65535 f
+0000000021 00000 n
+0000000163 00000 n
+0000092696 00000 n
+0000092779 00000 n
+0000000212 00000 n
+0000000292 00000 n
+0000092675 00000 n
+0000092871 00000 n
+0000093128 00000 n
+0000093224 00000 n
+trailer
+<<
+/Size 11
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+93326
+%%EOF
diff --git a/2009/metrics/countrybw-hotpets.pdf b/2009/metrics/countrybw-hotpets.pdf
new file mode 100755
index 0000000..eda1663
--- /dev/null
+++ b/2009/metrics/countrybw-hotpets.pdf
@@ -0,0 +1,5942 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20090505221126)
+/ModDate (D:20090505221126)
+/Title (R Graphics Output)
+/Producer (R 2.8.1)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+5 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 6 0 R
+/Resources 4 0 R
+>>
+endobj
+6 0 obj
+<<
+/Length 7 0 R
+>>
+stream
+q
+Q q 56.16 59.04 525.60 352.80 re W n
+1.000 0.647 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+75.63 95.39 m
+76.06 93.27 l
+76.50 92.84 l
+76.93 94.31 l
+77.37 95.17 l
+77.81 96.43 l
+78.24 96.14 l
+78.68 100.76 l
+79.12 99.60 l
+79.55 100.19 l
+79.99 100.52 l
+80.42 101.35 l
+80.86 101.11 l
+81.30 101.81 l
+81.73 108.35 l
+82.17 109.61 l
+82.60 107.35 l
+83.04 108.05 l
+83.48 107.93 l
+83.91 109.91 l
+84.35 111.95 l
+84.78 118.22 l
+85.22 114.97 l
+85.66 118.77 l
+86.09 119.09 l
+86.53 117.38 l
+86.96 110.73 l
+87.40 110.21 l
+87.84 111.75 l
+88.27 111.97 l
+88.71 111.91 l
+89.15 111.61 l
+89.58 110.64 l
+90.02 108.21 l
+90.45 108.01 l
+90.89 107.33 l
+91.33 111.11 l
+91.76 111.98 l
+92.20 111.18 l
+92.63 110.20 l
+93.07 111.02 l
+93.51 110.71 l
+93.94 113.44 l
+94.38 115.34 l
+94.81 122.43 l
+95.25 123.36 l
+95.69 121.36 l
+96.12 123.21 l
+96.56 126.26 l
+96.99 126.49 l
+97.43 124.25 l
+97.87 117.02 l
+98.30 121.41 l
+98.74 125.64 l
+99.18 120.99 l
+99.61 122.59 l
+100.05 121.72 l
+100.48 122.95 l
+100.92 120.85 l
+101.36 121.04 l
+101.79 119.67 l
+102.23 123.22 l
+102.66 127.28 l
+103.10 131.28 l
+103.54 124.94 l
+103.97 122.07 l
+104.41 123.26 l
+104.84 123.79 l
+105.28 125.72 l
+105.72 130.99 l
+106.15 133.82 l
+106.59 132.53 l
+107.02 133.46 l
+107.46 137.82 l
+107.90 145.95 l
+108.33 146.04 l
+108.77 138.86 l
+109.20 136.36 l
+109.64 132.18 l
+110.08 132.09 l
+110.51 138.03 l
+110.95 140.57 l
+111.39 142.69 l
+111.82 142.46 l
+112.26 142.43 l
+112.69 139.55 l
+113.13 136.41 l
+113.57 135.80 l
+114.00 137.88 l
+114.44 138.40 l
+114.87 140.49 l
+115.31 141.51 l
+115.75 137.56 l
+116.18 136.29 l
+116.62 134.89 l
+117.05 132.32 l
+117.49 136.01 l
+117.93 136.41 l
+118.36 135.28 l
+118.80 134.30 l
+119.23 135.82 l
+119.67 132.47 l
+120.11 132.86 l
+120.54 133.31 l
+120.98 135.97 l
+121.42 136.29 l
+121.85 136.03 l
+122.29 136.64 l
+122.72 137.72 l
+123.16 136.07 l
+123.60 135.96 l
+124.03 140.48 l
+124.47 143.77 l
+124.90 141.24 l
+125.34 138.60 l
+125.78 147.69 l
+126.21 154.77 l
+126.65 151.26 l
+127.08 148.80 l
+127.52 146.33 l
+127.96 142.48 l
+128.39 139.96 l
+128.83 141.32 l
+129.26 145.05 l
+129.70 141.68 l
+130.14 142.53 l
+130.57 146.19 l
+131.01 140.24 l
+131.45 136.49 l
+131.88 137.26 l
+132.32 139.64 l
+132.75 140.62 l
+133.19 142.80 l
+133.63 142.68 l
+134.06 140.08 l
+134.50 138.10 l
+134.93 139.68 l
+135.37 142.49 l
+135.81 143.61 l
+136.24 146.58 l
+136.68 149.41 l
+137.11 143.53 l
+137.55 142.94 l
+137.99 139.28 l
+138.42 143.63 l
+138.86 148.00 l
+139.29 146.69 l
+139.73 144.70 l
+140.17 141.45 l
+140.60 140.89 l
+141.04 137.52 l
+141.47 140.63 l
+141.91 139.65 l
+142.35 141.50 l
+142.78 140.02 l
+143.22 145.43 l
+143.66 142.32 l
+144.09 140.16 l
+144.53 143.22 l
+144.96 142.96 l
+145.40 148.81 l
+145.84 153.98 l
+146.27 157.95 l
+146.71 154.40 l
+147.14 156.10 l
+147.58 159.23 l
+148.02 154.15 l
+148.45 151.76 l
+148.89 154.90 l
+149.32 151.35 l
+149.76 153.97 l
+150.20 156.19 l
+150.63 157.12 l
+151.07 156.09 l
+151.50 159.00 l
+151.94 155.83 l
+152.38 148.07 l
+152.81 141.73 l
+153.25 138.74 l
+153.69 141.48 l
+154.12 146.01 l
+154.56 149.46 l
+154.99 146.66 l
+155.43 147.59 l
+155.87 145.60 l
+156.30 145.36 l
+156.74 150.22 l
+157.17 151.59 l
+157.61 155.24 l
+158.05 159.46 l
+158.48 160.34 l
+158.92 158.98 l
+159.35 163.23 l
+159.79 166.93 l
+160.23 160.76 l
+160.66 163.96 l
+161.10 160.22 l
+161.53 158.25 l
+161.97 161.02 l
+162.41 165.90 l
+162.84 168.29 l
+163.28 161.63 l
+163.72 167.27 l
+164.15 166.36 l
+164.59 169.49 l
+165.02 173.06 l
+165.46 184.87 l
+165.90 181.32 l
+166.33 172.86 l
+166.77 173.35 l
+167.20 182.89 l
+167.64 177.03 l
+168.08 166.83 l
+168.51 156.39 l
+168.95 155.41 l
+169.38 149.51 l
+169.82 161.52 l
+170.26 167.50 l
+170.69 167.45 l
+171.13 173.55 l
+171.56 182.37 l
+172.00 188.25 l
+172.44 184.56 l
+172.87 178.42 l
+173.31 178.22 l
+173.74 186.33 l
+174.18 191.29 l
+174.62 194.74 l
+175.05 199.00 l
+175.49 200.32 l
+175.93 201.70 l
+176.36 202.09 l
+176.80 197.12 l
+177.23 195.54 l
+177.67 197.63 l
+178.11 201.59 l
+178.54 206.95 l
+178.98 207.68 l
+179.41 206.07 l
+179.85 204.62 l
+180.29 205.11 l
+180.72 209.84 l
+181.16 213.58 l
+181.59 207.15 l
+182.03 209.89 l
+182.47 208.52 l
+182.90 204.64 l
+183.34 200.35 l
+183.77 208.85 l
+184.21 221.83 l
+184.65 211.92 l
+185.08 205.34 l
+185.52 204.71 l
+185.96 210.05 l
+186.39 204.06 l
+186.83 200.24 l
+187.26 209.25 l
+187.70 214.99 l
+188.14 213.25 l
+188.57 217.38 l
+189.01 210.83 l
+189.44 210.08 l
+189.88 217.73 l
+190.32 211.91 l
+190.75 210.60 l
+191.19 212.72 l
+191.62 208.85 l
+192.06 209.43 l
+192.50 215.59 l
+192.93 219.65 l
+193.37 218.92 l
+193.80 215.39 l
+194.24 210.10 l
+194.68 202.44 l
+195.11 194.70 l
+195.55 188.51 l
+195.99 195.48 l
+196.42 204.03 l
+196.86 197.77 l
+197.29 194.63 l
+197.73 193.32 l
+198.17 184.15 l
+198.60 189.65 l
+199.04 197.11 l
+199.47 196.50 l
+199.91 187.85 l
+200.35 188.25 l
+200.78 184.85 l
+201.22 192.60 l
+201.65 194.74 l
+202.09 188.71 l
+202.53 191.90 l
+202.96 197.30 l
+203.40 200.29 l
+203.83 188.73 l
+204.27 179.35 l
+204.71 178.44 l
+205.14 175.96 l
+205.58 183.98 l
+206.01 189.66 l
+206.45 191.79 l
+206.89 195.17 l
+207.32 186.52 l
+207.76 190.05 l
+208.20 189.80 l
+208.63 192.58 l
+209.07 184.57 l
+209.50 184.76 l
+209.94 178.97 l
+210.38 183.30 l
+210.81 189.66 l
+211.25 192.11 l
+211.68 195.13 l
+212.12 178.49 l
+212.56 183.79 l
+212.99 194.76 l
+213.43 189.77 l
+213.86 185.61 l
+214.30 193.57 l
+214.74 195.60 l
+215.17 186.30 l
+215.61 186.15 l
+216.04 178.33 l
+216.48 167.87 l
+216.92 170.99 l
+217.35 176.58 l
+217.79 184.42 l
+218.23 188.45 l
+218.66 187.63 l
+219.10 190.93 l
+219.53 198.73 l
+219.97 196.86 l
+220.41 206.75 l
+220.84 215.46 l
+221.28 216.68 l
+221.71 208.73 l
+222.15 201.85 l
+222.59 200.30 l
+223.02 195.33 l
+223.46 196.59 l
+223.89 196.37 l
+224.33 192.10 l
+224.77 188.22 l
+225.20 190.04 l
+225.64 190.36 l
+226.07 187.94 l
+226.51 187.57 l
+226.95 192.90 l
+227.38 185.66 l
+227.82 189.05 l
+228.26 189.04 l
+228.69 185.01 l
+229.13 189.65 l
+229.56 197.12 l
+230.00 201.23 l
+230.44 194.95 l
+230.87 188.93 l
+231.31 183.00 l
+231.74 182.98 l
+232.18 199.98 l
+232.62 200.22 l
+233.05 204.91 l
+233.49 204.33 l
+233.92 200.08 l
+234.36 213.46 l
+234.80 215.07 l
+235.23 221.78 l
+235.67 221.83 l
+236.10 218.83 l
+236.54 218.98 l
+236.98 218.07 l
+237.41 219.98 l
+237.85 216.82 l
+238.28 218.81 l
+238.72 212.93 l
+239.16 212.00 l
+239.59 210.57 l
+240.03 210.81 l
+240.47 212.52 l
+240.90 213.44 l
+241.34 222.04 l
+241.77 222.99 l
+242.21 223.26 l
+242.65 212.09 l
+243.08 208.82 l
+243.52 213.51 l
+243.95 215.51 l
+244.39 216.29 l
+244.83 223.80 l
+245.26 230.24 l
+245.70 224.92 l
+246.13 222.97 l
+246.57 229.46 l
+247.01 228.14 l
+247.44 225.63 l
+247.88 233.78 l
+248.31 236.38 l
+248.75 229.62 l
+249.19 237.33 l
+249.62 237.09 l
+250.06 231.27 l
+250.50 224.76 l
+250.93 235.03 l
+251.37 236.77 l
+251.80 235.75 l
+252.24 233.61 l
+252.68 228.11 l
+253.11 232.78 l
+253.55 234.77 l
+253.98 235.19 l
+254.42 239.42 l
+254.86 240.16 l
+255.29 241.50 l
+255.73 241.70 l
+256.16 236.36 l
+256.60 235.28 l
+257.04 237.97 l
+257.47 233.37 l
+257.91 234.93 l
+258.34 235.66 l
+258.78 230.41 l
+259.22 231.38 l
+259.65 240.14 l
+260.09 242.02 l
+260.53 254.39 l
+260.96 248.64 l
+261.40 243.98 l
+261.83 243.20 l
+262.27 243.62 l
+262.71 229.76 l
+263.14 223.86 l
+263.58 220.65 l
+264.01 216.37 l
+264.45 215.74 l
+264.89 215.57 l
+265.32 218.65 l
+265.76 218.49 l
+266.19 212.68 l
+266.63 214.12 l
+267.07 213.47 l
+267.50 217.93 l
+267.94 222.65 l
+268.37 227.89 l
+268.81 224.92 l
+269.25 222.09 l
+269.68 226.37 l
+270.12 222.91 l
+270.55 223.29 l
+270.99 224.02 l
+271.43 219.07 l
+271.86 220.66 l
+272.30 225.59 l
+272.74 225.77 l
+273.17 222.44 l
+273.61 220.67 l
+274.04 214.81 l
+274.48 211.98 l
+274.92 223.27 l
+275.35 221.70 l
+275.79 232.66 l
+276.22 225.54 l
+276.66 226.45 l
+277.10 231.24 l
+277.53 236.45 l
+277.97 244.05 l
+278.40 243.66 l
+278.84 242.41 l
+279.28 237.44 l
+279.71 236.18 l
+280.15 237.80 l
+280.58 238.93 l
+281.02 240.66 l
+281.46 238.95 l
+281.89 247.34 l
+282.33 244.10 l
+282.77 245.08 l
+283.20 249.99 l
+283.64 254.38 l
+284.07 236.79 l
+284.51 238.15 l
+284.95 236.16 l
+285.38 233.50 l
+285.82 243.96 l
+286.25 247.83 l
+286.69 252.43 l
+287.13 252.60 l
+287.56 250.29 l
+288.00 250.64 l
+288.43 238.76 l
+288.87 240.93 l
+289.31 235.54 l
+289.74 231.57 l
+290.18 234.29 l
+290.61 236.62 l
+291.05 230.17 l
+291.49 221.89 l
+291.92 219.48 l
+292.36 217.86 l
+292.80 222.82 l
+293.23 220.55 l
+293.67 213.57 l
+294.10 220.59 l
+294.54 218.97 l
+294.98 223.32 l
+295.41 225.66 l
+295.85 224.06 l
+296.28 222.78 l
+296.72 224.10 l
+297.16 223.93 l
+297.59 215.90 l
+298.03 220.96 l
+298.46 222.35 l
+298.90 225.41 l
+299.34 229.76 l
+299.77 230.82 l
+300.21 232.83 l
+300.64 230.36 l
+301.08 227.24 l
+301.52 229.14 l
+301.95 222.67 l
+302.39 226.61 l
+302.82 230.85 l
+303.26 227.15 l
+303.70 231.54 l
+304.13 236.60 l
+304.57 230.21 l
+305.01 225.54 l
+305.44 222.92 l
+305.88 220.00 l
+306.31 219.54 l
+306.75 209.87 l
+307.19 209.42 l
+307.62 219.59 l
+308.06 220.97 l
+308.49 229.28 l
+308.93 231.78 l
+309.37 237.49 l
+309.80 227.18 l
+310.24 231.64 l
+310.67 227.22 l
+311.11 229.21 l
+311.55 227.52 l
+311.98 231.42 l
+312.42 238.11 l
+312.85 244.78 l
+313.29 250.88 l
+313.73 252.47 l
+314.16 252.43 l
+314.60 257.20 l
+315.04 253.39 l
+315.47 259.39 l
+315.91 258.71 l
+316.34 253.68 l
+316.78 233.84 l
+317.22 229.53 l
+317.65 236.68 l
+318.09 237.15 l
+318.52 233.98 l
+318.96 229.05 l
+319.40 232.26 l
+319.83 238.85 l
+320.27 234.96 l
+320.70 240.71 l
+321.14 251.48 l
+321.58 250.01 l
+322.01 240.14 l
+322.45 239.02 l
+322.88 247.01 l
+323.32 243.73 l
+323.76 253.17 l
+324.19 253.65 l
+324.63 254.01 l
+325.07 235.62 l
+325.50 244.64 l
+325.94 250.63 l
+326.37 258.33 l
+326.81 253.45 l
+327.25 226.64 l
+327.68 218.70 l
+328.12 218.11 l
+328.55 224.52 l
+328.99 236.26 l
+329.43 231.81 l
+329.86 230.79 l
+330.30 235.35 l
+330.73 247.67 l
+331.17 245.54 l
+331.61 255.08 l
+332.04 245.85 l
+332.48 238.89 l
+332.91 235.95 l
+333.35 234.04 l
+333.79 242.75 l
+334.22 235.70 l
+334.66 245.69 l
+335.10 247.14 l
+335.53 243.19 l
+335.97 246.77 l
+336.40 249.86 l
+336.84 256.50 l
+337.28 240.58 l
+337.71 234.35 l
+338.15 241.29 l
+338.58 247.17 l
+339.02 244.74 l
+339.46 237.18 l
+339.89 248.84 l
+340.33 250.49 l
+340.76 259.27 l
+341.20 255.86 l
+341.64 254.45 l
+342.07 246.98 l
+342.51 253.01 l
+342.94 251.05 l
+343.38 241.87 l
+343.82 230.44 l
+344.25 238.69 l
+344.69 241.89 l
+345.12 234.36 l
+345.56 236.47 l
+346.00 237.16 l
+346.43 228.24 l
+346.87 237.56 l
+347.31 247.27 l
+347.74 251.82 l
+348.18 253.23 l
+348.61 244.45 l
+349.05 243.88 l
+349.49 244.70 l
+349.92 253.58 l
+350.36 246.26 l
+350.79 248.91 l
+351.23 254.71 l
+351.67 253.03 l
+352.10 262.06 l
+352.54 257.22 l
+352.97 255.65 l
+353.41 256.25 l
+353.85 186.56 l
+354.28 193.08 l
+354.72 173.11 l
+355.15 174.81 l
+355.59 206.20 l
+356.03 254.33 l
+356.46 264.53 l
+356.90 260.67 l
+357.34 258.34 l
+357.77 264.01 l
+358.21 270.48 l
+358.64 274.78 l
+359.08 281.04 l
+359.52 278.06 l
+359.95 285.08 l
+360.39 283.60 l
+360.82 287.98 l
+361.26 292.39 l
+361.70 296.39 l
+362.13 287.23 l
+362.57 289.61 l
+363.00 295.60 l
+363.44 294.86 l
+363.88 294.01 l
+364.31 297.23 l
+364.75 295.22 l
+365.18 278.54 l
+365.62 250.38 l
+366.06 249.81 l
+366.49 266.74 l
+366.93 266.73 l
+367.37 282.99 l
+367.80 285.96 l
+368.24 284.09 l
+368.67 284.37 l
+369.11 274.45 l
+369.55 278.14 l
+369.98 294.49 l
+370.42 310.33 l
+370.85 303.02 l
+371.29 309.06 l
+371.73 305.73 l
+372.16 313.31 l
+372.60 309.61 l
+373.03 294.04 l
+373.47 297.31 l
+373.91 299.58 l
+374.34 302.45 l
+374.78 305.73 l
+375.21 306.36 l
+375.65 294.55 l
+376.09 300.02 l
+376.52 308.12 l
+376.96 305.34 l
+377.39 309.81 l
+377.83 318.53 l
+378.27 330.95 l
+378.70 315.97 l
+379.14 307.42 l
+379.58 313.47 l
+380.01 331.51 l
+380.45 334.27 l
+380.88 337.02 l
+381.32 341.50 l
+381.76 352.83 l
+382.19 346.23 l
+382.63 340.02 l
+383.06 341.03 l
+383.50 332.02 l
+383.94 336.34 l
+384.37 336.73 l
+384.81 338.36 l
+385.24 348.44 l
+385.68 353.83 l
+386.12 340.98 l
+386.55 324.33 l
+386.99 313.38 l
+387.42 320.46 l
+387.86 345.99 l
+388.30 350.75 l
+388.73 355.89 l
+389.17 340.61 l
+389.61 334.95 l
+390.04 337.35 l
+390.48 333.46 l
+390.91 333.61 l
+391.35 345.01 l
+391.79 356.24 l
+392.22 358.60 l
+392.66 354.01 l
+393.09 354.90 l
+393.53 355.48 l
+393.97 354.78 l
+394.40 360.65 l
+394.84 367.46 l
+395.27 375.02 l
+395.71 367.06 l
+396.15 370.14 l
+396.58 377.71 l
+397.02 398.77 l
+397.45 394.11 l
+397.89 382.81 l
+398.33 380.12 l
+398.76 374.73 l
+399.20 374.44 l
+399.64 358.88 l
+400.07 362.63 l
+400.51 377.15 l
+400.94 389.76 l
+401.38 396.40 l
+401.82 382.53 l
+402.25 384.13 l
+402.69 370.91 l
+403.12 372.46 l
+403.56 372.67 l
+404.00 379.57 l
+404.43 364.69 l
+404.87 353.10 l
+405.30 373.28 l
+405.74 379.41 l
+406.18 367.24 l
+406.61 373.43 l
+407.05 378.07 l
+407.48 373.26 l
+407.92 351.10 l
+408.36 350.69 l
+408.79 349.83 l
+409.23 350.70 l
+409.66 358.08 l
+410.10 362.22 l
+410.54 359.90 l
+410.97 356.26 l
+411.41 363.86 l
+411.85 372.07 l
+412.28 386.56 l
+412.72 383.33 l
+413.15 366.51 l
+413.59 367.32 l
+414.03 363.56 l
+414.46 361.72 l
+414.90 361.73 l
+415.33 354.17 l
+415.77 353.02 l
+416.21 350.28 l
+416.64 336.69 l
+417.08 336.95 l
+417.51 347.97 l
+417.95 349.70 l
+418.39 358.22 l
+418.82 354.43 l
+419.26 342.47 l
+419.69 351.32 l
+420.13 342.32 l
+420.57 341.22 l
+421.00 340.84 l
+421.44 346.53 l
+421.88 346.31 l
+422.31 339.50 l
+422.75 334.51 l
+423.18 346.06 l
+423.62 360.95 l
+424.06 342.10 l
+424.49 338.45 l
+424.93 344.85 l
+425.36 352.03 l
+425.80 350.82 l
+426.24 346.11 l
+426.67 341.70 l
+427.11 336.76 l
+427.54 330.71 l
+427.98 327.37 l
+428.42 325.41 l
+428.85 325.39 l
+429.29 337.72 l
+429.72 345.93 l
+430.16 354.54 l
+430.60 358.30 l
+431.03 361.76 l
+431.47 357.93 l
+431.91 357.57 l
+432.34 363.02 l
+432.78 367.36 l
+433.21 368.41 l
+433.65 371.46 l
+434.09 361.91 l
+434.52 357.44 l
+434.96 356.33 l
+435.39 353.59 l
+435.83 300.65 l
+436.27 272.08 l
+436.70 272.93 l
+437.14 280.73 l
+437.57 286.26 l
+438.01 297.01 l
+438.45 296.18 l
+438.88 303.25 l
+439.32 308.20 l
+439.75 306.12 l
+440.19 304.36 l
+440.63 316.62 l
+441.06 317.31 l
+441.50 316.68 l
+441.93 321.07 l
+442.37 313.23 l
+442.81 315.99 l
+443.24 308.12 l
+443.68 318.20 l
+444.12 324.62 l
+444.55 318.80 l
+444.99 313.65 l
+445.42 325.39 l
+445.86 331.35 l
+446.30 331.85 l
+446.73 337.65 l
+447.17 335.97 l
+447.60 331.56 l
+448.04 334.01 l
+448.48 313.34 l
+448.91 313.61 l
+449.35 314.70 l
+449.78 317.58 l
+450.22 311.20 l
+450.66 310.83 l
+451.09 318.48 l
+451.53 328.54 l
+451.96 330.90 l
+452.40 331.35 l
+452.84 331.04 l
+453.27 323.40 l
+453.71 325.84 l
+454.15 331.60 l
+454.58 321.36 l
+455.02 313.83 l
+455.45 314.52 l
+455.89 305.01 l
+456.33 301.03 l
+456.76 296.17 l
+457.20 307.32 l
+457.63 297.37 l
+458.07 304.79 l
+458.51 312.66 l
+458.94 315.08 l
+459.38 306.10 l
+459.81 296.84 l
+460.25 292.66 l
+460.69 296.09 l
+461.12 298.71 l
+461.56 304.86 l
+461.99 304.56 l
+462.43 300.93 l
+462.87 300.62 l
+463.30 300.85 l
+463.74 297.57 l
+464.18 286.77 l
+464.61 287.98 l
+465.05 295.20 l
+465.48 302.35 l
+465.92 303.50 l
+466.36 294.64 l
+466.79 304.91 l
+467.23 305.33 l
+467.66 305.66 l
+468.10 307.17 l
+468.54 297.66 l
+468.97 300.78 l
+469.41 311.28 l
+469.84 317.59 l
+470.28 316.29 l
+470.72 309.71 l
+471.15 307.97 l
+471.59 301.79 l
+472.02 320.30 l
+472.46 334.86 l
+472.90 343.14 l
+473.33 344.25 l
+473.77 337.35 l
+474.20 327.69 l
+474.64 321.43 l
+475.08 326.97 l
+475.51 325.72 l
+475.95 328.30 l
+476.39 323.84 l
+476.82 315.96 l
+477.26 314.79 l
+477.69 312.20 l
+478.13 311.67 l
+478.57 314.22 l
+479.00 317.06 l
+479.44 320.41 l
+479.87 317.93 l
+480.31 323.87 l
+480.75 324.36 l
+481.18 324.35 l
+481.62 326.85 l
+482.05 330.05 l
+482.49 315.83 l
+482.93 300.52 l
+483.36 301.62 l
+483.80 292.23 l
+484.23 314.27 l
+484.67 322.66 l
+485.11 342.88 l
+485.54 345.93 l
+485.98 352.32 l
+486.42 347.22 l
+486.85 344.21 l
+487.29 343.07 l
+487.72 344.49 l
+488.16 347.79 l
+488.60 347.28 l
+489.03 343.36 l
+489.47 342.17 l
+489.90 330.38 l
+490.34 327.77 l
+490.78 332.59 l
+491.21 332.25 l
+491.65 330.36 l
+492.08 330.99 l
+492.52 330.93 l
+492.96 333.43 l
+493.39 337.19 l
+493.83 336.91 l
+494.26 330.34 l
+494.70 328.43 l
+495.14 324.96 l
+495.57 318.30 l
+496.01 303.22 l
+496.45 300.61 l
+496.88 306.30 l
+497.32 319.39 l
+497.75 328.21 l
+498.19 339.96 l
+498.63 337.10 l
+499.06 328.38 l
+499.50 342.33 l
+499.93 343.61 l
+500.37 349.01 l
+500.81 353.24 l
+501.24 349.73 l
+501.68 348.36 l
+502.11 331.64 l
+502.55 328.86 l
+502.99 324.90 l
+503.42 329.75 l
+503.86 331.67 l
+504.29 328.62 l
+504.73 327.80 l
+505.17 332.19 l
+505.60 326.11 l
+506.04 324.25 l
+506.47 326.81 l
+506.91 325.52 l
+S
+507.78 311.96 m
+508.22 307.08 l
+508.66 299.87 l
+509.09 307.60 l
+509.53 312.66 l
+509.96 303.90 l
+510.40 299.59 l
+510.84 307.13 l
+511.27 301.84 l
+511.71 302.25 l
+512.14 308.05 l
+512.58 312.01 l
+513.02 283.62 l
+513.45 227.87 l
+513.89 242.01 l
+514.32 260.19 l
+514.76 266.69 l
+515.20 253.99 l
+515.63 254.24 l
+516.07 259.56 l
+516.50 265.20 l
+516.94 256.30 l
+517.38 254.40 l
+517.81 261.01 l
+518.25 261.94 l
+518.69 263.69 l
+519.12 263.37 l
+519.56 264.54 l
+519.99 262.02 l
+520.43 268.27 l
+520.87 274.56 l
+521.30 289.37 l
+521.74 301.59 l
+522.17 303.00 l
+522.61 297.54 l
+523.05 290.67 l
+523.48 278.76 l
+523.92 295.71 l
+524.35 297.18 l
+524.79 298.94 l
+525.23 298.15 l
+525.66 288.03 l
+526.10 292.64 l
+526.53 280.38 l
+526.97 281.53 l
+527.41 298.93 l
+527.84 290.93 l
+528.28 286.30 l
+528.72 298.04 l
+529.15 291.58 l
+529.59 285.39 l
+530.02 291.51 l
+530.46 286.41 l
+530.90 296.77 l
+531.33 296.06 l
+531.77 284.73 l
+532.20 282.33 l
+532.64 269.10 l
+533.08 260.60 l
+533.51 263.14 l
+533.95 272.56 l
+534.38 275.39 l
+534.82 266.18 l
+535.26 270.25 l
+535.69 275.01 l
+536.13 277.88 l
+536.56 271.65 l
+537.00 264.50 l
+537.44 282.48 l
+537.87 278.82 l
+538.31 286.91 l
+538.74 288.30 l
+539.18 292.12 l
+539.62 291.64 l
+540.05 293.83 l
+540.49 303.21 l
+540.93 305.41 l
+541.36 299.53 l
+541.80 278.44 l
+542.23 280.93 l
+542.67 282.35 l
+543.11 272.67 l
+543.54 277.16 l
+543.98 272.25 l
+544.41 264.00 l
+544.85 253.16 l
+545.29 264.18 l
+545.72 265.23 l
+546.16 260.14 l
+546.59 254.81 l
+547.03 259.68 l
+547.47 255.45 l
+547.90 254.13 l
+548.34 242.68 l
+548.77 245.27 l
+549.21 251.17 l
+549.65 252.93 l
+550.08 256.11 l
+550.52 261.59 l
+550.96 270.22 l
+551.39 270.22 l
+551.83 267.39 l
+552.26 263.77 l
+552.70 260.06 l
+553.14 261.32 l
+553.57 264.83 l
+554.01 254.56 l
+554.44 253.62 l
+554.88 261.95 l
+555.32 288.20 l
+555.75 291.78 l
+556.19 298.14 l
+556.62 296.99 l
+557.06 291.24 l
+557.50 298.11 l
+557.93 299.24 l
+558.37 303.09 l
+558.80 303.93 l
+559.24 297.17 l
+559.68 287.65 l
+560.11 278.81 l
+560.55 279.52 l
+560.99 281.47 l
+561.42 280.20 l
+561.86 272.72 l
+562.29 273.67 l
+S
+Q q
+BT
+0.000 0.000 0.000 rg
+/F3 1 Tf 14.00 0.00 -0.00 14.00 267.75 416.89 Tm (Relay locations) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 306.29 4.32 Tm (Date) Tj
+ET
+BT
+/F2 1 Tf 0.00 12.00 -12.00 0.00 10.08 188.75 Tm (Bandwidth [MB/s]) Tj
+ET
+Q q 56.16 59.04 525.60 352.80 re W n
+0.000 0.000 1.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+75.63 160.87 m
+76.06 154.66 l
+76.50 151.38 l
+76.93 157.01 l
+77.37 146.56 l
+77.81 150.52 l
+78.24 146.31 l
+78.68 158.28 l
+79.12 152.92 l
+79.55 149.94 l
+79.99 152.03 l
+80.42 154.88 l
+80.86 156.74 l
+81.30 163.07 l
+81.73 155.78 l
+82.17 155.34 l
+82.60 163.56 l
+83.04 164.77 l
+83.48 167.28 l
+83.91 164.93 l
+84.35 155.32 l
+84.78 157.22 l
+85.22 158.25 l
+85.66 160.74 l
+86.09 158.62 l
+86.53 158.52 l
+86.96 159.49 l
+87.40 163.90 l
+87.84 160.95 l
+88.27 146.59 l
+88.71 143.96 l
+89.15 149.27 l
+89.58 151.51 l
+90.02 146.69 l
+90.45 149.29 l
+90.89 155.25 l
+91.33 157.81 l
+91.76 158.24 l
+92.20 158.01 l
+92.63 163.61 l
+93.07 154.47 l
+93.51 148.16 l
+93.94 141.22 l
+94.38 140.23 l
+94.81 147.84 l
+95.25 150.57 l
+95.69 154.13 l
+96.12 155.10 l
+96.56 154.42 l
+96.99 156.26 l
+97.43 159.84 l
+97.87 157.25 l
+98.30 165.13 l
+98.74 167.93 l
+99.18 164.02 l
+99.61 162.14 l
+100.05 162.06 l
+100.48 163.68 l
+100.92 164.43 l
+101.36 164.46 l
+101.79 162.12 l
+102.23 159.06 l
+102.66 156.04 l
+103.10 153.75 l
+103.54 152.17 l
+103.97 154.71 l
+104.41 156.34 l
+104.84 156.47 l
+105.28 155.84 l
+105.72 162.79 l
+106.15 166.03 l
+106.59 163.28 l
+107.02 163.95 l
+107.46 166.68 l
+107.90 171.88 l
+108.33 170.81 l
+108.77 169.09 l
+109.20 170.16 l
+109.64 173.50 l
+110.08 180.74 l
+110.51 190.83 l
+110.95 191.14 l
+111.39 189.32 l
+111.82 182.69 l
+112.26 184.18 l
+112.69 186.49 l
+113.13 183.84 l
+113.57 172.12 l
+114.00 167.75 l
+114.44 171.86 l
+114.87 168.47 l
+115.31 167.02 l
+115.75 168.34 l
+116.18 174.80 l
+116.62 176.98 l
+117.05 177.38 l
+117.49 177.63 l
+117.93 176.94 l
+118.36 171.66 l
+118.80 164.88 l
+119.23 143.24 l
+119.67 157.89 l
+120.11 167.76 l
+120.54 162.41 l
+120.98 162.61 l
+121.42 167.01 l
+121.85 162.97 l
+122.29 163.11 l
+122.72 166.91 l
+123.16 161.37 l
+123.60 164.27 l
+124.03 178.54 l
+124.47 176.62 l
+124.90 172.69 l
+125.34 176.36 l
+125.78 182.84 l
+126.21 180.06 l
+126.65 166.06 l
+127.08 166.39 l
+127.52 172.77 l
+127.96 176.68 l
+128.39 180.71 l
+128.83 185.53 l
+129.26 189.43 l
+129.70 181.03 l
+130.14 175.96 l
+130.57 186.99 l
+131.01 210.89 l
+131.45 191.74 l
+131.88 194.47 l
+132.32 192.48 l
+132.75 196.71 l
+133.19 197.62 l
+133.63 193.21 l
+134.06 197.95 l
+134.50 196.08 l
+134.93 191.13 l
+135.37 189.85 l
+135.81 189.39 l
+136.24 181.82 l
+136.68 168.53 l
+137.11 167.92 l
+137.55 163.17 l
+137.99 169.72 l
+138.42 173.78 l
+138.86 174.72 l
+139.29 169.19 l
+139.73 162.73 l
+140.17 170.92 l
+140.60 173.75 l
+141.04 176.02 l
+141.47 176.53 l
+141.91 180.49 l
+142.35 182.68 l
+142.78 179.83 l
+143.22 181.34 l
+143.66 191.55 l
+144.09 202.86 l
+144.53 214.28 l
+144.96 205.90 l
+145.40 185.38 l
+145.84 186.95 l
+146.27 197.75 l
+146.71 191.00 l
+147.14 196.06 l
+147.58 196.25 l
+148.02 204.54 l
+148.45 204.78 l
+148.89 204.52 l
+149.32 206.34 l
+149.76 210.23 l
+150.20 209.29 l
+150.63 223.09 l
+151.07 222.22 l
+151.50 210.21 l
+151.94 207.39 l
+152.38 217.51 l
+152.81 216.18 l
+153.25 208.56 l
+153.69 210.31 l
+154.12 215.90 l
+154.56 214.59 l
+154.99 204.09 l
+155.43 215.30 l
+155.87 215.36 l
+156.30 197.69 l
+156.74 195.11 l
+157.17 196.19 l
+157.61 199.05 l
+158.05 202.39 l
+158.48 200.26 l
+158.92 197.33 l
+159.35 211.62 l
+159.79 223.16 l
+160.23 216.27 l
+160.66 210.92 l
+161.10 218.12 l
+161.53 219.47 l
+161.97 212.69 l
+162.41 223.51 l
+162.84 225.81 l
+163.28 222.43 l
+163.72 219.32 l
+164.15 207.94 l
+164.59 209.42 l
+165.02 174.29 l
+165.46 167.75 l
+165.90 169.76 l
+166.33 166.70 l
+166.77 163.13 l
+167.20 166.88 l
+167.64 169.79 l
+168.08 172.52 l
+168.51 177.47 l
+168.95 173.44 l
+169.38 169.04 l
+169.82 167.31 l
+170.26 176.93 l
+170.69 182.57 l
+171.13 178.37 l
+171.56 182.07 l
+172.00 185.00 l
+172.44 186.72 l
+172.87 184.28 l
+173.31 172.56 l
+173.74 178.88 l
+174.18 178.38 l
+174.62 179.51 l
+175.05 183.04 l
+175.49 179.57 l
+175.93 182.27 l
+176.36 184.58 l
+176.80 181.08 l
+177.23 175.49 l
+177.67 174.58 l
+178.11 177.18 l
+178.54 175.33 l
+178.98 174.44 l
+179.41 178.19 l
+179.85 174.80 l
+180.29 171.12 l
+180.72 169.81 l
+181.16 169.91 l
+181.59 175.00 l
+182.03 182.58 l
+182.47 181.81 l
+182.90 180.43 l
+183.34 176.86 l
+183.77 182.96 l
+184.21 187.24 l
+184.65 181.25 l
+185.08 180.23 l
+185.52 184.90 l
+185.96 187.49 l
+186.39 187.81 l
+186.83 188.94 l
+187.26 190.83 l
+187.70 189.78 l
+188.14 188.89 l
+188.57 179.06 l
+189.01 170.74 l
+189.44 174.17 l
+189.88 179.48 l
+190.32 186.73 l
+190.75 182.30 l
+191.19 181.25 l
+191.62 187.74 l
+192.06 187.92 l
+192.50 194.43 l
+192.93 189.71 l
+193.37 184.55 l
+193.80 178.85 l
+194.24 176.91 l
+194.68 186.91 l
+195.11 194.14 l
+195.55 192.69 l
+195.99 192.93 l
+196.42 192.37 l
+196.86 189.67 l
+197.29 190.59 l
+197.73 192.91 l
+198.17 193.27 l
+198.60 193.48 l
+199.04 195.36 l
+199.47 199.69 l
+199.91 196.23 l
+200.35 196.28 l
+200.78 194.66 l
+201.22 193.18 l
+201.65 193.33 l
+202.09 190.46 l
+202.53 190.79 l
+202.96 185.49 l
+203.40 189.39 l
+203.83 190.04 l
+204.27 192.90 l
+204.71 196.75 l
+205.14 201.58 l
+205.58 206.37 l
+206.01 206.86 l
+206.45 203.92 l
+206.89 196.85 l
+207.32 197.94 l
+207.76 205.49 l
+208.20 213.42 l
+208.63 212.61 l
+209.07 213.46 l
+209.50 213.06 l
+209.94 207.21 l
+210.38 198.16 l
+210.81 201.85 l
+211.25 210.79 l
+211.68 217.86 l
+212.12 211.10 l
+212.56 206.22 l
+212.99 207.61 l
+213.43 202.30 l
+213.86 206.50 l
+214.30 211.16 l
+214.74 208.63 l
+215.17 199.95 l
+215.61 200.99 l
+216.04 197.94 l
+216.48 197.67 l
+216.92 200.78 l
+217.35 198.07 l
+217.79 194.95 l
+218.23 190.63 l
+218.66 189.17 l
+219.10 187.30 l
+219.53 190.03 l
+219.97 190.50 l
+220.41 191.90 l
+220.84 196.48 l
+221.28 195.02 l
+221.71 194.20 l
+222.15 194.36 l
+222.59 197.59 l
+223.02 204.27 l
+223.46 206.18 l
+223.89 208.68 l
+224.33 205.08 l
+224.77 203.49 l
+225.20 206.93 l
+225.64 203.16 l
+226.07 199.82 l
+226.51 204.89 l
+226.95 206.16 l
+227.38 203.19 l
+227.82 207.46 l
+228.26 207.33 l
+228.69 204.26 l
+229.13 200.42 l
+229.56 207.84 l
+230.00 211.63 l
+230.44 217.48 l
+230.87 220.26 l
+231.31 201.27 l
+231.74 199.91 l
+232.18 213.55 l
+232.62 220.37 l
+233.05 214.68 l
+233.49 204.21 l
+233.92 202.52 l
+234.36 214.30 l
+234.80 209.29 l
+235.23 205.97 l
+235.67 211.36 l
+236.10 211.82 l
+236.54 210.19 l
+236.98 213.61 l
+237.41 211.36 l
+237.85 208.25 l
+238.28 204.76 l
+238.72 200.47 l
+239.16 201.88 l
+239.59 201.57 l
+240.03 203.79 l
+240.47 195.54 l
+240.90 197.60 l
+241.34 201.52 l
+241.77 200.70 l
+242.21 200.80 l
+242.65 194.89 l
+243.08 186.89 l
+243.52 181.83 l
+243.95 181.21 l
+244.39 178.48 l
+244.83 175.29 l
+245.26 176.74 l
+245.70 174.80 l
+246.13 181.93 l
+246.57 182.16 l
+247.01 177.22 l
+247.44 174.30 l
+247.88 174.89 l
+248.31 176.31 l
+248.75 174.64 l
+249.19 176.15 l
+249.62 178.58 l
+250.06 180.34 l
+250.50 183.81 l
+250.93 184.21 l
+251.37 184.43 l
+251.80 187.89 l
+252.24 193.16 l
+252.68 195.36 l
+253.11 194.20 l
+253.55 193.74 l
+253.98 195.17 l
+254.42 203.23 l
+254.86 203.35 l
+255.29 199.85 l
+255.73 195.61 l
+256.16 190.76 l
+256.60 191.75 l
+257.04 189.49 l
+257.47 189.03 l
+257.91 185.71 l
+258.34 188.95 l
+258.78 189.19 l
+259.22 187.36 l
+259.65 188.62 l
+260.09 185.05 l
+260.53 185.50 l
+260.96 191.18 l
+261.40 193.62 l
+261.83 199.46 l
+262.27 196.29 l
+262.71 192.62 l
+263.14 192.95 l
+263.58 194.68 l
+264.01 186.90 l
+264.45 181.35 l
+264.89 184.68 l
+265.32 186.33 l
+265.76 185.81 l
+266.19 196.42 l
+266.63 199.19 l
+267.07 197.00 l
+267.50 195.45 l
+267.94 195.76 l
+268.37 188.38 l
+268.81 192.22 l
+269.25 194.14 l
+269.68 196.77 l
+270.12 197.66 l
+270.55 199.62 l
+270.99 200.20 l
+271.43 196.77 l
+271.86 196.45 l
+272.30 194.17 l
+272.74 195.67 l
+273.17 195.63 l
+273.61 197.85 l
+274.04 198.38 l
+274.48 188.20 l
+274.92 181.06 l
+275.35 178.19 l
+275.79 185.33 l
+276.22 180.71 l
+276.66 183.26 l
+277.10 188.79 l
+277.53 189.26 l
+277.97 193.39 l
+278.40 186.92 l
+278.84 187.67 l
+279.28 190.44 l
+279.71 195.31 l
+280.15 195.64 l
+280.58 184.91 l
+281.02 182.36 l
+281.46 184.95 l
+281.89 187.40 l
+282.33 183.97 l
+282.77 189.15 l
+283.20 191.83 l
+283.64 196.79 l
+284.07 199.95 l
+284.51 205.73 l
+284.95 210.08 l
+285.38 204.54 l
+285.82 204.13 l
+286.25 203.99 l
+286.69 201.38 l
+287.13 198.52 l
+287.56 199.46 l
+288.00 195.62 l
+288.43 202.76 l
+288.87 207.50 l
+289.31 209.96 l
+289.74 205.24 l
+290.18 206.26 l
+290.61 211.42 l
+291.05 212.98 l
+291.49 203.31 l
+291.92 194.28 l
+292.36 186.12 l
+292.80 183.81 l
+293.23 187.08 l
+293.67 187.95 l
+294.10 186.64 l
+294.54 192.37 l
+294.98 198.14 l
+295.41 198.60 l
+295.85 195.60 l
+296.28 197.78 l
+296.72 199.01 l
+297.16 194.04 l
+297.59 190.31 l
+298.03 196.53 l
+298.46 198.58 l
+298.90 193.18 l
+299.34 193.99 l
+299.77 187.17 l
+300.21 188.34 l
+300.64 186.68 l
+301.08 185.03 l
+301.52 187.00 l
+301.95 184.97 l
+302.39 189.93 l
+302.82 189.69 l
+303.26 194.25 l
+303.70 195.30 l
+304.13 195.92 l
+304.57 190.96 l
+305.01 183.11 l
+305.44 184.12 l
+305.88 188.67 l
+306.31 193.10 l
+306.75 192.33 l
+307.19 187.57 l
+307.62 175.51 l
+308.06 174.52 l
+308.49 177.40 l
+308.93 174.59 l
+309.37 176.91 l
+309.80 179.58 l
+310.24 180.35 l
+310.67 181.63 l
+311.11 184.83 l
+311.55 181.22 l
+311.98 183.18 l
+312.42 182.75 l
+312.85 184.37 l
+313.29 188.23 l
+313.73 182.89 l
+314.16 178.55 l
+314.60 174.88 l
+315.04 180.23 l
+315.47 190.28 l
+315.91 193.75 l
+316.34 192.47 l
+316.78 192.16 l
+317.22 188.06 l
+317.65 190.13 l
+318.09 190.70 l
+318.52 184.99 l
+318.96 186.13 l
+319.40 181.69 l
+319.83 185.55 l
+320.27 184.80 l
+320.70 182.68 l
+321.14 181.54 l
+321.58 181.95 l
+322.01 180.73 l
+322.45 183.18 l
+322.88 188.54 l
+323.32 185.70 l
+323.76 191.09 l
+324.19 203.23 l
+324.63 210.83 l
+325.07 204.95 l
+325.50 206.27 l
+325.94 196.07 l
+326.37 206.19 l
+326.81 210.38 l
+327.25 194.76 l
+327.68 181.62 l
+328.12 187.91 l
+328.55 200.67 l
+328.99 213.15 l
+329.43 213.73 l
+329.86 199.15 l
+330.30 193.71 l
+330.73 195.16 l
+331.17 196.84 l
+331.61 200.12 l
+332.04 202.30 l
+332.48 202.10 l
+332.91 210.13 l
+333.35 210.33 l
+333.79 197.20 l
+334.22 193.35 l
+334.66 188.00 l
+335.10 184.15 l
+335.53 188.57 l
+335.97 201.43 l
+336.40 203.12 l
+336.84 212.58 l
+337.28 210.22 l
+337.71 197.75 l
+338.15 202.21 l
+338.58 207.51 l
+339.02 202.92 l
+339.46 207.72 l
+339.89 208.96 l
+340.33 196.40 l
+340.76 195.87 l
+341.20 200.85 l
+341.64 196.87 l
+342.07 202.84 l
+342.51 212.98 l
+342.94 217.31 l
+343.38 215.54 l
+343.82 212.97 l
+344.25 212.25 l
+344.69 208.45 l
+345.12 203.34 l
+345.56 203.81 l
+346.00 207.77 l
+346.43 207.80 l
+346.87 218.14 l
+347.31 220.73 l
+347.74 220.44 l
+348.18 224.08 l
+348.61 224.71 l
+349.05 228.34 l
+349.49 226.66 l
+349.92 215.31 l
+350.36 220.99 l
+350.79 219.86 l
+351.23 221.53 l
+351.67 224.90 l
+352.10 217.98 l
+352.54 218.75 l
+352.97 219.84 l
+353.41 225.96 l
+353.85 168.73 l
+354.28 171.35 l
+354.72 149.10 l
+355.15 147.51 l
+355.59 166.64 l
+356.03 196.44 l
+356.46 206.17 l
+356.90 203.79 l
+357.34 212.53 l
+357.77 221.23 l
+358.21 224.80 l
+358.64 227.45 l
+359.08 230.71 l
+359.52 214.16 l
+359.95 213.81 l
+360.39 215.41 l
+360.82 214.58 l
+361.26 207.91 l
+361.70 200.34 l
+362.13 202.96 l
+362.57 209.24 l
+363.00 219.15 l
+363.44 220.82 l
+363.88 208.75 l
+364.31 198.92 l
+364.75 192.23 l
+365.18 197.29 l
+365.62 198.97 l
+366.06 196.67 l
+366.49 197.25 l
+366.93 198.53 l
+367.37 202.31 l
+367.80 202.93 l
+368.24 202.14 l
+368.67 206.47 l
+369.11 203.93 l
+369.55 211.06 l
+369.98 211.10 l
+370.42 214.28 l
+370.85 215.97 l
+371.29 217.59 l
+371.73 214.97 l
+372.16 204.56 l
+372.60 207.75 l
+373.03 205.73 l
+373.47 202.68 l
+373.91 201.66 l
+374.34 203.36 l
+374.78 200.48 l
+375.21 200.25 l
+375.65 207.91 l
+376.09 207.80 l
+376.52 205.73 l
+376.96 203.16 l
+377.39 203.90 l
+377.83 203.69 l
+378.27 210.99 l
+378.70 214.21 l
+379.14 215.36 l
+379.58 212.96 l
+380.01 217.19 l
+380.45 222.03 l
+380.88 206.20 l
+381.32 206.62 l
+381.76 219.27 l
+382.19 220.08 l
+382.63 230.72 l
+383.06 232.18 l
+383.50 247.02 l
+383.94 239.39 l
+384.37 238.86 l
+384.81 244.36 l
+385.24 246.73 l
+385.68 239.40 l
+386.12 241.71 l
+386.55 237.67 l
+386.99 233.76 l
+387.42 242.10 l
+387.86 241.48 l
+388.30 235.64 l
+388.73 231.50 l
+389.17 231.30 l
+389.61 226.19 l
+390.04 229.47 l
+390.48 232.62 l
+390.91 226.40 l
+391.35 227.70 l
+391.79 230.13 l
+392.22 226.05 l
+392.66 219.35 l
+393.09 222.16 l
+393.53 226.70 l
+393.97 235.35 l
+394.40 233.67 l
+394.84 234.10 l
+395.27 231.08 l
+395.71 236.85 l
+396.15 241.33 l
+396.58 224.42 l
+397.02 229.94 l
+397.45 237.92 l
+397.89 240.78 l
+398.33 241.07 l
+398.76 247.45 l
+399.20 250.88 l
+399.64 250.06 l
+400.07 244.79 l
+400.51 241.20 l
+400.94 238.66 l
+401.38 244.93 l
+401.82 239.64 l
+402.25 228.26 l
+402.69 213.19 l
+403.12 218.76 l
+403.56 221.98 l
+404.00 224.24 l
+404.43 230.18 l
+404.87 231.03 l
+405.30 230.27 l
+405.74 231.73 l
+406.18 225.34 l
+406.61 228.94 l
+407.05 235.64 l
+407.48 234.62 l
+407.92 230.89 l
+408.36 225.64 l
+408.79 221.65 l
+409.23 216.97 l
+409.66 222.15 l
+410.10 227.44 l
+410.54 225.71 l
+410.97 228.10 l
+411.41 229.07 l
+411.85 226.27 l
+412.28 227.98 l
+412.72 228.97 l
+413.15 226.63 l
+413.59 222.78 l
+414.03 221.50 l
+414.46 228.69 l
+414.90 231.65 l
+415.33 234.57 l
+415.77 237.48 l
+416.21 244.83 l
+416.64 245.70 l
+417.08 239.41 l
+417.51 229.42 l
+417.95 222.89 l
+418.39 231.07 l
+418.82 235.67 l
+419.26 231.23 l
+419.69 224.10 l
+420.13 226.43 l
+420.57 225.25 l
+421.00 219.27 l
+421.44 218.67 l
+421.88 214.61 l
+422.31 219.31 l
+422.75 220.99 l
+423.18 214.21 l
+423.62 212.96 l
+424.06 218.51 l
+424.49 211.98 l
+424.93 212.07 l
+425.36 212.07 l
+425.80 215.57 l
+426.24 216.98 l
+426.67 214.57 l
+427.11 211.19 l
+427.54 205.00 l
+427.98 204.31 l
+428.42 210.97 l
+428.85 211.40 l
+429.29 212.82 l
+429.72 216.18 l
+430.16 214.55 l
+430.60 218.57 l
+431.03 216.88 l
+431.47 214.67 l
+431.91 219.13 l
+432.34 222.00 l
+432.78 219.27 l
+433.21 216.42 l
+433.65 219.75 l
+434.09 230.84 l
+434.52 232.62 l
+434.96 233.39 l
+435.39 235.69 l
+435.83 229.05 l
+436.27 230.05 l
+436.70 235.64 l
+437.14 232.22 l
+437.57 237.32 l
+438.01 236.01 l
+438.45 240.06 l
+438.88 243.83 l
+439.32 234.13 l
+439.75 230.41 l
+440.19 235.29 l
+440.63 236.39 l
+441.06 235.66 l
+441.50 227.85 l
+441.93 233.73 l
+442.37 236.64 l
+442.81 236.55 l
+443.24 240.49 l
+443.68 244.72 l
+444.12 246.76 l
+444.55 241.12 l
+444.99 238.48 l
+445.42 232.01 l
+445.86 230.33 l
+446.30 229.03 l
+446.73 230.49 l
+447.17 235.77 l
+447.60 237.87 l
+448.04 239.74 l
+448.48 228.99 l
+448.91 235.91 l
+449.35 236.26 l
+449.78 233.33 l
+450.22 233.36 l
+450.66 240.69 l
+451.09 239.88 l
+451.53 238.01 l
+451.96 230.39 l
+452.40 231.20 l
+452.84 227.85 l
+453.27 233.35 l
+453.71 239.69 l
+454.15 246.77 l
+454.58 246.59 l
+455.02 243.33 l
+455.45 240.73 l
+455.89 242.78 l
+456.33 245.24 l
+456.76 246.74 l
+457.20 241.36 l
+457.63 233.07 l
+458.07 226.91 l
+458.51 236.22 l
+458.94 245.48 l
+459.38 243.47 l
+459.81 239.99 l
+460.25 244.22 l
+460.69 244.63 l
+461.12 243.10 l
+461.56 249.11 l
+461.99 253.78 l
+462.43 254.68 l
+462.87 255.14 l
+463.30 253.54 l
+463.74 249.40 l
+464.18 240.05 l
+464.61 235.36 l
+465.05 234.62 l
+465.48 231.84 l
+465.92 230.88 l
+466.36 224.73 l
+466.79 226.07 l
+467.23 223.51 l
+467.66 224.49 l
+468.10 228.03 l
+468.54 227.01 l
+468.97 227.96 l
+469.41 231.33 l
+469.84 238.02 l
+470.28 237.58 l
+470.72 235.01 l
+471.15 232.40 l
+471.59 232.63 l
+472.02 237.70 l
+472.46 237.76 l
+472.90 239.67 l
+473.33 245.19 l
+473.77 248.79 l
+474.20 248.84 l
+474.64 249.40 l
+475.08 247.49 l
+475.51 257.50 l
+475.95 264.42 l
+476.39 258.37 l
+476.82 252.84 l
+477.26 256.12 l
+477.69 258.61 l
+478.13 244.86 l
+478.57 242.96 l
+479.00 243.23 l
+479.44 241.70 l
+479.87 246.68 l
+480.31 252.95 l
+480.75 251.55 l
+481.18 251.82 l
+481.62 246.47 l
+482.05 246.87 l
+482.49 250.15 l
+482.93 249.36 l
+483.36 252.99 l
+483.80 250.57 l
+484.23 252.34 l
+484.67 244.95 l
+485.11 249.77 l
+485.54 242.16 l
+485.98 238.88 l
+486.42 236.92 l
+486.85 233.13 l
+487.29 233.02 l
+487.72 231.70 l
+488.16 234.84 l
+488.60 237.78 l
+489.03 247.22 l
+489.47 254.95 l
+489.90 254.82 l
+490.34 249.82 l
+490.78 251.16 l
+491.21 252.00 l
+491.65 240.30 l
+492.08 246.46 l
+492.52 253.01 l
+492.96 241.90 l
+493.39 235.76 l
+493.83 234.61 l
+494.26 236.04 l
+494.70 243.69 l
+495.14 251.33 l
+495.57 255.01 l
+496.01 255.48 l
+496.45 256.89 l
+496.88 256.12 l
+497.32 259.92 l
+497.75 257.76 l
+498.19 261.68 l
+498.63 261.57 l
+499.06 247.14 l
+499.50 241.02 l
+499.93 236.49 l
+500.37 234.14 l
+500.81 233.96 l
+501.24 246.05 l
+501.68 252.00 l
+502.11 256.28 l
+502.55 255.65 l
+502.99 250.04 l
+503.42 250.84 l
+503.86 252.71 l
+504.29 257.40 l
+504.73 263.75 l
+505.17 261.38 l
+505.60 257.94 l
+506.04 258.79 l
+506.47 260.51 l
+506.91 259.96 l
+S
+507.78 262.87 m
+508.22 257.94 l
+508.66 248.05 l
+509.09 238.48 l
+509.53 231.88 l
+509.96 239.19 l
+510.40 242.22 l
+510.84 233.73 l
+511.27 229.28 l
+511.71 237.26 l
+512.14 248.56 l
+512.58 243.12 l
+513.02 245.94 l
+513.45 230.99 l
+513.89 246.12 l
+514.32 254.55 l
+514.76 254.67 l
+515.20 249.22 l
+515.63 241.13 l
+516.07 239.54 l
+516.50 256.20 l
+516.94 261.62 l
+517.38 255.76 l
+517.81 250.40 l
+518.25 258.76 l
+518.69 261.25 l
+519.12 252.85 l
+519.56 255.53 l
+519.99 257.22 l
+520.43 254.47 l
+520.87 249.15 l
+521.30 245.66 l
+521.74 239.83 l
+522.17 255.28 l
+522.61 262.95 l
+523.05 252.35 l
+523.48 241.48 l
+523.92 227.63 l
+524.35 233.24 l
+524.79 229.06 l
+525.23 229.16 l
+525.66 241.32 l
+526.10 248.38 l
+526.53 242.32 l
+526.97 233.87 l
+527.41 231.16 l
+527.84 226.68 l
+528.28 236.35 l
+528.72 237.34 l
+529.15 234.93 l
+529.59 234.12 l
+530.02 230.68 l
+530.46 224.47 l
+530.90 224.14 l
+531.33 219.11 l
+531.77 215.87 l
+532.20 218.13 l
+532.64 218.06 l
+533.08 209.89 l
+533.51 211.61 l
+533.95 216.39 l
+534.38 215.87 l
+534.82 218.01 l
+535.26 223.29 l
+535.69 220.46 l
+536.13 223.86 l
+536.56 226.52 l
+537.00 226.86 l
+537.44 222.50 l
+537.87 224.42 l
+538.31 225.62 l
+538.74 223.99 l
+539.18 223.47 l
+539.62 227.63 l
+540.05 234.59 l
+540.49 233.78 l
+540.93 233.86 l
+541.36 230.57 l
+541.80 225.18 l
+542.23 219.41 l
+542.67 231.80 l
+543.11 234.76 l
+543.54 236.94 l
+543.98 238.29 l
+544.41 240.90 l
+544.85 231.29 l
+545.29 235.54 l
+545.72 232.69 l
+546.16 233.05 l
+546.59 242.11 l
+547.03 246.20 l
+547.47 243.01 l
+547.90 236.24 l
+548.34 239.29 l
+548.77 232.68 l
+549.21 237.34 l
+549.65 221.09 l
+550.08 226.74 l
+550.52 234.26 l
+550.96 240.88 l
+551.39 246.45 l
+551.83 247.06 l
+552.26 240.51 l
+552.70 229.89 l
+553.14 231.00 l
+553.57 228.07 l
+554.01 228.69 l
+554.44 237.74 l
+554.88 245.51 l
+555.32 248.61 l
+555.75 255.20 l
+556.19 258.75 l
+556.62 254.48 l
+557.06 255.10 l
+557.50 250.11 l
+557.93 249.87 l
+558.37 251.74 l
+558.80 254.07 l
+559.24 255.22 l
+559.68 259.62 l
+560.11 262.72 l
+560.55 264.47 l
+560.99 267.90 l
+561.42 271.46 l
+561.86 266.44 l
+562.29 270.62 l
+S
+0.000 1.000 1.000 RG
+75.63 84.47 m
+76.06 84.55 l
+76.50 83.26 l
+76.93 82.89 l
+77.37 82.55 l
+77.81 83.70 l
+78.24 83.64 l
+78.68 86.23 l
+79.12 86.57 l
+79.55 85.41 l
+79.99 85.57 l
+80.42 86.14 l
+80.86 85.68 l
+81.30 87.09 l
+81.73 87.03 l
+82.17 88.15 l
+82.60 87.29 l
+83.04 86.11 l
+83.48 86.34 l
+83.91 85.81 l
+84.35 85.63 l
+84.78 86.71 l
+85.22 84.37 l
+85.66 84.39 l
+86.09 84.48 l
+86.53 85.35 l
+86.96 85.70 l
+87.40 86.70 l
+87.84 87.90 l
+88.27 87.99 l
+88.71 86.13 l
+89.15 81.95 l
+89.58 81.10 l
+90.02 81.76 l
+90.45 82.95 l
+90.89 86.18 l
+91.33 90.18 l
+91.76 88.98 l
+92.20 86.50 l
+92.63 86.86 l
+93.07 87.11 l
+93.51 87.81 l
+93.94 86.91 l
+94.38 85.33 l
+94.81 86.54 l
+95.25 86.72 l
+95.69 88.07 l
+96.12 87.96 l
+96.56 88.45 l
+96.99 88.80 l
+97.43 88.98 l
+97.87 88.16 l
+98.30 89.99 l
+98.74 90.09 l
+99.18 90.22 l
+99.61 91.31 l
+100.05 90.92 l
+100.48 87.49 l
+100.92 86.25 l
+101.36 86.10 l
+101.79 84.17 l
+102.23 84.13 l
+102.66 86.94 l
+103.10 87.24 l
+103.54 86.48 l
+103.97 85.05 l
+104.41 84.62 l
+104.84 84.88 l
+105.28 85.18 l
+105.72 85.78 l
+106.15 87.08 l
+106.59 87.30 l
+107.02 87.04 l
+107.46 87.24 l
+107.90 88.52 l
+108.33 87.91 l
+108.77 87.54 l
+109.20 87.70 l
+109.64 88.40 l
+110.08 89.39 l
+110.51 89.17 l
+110.95 92.38 l
+111.39 92.79 l
+111.82 93.58 l
+112.26 95.04 l
+112.69 95.10 l
+113.13 93.70 l
+113.57 93.94 l
+114.00 93.45 l
+114.44 91.24 l
+114.87 87.69 l
+115.31 88.16 l
+115.75 92.48 l
+116.18 91.44 l
+116.62 90.72 l
+117.05 92.63 l
+117.49 92.04 l
+117.93 92.02 l
+118.36 91.78 l
+118.80 91.20 l
+119.23 91.04 l
+119.67 92.24 l
+120.11 91.60 l
+120.54 90.09 l
+120.98 91.34 l
+121.42 91.10 l
+121.85 90.03 l
+122.29 87.89 l
+122.72 90.29 l
+123.16 90.30 l
+123.60 90.13 l
+124.03 90.90 l
+124.47 91.06 l
+124.90 89.71 l
+125.34 88.92 l
+125.78 88.71 l
+126.21 88.95 l
+126.65 88.71 l
+127.08 89.03 l
+127.52 90.21 l
+127.96 90.06 l
+128.39 89.45 l
+128.83 89.63 l
+129.26 89.75 l
+129.70 89.00 l
+130.14 89.87 l
+130.57 90.34 l
+131.01 89.37 l
+131.45 89.13 l
+131.88 90.47 l
+132.32 89.04 l
+132.75 86.93 l
+133.19 86.47 l
+133.63 86.07 l
+134.06 85.73 l
+134.50 84.87 l
+134.93 81.33 l
+135.37 80.86 l
+135.81 81.70 l
+136.24 82.37 l
+136.68 81.81 l
+137.11 81.59 l
+137.55 81.58 l
+137.99 82.20 l
+138.42 82.25 l
+138.86 82.96 l
+139.29 84.28 l
+139.73 84.28 l
+140.17 84.64 l
+140.60 85.44 l
+141.04 85.03 l
+141.47 83.93 l
+141.91 84.27 l
+142.35 84.20 l
+142.78 83.29 l
+143.22 83.30 l
+143.66 83.63 l
+144.09 83.08 l
+144.53 84.27 l
+144.96 84.39 l
+145.40 84.17 l
+145.84 84.28 l
+146.27 84.35 l
+146.71 84.58 l
+147.14 85.57 l
+147.58 86.26 l
+148.02 86.31 l
+148.45 84.83 l
+148.89 86.36 l
+149.32 87.04 l
+149.76 86.62 l
+150.20 86.91 l
+150.63 86.62 l
+151.07 84.98 l
+151.50 84.50 l
+151.94 85.18 l
+152.38 84.74 l
+152.81 84.04 l
+153.25 82.62 l
+153.69 82.79 l
+154.12 84.02 l
+154.56 85.03 l
+154.99 85.00 l
+155.43 85.76 l
+155.87 86.66 l
+156.30 85.25 l
+156.74 85.22 l
+157.17 85.53 l
+157.61 86.56 l
+158.05 86.94 l
+158.48 87.17 l
+158.92 85.83 l
+159.35 86.21 l
+159.79 86.20 l
+160.23 84.34 l
+160.66 84.32 l
+161.10 84.82 l
+161.53 85.90 l
+161.97 85.75 l
+162.41 86.53 l
+162.84 86.98 l
+163.28 86.03 l
+163.72 85.81 l
+164.15 86.78 l
+164.59 88.27 l
+165.02 85.87 l
+165.46 86.70 l
+165.90 87.44 l
+166.33 87.06 l
+166.77 85.81 l
+167.20 85.46 l
+167.64 86.03 l
+168.08 85.33 l
+168.51 85.81 l
+168.95 85.84 l
+169.38 85.18 l
+169.82 85.76 l
+170.26 87.13 l
+170.69 87.68 l
+171.13 87.75 l
+171.56 88.35 l
+172.00 91.54 l
+172.44 91.45 l
+172.87 88.31 l
+173.31 88.94 l
+173.74 92.39 l
+174.18 95.79 l
+174.62 98.29 l
+175.05 98.00 l
+175.49 96.49 l
+175.93 97.17 l
+176.36 98.81 l
+176.80 97.77 l
+177.23 96.26 l
+177.67 96.97 l
+178.11 97.59 l
+178.54 96.64 l
+178.98 96.84 l
+179.41 97.43 l
+179.85 98.78 l
+180.29 97.46 l
+180.72 95.68 l
+181.16 94.57 l
+181.59 94.13 l
+182.03 96.50 l
+182.47 96.10 l
+182.90 96.69 l
+183.34 96.37 l
+183.77 97.93 l
+184.21 99.00 l
+184.65 96.64 l
+185.08 92.10 l
+185.52 87.40 l
+185.96 89.32 l
+186.39 95.34 l
+186.83 94.71 l
+187.26 95.24 l
+187.70 94.94 l
+188.14 94.91 l
+188.57 95.93 l
+189.01 97.62 l
+189.44 98.93 l
+189.88 99.86 l
+190.32 100.57 l
+190.75 99.37 l
+191.19 97.73 l
+191.62 95.57 l
+192.06 97.56 l
+192.50 98.81 l
+192.93 97.36 l
+193.37 98.60 l
+193.80 98.36 l
+194.24 97.27 l
+194.68 95.66 l
+195.11 94.21 l
+195.55 94.39 l
+195.99 95.51 l
+196.42 98.63 l
+196.86 102.64 l
+197.29 99.74 l
+197.73 99.60 l
+198.17 99.31 l
+198.60 98.91 l
+199.04 99.96 l
+199.47 98.73 l
+199.91 97.36 l
+200.35 98.29 l
+200.78 99.02 l
+201.22 100.05 l
+201.65 100.38 l
+202.09 98.37 l
+202.53 98.51 l
+202.96 100.93 l
+203.40 102.32 l
+203.83 102.77 l
+204.27 97.97 l
+204.71 96.36 l
+205.14 97.82 l
+205.58 98.37 l
+206.01 96.58 l
+206.45 94.81 l
+206.89 94.42 l
+207.32 97.39 l
+207.76 98.04 l
+208.20 98.88 l
+208.63 99.04 l
+209.07 98.49 l
+209.50 97.42 l
+209.94 95.84 l
+210.38 94.46 l
+210.81 95.93 l
+211.25 97.29 l
+211.68 96.89 l
+212.12 94.04 l
+212.56 96.01 l
+212.99 96.88 l
+213.43 95.11 l
+213.86 93.78 l
+214.30 94.91 l
+214.74 95.67 l
+215.17 93.58 l
+215.61 93.75 l
+216.04 93.20 l
+216.48 90.23 l
+216.92 91.38 l
+217.35 92.60 l
+217.79 93.77 l
+218.23 92.80 l
+218.66 92.98 l
+219.10 91.21 l
+219.53 90.83 l
+219.97 92.01 l
+220.41 93.79 l
+220.84 94.68 l
+221.28 95.06 l
+221.71 96.19 l
+222.15 95.99 l
+222.59 95.48 l
+223.02 93.25 l
+223.46 95.30 l
+223.89 98.38 l
+224.33 98.28 l
+224.77 97.23 l
+225.20 97.52 l
+225.64 97.69 l
+226.07 95.93 l
+226.51 93.85 l
+226.95 95.72 l
+227.38 96.82 l
+227.82 96.30 l
+228.26 96.05 l
+228.69 96.16 l
+229.13 99.42 l
+229.56 101.10 l
+230.00 101.18 l
+230.44 98.49 l
+230.87 98.25 l
+231.31 100.52 l
+231.74 102.26 l
+232.18 103.75 l
+232.62 107.83 l
+233.05 106.69 l
+233.49 103.92 l
+233.92 99.66 l
+234.36 99.70 l
+234.80 100.51 l
+235.23 101.46 l
+235.67 102.00 l
+236.10 102.04 l
+236.54 99.37 l
+236.98 102.57 l
+237.41 101.99 l
+237.85 102.46 l
+238.28 103.88 l
+238.72 103.02 l
+239.16 102.77 l
+239.59 102.82 l
+240.03 102.54 l
+240.47 102.37 l
+240.90 102.08 l
+241.34 105.49 l
+241.77 104.57 l
+242.21 102.36 l
+242.65 101.22 l
+243.08 102.12 l
+243.52 102.03 l
+243.95 102.01 l
+244.39 100.57 l
+244.83 99.28 l
+245.26 101.54 l
+245.70 102.79 l
+246.13 100.98 l
+246.57 102.53 l
+247.01 102.70 l
+247.44 100.92 l
+247.88 100.49 l
+248.31 100.42 l
+248.75 102.21 l
+249.19 103.08 l
+249.62 102.27 l
+250.06 101.40 l
+250.50 102.07 l
+250.93 101.68 l
+251.37 101.59 l
+251.80 98.37 l
+252.24 98.44 l
+252.68 95.61 l
+253.11 96.24 l
+253.55 96.92 l
+253.98 96.34 l
+254.42 97.48 l
+254.86 98.16 l
+255.29 98.82 l
+255.73 100.08 l
+256.16 100.71 l
+256.60 101.55 l
+257.04 101.58 l
+257.47 100.51 l
+257.91 99.43 l
+258.34 100.08 l
+258.78 99.59 l
+259.22 100.44 l
+259.65 100.82 l
+260.09 99.81 l
+260.53 102.67 l
+260.96 102.03 l
+261.40 101.41 l
+261.83 102.03 l
+262.27 101.60 l
+262.71 98.96 l
+263.14 97.67 l
+263.58 99.83 l
+264.01 99.20 l
+264.45 99.30 l
+264.89 99.56 l
+265.32 99.85 l
+265.76 99.65 l
+266.19 105.37 l
+266.63 111.84 l
+267.07 111.64 l
+267.50 110.06 l
+267.94 100.97 l
+268.37 99.13 l
+268.81 98.15 l
+269.25 99.78 l
+269.68 99.75 l
+270.12 98.46 l
+270.55 101.51 l
+270.99 99.42 l
+271.43 97.25 l
+271.86 97.50 l
+272.30 96.72 l
+272.74 96.12 l
+273.17 96.38 l
+273.61 94.95 l
+274.04 97.59 l
+274.48 98.24 l
+274.92 99.00 l
+275.35 100.94 l
+275.79 107.21 l
+276.22 109.18 l
+276.66 103.00 l
+277.10 95.97 l
+277.53 98.52 l
+277.97 101.37 l
+278.40 101.57 l
+278.84 102.29 l
+279.28 104.83 l
+279.71 102.30 l
+280.15 102.19 l
+280.58 94.43 l
+281.02 91.80 l
+281.46 94.66 l
+281.89 99.99 l
+282.33 102.10 l
+282.77 100.49 l
+283.20 99.97 l
+283.64 102.25 l
+284.07 99.15 l
+284.51 97.36 l
+284.95 95.97 l
+285.38 94.37 l
+285.82 92.29 l
+286.25 93.02 l
+286.69 92.05 l
+287.13 92.40 l
+287.56 91.98 l
+288.00 93.66 l
+288.43 88.20 l
+288.87 86.78 l
+289.31 89.49 l
+289.74 90.66 l
+290.18 90.02 l
+290.61 90.52 l
+291.05 90.11 l
+291.49 92.26 l
+291.92 90.80 l
+292.36 91.75 l
+292.80 91.52 l
+293.23 89.80 l
+293.67 90.09 l
+294.10 90.31 l
+294.54 93.77 l
+294.98 92.13 l
+295.41 92.53 l
+295.85 92.01 l
+296.28 89.94 l
+296.72 91.64 l
+297.16 90.44 l
+297.59 91.82 l
+298.03 90.49 l
+298.46 93.04 l
+298.90 95.80 l
+299.34 93.49 l
+299.77 91.93 l
+300.21 91.56 l
+300.64 92.42 l
+301.08 90.26 l
+301.52 91.98 l
+301.95 89.43 l
+302.39 89.26 l
+302.82 88.88 l
+303.26 89.94 l
+303.70 91.79 l
+304.13 90.67 l
+304.57 96.66 l
+305.01 96.38 l
+305.44 92.94 l
+305.88 92.10 l
+306.31 94.62 l
+306.75 95.17 l
+307.19 92.38 l
+307.62 92.36 l
+308.06 94.74 l
+308.49 95.32 l
+308.93 94.26 l
+309.37 96.28 l
+309.80 97.84 l
+310.24 99.26 l
+310.67 99.60 l
+311.11 99.09 l
+311.55 95.01 l
+311.98 95.93 l
+312.42 96.31 l
+312.85 97.03 l
+313.29 92.64 l
+313.73 92.43 l
+314.16 94.25 l
+314.60 93.61 l
+315.04 95.47 l
+315.47 97.11 l
+315.91 102.56 l
+316.34 97.20 l
+316.78 93.95 l
+317.22 94.81 l
+317.65 95.92 l
+318.09 96.06 l
+318.52 95.40 l
+318.96 97.36 l
+319.40 93.97 l
+319.83 95.51 l
+320.27 94.30 l
+320.70 93.60 l
+321.14 96.13 l
+321.58 94.70 l
+322.01 93.49 l
+322.45 92.04 l
+322.88 94.97 l
+323.32 96.79 l
+323.76 97.60 l
+324.19 96.68 l
+324.63 98.38 l
+325.07 96.90 l
+325.50 98.23 l
+325.94 100.03 l
+326.37 101.75 l
+326.81 101.71 l
+327.25 99.97 l
+327.68 96.68 l
+328.12 99.66 l
+328.55 100.34 l
+328.99 101.39 l
+329.43 100.24 l
+329.86 99.13 l
+330.30 99.18 l
+330.73 97.82 l
+331.17 99.73 l
+331.61 98.21 l
+332.04 99.65 l
+332.48 100.38 l
+332.91 102.02 l
+333.35 103.12 l
+333.79 101.37 l
+334.22 102.94 l
+334.66 101.53 l
+335.10 103.95 l
+335.53 103.73 l
+335.97 104.32 l
+336.40 103.94 l
+336.84 96.95 l
+337.28 96.99 l
+337.71 96.42 l
+338.15 96.69 l
+338.58 98.32 l
+339.02 97.14 l
+339.46 97.37 l
+339.89 97.60 l
+340.33 98.79 l
+340.76 97.74 l
+341.20 93.74 l
+341.64 92.20 l
+342.07 92.41 l
+342.51 96.23 l
+342.94 98.95 l
+343.38 100.45 l
+343.82 101.36 l
+344.25 100.59 l
+344.69 101.35 l
+345.12 97.38 l
+345.56 99.02 l
+346.00 97.75 l
+346.43 96.57 l
+346.87 99.87 l
+347.31 102.50 l
+347.74 103.52 l
+348.18 102.97 l
+348.61 104.96 l
+349.05 104.09 l
+349.49 108.83 l
+349.92 109.39 l
+350.36 107.29 l
+350.79 106.47 l
+351.23 106.29 l
+351.67 106.79 l
+352.10 106.76 l
+352.54 109.74 l
+352.97 107.03 l
+353.41 104.12 l
+353.85 93.06 l
+354.28 98.03 l
+354.72 92.61 l
+355.15 93.85 l
+355.59 100.35 l
+356.03 110.11 l
+356.46 112.70 l
+356.90 110.05 l
+357.34 112.08 l
+357.77 115.60 l
+358.21 114.81 l
+358.64 111.00 l
+359.08 109.18 l
+359.52 110.61 l
+359.95 112.71 l
+360.39 113.95 l
+360.82 114.50 l
+361.26 114.54 l
+361.70 111.45 l
+362.13 112.47 l
+362.57 117.10 l
+363.00 114.99 l
+363.44 105.61 l
+363.88 107.59 l
+364.31 108.13 l
+364.75 109.19 l
+365.18 111.13 l
+365.62 111.71 l
+366.06 114.42 l
+366.49 117.04 l
+366.93 117.88 l
+367.37 119.37 l
+367.80 119.31 l
+368.24 120.95 l
+368.67 121.45 l
+369.11 118.71 l
+369.55 118.69 l
+369.98 118.72 l
+370.42 122.54 l
+370.85 122.22 l
+371.29 123.36 l
+371.73 123.30 l
+372.16 122.34 l
+372.60 121.01 l
+373.03 117.36 l
+373.47 115.84 l
+373.91 118.04 l
+374.34 122.08 l
+374.78 126.02 l
+375.21 127.99 l
+375.65 127.18 l
+376.09 127.56 l
+376.52 145.22 l
+376.96 153.24 l
+377.39 146.61 l
+377.83 156.21 l
+378.27 162.71 l
+378.70 152.32 l
+379.14 145.73 l
+379.58 145.52 l
+380.01 155.21 l
+380.45 141.00 l
+380.88 130.28 l
+381.32 148.82 l
+381.76 153.45 l
+382.19 157.78 l
+382.63 163.56 l
+383.06 153.46 l
+383.50 130.97 l
+383.94 110.90 l
+384.37 112.58 l
+384.81 116.15 l
+385.24 116.33 l
+385.68 122.98 l
+386.12 124.24 l
+386.55 123.76 l
+386.99 122.27 l
+387.42 120.32 l
+387.86 123.07 l
+388.30 125.61 l
+388.73 129.36 l
+389.17 129.27 l
+389.61 127.33 l
+390.04 124.70 l
+390.48 124.33 l
+390.91 124.04 l
+391.35 124.49 l
+391.79 115.49 l
+392.22 104.96 l
+392.66 102.21 l
+393.09 109.14 l
+393.53 112.89 l
+393.97 114.95 l
+394.40 115.25 l
+394.84 115.56 l
+395.27 115.20 l
+395.71 109.15 l
+396.15 105.79 l
+396.58 107.13 l
+397.02 111.86 l
+397.45 118.02 l
+397.89 121.73 l
+398.33 123.63 l
+398.76 123.84 l
+399.20 124.90 l
+399.64 125.05 l
+400.07 123.96 l
+400.51 118.65 l
+400.94 118.84 l
+401.38 121.49 l
+401.82 118.76 l
+402.25 117.47 l
+402.69 121.10 l
+403.12 127.49 l
+403.56 128.90 l
+404.00 130.82 l
+404.43 130.06 l
+404.87 128.45 l
+405.30 126.68 l
+405.74 126.05 l
+406.18 114.14 l
+406.61 119.04 l
+407.05 121.92 l
+407.48 122.22 l
+407.92 118.87 l
+408.36 123.05 l
+408.79 127.41 l
+409.23 128.14 l
+409.66 129.65 l
+410.10 131.60 l
+410.54 127.64 l
+410.97 128.25 l
+411.41 128.77 l
+411.85 123.41 l
+412.28 109.53 l
+412.72 114.02 l
+413.15 118.09 l
+413.59 121.69 l
+414.03 117.21 l
+414.46 110.78 l
+414.90 106.85 l
+415.33 108.05 l
+415.77 110.72 l
+416.21 113.53 l
+416.64 112.45 l
+417.08 110.76 l
+417.51 115.05 l
+417.95 118.34 l
+418.39 117.00 l
+418.82 115.69 l
+419.26 115.69 l
+419.69 112.32 l
+420.13 107.00 l
+420.57 108.22 l
+421.00 109.37 l
+421.44 108.57 l
+421.88 107.55 l
+422.31 105.27 l
+422.75 108.49 l
+423.18 109.67 l
+423.62 104.82 l
+424.06 104.51 l
+424.49 115.02 l
+424.93 123.53 l
+425.36 123.47 l
+425.80 122.50 l
+426.24 127.47 l
+426.67 124.72 l
+427.11 124.23 l
+427.54 122.93 l
+427.98 121.95 l
+428.42 121.60 l
+428.85 122.81 l
+429.29 127.59 l
+429.72 128.96 l
+430.16 127.26 l
+430.60 125.75 l
+431.03 126.66 l
+431.47 127.43 l
+431.91 127.85 l
+432.34 119.06 l
+432.78 116.55 l
+433.21 110.16 l
+433.65 111.95 l
+434.09 112.78 l
+434.52 115.10 l
+434.96 116.81 l
+435.39 110.14 l
+435.83 107.20 l
+436.27 107.73 l
+436.70 111.08 l
+437.14 109.65 l
+437.57 112.17 l
+438.01 115.28 l
+438.45 116.51 l
+438.88 114.26 l
+439.32 111.59 l
+439.75 111.26 l
+440.19 111.87 l
+440.63 112.95 l
+441.06 109.14 l
+441.50 105.87 l
+441.93 108.75 l
+442.37 114.19 l
+442.81 116.24 l
+443.24 118.97 l
+443.68 117.91 l
+444.12 120.07 l
+444.55 119.16 l
+444.99 106.01 l
+445.42 109.96 l
+445.86 114.47 l
+446.30 116.50 l
+446.73 118.02 l
+447.17 117.23 l
+447.60 114.79 l
+448.04 113.57 l
+448.48 115.39 l
+448.91 117.86 l
+449.35 119.25 l
+449.78 120.00 l
+450.22 121.47 l
+450.66 115.97 l
+451.09 117.43 l
+451.53 121.02 l
+451.96 119.39 l
+452.40 119.79 l
+452.84 122.64 l
+453.27 123.00 l
+453.71 116.91 l
+454.15 116.28 l
+454.58 121.52 l
+455.02 123.63 l
+455.45 125.65 l
+455.89 125.25 l
+456.33 120.15 l
+456.76 111.23 l
+457.20 112.21 l
+457.63 119.12 l
+458.07 121.77 l
+458.51 122.72 l
+458.94 122.46 l
+459.38 121.32 l
+459.81 119.92 l
+460.25 126.61 l
+460.69 126.91 l
+461.12 121.81 l
+461.56 125.56 l
+461.99 128.99 l
+462.43 128.30 l
+462.87 126.35 l
+463.30 122.09 l
+463.74 130.84 l
+464.18 131.12 l
+464.61 129.38 l
+465.05 129.35 l
+465.48 129.08 l
+465.92 130.96 l
+466.36 116.76 l
+466.79 115.21 l
+467.23 125.64 l
+467.66 127.34 l
+468.10 121.39 l
+468.54 124.71 l
+468.97 126.01 l
+469.41 117.49 l
+469.84 114.29 l
+470.28 117.98 l
+470.72 123.64 l
+471.15 124.28 l
+471.59 119.83 l
+472.02 117.83 l
+472.46 117.20 l
+472.90 123.39 l
+473.33 127.92 l
+473.77 131.02 l
+474.20 132.15 l
+474.64 133.41 l
+475.08 135.90 l
+475.51 140.68 l
+475.95 143.50 l
+476.39 126.90 l
+476.82 117.45 l
+477.26 127.56 l
+477.69 132.34 l
+478.13 123.02 l
+478.57 126.75 l
+479.00 133.53 l
+479.44 139.79 l
+479.87 145.08 l
+480.31 139.66 l
+480.75 135.12 l
+481.18 139.57 l
+481.62 138.31 l
+482.05 139.42 l
+482.49 136.92 l
+482.93 138.71 l
+483.36 144.84 l
+483.80 147.06 l
+484.23 142.78 l
+484.67 138.23 l
+485.11 144.08 l
+485.54 150.53 l
+485.98 151.85 l
+486.42 153.40 l
+486.85 154.69 l
+487.29 156.46 l
+487.72 156.87 l
+488.16 156.91 l
+488.60 150.45 l
+489.03 149.44 l
+489.47 155.01 l
+489.90 156.60 l
+490.34 150.66 l
+490.78 150.44 l
+491.21 153.06 l
+491.65 148.71 l
+492.08 147.40 l
+492.52 150.92 l
+492.96 152.71 l
+493.39 148.75 l
+493.83 150.55 l
+494.26 149.74 l
+494.70 151.71 l
+495.14 153.35 l
+495.57 154.84 l
+496.01 155.97 l
+496.45 155.41 l
+496.88 156.40 l
+497.32 162.09 l
+497.75 163.29 l
+498.19 158.44 l
+498.63 150.46 l
+499.06 148.52 l
+499.50 153.67 l
+499.93 153.02 l
+500.37 155.08 l
+500.81 159.74 l
+501.24 162.96 l
+501.68 161.64 l
+502.11 158.13 l
+502.55 156.79 l
+502.99 157.38 l
+503.42 161.09 l
+503.86 157.67 l
+504.29 162.83 l
+504.73 160.26 l
+505.17 154.15 l
+505.60 149.96 l
+506.04 156.94 l
+506.47 164.65 l
+506.91 166.88 l
+S
+507.78 166.78 m
+508.22 166.27 l
+508.66 163.34 l
+509.09 165.89 l
+509.53 165.95 l
+509.96 165.59 l
+510.40 160.24 l
+510.84 167.29 l
+511.27 162.60 l
+511.71 159.07 l
+512.14 161.01 l
+512.58 163.63 l
+513.02 156.69 l
+513.45 136.56 l
+513.89 135.34 l
+514.32 160.83 l
+514.76 163.31 l
+515.20 162.69 l
+515.63 162.45 l
+516.07 162.40 l
+516.50 165.85 l
+516.94 168.26 l
+517.38 163.66 l
+517.81 164.54 l
+518.25 170.20 l
+518.69 173.58 l
+519.12 172.76 l
+519.56 175.52 l
+519.99 176.86 l
+520.43 178.53 l
+520.87 175.96 l
+521.30 171.28 l
+521.74 172.38 l
+522.17 173.91 l
+522.61 178.55 l
+523.05 184.41 l
+523.48 172.60 l
+523.92 174.55 l
+524.35 177.22 l
+524.79 171.03 l
+525.23 164.41 l
+525.66 169.70 l
+526.10 171.18 l
+526.53 162.63 l
+526.97 161.82 l
+527.41 165.66 l
+527.84 165.86 l
+528.28 165.68 l
+528.72 163.65 l
+529.15 160.78 l
+529.59 149.81 l
+530.02 155.29 l
+530.46 155.67 l
+530.90 150.00 l
+531.33 152.58 l
+531.77 154.14 l
+532.20 156.11 l
+532.64 155.73 l
+533.08 156.21 l
+533.51 146.77 l
+533.95 142.01 l
+534.38 145.68 l
+534.82 150.34 l
+535.26 151.74 l
+535.69 142.78 l
+536.13 155.14 l
+536.56 153.96 l
+537.00 152.83 l
+537.44 155.79 l
+537.87 157.41 l
+538.31 160.32 l
+538.74 152.89 l
+539.18 151.44 l
+539.62 147.58 l
+540.05 163.51 l
+540.49 171.44 l
+540.93 173.38 l
+541.36 171.89 l
+541.80 160.64 l
+542.23 157.30 l
+542.67 159.11 l
+543.11 156.29 l
+543.54 155.41 l
+543.98 157.99 l
+544.41 163.65 l
+544.85 160.08 l
+545.29 160.95 l
+545.72 160.11 l
+546.16 156.91 l
+546.59 160.50 l
+547.03 163.87 l
+547.47 164.46 l
+547.90 161.04 l
+548.34 157.92 l
+548.77 156.12 l
+549.21 157.75 l
+549.65 158.93 l
+550.08 159.01 l
+550.52 153.72 l
+550.96 151.27 l
+551.39 147.49 l
+551.83 158.74 l
+552.26 161.28 l
+552.70 159.63 l
+553.14 155.04 l
+553.57 157.50 l
+554.01 152.99 l
+554.44 148.32 l
+554.88 142.24 l
+555.32 143.48 l
+555.75 144.63 l
+556.19 152.35 l
+556.62 156.90 l
+557.06 152.15 l
+557.50 151.82 l
+557.93 155.53 l
+558.37 154.85 l
+558.80 151.05 l
+559.24 152.53 l
+559.68 158.90 l
+560.11 149.78 l
+560.55 141.02 l
+560.99 142.21 l
+561.42 142.29 l
+561.86 152.44 l
+562.29 159.32 l
+S
+0.000 0.392 0.000 RG
+75.63 72.59 m
+76.06 72.58 l
+76.50 72.56 l
+76.93 72.60 l
+77.37 72.69 l
+77.81 72.84 l
+78.24 72.84 l
+78.68 72.93 l
+79.12 72.77 l
+79.55 72.71 l
+79.99 72.56 l
+80.42 72.58 l
+80.86 72.68 l
+81.30 72.68 l
+81.73 72.96 l
+82.17 73.87 l
+82.60 72.93 l
+83.04 72.90 l
+83.48 72.74 l
+83.91 72.67 l
+84.35 72.71 l
+84.78 72.72 l
+85.22 72.65 l
+85.66 72.53 l
+86.09 72.62 l
+86.53 72.72 l
+86.96 72.69 l
+87.40 72.80 l
+87.84 72.83 l
+88.27 72.73 l
+88.71 72.74 l
+89.15 72.52 l
+89.58 72.58 l
+90.02 72.62 l
+90.45 72.67 l
+90.89 72.69 l
+91.33 72.65 l
+91.76 72.63 l
+92.20 72.75 l
+92.63 72.96 l
+93.07 72.99 l
+93.51 73.10 l
+93.94 73.07 l
+94.38 73.09 l
+94.81 73.09 l
+95.25 73.00 l
+95.69 72.94 l
+96.12 73.02 l
+96.56 72.95 l
+96.99 73.18 l
+97.43 73.28 l
+97.87 73.10 l
+98.30 73.09 l
+98.74 72.86 l
+99.18 73.08 l
+99.61 73.07 l
+100.05 73.43 l
+100.48 73.57 l
+100.92 73.51 l
+101.36 73.27 l
+101.79 73.20 l
+102.23 73.26 l
+102.66 73.39 l
+103.10 73.34 l
+103.54 73.24 l
+103.97 73.53 l
+104.41 73.55 l
+104.84 73.38 l
+105.28 73.47 l
+105.72 73.38 l
+106.15 73.21 l
+106.59 73.26 l
+107.02 73.16 l
+107.46 73.10 l
+107.90 73.07 l
+108.33 73.07 l
+108.77 73.11 l
+109.20 72.96 l
+109.64 72.93 l
+110.08 72.82 l
+110.51 72.77 l
+110.95 72.80 l
+111.39 72.79 l
+111.82 72.76 l
+112.26 72.83 l
+112.69 72.95 l
+113.13 72.93 l
+113.57 72.96 l
+114.00 73.00 l
+114.44 72.90 l
+114.87 72.98 l
+115.31 72.92 l
+115.75 72.86 l
+116.18 72.87 l
+116.62 73.03 l
+117.05 73.27 l
+117.49 73.21 l
+117.93 73.07 l
+118.36 73.01 l
+118.80 73.14 l
+119.23 73.11 l
+119.67 72.87 l
+120.11 72.82 l
+120.54 72.88 l
+120.98 73.01 l
+121.42 73.00 l
+121.85 72.86 l
+122.29 72.81 l
+122.72 72.80 l
+123.16 72.83 l
+123.60 72.83 l
+124.03 72.86 l
+124.47 72.83 l
+124.90 72.77 l
+125.34 72.77 l
+125.78 72.79 l
+126.21 72.96 l
+126.65 72.94 l
+127.08 72.80 l
+127.52 72.85 l
+127.96 72.65 l
+128.39 72.77 l
+128.83 72.86 l
+129.26 72.97 l
+129.70 72.95 l
+130.14 73.10 l
+130.57 73.58 l
+131.01 74.15 l
+131.45 75.52 l
+131.88 76.07 l
+132.32 77.05 l
+132.75 78.44 l
+133.19 76.92 l
+133.63 76.83 l
+134.06 78.79 l
+134.50 79.00 l
+134.93 78.95 l
+135.37 78.81 l
+135.81 78.58 l
+136.24 78.64 l
+136.68 78.63 l
+137.11 78.85 l
+137.55 80.64 l
+137.99 81.14 l
+138.42 82.41 l
+138.86 84.46 l
+139.29 84.80 l
+139.73 85.36 l
+140.17 85.33 l
+140.60 83.69 l
+141.04 83.48 l
+141.47 80.60 l
+141.91 79.77 l
+142.35 81.02 l
+142.78 81.81 l
+143.22 82.38 l
+143.66 83.08 l
+144.09 83.56 l
+144.53 85.53 l
+144.96 86.21 l
+145.40 84.70 l
+145.84 84.66 l
+146.27 85.76 l
+146.71 83.28 l
+147.14 83.76 l
+147.58 85.87 l
+148.02 85.88 l
+148.45 85.41 l
+148.89 86.41 l
+149.32 84.20 l
+149.76 80.93 l
+150.20 81.21 l
+150.63 83.02 l
+151.07 84.94 l
+151.50 86.68 l
+151.94 81.67 l
+152.38 79.83 l
+152.81 80.90 l
+153.25 80.81 l
+153.69 82.72 l
+154.12 83.97 l
+154.56 84.56 l
+154.99 85.96 l
+155.43 88.35 l
+155.87 90.13 l
+156.30 88.41 l
+156.74 85.86 l
+157.17 87.38 l
+157.61 89.37 l
+158.05 89.42 l
+158.48 89.34 l
+158.92 90.46 l
+159.35 91.37 l
+159.79 92.88 l
+160.23 91.05 l
+160.66 87.20 l
+161.10 87.30 l
+161.53 89.07 l
+161.97 90.91 l
+162.41 88.49 l
+162.84 89.51 l
+163.28 88.85 l
+163.72 89.24 l
+164.15 89.69 l
+164.59 89.04 l
+165.02 85.75 l
+165.46 89.78 l
+165.90 93.18 l
+166.33 93.27 l
+166.77 92.55 l
+167.20 93.04 l
+167.64 92.56 l
+168.08 89.20 l
+168.51 86.05 l
+168.95 85.23 l
+169.38 84.73 l
+169.82 85.24 l
+170.26 87.28 l
+170.69 88.50 l
+171.13 88.65 l
+171.56 89.35 l
+172.00 90.96 l
+172.44 89.31 l
+172.87 86.97 l
+173.31 85.56 l
+173.74 85.29 l
+174.18 86.61 l
+174.62 87.61 l
+175.05 88.31 l
+175.49 89.31 l
+175.93 92.02 l
+176.36 94.02 l
+176.80 93.28 l
+177.23 94.42 l
+177.67 97.21 l
+178.11 96.92 l
+178.54 94.91 l
+178.98 95.69 l
+179.41 96.35 l
+179.85 96.75 l
+180.29 96.80 l
+180.72 93.50 l
+181.16 89.73 l
+181.59 90.31 l
+182.03 91.09 l
+182.47 86.96 l
+182.90 87.25 l
+183.34 89.57 l
+183.77 92.13 l
+184.21 94.38 l
+184.65 93.45 l
+185.08 93.67 l
+185.52 93.50 l
+185.96 90.65 l
+186.39 89.72 l
+186.83 89.37 l
+187.26 88.50 l
+187.70 88.87 l
+188.14 87.41 l
+188.57 86.85 l
+189.01 87.93 l
+189.44 86.55 l
+189.88 87.48 l
+190.32 87.35 l
+190.75 88.26 l
+191.19 89.33 l
+191.62 85.58 l
+192.06 84.06 l
+192.50 85.21 l
+192.93 86.20 l
+193.37 87.60 l
+193.80 89.47 l
+194.24 89.99 l
+194.68 89.04 l
+195.11 86.57 l
+195.55 84.10 l
+195.99 84.54 l
+196.42 85.73 l
+196.86 86.07 l
+197.29 86.91 l
+197.73 87.62 l
+198.17 87.09 l
+198.60 86.98 l
+199.04 87.81 l
+199.47 88.17 l
+199.91 87.86 l
+200.35 87.77 l
+200.78 88.25 l
+201.22 86.33 l
+201.65 86.02 l
+202.09 85.25 l
+202.53 85.07 l
+202.96 85.08 l
+203.40 85.96 l
+203.83 85.70 l
+204.27 85.26 l
+204.71 84.96 l
+205.14 85.16 l
+205.58 85.14 l
+206.01 84.81 l
+206.45 85.19 l
+206.89 82.39 l
+207.32 79.84 l
+207.76 80.22 l
+208.20 81.66 l
+208.63 82.43 l
+209.07 81.64 l
+209.50 81.36 l
+209.94 81.43 l
+210.38 82.08 l
+210.81 82.87 l
+211.25 83.40 l
+211.68 83.70 l
+212.12 84.27 l
+212.56 86.10 l
+212.99 85.63 l
+213.43 83.24 l
+213.86 83.39 l
+214.30 83.69 l
+214.74 83.42 l
+215.17 82.74 l
+215.61 82.88 l
+216.04 82.82 l
+216.48 83.18 l
+216.92 82.76 l
+217.35 82.92 l
+217.79 82.71 l
+218.23 81.59 l
+218.66 80.76 l
+219.10 80.71 l
+219.53 82.65 l
+219.97 82.21 l
+220.41 80.96 l
+220.84 80.76 l
+221.28 80.83 l
+221.71 81.72 l
+222.15 82.35 l
+222.59 82.48 l
+223.02 81.49 l
+223.46 81.11 l
+223.89 82.15 l
+224.33 82.02 l
+224.77 81.87 l
+225.20 82.89 l
+225.64 84.15 l
+226.07 84.04 l
+226.51 84.13 l
+226.95 83.68 l
+227.38 83.08 l
+227.82 82.00 l
+228.26 80.62 l
+228.69 80.47 l
+229.13 80.87 l
+229.56 81.72 l
+230.00 82.27 l
+230.44 81.85 l
+230.87 82.26 l
+231.31 82.25 l
+231.74 82.79 l
+232.18 83.82 l
+232.62 84.19 l
+233.05 83.21 l
+233.49 82.48 l
+233.92 81.95 l
+234.36 82.18 l
+234.80 82.21 l
+235.23 82.25 l
+235.67 82.14 l
+236.10 82.05 l
+236.54 80.97 l
+236.98 80.73 l
+237.41 80.95 l
+237.85 80.31 l
+238.28 79.47 l
+238.72 79.85 l
+239.16 79.09 l
+239.59 79.19 l
+240.03 79.70 l
+240.47 80.72 l
+240.90 81.36 l
+241.34 81.28 l
+241.77 81.63 l
+242.21 82.82 l
+242.65 84.90 l
+243.08 85.52 l
+243.52 86.46 l
+243.95 87.01 l
+244.39 85.84 l
+244.83 86.71 l
+245.26 87.27 l
+245.70 87.92 l
+246.13 88.52 l
+246.57 90.97 l
+247.01 90.69 l
+247.44 87.43 l
+247.88 89.82 l
+248.31 91.28 l
+248.75 90.92 l
+249.19 91.32 l
+249.62 92.43 l
+250.06 94.07 l
+250.50 94.24 l
+250.93 93.14 l
+251.37 93.16 l
+251.80 93.81 l
+252.24 94.20 l
+252.68 95.93 l
+253.11 96.81 l
+253.55 96.73 l
+253.98 93.27 l
+254.42 94.15 l
+254.86 93.58 l
+255.29 93.16 l
+255.73 91.92 l
+256.16 91.95 l
+256.60 92.86 l
+257.04 93.62 l
+257.47 93.30 l
+257.91 93.59 l
+258.34 93.66 l
+258.78 92.47 l
+259.22 92.08 l
+259.65 91.67 l
+260.09 92.25 l
+260.53 92.93 l
+260.96 92.09 l
+261.40 92.97 l
+261.83 93.12 l
+262.27 92.26 l
+262.71 92.13 l
+263.14 93.82 l
+263.58 95.27 l
+264.01 95.64 l
+264.45 94.99 l
+264.89 94.44 l
+265.32 93.76 l
+265.76 94.90 l
+266.19 98.34 l
+266.63 100.31 l
+267.07 100.97 l
+267.50 99.11 l
+267.94 98.53 l
+268.37 98.37 l
+268.81 96.73 l
+269.25 96.38 l
+269.68 97.74 l
+270.12 97.35 l
+270.55 95.89 l
+270.99 94.75 l
+271.43 94.61 l
+271.86 96.49 l
+272.30 99.31 l
+272.74 103.48 l
+273.17 104.03 l
+273.61 100.66 l
+274.04 99.48 l
+274.48 101.59 l
+274.92 102.71 l
+275.35 100.18 l
+275.79 102.49 l
+276.22 100.59 l
+276.66 94.98 l
+277.10 92.19 l
+277.53 94.12 l
+277.97 94.74 l
+278.40 91.85 l
+278.84 93.66 l
+279.28 94.86 l
+279.71 93.36 l
+280.15 94.39 l
+280.58 92.42 l
+281.02 90.30 l
+281.46 91.47 l
+281.89 93.81 l
+282.33 95.29 l
+282.77 95.29 l
+283.20 94.25 l
+283.64 94.24 l
+284.07 95.80 l
+284.51 95.53 l
+284.95 96.65 l
+285.38 96.21 l
+285.82 97.59 l
+286.25 96.96 l
+286.69 96.31 l
+287.13 92.92 l
+287.56 93.82 l
+288.00 96.56 l
+288.43 95.25 l
+288.87 96.55 l
+289.31 94.56 l
+289.74 95.40 l
+290.18 96.58 l
+290.61 97.97 l
+291.05 98.79 l
+291.49 96.26 l
+291.92 93.41 l
+292.36 93.22 l
+292.80 92.64 l
+293.23 92.89 l
+293.67 94.33 l
+294.10 92.33 l
+294.54 92.18 l
+294.98 93.34 l
+295.41 91.36 l
+295.85 92.41 l
+296.28 94.90 l
+296.72 95.63 l
+297.16 96.46 l
+297.59 96.35 l
+298.03 97.16 l
+298.46 95.99 l
+298.90 98.32 l
+299.34 99.52 l
+299.77 98.92 l
+300.21 99.88 l
+300.64 99.30 l
+301.08 98.38 l
+301.52 97.98 l
+301.95 95.84 l
+302.39 97.84 l
+302.82 99.30 l
+303.26 99.47 l
+303.70 96.29 l
+304.13 97.84 l
+304.57 99.13 l
+305.01 100.68 l
+305.44 99.06 l
+305.88 97.01 l
+306.31 97.69 l
+306.75 96.28 l
+307.19 94.93 l
+307.62 96.04 l
+308.06 98.86 l
+308.49 98.22 l
+308.93 97.45 l
+309.37 97.05 l
+309.80 98.87 l
+310.24 101.07 l
+310.67 102.01 l
+311.11 100.82 l
+311.55 100.17 l
+311.98 99.29 l
+312.42 99.99 l
+312.85 97.17 l
+313.29 95.85 l
+313.73 100.71 l
+314.16 103.60 l
+314.60 100.83 l
+315.04 98.69 l
+315.47 99.83 l
+315.91 99.58 l
+316.34 98.10 l
+316.78 99.48 l
+317.22 97.38 l
+317.65 98.55 l
+318.09 100.72 l
+318.52 100.93 l
+318.96 101.33 l
+319.40 103.54 l
+319.83 102.80 l
+320.27 102.13 l
+320.70 104.48 l
+321.14 100.69 l
+321.58 97.97 l
+322.01 98.83 l
+322.45 98.31 l
+322.88 98.93 l
+323.32 95.38 l
+323.76 100.93 l
+324.19 103.04 l
+324.63 105.13 l
+325.07 103.63 l
+325.50 106.99 l
+325.94 108.08 l
+326.37 109.51 l
+326.81 106.09 l
+327.25 94.15 l
+327.68 92.56 l
+328.12 92.68 l
+328.55 95.17 l
+328.99 97.41 l
+329.43 96.74 l
+329.86 97.51 l
+330.30 96.60 l
+330.73 97.58 l
+331.17 98.51 l
+331.61 101.22 l
+332.04 102.95 l
+332.48 102.63 l
+332.91 104.00 l
+333.35 102.15 l
+333.79 103.83 l
+334.22 101.77 l
+334.66 100.42 l
+335.10 99.21 l
+335.53 100.00 l
+335.97 101.72 l
+336.40 101.79 l
+336.84 98.76 l
+337.28 97.26 l
+337.71 99.39 l
+338.15 102.35 l
+338.58 102.01 l
+339.02 102.13 l
+339.46 105.38 l
+339.89 106.74 l
+340.33 110.23 l
+340.76 110.00 l
+341.20 110.72 l
+341.64 108.36 l
+342.07 106.58 l
+342.51 105.43 l
+342.94 107.51 l
+343.38 103.15 l
+343.82 106.61 l
+344.25 107.99 l
+344.69 106.55 l
+345.12 108.73 l
+345.56 114.03 l
+346.00 115.86 l
+346.43 111.96 l
+346.87 115.12 l
+347.31 118.46 l
+347.74 119.75 l
+348.18 122.30 l
+348.61 118.59 l
+349.05 120.90 l
+349.49 122.08 l
+349.92 123.42 l
+350.36 124.80 l
+350.79 125.67 l
+351.23 128.16 l
+351.67 130.56 l
+352.10 133.88 l
+352.54 132.84 l
+352.97 129.23 l
+353.41 133.03 l
+353.85 112.19 l
+354.28 111.24 l
+354.72 97.11 l
+355.15 102.13 l
+355.59 106.68 l
+356.03 115.08 l
+356.46 120.60 l
+356.90 112.55 l
+357.34 115.16 l
+357.77 120.89 l
+358.21 118.30 l
+358.64 118.16 l
+359.08 122.54 l
+359.52 114.35 l
+359.95 115.65 l
+360.39 119.68 l
+360.82 120.16 l
+361.26 116.28 l
+361.70 117.43 l
+362.13 118.36 l
+362.57 114.47 l
+363.00 110.00 l
+363.44 116.39 l
+363.88 119.16 l
+364.31 119.74 l
+364.75 113.09 l
+365.18 104.81 l
+365.62 105.29 l
+366.06 108.65 l
+366.49 111.13 l
+366.93 108.95 l
+367.37 107.71 l
+367.80 110.94 l
+368.24 110.59 l
+368.67 111.05 l
+369.11 112.10 l
+369.55 110.77 l
+369.98 106.60 l
+370.42 111.16 l
+370.85 113.51 l
+371.29 112.75 l
+371.73 110.76 l
+372.16 112.99 l
+372.60 113.84 l
+373.03 115.70 l
+373.47 111.25 l
+373.91 113.84 l
+374.34 107.52 l
+374.78 101.20 l
+375.21 102.51 l
+375.65 104.53 l
+376.09 104.01 l
+376.52 106.79 l
+376.96 107.92 l
+377.39 112.64 l
+377.83 110.80 l
+378.27 100.73 l
+378.70 101.86 l
+379.14 92.71 l
+379.58 95.12 l
+380.01 99.96 l
+380.45 104.11 l
+380.88 105.86 l
+381.32 104.18 l
+381.76 106.34 l
+382.19 105.31 l
+382.63 105.36 l
+383.06 104.69 l
+383.50 109.25 l
+383.94 113.10 l
+384.37 114.88 l
+384.81 117.74 l
+385.24 115.42 l
+385.68 120.28 l
+386.12 118.82 l
+386.55 120.70 l
+386.99 111.04 l
+387.42 114.17 l
+387.86 121.19 l
+388.30 122.07 l
+388.73 128.72 l
+389.17 133.09 l
+389.61 126.75 l
+390.04 119.90 l
+390.48 119.44 l
+390.91 122.13 l
+391.35 124.24 l
+391.79 129.33 l
+392.22 133.45 l
+392.66 135.13 l
+393.09 138.81 l
+393.53 137.19 l
+393.97 135.82 l
+394.40 134.59 l
+394.84 138.35 l
+395.27 135.78 l
+395.71 128.62 l
+396.15 130.13 l
+396.58 130.97 l
+397.02 132.80 l
+397.45 128.36 l
+397.89 130.69 l
+398.33 134.54 l
+398.76 134.95 l
+399.20 132.50 l
+399.64 123.17 l
+400.07 127.57 l
+400.51 132.75 l
+400.94 136.64 l
+401.38 138.41 l
+401.82 137.37 l
+402.25 127.83 l
+402.69 124.57 l
+403.12 126.55 l
+403.56 124.51 l
+404.00 125.71 l
+404.43 131.11 l
+404.87 136.29 l
+405.30 138.14 l
+405.74 138.50 l
+406.18 132.48 l
+406.61 125.87 l
+407.05 123.28 l
+407.48 123.28 l
+407.92 121.02 l
+408.36 118.91 l
+408.79 124.08 l
+409.23 130.43 l
+409.66 136.47 l
+410.10 137.27 l
+410.54 137.61 l
+410.97 130.42 l
+411.41 131.53 l
+411.85 131.28 l
+412.28 133.07 l
+412.72 136.38 l
+413.15 136.78 l
+413.59 141.14 l
+414.03 136.91 l
+414.46 123.83 l
+414.90 121.42 l
+415.33 113.38 l
+415.77 114.35 l
+416.21 121.86 l
+416.64 128.75 l
+417.08 123.51 l
+417.51 120.42 l
+417.95 124.30 l
+418.39 131.51 l
+418.82 134.07 l
+419.26 133.56 l
+419.69 129.41 l
+420.13 128.74 l
+420.57 127.58 l
+421.00 125.60 l
+421.44 119.63 l
+421.88 118.50 l
+422.31 122.97 l
+422.75 126.34 l
+423.18 122.57 l
+423.62 124.81 l
+424.06 127.64 l
+424.49 126.92 l
+424.93 127.49 l
+425.36 125.16 l
+425.80 123.94 l
+426.24 126.36 l
+426.67 126.57 l
+427.11 129.15 l
+427.54 129.64 l
+427.98 127.36 l
+428.42 127.55 l
+428.85 129.82 l
+429.29 132.79 l
+429.72 131.06 l
+430.16 133.74 l
+430.60 137.69 l
+431.03 136.55 l
+431.47 136.34 l
+431.91 134.32 l
+432.34 138.06 l
+432.78 142.05 l
+433.21 141.37 l
+433.65 145.86 l
+434.09 141.18 l
+434.52 133.35 l
+434.96 133.69 l
+435.39 134.81 l
+435.83 116.96 l
+436.27 110.21 l
+436.70 109.01 l
+437.14 113.89 l
+437.57 120.04 l
+438.01 125.21 l
+438.45 128.15 l
+438.88 127.31 l
+439.32 126.07 l
+439.75 130.56 l
+440.19 129.79 l
+440.63 127.28 l
+441.06 128.04 l
+441.50 129.09 l
+441.93 128.39 l
+442.37 130.18 l
+442.81 135.65 l
+443.24 138.09 l
+443.68 141.63 l
+444.12 149.78 l
+444.55 162.88 l
+444.99 165.85 l
+445.42 167.93 l
+445.86 165.00 l
+446.30 165.13 l
+446.73 167.67 l
+447.17 168.52 l
+447.60 167.27 l
+448.04 163.95 l
+448.48 155.54 l
+448.91 147.12 l
+449.35 141.38 l
+449.78 148.65 l
+450.22 154.76 l
+450.66 149.21 l
+451.09 156.52 l
+451.53 146.46 l
+451.96 151.72 l
+452.40 151.01 l
+452.84 155.83 l
+453.27 154.08 l
+453.71 152.63 l
+454.15 153.74 l
+454.58 153.04 l
+455.02 157.44 l
+455.45 158.81 l
+455.89 160.67 l
+456.33 159.86 l
+456.76 157.22 l
+457.20 157.03 l
+457.63 156.88 l
+458.07 162.12 l
+458.51 163.03 l
+458.94 156.10 l
+459.38 156.86 l
+459.81 156.61 l
+460.25 160.93 l
+460.69 165.73 l
+461.12 165.78 l
+461.56 158.91 l
+461.99 154.13 l
+462.43 151.02 l
+462.87 150.78 l
+463.30 157.27 l
+463.74 150.59 l
+464.18 148.21 l
+464.61 154.33 l
+465.05 158.04 l
+465.48 167.11 l
+465.92 178.72 l
+466.36 172.74 l
+466.79 178.21 l
+467.23 175.86 l
+467.66 176.17 l
+468.10 178.86 l
+468.54 168.39 l
+468.97 144.25 l
+469.41 139.82 l
+469.84 138.05 l
+470.28 142.27 l
+470.72 145.43 l
+471.15 138.65 l
+471.59 133.22 l
+472.02 120.76 l
+472.46 90.91 l
+472.90 92.47 l
+473.33 95.38 l
+473.77 94.26 l
+474.20 98.98 l
+474.64 98.54 l
+475.08 94.26 l
+475.51 96.59 l
+475.95 97.73 l
+476.39 97.70 l
+476.82 101.12 l
+477.26 100.25 l
+477.69 96.43 l
+478.13 96.88 l
+478.57 96.16 l
+479.00 97.25 l
+479.44 96.79 l
+479.87 101.15 l
+480.31 104.30 l
+480.75 103.05 l
+481.18 101.43 l
+481.62 95.34 l
+482.05 96.05 l
+482.49 105.21 l
+482.93 112.34 l
+483.36 121.07 l
+483.80 110.77 l
+484.23 109.18 l
+484.67 110.87 l
+485.11 112.57 l
+485.54 114.51 l
+485.98 116.87 l
+486.42 112.29 l
+486.85 112.95 l
+487.29 113.38 l
+487.72 113.55 l
+488.16 110.16 l
+488.60 108.51 l
+489.03 104.02 l
+489.47 102.96 l
+489.90 104.92 l
+490.34 105.96 l
+490.78 106.86 l
+491.21 107.64 l
+491.65 107.96 l
+492.08 108.64 l
+492.52 110.47 l
+492.96 111.35 l
+493.39 113.54 l
+493.83 113.64 l
+494.26 115.99 l
+494.70 114.93 l
+495.14 115.76 l
+495.57 123.12 l
+496.01 123.87 l
+496.45 125.83 l
+496.88 125.34 l
+497.32 124.84 l
+497.75 120.09 l
+498.19 120.06 l
+498.63 119.59 l
+499.06 115.84 l
+499.50 116.62 l
+499.93 117.48 l
+500.37 118.71 l
+500.81 118.77 l
+501.24 116.55 l
+501.68 116.34 l
+502.11 116.20 l
+502.55 116.53 l
+502.99 117.28 l
+503.42 116.56 l
+503.86 119.21 l
+504.29 117.48 l
+504.73 117.59 l
+505.17 116.59 l
+505.60 120.97 l
+506.04 118.34 l
+506.47 127.17 l
+506.91 127.96 l
+S
+507.78 126.36 m
+508.22 120.04 l
+508.66 115.44 l
+509.09 116.87 l
+509.53 120.49 l
+509.96 119.52 l
+510.40 108.62 l
+510.84 107.68 l
+511.27 116.42 l
+511.71 122.43 l
+512.14 125.39 l
+512.58 125.04 l
+513.02 100.79 l
+513.45 88.70 l
+513.89 101.61 l
+514.32 104.11 l
+514.76 104.68 l
+515.20 101.07 l
+515.63 94.06 l
+516.07 97.67 l
+516.50 106.30 l
+516.94 105.44 l
+517.38 102.94 l
+517.81 100.21 l
+518.25 92.24 l
+518.69 92.31 l
+519.12 97.82 l
+519.56 97.23 l
+519.99 97.05 l
+520.43 97.31 l
+520.87 98.40 l
+521.30 99.53 l
+521.74 98.16 l
+522.17 93.50 l
+522.61 94.95 l
+523.05 97.95 l
+523.48 96.28 l
+523.92 96.29 l
+524.35 97.49 l
+524.79 99.12 l
+525.23 99.59 l
+525.66 99.89 l
+526.10 100.49 l
+526.53 101.19 l
+526.97 105.98 l
+527.41 107.89 l
+527.84 106.88 l
+528.28 102.74 l
+528.72 102.51 l
+529.15 103.33 l
+529.59 99.91 l
+530.02 101.09 l
+530.46 98.46 l
+530.90 99.83 l
+531.33 96.01 l
+531.77 99.84 l
+532.20 98.14 l
+532.64 85.14 l
+533.08 82.85 l
+533.51 81.55 l
+533.95 81.55 l
+534.38 81.31 l
+534.82 81.45 l
+535.26 81.60 l
+535.69 81.74 l
+536.13 81.35 l
+536.56 81.11 l
+537.00 82.01 l
+537.44 81.73 l
+537.87 82.05 l
+538.31 82.04 l
+538.74 81.63 l
+539.18 82.37 l
+539.62 82.17 l
+540.05 82.12 l
+540.49 82.98 l
+540.93 82.62 l
+541.36 81.62 l
+541.80 81.79 l
+542.23 81.70 l
+542.67 81.14 l
+543.11 83.00 l
+543.54 82.63 l
+543.98 81.57 l
+544.41 80.66 l
+544.85 80.81 l
+545.29 82.00 l
+545.72 81.49 l
+546.16 81.70 l
+546.59 81.57 l
+547.03 81.23 l
+547.47 81.69 l
+547.90 81.04 l
+548.34 81.28 l
+548.77 82.23 l
+549.21 82.44 l
+549.65 83.75 l
+550.08 84.54 l
+550.52 83.29 l
+550.96 81.20 l
+551.39 82.56 l
+551.83 85.24 l
+552.26 87.92 l
+552.70 88.19 l
+553.14 88.58 l
+553.57 91.02 l
+554.01 91.75 l
+554.44 92.75 l
+554.88 96.37 l
+555.32 93.38 l
+555.75 94.46 l
+556.19 96.33 l
+556.62 95.66 l
+557.06 95.37 l
+557.50 99.61 l
+557.93 100.07 l
+558.37 100.74 l
+558.80 102.47 l
+559.24 102.40 l
+559.68 98.25 l
+560.11 99.12 l
+560.55 99.68 l
+560.99 101.92 l
+561.42 100.97 l
+561.86 101.07 l
+562.29 99.26 l
+S
+0.627 0.125 0.941 RG
+75.63 77.72 m
+76.06 77.46 l
+76.50 77.78 l
+76.93 78.59 l
+77.37 78.44 l
+77.81 78.67 l
+78.24 78.04 l
+78.68 79.94 l
+79.12 80.49 l
+79.55 79.18 l
+79.99 78.78 l
+80.42 80.11 l
+80.86 80.46 l
+81.30 80.87 l
+81.73 82.48 l
+82.17 83.39 l
+82.60 84.26 l
+83.04 84.64 l
+83.48 84.02 l
+83.91 82.86 l
+84.35 83.04 l
+84.78 84.25 l
+85.22 84.78 l
+85.66 84.65 l
+86.09 84.11 l
+86.53 83.46 l
+86.96 83.32 l
+87.40 81.86 l
+87.84 81.43 l
+88.27 81.87 l
+88.71 81.74 l
+89.15 82.70 l
+89.58 83.59 l
+90.02 83.13 l
+90.45 82.73 l
+90.89 83.52 l
+91.33 82.02 l
+91.76 81.13 l
+92.20 79.06 l
+92.63 78.53 l
+93.07 78.62 l
+93.51 78.73 l
+93.94 78.35 l
+94.38 78.28 l
+94.81 78.74 l
+95.25 79.34 l
+95.69 79.24 l
+96.12 79.26 l
+96.56 78.41 l
+96.99 76.85 l
+97.43 76.98 l
+97.87 77.29 l
+98.30 77.29 l
+98.74 77.54 l
+99.18 78.29 l
+99.61 77.94 l
+100.05 78.11 l
+100.48 77.89 l
+100.92 77.76 l
+101.36 77.90 l
+101.79 77.58 l
+102.23 77.79 l
+102.66 77.87 l
+103.10 77.23 l
+103.54 77.10 l
+103.97 77.26 l
+104.41 77.47 l
+104.84 77.17 l
+105.28 76.70 l
+105.72 77.19 l
+106.15 76.51 l
+106.59 76.60 l
+107.02 76.84 l
+107.46 76.29 l
+107.90 75.92 l
+108.33 75.50 l
+108.77 75.74 l
+109.20 75.75 l
+109.64 75.55 l
+110.08 75.45 l
+110.51 75.79 l
+110.95 76.08 l
+111.39 76.52 l
+111.82 76.46 l
+112.26 76.98 l
+112.69 77.15 l
+113.13 77.33 l
+113.57 76.71 l
+114.00 78.30 l
+114.44 78.82 l
+114.87 79.44 l
+115.31 80.54 l
+115.75 80.01 l
+116.18 79.47 l
+116.62 80.29 l
+117.05 80.58 l
+117.49 79.64 l
+117.93 78.79 l
+118.36 79.97 l
+118.80 82.00 l
+119.23 83.89 l
+119.67 83.70 l
+120.11 83.58 l
+120.54 80.76 l
+120.98 81.42 l
+121.42 80.27 l
+121.85 80.11 l
+122.29 80.78 l
+122.72 81.04 l
+123.16 80.81 l
+123.60 80.43 l
+124.03 81.00 l
+124.47 82.10 l
+124.90 80.32 l
+125.34 80.05 l
+125.78 80.63 l
+126.21 82.11 l
+126.65 83.49 l
+127.08 82.95 l
+127.52 83.22 l
+127.96 83.01 l
+128.39 82.78 l
+128.83 82.47 l
+129.26 83.33 l
+129.70 83.46 l
+130.14 81.27 l
+130.57 81.79 l
+131.01 80.31 l
+131.45 80.19 l
+131.88 80.08 l
+132.32 79.89 l
+132.75 79.34 l
+133.19 79.94 l
+133.63 80.58 l
+134.06 80.93 l
+134.50 80.71 l
+134.93 81.01 l
+135.37 82.24 l
+135.81 82.00 l
+136.24 80.30 l
+136.68 79.81 l
+137.11 79.33 l
+137.55 78.42 l
+137.99 77.33 l
+138.42 76.68 l
+138.86 77.20 l
+139.29 77.13 l
+139.73 76.87 l
+140.17 77.97 l
+140.60 78.10 l
+141.04 77.86 l
+141.47 78.18 l
+141.91 77.87 l
+142.35 78.04 l
+142.78 77.38 l
+143.22 77.24 l
+143.66 77.17 l
+144.09 77.38 l
+144.53 77.13 l
+144.96 77.07 l
+145.40 76.96 l
+145.84 77.98 l
+146.27 78.30 l
+146.71 76.88 l
+147.14 76.94 l
+147.58 78.01 l
+148.02 77.83 l
+148.45 76.70 l
+148.89 77.04 l
+149.32 77.21 l
+149.76 76.60 l
+150.20 75.83 l
+150.63 76.57 l
+151.07 77.22 l
+151.50 77.02 l
+151.94 76.85 l
+152.38 77.18 l
+152.81 77.60 l
+153.25 76.48 l
+153.69 77.21 l
+154.12 78.33 l
+154.56 76.96 l
+154.99 76.21 l
+155.43 76.54 l
+155.87 76.96 l
+156.30 77.62 l
+156.74 78.37 l
+157.17 78.85 l
+157.61 78.26 l
+158.05 78.51 l
+158.48 79.06 l
+158.92 79.53 l
+159.35 79.68 l
+159.79 79.71 l
+160.23 79.17 l
+160.66 79.29 l
+161.10 79.36 l
+161.53 79.20 l
+161.97 78.68 l
+162.41 78.66 l
+162.84 78.89 l
+163.28 78.69 l
+163.72 78.52 l
+164.15 78.61 l
+164.59 79.11 l
+165.02 80.17 l
+165.46 81.12 l
+165.90 81.40 l
+166.33 79.58 l
+166.77 79.56 l
+167.20 80.25 l
+167.64 80.56 l
+168.08 80.19 l
+168.51 80.46 l
+168.95 80.77 l
+169.38 79.90 l
+169.82 79.45 l
+170.26 78.80 l
+170.69 78.92 l
+171.13 78.98 l
+171.56 79.40 l
+172.00 80.05 l
+172.44 79.95 l
+172.87 80.15 l
+173.31 80.18 l
+173.74 80.24 l
+174.18 80.09 l
+174.62 79.08 l
+175.05 78.84 l
+175.49 79.05 l
+175.93 79.41 l
+176.36 79.15 l
+176.80 78.59 l
+177.23 78.08 l
+177.67 77.07 l
+178.11 77.50 l
+178.54 76.98 l
+178.98 76.95 l
+179.41 76.78 l
+179.85 77.10 l
+180.29 76.97 l
+180.72 76.90 l
+181.16 76.86 l
+181.59 76.94 l
+182.03 76.62 l
+182.47 76.68 l
+182.90 76.50 l
+183.34 76.35 l
+183.77 76.38 l
+184.21 76.50 l
+184.65 76.51 l
+185.08 76.85 l
+185.52 77.06 l
+185.96 76.12 l
+186.39 76.05 l
+186.83 76.47 l
+187.26 76.79 l
+187.70 77.06 l
+188.14 77.12 l
+188.57 76.75 l
+189.01 77.27 l
+189.44 76.93 l
+189.88 77.44 l
+190.32 77.82 l
+190.75 77.38 l
+191.19 76.62 l
+191.62 76.96 l
+192.06 77.62 l
+192.50 77.74 l
+192.93 76.85 l
+193.37 76.02 l
+193.80 76.46 l
+194.24 77.01 l
+194.68 77.29 l
+195.11 77.08 l
+195.55 76.56 l
+195.99 76.62 l
+196.42 76.93 l
+196.86 76.55 l
+197.29 75.76 l
+197.73 76.10 l
+198.17 76.31 l
+198.60 77.38 l
+199.04 77.61 l
+199.47 76.99 l
+199.91 76.65 l
+200.35 76.99 l
+200.78 77.51 l
+201.22 76.86 l
+201.65 77.05 l
+202.09 77.25 l
+202.53 77.50 l
+202.96 77.26 l
+203.40 77.22 l
+203.83 77.28 l
+204.27 77.07 l
+204.71 76.68 l
+205.14 76.31 l
+205.58 76.24 l
+206.01 76.05 l
+206.45 75.70 l
+206.89 75.55 l
+207.32 75.69 l
+207.76 75.66 l
+208.20 76.14 l
+208.63 77.12 l
+209.07 77.50 l
+209.50 76.52 l
+209.94 76.77 l
+210.38 76.88 l
+210.81 76.94 l
+211.25 77.49 l
+211.68 77.63 l
+212.12 77.69 l
+212.56 77.97 l
+212.99 77.91 l
+213.43 77.18 l
+213.86 77.03 l
+214.30 77.67 l
+214.74 77.85 l
+215.17 78.11 l
+215.61 78.06 l
+216.04 77.90 l
+216.48 77.76 l
+216.92 77.50 l
+217.35 77.71 l
+217.79 77.88 l
+218.23 77.74 l
+218.66 78.07 l
+219.10 78.10 l
+219.53 77.96 l
+219.97 77.70 l
+220.41 77.73 l
+220.84 77.69 l
+221.28 77.24 l
+221.71 77.01 l
+222.15 77.08 l
+222.59 77.53 l
+223.02 77.55 l
+223.46 78.23 l
+223.89 78.21 l
+224.33 77.41 l
+224.77 77.66 l
+225.20 77.79 l
+225.64 78.10 l
+226.07 77.57 l
+226.51 77.80 l
+226.95 77.95 l
+227.38 78.23 l
+227.82 78.70 l
+228.26 78.27 l
+228.69 77.76 l
+229.13 77.88 l
+229.56 78.40 l
+230.00 79.36 l
+230.44 77.40 l
+230.87 78.02 l
+231.31 78.08 l
+231.74 76.51 l
+232.18 76.38 l
+232.62 76.50 l
+233.05 76.92 l
+233.49 77.43 l
+233.92 75.97 l
+234.36 76.25 l
+234.80 76.21 l
+235.23 76.27 l
+235.67 76.80 l
+236.10 77.32 l
+236.54 77.12 l
+236.98 78.63 l
+237.41 78.09 l
+237.85 78.71 l
+238.28 78.27 l
+238.72 79.23 l
+239.16 79.49 l
+239.59 77.95 l
+240.03 78.74 l
+240.47 79.12 l
+240.90 79.15 l
+241.34 80.47 l
+241.77 80.98 l
+242.21 82.11 l
+242.65 83.76 l
+243.08 84.55 l
+243.52 83.99 l
+243.95 82.60 l
+244.39 82.86 l
+244.83 83.22 l
+245.26 81.67 l
+245.70 80.37 l
+246.13 80.63 l
+246.57 80.03 l
+247.01 79.37 l
+247.44 79.94 l
+247.88 80.82 l
+248.31 80.96 l
+248.75 81.03 l
+249.19 81.59 l
+249.62 82.01 l
+250.06 82.55 l
+250.50 82.44 l
+250.93 81.47 l
+251.37 80.41 l
+251.80 79.89 l
+252.24 81.53 l
+252.68 79.25 l
+253.11 79.12 l
+253.55 79.23 l
+253.98 79.35 l
+254.42 79.61 l
+254.86 79.54 l
+255.29 78.94 l
+255.73 79.16 l
+256.16 79.40 l
+256.60 79.93 l
+257.04 79.96 l
+257.47 80.24 l
+257.91 80.06 l
+258.34 79.80 l
+258.78 79.27 l
+259.22 77.96 l
+259.65 78.16 l
+260.09 78.37 l
+260.53 78.41 l
+260.96 78.33 l
+261.40 78.80 l
+261.83 80.03 l
+262.27 78.31 l
+262.71 78.05 l
+263.14 78.49 l
+263.58 78.73 l
+264.01 78.52 l
+264.45 77.92 l
+264.89 77.98 l
+265.32 78.05 l
+265.76 78.44 l
+266.19 79.24 l
+266.63 80.89 l
+267.07 79.86 l
+267.50 79.66 l
+267.94 79.83 l
+268.37 80.19 l
+268.81 80.80 l
+269.25 81.71 l
+269.68 82.12 l
+270.12 82.31 l
+270.55 83.03 l
+270.99 82.78 l
+271.43 81.83 l
+271.86 81.08 l
+272.30 81.33 l
+272.74 82.12 l
+273.17 82.72 l
+273.61 80.97 l
+274.04 80.90 l
+274.48 80.87 l
+274.92 81.24 l
+275.35 80.64 l
+275.79 80.40 l
+276.22 80.18 l
+276.66 80.48 l
+277.10 81.00 l
+277.53 79.86 l
+277.97 80.02 l
+278.40 79.84 l
+278.84 79.44 l
+279.28 79.32 l
+279.71 79.88 l
+280.15 80.26 l
+280.58 80.30 l
+281.02 80.69 l
+281.46 81.27 l
+281.89 81.61 l
+282.33 80.87 l
+282.77 80.43 l
+283.20 81.44 l
+283.64 81.17 l
+284.07 80.67 l
+284.51 80.67 l
+284.95 80.08 l
+285.38 80.03 l
+285.82 80.65 l
+286.25 80.70 l
+286.69 80.85 l
+287.13 80.85 l
+287.56 80.68 l
+288.00 80.82 l
+288.43 80.26 l
+288.87 79.42 l
+289.31 78.56 l
+289.74 78.82 l
+290.18 79.49 l
+290.61 79.67 l
+291.05 79.67 l
+291.49 79.66 l
+291.92 79.56 l
+292.36 80.08 l
+292.80 81.05 l
+293.23 79.84 l
+293.67 77.96 l
+294.10 77.59 l
+294.54 77.09 l
+294.98 77.53 l
+295.41 78.58 l
+295.85 80.73 l
+296.28 80.65 l
+296.72 80.46 l
+297.16 79.39 l
+297.59 80.05 l
+298.03 80.84 l
+298.46 81.22 l
+298.90 82.01 l
+299.34 82.93 l
+299.77 82.10 l
+300.21 81.40 l
+300.64 78.49 l
+301.08 78.71 l
+301.52 79.27 l
+301.95 79.21 l
+302.39 78.83 l
+302.82 80.60 l
+303.26 81.50 l
+303.70 81.71 l
+304.13 80.59 l
+304.57 82.35 l
+305.01 82.07 l
+305.44 82.02 l
+305.88 83.68 l
+306.31 86.18 l
+306.75 86.08 l
+307.19 84.83 l
+307.62 85.70 l
+308.06 85.57 l
+308.49 85.83 l
+308.93 85.50 l
+309.37 83.08 l
+309.80 83.73 l
+310.24 83.69 l
+310.67 83.52 l
+311.11 83.69 l
+311.55 83.42 l
+311.98 84.30 l
+312.42 83.21 l
+312.85 83.67 l
+313.29 84.29 l
+313.73 82.84 l
+314.16 82.68 l
+314.60 82.83 l
+315.04 83.74 l
+315.47 83.83 l
+315.91 84.22 l
+316.34 85.42 l
+316.78 86.25 l
+317.22 85.33 l
+317.65 87.30 l
+318.09 89.68 l
+318.52 90.81 l
+318.96 90.68 l
+319.40 89.42 l
+319.83 90.01 l
+320.27 91.07 l
+320.70 91.06 l
+321.14 89.83 l
+321.58 88.61 l
+322.01 87.67 l
+322.45 84.95 l
+322.88 84.54 l
+323.32 85.16 l
+323.76 85.38 l
+324.19 86.29 l
+324.63 87.95 l
+325.07 88.47 l
+325.50 88.88 l
+325.94 88.79 l
+326.37 88.27 l
+326.81 87.42 l
+327.25 85.51 l
+327.68 85.12 l
+328.12 85.22 l
+328.55 86.95 l
+328.99 89.83 l
+329.43 92.42 l
+329.86 89.97 l
+330.30 91.69 l
+330.73 94.52 l
+331.17 97.07 l
+331.61 97.01 l
+332.04 98.44 l
+332.48 98.81 l
+332.91 99.93 l
+333.35 97.01 l
+333.79 97.77 l
+334.22 98.26 l
+334.66 97.45 l
+335.10 98.15 l
+335.53 97.66 l
+335.97 94.94 l
+336.40 94.11 l
+336.84 93.82 l
+337.28 95.29 l
+337.71 99.56 l
+338.15 103.75 l
+338.58 98.77 l
+339.02 97.75 l
+339.46 98.04 l
+339.89 96.83 l
+340.33 94.61 l
+340.76 94.80 l
+341.20 93.74 l
+341.64 92.94 l
+342.07 92.29 l
+342.51 95.17 l
+342.94 93.76 l
+343.38 96.50 l
+343.82 94.31 l
+344.25 98.09 l
+344.69 100.07 l
+345.12 90.81 l
+345.56 80.77 l
+346.00 81.87 l
+346.43 83.24 l
+346.87 84.19 l
+347.31 84.25 l
+347.74 85.26 l
+348.18 85.15 l
+348.61 84.88 l
+349.05 84.35 l
+349.49 84.85 l
+349.92 84.79 l
+350.36 84.70 l
+350.79 84.60 l
+351.23 84.57 l
+351.67 85.04 l
+352.10 85.68 l
+352.54 85.85 l
+352.97 84.67 l
+353.41 84.32 l
+353.85 80.36 l
+354.28 82.79 l
+354.72 79.72 l
+355.15 83.39 l
+355.59 82.90 l
+356.03 84.91 l
+356.46 86.36 l
+356.90 88.67 l
+357.34 86.08 l
+357.77 84.97 l
+358.21 85.12 l
+358.64 86.31 l
+359.08 86.49 l
+359.52 86.34 l
+359.95 86.24 l
+360.39 85.36 l
+360.82 85.00 l
+361.26 85.31 l
+361.70 86.46 l
+362.13 86.69 l
+362.57 85.46 l
+363.00 86.37 l
+363.44 84.28 l
+363.88 83.93 l
+364.31 84.16 l
+364.75 84.84 l
+365.18 84.40 l
+365.62 84.26 l
+366.06 85.69 l
+366.49 85.18 l
+366.93 84.14 l
+367.37 83.87 l
+367.80 82.37 l
+368.24 81.97 l
+368.67 82.51 l
+369.11 82.39 l
+369.55 83.21 l
+369.98 85.82 l
+370.42 86.83 l
+370.85 87.09 l
+371.29 87.74 l
+371.73 86.98 l
+372.16 86.37 l
+372.60 85.96 l
+373.03 84.90 l
+373.47 84.63 l
+373.91 84.49 l
+374.34 80.18 l
+374.78 80.39 l
+375.21 82.66 l
+375.65 85.95 l
+376.09 86.37 l
+376.52 85.87 l
+376.96 85.41 l
+377.39 86.74 l
+377.83 86.74 l
+378.27 87.97 l
+378.70 86.98 l
+379.14 86.46 l
+379.58 85.53 l
+380.01 87.38 l
+380.45 86.54 l
+380.88 86.26 l
+381.32 87.03 l
+381.76 86.96 l
+382.19 87.01 l
+382.63 86.36 l
+383.06 85.18 l
+383.50 80.88 l
+383.94 84.48 l
+384.37 85.11 l
+384.81 85.32 l
+385.24 84.07 l
+385.68 86.96 l
+386.12 84.38 l
+386.55 83.22 l
+386.99 84.56 l
+387.42 85.87 l
+387.86 81.98 l
+388.30 81.09 l
+388.73 80.19 l
+389.17 80.78 l
+389.61 79.97 l
+390.04 81.01 l
+390.48 81.88 l
+390.91 82.03 l
+391.35 82.00 l
+391.79 82.85 l
+392.22 82.09 l
+392.66 80.21 l
+393.09 79.73 l
+393.53 79.69 l
+393.97 80.65 l
+394.40 80.78 l
+394.84 81.94 l
+395.27 82.85 l
+395.71 83.73 l
+396.15 83.88 l
+396.58 81.34 l
+397.02 81.41 l
+397.45 80.53 l
+397.89 78.97 l
+398.33 78.65 l
+398.76 79.67 l
+399.20 80.43 l
+399.64 81.89 l
+400.07 85.13 l
+400.51 84.28 l
+400.94 84.79 l
+401.38 83.16 l
+401.82 83.34 l
+402.25 84.41 l
+402.69 84.69 l
+403.12 84.26 l
+403.56 84.62 l
+404.00 84.84 l
+404.43 83.25 l
+404.87 84.71 l
+405.30 84.00 l
+405.74 83.82 l
+406.18 83.17 l
+406.61 82.45 l
+407.05 81.21 l
+407.48 83.50 l
+407.92 85.07 l
+408.36 83.86 l
+408.79 86.40 l
+409.23 88.95 l
+409.66 91.62 l
+410.10 92.46 l
+410.54 91.64 l
+410.97 92.16 l
+411.41 93.11 l
+411.85 93.31 l
+412.28 92.98 l
+412.72 93.18 l
+413.15 93.48 l
+413.59 92.56 l
+414.03 90.18 l
+414.46 88.61 l
+414.90 88.53 l
+415.33 90.80 l
+415.77 90.61 l
+416.21 91.02 l
+416.64 89.93 l
+417.08 89.17 l
+417.51 86.26 l
+417.95 87.46 l
+418.39 90.18 l
+418.82 89.58 l
+419.26 90.46 l
+419.69 90.38 l
+420.13 89.31 l
+420.57 88.04 l
+421.00 85.64 l
+421.44 88.57 l
+421.88 86.78 l
+422.31 87.35 l
+422.75 90.08 l
+423.18 88.29 l
+423.62 85.84 l
+424.06 85.27 l
+424.49 87.19 l
+424.93 87.37 l
+425.36 88.29 l
+425.80 87.84 l
+426.24 88.03 l
+426.67 87.95 l
+427.11 87.11 l
+427.54 87.99 l
+427.98 87.21 l
+428.42 85.86 l
+428.85 87.86 l
+429.29 86.01 l
+429.72 86.54 l
+430.16 86.43 l
+430.60 87.31 l
+431.03 87.49 l
+431.47 87.80 l
+431.91 88.22 l
+432.34 88.53 l
+432.78 89.16 l
+433.21 87.75 l
+433.65 86.77 l
+434.09 85.63 l
+434.52 84.88 l
+434.96 84.40 l
+435.39 84.37 l
+435.83 86.13 l
+436.27 89.31 l
+436.70 90.93 l
+437.14 90.38 l
+437.57 88.14 l
+438.01 88.09 l
+438.45 89.20 l
+438.88 87.36 l
+439.32 87.38 l
+439.75 89.47 l
+440.19 90.86 l
+440.63 92.64 l
+441.06 92.70 l
+441.50 91.21 l
+441.93 91.04 l
+442.37 88.81 l
+442.81 82.05 l
+443.24 82.29 l
+443.68 85.19 l
+444.12 86.72 l
+444.55 86.93 l
+444.99 87.30 l
+445.42 86.74 l
+445.86 86.56 l
+446.30 86.86 l
+446.73 86.08 l
+447.17 85.06 l
+447.60 84.45 l
+448.04 83.74 l
+448.48 85.82 l
+448.91 87.30 l
+449.35 88.32 l
+449.78 89.09 l
+450.22 91.16 l
+450.66 93.14 l
+451.09 92.84 l
+451.53 92.95 l
+451.96 96.03 l
+452.40 101.77 l
+452.84 102.43 l
+453.27 105.52 l
+453.71 111.33 l
+454.15 110.39 l
+454.58 109.49 l
+455.02 112.70 l
+455.45 116.89 l
+455.89 116.69 l
+456.33 112.96 l
+456.76 111.08 l
+457.20 106.29 l
+457.63 104.00 l
+458.07 103.57 l
+458.51 107.89 l
+458.94 109.86 l
+459.38 110.63 l
+459.81 104.15 l
+460.25 102.25 l
+460.69 99.52 l
+461.12 100.20 l
+461.56 98.34 l
+461.99 96.16 l
+462.43 96.20 l
+462.87 97.83 l
+463.30 89.59 l
+463.74 88.95 l
+464.18 87.95 l
+464.61 89.17 l
+465.05 91.52 l
+465.48 91.33 l
+465.92 90.60 l
+466.36 91.13 l
+466.79 92.28 l
+467.23 93.28 l
+467.66 93.51 l
+468.10 96.87 l
+468.54 96.83 l
+468.97 95.16 l
+469.41 94.30 l
+469.84 98.37 l
+470.28 100.41 l
+470.72 100.21 l
+471.15 101.15 l
+471.59 97.86 l
+472.02 97.09 l
+472.46 96.91 l
+472.90 98.71 l
+473.33 99.77 l
+473.77 101.02 l
+474.20 100.94 l
+474.64 103.97 l
+475.08 101.77 l
+475.51 100.01 l
+475.95 98.84 l
+476.39 100.62 l
+476.82 102.57 l
+477.26 101.98 l
+477.69 101.49 l
+478.13 98.43 l
+478.57 97.53 l
+479.00 98.53 l
+479.44 97.49 l
+479.87 97.93 l
+480.31 96.43 l
+480.75 96.81 l
+481.18 97.32 l
+481.62 96.94 l
+482.05 96.87 l
+482.49 95.55 l
+482.93 96.74 l
+483.36 96.59 l
+483.80 96.28 l
+484.23 96.27 l
+484.67 95.51 l
+485.11 96.44 l
+485.54 94.86 l
+485.98 92.69 l
+486.42 90.11 l
+486.85 90.56 l
+487.29 90.63 l
+487.72 92.13 l
+488.16 92.32 l
+488.60 90.89 l
+489.03 87.66 l
+489.47 84.48 l
+489.90 83.34 l
+490.34 84.39 l
+490.78 84.46 l
+491.21 83.53 l
+491.65 83.71 l
+492.08 84.45 l
+492.52 84.72 l
+492.96 84.38 l
+493.39 86.16 l
+493.83 87.01 l
+494.26 87.27 l
+494.70 86.12 l
+495.14 84.72 l
+495.57 84.79 l
+496.01 84.78 l
+496.45 85.83 l
+496.88 86.03 l
+497.32 86.97 l
+497.75 89.73 l
+498.19 87.82 l
+498.63 83.03 l
+499.06 83.83 l
+499.50 86.03 l
+499.93 84.85 l
+500.37 85.69 l
+500.81 86.25 l
+501.24 88.00 l
+501.68 88.22 l
+502.11 88.71 l
+502.55 89.60 l
+502.99 88.34 l
+503.42 88.63 l
+503.86 89.08 l
+504.29 90.84 l
+504.73 90.78 l
+505.17 89.53 l
+505.60 90.30 l
+506.04 91.69 l
+506.47 90.68 l
+506.91 90.87 l
+S
+507.78 94.29 m
+508.22 93.66 l
+508.66 92.90 l
+509.09 92.38 l
+509.53 92.37 l
+509.96 93.33 l
+510.40 94.22 l
+510.84 94.72 l
+511.27 92.71 l
+511.71 91.35 l
+512.14 91.61 l
+512.58 90.69 l
+513.02 88.60 l
+513.45 85.61 l
+513.89 91.21 l
+514.32 92.33 l
+514.76 93.15 l
+515.20 94.46 l
+515.63 96.86 l
+516.07 97.85 l
+516.50 94.24 l
+516.94 91.86 l
+517.38 91.03 l
+517.81 89.64 l
+518.25 88.64 l
+518.69 91.15 l
+519.12 93.18 l
+519.56 95.96 l
+519.99 96.78 l
+520.43 96.26 l
+520.87 97.27 l
+521.30 98.48 l
+521.74 98.90 l
+522.17 98.42 l
+522.61 95.75 l
+523.05 96.96 l
+523.48 96.17 l
+523.92 99.04 l
+524.35 98.84 l
+524.79 98.06 l
+525.23 97.94 l
+525.66 101.94 l
+526.10 95.45 l
+526.53 93.78 l
+526.97 94.15 l
+527.41 92.79 l
+527.84 93.65 l
+528.28 94.06 l
+528.72 96.65 l
+529.15 97.63 l
+529.59 97.04 l
+530.02 98.44 l
+530.46 95.50 l
+530.90 94.19 l
+531.33 95.28 l
+531.77 95.87 l
+532.20 93.99 l
+532.64 93.07 l
+533.08 94.51 l
+533.51 97.09 l
+533.95 95.61 l
+534.38 92.66 l
+534.82 95.19 l
+535.26 99.81 l
+535.69 98.46 l
+536.13 95.09 l
+536.56 94.87 l
+537.00 95.26 l
+537.44 97.26 l
+537.87 100.55 l
+538.31 98.73 l
+538.74 97.32 l
+539.18 98.04 l
+539.62 98.77 l
+540.05 99.00 l
+540.49 102.49 l
+540.93 105.41 l
+541.36 104.03 l
+541.80 101.69 l
+542.23 102.17 l
+542.67 102.84 l
+543.11 103.09 l
+543.54 98.99 l
+543.98 101.39 l
+544.41 104.05 l
+544.85 104.44 l
+545.29 105.31 l
+545.72 105.67 l
+546.16 103.77 l
+546.59 103.96 l
+547.03 104.35 l
+547.47 103.92 l
+547.90 103.91 l
+548.34 102.95 l
+548.77 103.57 l
+549.21 101.60 l
+549.65 93.77 l
+550.08 90.53 l
+550.52 90.39 l
+550.96 89.09 l
+551.39 86.81 l
+551.83 85.76 l
+552.26 87.04 l
+552.70 87.04 l
+553.14 86.19 l
+553.57 88.09 l
+554.01 90.35 l
+554.44 92.46 l
+554.88 92.40 l
+555.32 92.47 l
+555.75 96.77 l
+556.19 101.10 l
+556.62 99.75 l
+557.06 95.93 l
+557.50 95.23 l
+557.93 94.37 l
+558.37 99.99 l
+558.80 104.98 l
+559.24 100.67 l
+559.68 101.49 l
+560.11 98.59 l
+560.55 95.02 l
+560.99 97.49 l
+561.42 99.53 l
+561.86 101.38 l
+562.29 102.27 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.60 w
+[] 0 d
+1 J
+1 j
+10.00 M
+218.23 59.04 m 537.00 59.04 l S
+218.23 59.04 m 218.23 51.84 l S
+377.39 59.04 m 377.39 51.84 l S
+537.00 59.04 m 537.00 51.84 l S
+84.78 59.04 m 550.52 59.04 l S
+84.78 59.04 m 84.78 57.60 l S
+98.30 59.04 m 98.30 57.60 l S
+111.39 59.04 m 111.39 57.60 l S
+124.90 59.04 m 124.90 57.60 l S
+137.99 59.04 m 137.99 57.60 l S
+151.50 59.04 m 151.50 57.60 l S
+165.02 59.04 m 165.02 57.60 l S
+178.11 59.04 m 178.11 57.60 l S
+191.62 59.04 m 191.62 57.60 l S
+204.71 59.04 m 204.71 57.60 l S
+218.23 59.04 m 218.23 57.60 l S
+231.74 59.04 m 231.74 57.60 l S
+243.95 59.04 m 243.95 57.60 l S
+257.47 59.04 m 257.47 57.60 l S
+270.55 59.04 m 270.55 57.60 l S
+284.07 59.04 m 284.07 57.60 l S
+297.16 59.04 m 297.16 57.60 l S
+310.67 59.04 m 310.67 57.60 l S
+324.19 59.04 m 324.19 57.60 l S
+337.28 59.04 m 337.28 57.60 l S
+350.79 59.04 m 350.79 57.60 l S
+363.88 59.04 m 363.88 57.60 l S
+377.39 59.04 m 377.39 57.60 l S
+390.91 59.04 m 390.91 57.60 l S
+403.56 59.04 m 403.56 57.60 l S
+417.08 59.04 m 417.08 57.60 l S
+430.16 59.04 m 430.16 57.60 l S
+443.68 59.04 m 443.68 57.60 l S
+456.76 59.04 m 456.76 57.60 l S
+470.28 59.04 m 470.28 57.60 l S
+483.80 59.04 m 483.80 57.60 l S
+496.88 59.04 m 496.88 57.60 l S
+510.40 59.04 m 510.40 57.60 l S
+523.48 59.04 m 523.48 57.60 l S
+537.00 59.04 m 537.00 57.60 l S
+550.52 59.04 m 550.52 57.60 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 6.00 0.00 -0.00 6.00 88.83 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 102.84 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 115.43 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 129.95 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 143.03 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 156.05 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 169.56 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 182.31 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 196.00 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 209.08 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 223.27 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 236.45 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 248.00 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 262.01 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 274.60 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 289.11 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 302.20 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 315.21 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 328.73 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 341.48 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 355.17 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 368.25 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 382.44 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 395.62 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 407.60 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 421.62 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 434.20 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 448.72 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 461.80 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 474.82 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 488.34 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 501.09 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 514.77 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 527.86 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 542.04 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 555.23 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 125.08 33.12 Tm (2006) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 284.25 33.12 Tm (2007) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 443.42 33.12 Tm (2008) Tj
+ET
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+75.63 59.04 m
+562.29 59.04 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+56.16 72.11 m 56.16 378.94 l S
+56.16 72.11 m 48.96 72.11 l S
+56.16 148.81 m 48.96 148.81 l S
+56.16 225.52 m 48.96 225.52 l S
+56.16 302.23 m 48.96 302.23 l S
+56.16 378.94 m 48.96 378.94 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 35.09 67.80 Tm (0) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 28.42 144.51 Tm (20) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 28.42 221.21 Tm (40) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 28.42 297.92 Tm (60) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 28.42 374.63 Tm (80) Tj
+ET
+BT
+1.000 0.647 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 273.19 Tm (Germany) Tj
+ET
+BT
+0.000 0.000 1.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 262.48 Tm (U.S.A.) Tj
+ET
+BT
+0.000 0.392 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 91.12 Tm (France) Tj
+ET
+BT
+0.627 0.125 0.941 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 101.80 Tm (Sweden) Tj
+ET
+BT
+0.000 1.000 1.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 581.76 155.02 Tm (Netherlands) Tj
+ET
+Q
+endstream
+endobj
+7 0 obj
+92054
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+5 0 R
+]
+/Count 1
+/MediaBox [0 0 648 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font <</F2 9 0 R /F3 10 0 R >>
+/ExtGState << >>
+>>
+endobj
+8 0 obj
+<<
+/Type /Encoding
+/BaseEncoding /WinAnsiEncoding
+/Differences [ 45/minus 96/quoteleft
+144/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
+/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space]
+>>
+endobj
+9 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 8 0 R
+>> endobj
+10 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F3
+/BaseFont /Helvetica-Bold
+/Encoding 8 0 R
+>> endobj
+xref
+0 11
+0000000000 65535 f
+0000000021 00000 n
+0000000163 00000 n
+0000092420 00000 n
+0000092503 00000 n
+0000000212 00000 n
+0000000292 00000 n
+0000092399 00000 n
+0000092595 00000 n
+0000092852 00000 n
+0000092948 00000 n
+trailer
+<<
+/Size 11
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+93050
+%%EOF
diff --git a/2009/metrics/dynamic-hotpets.pdf b/2009/metrics/dynamic-hotpets.pdf
new file mode 100755
index 0000000..2dbb385
--- /dev/null
+++ b/2009/metrics/dynamic-hotpets.pdf
@@ -0,0 +1,2573 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20090505152234)
+/ModDate (D:20090505152234)
+/Title (R Graphics Output)
+/Producer (R 2.8.1)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+5 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 6 0 R
+/Resources 4 0 R
+>>
+endobj
+6 0 obj
+<<
+/Length 7 0 R
+>>
+stream
+q
+Q q 56.16 59.04 591.84 352.80 re W n
+0.000 0.392 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+78.08 182.15 m
+78.57 182.15 l
+79.06 181.38 l
+79.55 182.54 l
+80.04 182.93 l
+80.54 185.24 l
+81.03 177.13 l
+81.52 189.49 l
+82.01 192.97 l
+82.50 194.12 l
+82.99 193.35 l
+83.48 193.35 l
+83.97 200.30 l
+84.46 199.92 l
+84.95 197.99 l
+85.45 197.60 l
+85.94 198.76 l
+86.43 198.76 l
+86.92 196.44 l
+87.41 202.62 l
+87.90 201.07 l
+88.39 200.30 l
+88.88 200.30 l
+89.37 199.92 l
+89.86 197.60 l
+90.36 198.76 l
+90.85 196.83 l
+91.34 198.37 l
+91.83 196.05 l
+92.32 193.74 l
+92.81 190.65 l
+93.30 191.03 l
+93.79 193.35 l
+94.28 196.83 l
+94.78 190.65 l
+95.27 194.12 l
+95.76 196.05 l
+96.25 196.05 l
+96.74 196.83 l
+97.23 197.21 l
+97.72 201.46 l
+98.21 202.23 l
+98.70 203.39 l
+99.19 201.46 l
+99.69 200.30 l
+100.18 199.92 l
+100.67 199.53 l
+101.16 203.01 l
+101.65 205.71 l
+102.14 202.62 l
+102.63 203.01 l
+103.12 197.99 l
+103.61 205.32 l
+104.11 203.39 l
+104.60 206.48 l
+105.09 204.16 l
+105.58 205.71 l
+106.07 203.78 l
+106.56 200.30 l
+107.05 199.92 l
+107.54 199.53 l
+108.03 202.62 l
+108.52 200.69 l
+109.02 202.23 l
+109.51 201.85 l
+110.00 201.07 l
+110.49 201.07 l
+110.98 202.62 l
+111.47 207.64 l
+111.96 209.96 l
+112.45 212.27 l
+112.94 214.20 l
+113.43 216.13 l
+113.93 209.96 l
+114.42 212.27 l
+114.91 215.75 l
+115.40 216.13 l
+115.89 213.43 l
+116.38 214.59 l
+116.87 213.04 l
+117.36 213.04 l
+117.85 213.82 l
+118.35 216.52 l
+118.84 213.43 l
+119.33 214.59 l
+119.82 213.43 l
+120.31 213.43 l
+120.80 211.50 l
+121.29 212.27 l
+121.78 219.22 l
+122.27 219.22 l
+122.76 212.66 l
+123.26 215.36 l
+123.75 215.36 l
+124.24 215.36 l
+124.73 214.59 l
+125.22 225.40 l
+125.71 221.93 l
+126.20 223.08 l
+126.69 223.86 l
+127.18 219.22 l
+127.67 223.86 l
+128.17 223.86 l
+128.66 225.40 l
+129.15 222.31 l
+129.64 223.47 l
+130.13 229.65 l
+130.62 221.54 l
+131.11 225.01 l
+131.60 225.79 l
+132.09 228.88 l
+132.59 230.03 l
+133.08 228.10 l
+133.57 237.76 l
+134.06 234.67 l
+134.55 236.21 l
+135.04 238.92 l
+135.53 243.55 l
+136.02 243.55 l
+136.51 239.30 l
+137.00 240.46 l
+137.50 238.53 l
+137.99 238.14 l
+138.48 238.14 l
+138.97 243.16 l
+139.46 243.55 l
+139.95 242.39 l
+140.44 244.32 l
+140.93 244.32 l
+141.42 241.62 l
+141.92 240.85 l
+142.41 245.09 l
+142.90 253.20 l
+143.39 253.59 l
+143.88 255.13 l
+144.37 255.90 l
+144.86 253.97 l
+145.35 248.95 l
+145.84 250.50 l
+146.33 245.48 l
+146.83 247.02 l
+147.32 252.04 l
+147.81 248.95 l
+148.30 249.34 l
+148.79 249.34 l
+149.28 251.27 l
+149.77 250.11 l
+150.26 251.66 l
+150.75 252.43 l
+151.24 247.80 l
+151.74 250.11 l
+152.23 251.66 l
+152.72 253.97 l
+153.21 260.92 l
+153.70 265.17 l
+154.19 267.49 l
+154.68 269.03 l
+155.17 267.49 l
+155.66 269.03 l
+156.16 264.01 l
+156.65 257.84 l
+157.14 260.15 l
+157.63 261.31 l
+158.12 256.29 l
+158.61 255.90 l
+159.10 259.38 l
+159.59 264.79 l
+160.08 264.40 l
+160.57 264.40 l
+161.07 266.72 l
+161.56 262.08 l
+162.05 261.70 l
+162.54 264.01 l
+163.03 273.28 l
+163.52 274.83 l
+164.01 272.51 l
+164.50 274.44 l
+164.99 269.42 l
+165.49 268.65 l
+165.98 268.65 l
+166.47 269.81 l
+166.96 271.35 l
+167.45 274.44 l
+167.94 273.67 l
+168.43 274.44 l
+168.92 267.49 l
+169.41 271.35 l
+169.90 267.10 l
+170.40 275.21 l
+170.89 279.85 l
+171.38 283.32 l
+171.87 275.98 l
+172.36 276.76 l
+172.85 278.30 l
+173.34 277.91 l
+173.83 280.23 l
+174.32 282.55 l
+174.81 286.80 l
+175.31 286.02 l
+175.80 289.50 l
+176.29 288.34 l
+176.78 289.50 l
+177.27 294.13 l
+177.76 293.75 l
+178.25 296.83 l
+178.74 286.02 l
+179.23 279.07 l
+179.73 275.98 l
+180.22 284.48 l
+180.71 281.39 l
+181.20 278.30 l
+181.69 275.60 l
+182.18 275.60 l
+182.67 268.26 l
+183.16 268.26 l
+183.65 271.74 l
+184.14 274.05 l
+184.64 276.37 l
+185.13 282.16 l
+185.62 284.48 l
+186.11 281.39 l
+186.60 282.16 l
+187.09 281.78 l
+187.58 282.55 l
+188.07 279.46 l
+188.56 279.46 l
+189.05 281.78 l
+189.55 284.86 l
+190.04 290.27 l
+190.53 285.25 l
+191.02 289.50 l
+191.51 294.52 l
+192.00 294.52 l
+192.49 293.36 l
+192.98 293.36 l
+193.47 299.15 l
+193.97 302.24 l
+194.46 301.47 l
+194.95 297.99 l
+195.44 292.97 l
+195.93 295.68 l
+196.42 298.77 l
+196.91 294.13 l
+197.40 295.68 l
+197.89 301.47 l
+198.38 299.15 l
+198.88 295.29 l
+199.37 295.29 l
+199.86 295.29 l
+200.35 294.13 l
+200.84 294.90 l
+201.33 291.04 l
+201.82 291.04 l
+202.31 289.50 l
+202.80 286.41 l
+203.30 286.41 l
+203.79 280.23 l
+204.28 283.71 l
+204.77 287.57 l
+205.26 280.62 l
+205.75 270.96 l
+206.24 272.51 l
+206.73 272.12 l
+207.22 275.60 l
+207.71 275.60 l
+208.21 274.83 l
+208.70 278.69 l
+209.19 273.28 l
+209.68 274.44 l
+210.17 276.37 l
+210.66 274.83 l
+211.15 275.60 l
+211.64 276.37 l
+212.13 275.21 l
+212.62 280.62 l
+213.12 278.69 l
+213.61 277.14 l
+214.10 279.07 l
+214.59 279.07 l
+215.08 281.39 l
+215.57 278.30 l
+216.06 271.74 l
+216.55 271.35 l
+217.04 268.65 l
+217.54 267.87 l
+218.03 266.72 l
+218.52 268.65 l
+219.01 268.65 l
+219.50 270.58 l
+219.99 269.42 l
+220.48 268.65 l
+220.97 270.96 l
+221.46 269.03 l
+221.95 269.03 l
+222.45 264.79 l
+222.94 260.54 l
+223.43 266.33 l
+223.92 274.05 l
+224.41 272.89 l
+224.90 275.60 l
+225.39 271.74 l
+225.88 263.24 l
+226.37 262.08 l
+226.86 261.70 l
+227.36 265.56 l
+227.85 267.87 l
+228.34 266.33 l
+228.83 265.56 l
+229.32 269.81 l
+229.81 266.33 l
+230.30 269.03 l
+230.79 269.03 l
+231.28 270.58 l
+231.78 272.51 l
+232.27 272.12 l
+232.76 270.58 l
+233.25 267.10 l
+233.74 267.87 l
+234.23 269.42 l
+234.72 267.10 l
+235.21 267.10 l
+235.70 273.28 l
+236.19 271.74 l
+236.69 276.37 l
+237.18 281.00 l
+237.67 280.62 l
+238.16 279.85 l
+238.65 279.46 l
+239.14 281.00 l
+239.63 281.78 l
+240.12 287.57 l
+240.61 290.27 l
+241.11 289.11 l
+241.60 291.43 l
+242.09 286.02 l
+242.58 282.16 l
+243.07 282.55 l
+243.56 292.20 l
+244.05 293.36 l
+244.54 292.20 l
+245.03 296.83 l
+245.52 299.15 l
+246.02 300.70 l
+246.51 305.33 l
+247.00 305.72 l
+247.49 306.10 l
+247.98 303.01 l
+248.47 301.85 l
+248.96 302.24 l
+249.45 299.92 l
+249.94 297.61 l
+250.43 293.36 l
+250.93 294.13 l
+251.42 291.43 l
+251.91 289.88 l
+252.40 292.20 l
+252.89 292.20 l
+253.38 287.95 l
+253.87 284.86 l
+254.36 288.34 l
+254.85 285.64 l
+255.35 289.50 l
+255.84 292.97 l
+256.33 286.41 l
+256.82 299.15 l
+257.31 296.45 l
+257.80 305.72 l
+258.29 311.89 l
+258.78 312.28 l
+259.27 313.44 l
+259.76 316.91 l
+260.26 322.32 l
+260.75 317.30 l
+261.24 320.00 l
+261.73 314.98 l
+262.22 314.21 l
+262.71 317.30 l
+263.20 316.14 l
+263.69 309.58 l
+264.18 307.26 l
+264.67 302.63 l
+265.17 299.15 l
+265.66 300.70 l
+266.15 303.01 l
+266.64 302.24 l
+267.13 303.40 l
+267.62 303.01 l
+268.11 300.70 l
+268.60 304.94 l
+269.09 310.35 l
+269.59 305.72 l
+270.08 303.79 l
+270.57 306.10 l
+271.06 297.61 l
+271.55 298.38 l
+272.04 299.15 l
+272.53 297.99 l
+273.02 297.99 l
+273.51 299.92 l
+274.00 304.56 l
+274.50 303.79 l
+274.99 302.63 l
+275.48 303.79 l
+275.97 305.72 l
+276.46 304.94 l
+276.95 307.26 l
+277.44 299.92 l
+277.93 296.83 l
+278.42 296.45 l
+278.92 296.06 l
+279.41 303.79 l
+279.90 304.94 l
+280.39 309.96 l
+280.88 303.01 l
+281.37 302.63 l
+281.86 303.01 l
+282.35 297.99 l
+282.84 297.61 l
+283.33 294.52 l
+283.83 297.99 l
+284.32 301.08 l
+284.81 306.87 l
+285.30 304.56 l
+285.79 306.10 l
+286.28 305.72 l
+286.77 307.65 l
+287.26 305.33 l
+287.75 307.26 l
+288.24 311.51 l
+288.74 308.42 l
+289.23 303.40 l
+289.72 306.10 l
+290.21 311.12 l
+290.70 310.35 l
+291.19 307.26 l
+291.68 311.51 l
+292.17 314.98 l
+292.66 318.46 l
+293.16 319.62 l
+293.65 314.21 l
+294.14 314.21 l
+294.63 312.28 l
+295.12 317.69 l
+295.61 313.05 l
+296.10 312.67 l
+296.59 318.46 l
+297.08 317.69 l
+297.57 314.98 l
+298.07 313.82 l
+298.56 304.94 l
+299.05 304.94 l
+299.54 303.01 l
+300.03 305.33 l
+300.52 314.60 l
+301.01 313.82 l
+301.50 315.76 l
+301.99 318.46 l
+302.49 319.62 l
+302.98 306.49 l
+303.47 319.23 l
+303.96 323.09 l
+304.45 329.66 l
+304.94 327.73 l
+305.43 324.64 l
+305.92 328.11 l
+306.41 323.09 l
+306.90 326.95 l
+307.40 331.20 l
+307.89 331.97 l
+308.38 331.97 l
+308.87 330.81 l
+309.36 325.41 l
+309.85 318.84 l
+310.34 318.84 l
+310.83 324.64 l
+311.32 326.57 l
+311.81 320.39 l
+312.31 318.46 l
+312.80 323.86 l
+313.29 325.79 l
+313.78 328.11 l
+314.27 329.27 l
+314.76 331.59 l
+315.25 328.50 l
+315.74 329.27 l
+316.23 325.79 l
+316.73 323.48 l
+317.22 324.64 l
+317.71 326.18 l
+318.20 326.57 l
+318.69 319.23 l
+319.18 323.86 l
+319.67 324.64 l
+320.16 345.10 l
+320.65 322.71 l
+321.14 324.64 l
+321.64 331.59 l
+322.13 338.15 l
+322.62 330.04 l
+323.11 319.23 l
+323.60 317.69 l
+324.09 314.98 l
+324.58 321.93 l
+325.07 325.41 l
+325.56 343.94 l
+326.05 338.92 l
+326.55 324.64 l
+327.04 322.32 l
+327.53 320.77 l
+328.02 310.74 l
+328.51 318.07 l
+329.00 316.53 l
+329.49 322.32 l
+329.98 323.48 l
+330.47 316.14 l
+330.97 317.69 l
+331.46 315.76 l
+331.95 315.76 l
+332.44 323.09 l
+332.93 317.30 l
+333.42 316.91 l
+333.91 313.44 l
+334.40 312.67 l
+334.89 311.12 l
+335.38 321.93 l
+335.88 331.97 l
+336.37 331.97 l
+336.86 328.50 l
+337.35 318.07 l
+337.84 321.55 l
+338.33 322.71 l
+338.82 323.48 l
+339.31 320.39 l
+339.80 313.44 l
+340.30 310.74 l
+340.79 309.96 l
+341.28 311.89 l
+341.77 315.37 l
+342.26 320.77 l
+342.75 327.73 l
+343.24 327.73 l
+343.73 328.11 l
+344.22 324.64 l
+344.71 328.11 l
+345.21 328.50 l
+345.70 331.59 l
+346.19 335.45 l
+346.68 327.73 l
+347.17 325.79 l
+347.66 329.66 l
+348.15 330.04 l
+348.64 335.83 l
+349.13 328.50 l
+349.62 330.81 l
+350.12 330.43 l
+350.61 327.34 l
+351.10 327.34 l
+351.59 325.41 l
+352.08 329.27 l
+352.57 332.74 l
+353.06 331.97 l
+353.55 330.04 l
+354.04 332.74 l
+354.54 336.99 l
+355.03 342.40 l
+355.52 335.45 l
+356.01 333.52 l
+356.50 337.38 l
+356.99 330.43 l
+357.48 340.08 l
+357.97 339.31 l
+358.46 349.73 l
+358.95 350.51 l
+359.45 353.98 l
+359.94 349.35 l
+360.43 349.73 l
+360.92 345.49 l
+361.41 331.20 l
+361.90 334.68 l
+362.39 337.76 l
+362.88 348.19 l
+363.37 351.28 l
+363.86 355.14 l
+364.36 350.89 l
+364.85 347.03 l
+365.34 348.58 l
+365.83 351.28 l
+366.32 352.82 l
+366.81 357.07 l
+367.30 354.37 l
+367.79 358.23 l
+368.28 358.23 l
+368.78 361.70 l
+369.27 361.32 l
+369.76 358.62 l
+370.25 360.93 l
+370.74 349.73 l
+371.23 360.55 l
+371.72 352.44 l
+372.21 352.05 l
+372.70 355.53 l
+373.19 358.23 l
+373.69 362.48 l
+374.18 359.39 l
+374.67 356.69 l
+375.16 355.91 l
+375.65 357.46 l
+376.14 356.69 l
+376.63 360.93 l
+377.12 361.70 l
+377.61 355.91 l
+378.11 350.51 l
+378.60 357.84 l
+379.09 359.39 l
+379.58 358.62 l
+380.07 362.48 l
+380.56 358.23 l
+381.05 357.84 l
+381.54 348.58 l
+382.03 350.51 l
+382.52 348.96 l
+383.02 350.89 l
+383.51 350.51 l
+384.00 353.60 l
+384.49 355.14 l
+384.98 355.91 l
+385.47 354.37 l
+385.96 351.67 l
+386.45 351.67 l
+386.94 360.55 l
+387.43 354.37 l
+387.93 360.93 l
+388.42 358.62 l
+388.91 354.37 l
+389.40 358.62 l
+389.89 357.07 l
+390.38 359.77 l
+390.87 364.41 l
+391.36 270.19 l
+391.85 298.77 l
+392.35 274.44 l
+392.84 272.12 l
+393.33 314.60 l
+393.82 359.00 l
+394.31 367.50 l
+394.80 368.66 l
+395.29 372.13 l
+395.78 374.06 l
+396.27 369.81 l
+396.76 375.22 l
+397.26 379.47 l
+397.75 372.90 l
+398.24 379.08 l
+398.73 377.15 l
+399.22 375.99 l
+399.71 376.38 l
+400.20 370.97 l
+400.69 375.99 l
+401.18 373.67 l
+401.67 374.83 l
+402.17 371.74 l
+402.66 371.74 l
+403.15 370.20 l
+403.64 369.43 l
+404.13 368.66 l
+404.62 364.02 l
+405.11 361.70 l
+405.60 365.57 l
+406.09 365.18 l
+406.59 369.81 l
+407.08 367.88 l
+407.57 365.95 l
+408.06 364.41 l
+408.55 363.25 l
+409.04 361.70 l
+409.53 364.41 l
+410.02 366.72 l
+410.51 365.18 l
+411.00 366.34 l
+411.50 364.02 l
+411.99 359.39 l
+412.48 360.16 l
+412.97 357.46 l
+413.46 360.55 l
+413.95 360.93 l
+414.44 362.86 l
+414.93 360.16 l
+415.42 362.48 l
+415.92 361.70 l
+416.41 360.93 l
+416.90 370.20 l
+417.39 370.59 l
+417.88 372.90 l
+418.37 374.06 l
+418.86 377.92 l
+419.35 379.85 l
+419.84 381.40 l
+420.33 380.63 l
+420.83 379.08 l
+421.32 380.24 l
+421.81 380.63 l
+422.30 377.15 l
+422.79 382.17 l
+423.28 383.33 l
+423.77 385.64 l
+424.26 382.94 l
+424.75 387.19 l
+425.24 384.10 l
+425.74 382.17 l
+426.23 380.63 l
+426.72 386.80 l
+427.21 389.12 l
+427.70 390.66 l
+428.19 389.12 l
+428.68 381.40 l
+429.17 375.61 l
+429.66 375.61 l
+430.16 381.78 l
+430.65 383.33 l
+431.14 384.10 l
+431.63 386.03 l
+432.12 382.94 l
+432.61 384.49 l
+433.10 390.66 l
+433.59 396.07 l
+434.08 393.37 l
+434.57 388.35 l
+435.07 388.35 l
+435.56 384.87 l
+436.05 384.10 l
+436.54 379.85 l
+437.03 382.56 l
+437.52 384.49 l
+438.01 388.73 l
+438.50 387.58 l
+438.99 390.66 l
+439.49 392.60 l
+439.98 398.00 l
+440.47 398.77 l
+440.96 395.30 l
+441.45 395.68 l
+441.94 395.30 l
+442.43 389.51 l
+442.92 384.49 l
+443.41 385.64 l
+443.90 376.76 l
+444.40 378.69 l
+444.89 388.73 l
+445.38 389.89 l
+445.87 388.35 l
+446.36 384.87 l
+446.85 384.10 l
+447.34 387.58 l
+447.83 389.51 l
+448.32 386.03 l
+448.81 391.44 l
+449.31 388.35 l
+449.80 381.78 l
+450.29 380.24 l
+450.78 382.56 l
+451.27 380.24 l
+451.76 382.56 l
+452.25 379.08 l
+452.74 379.85 l
+453.23 375.22 l
+453.73 376.38 l
+454.22 378.69 l
+454.71 377.15 l
+455.20 381.01 l
+455.69 383.71 l
+456.18 382.56 l
+456.67 380.24 l
+457.16 378.69 l
+457.65 377.92 l
+458.14 381.78 l
+458.64 386.42 l
+459.13 386.80 l
+459.62 384.10 l
+460.11 380.24 l
+460.60 372.13 l
+461.09 374.45 l
+461.58 378.31 l
+462.07 375.99 l
+462.56 370.20 l
+463.05 371.74 l
+463.55 369.43 l
+464.04 370.97 l
+464.53 367.11 l
+465.02 370.97 l
+465.51 372.13 l
+466.00 369.81 l
+466.49 379.85 l
+466.98 373.29 l
+467.47 371.74 l
+467.97 369.81 l
+468.46 372.13 l
+468.95 376.76 l
+469.44 378.31 l
+469.93 382.56 l
+470.42 384.87 l
+470.91 378.69 l
+471.40 378.31 l
+471.89 379.85 l
+472.38 381.40 l
+472.88 386.42 l
+473.37 382.56 l
+473.86 375.61 l
+474.35 377.92 l
+474.84 375.22 l
+475.33 372.90 l
+475.82 371.74 l
+476.31 370.59 l
+476.80 368.66 l
+477.30 371.36 l
+477.79 371.36 l
+478.28 370.59 l
+478.77 374.06 l
+479.26 376.76 l
+479.75 377.54 l
+480.24 374.83 l
+480.73 377.54 l
+481.22 367.88 l
+481.71 364.79 l
+482.21 365.95 l
+482.70 368.27 l
+483.19 369.04 l
+483.68 341.24 l
+484.17 347.03 l
+484.66 352.44 l
+485.15 358.62 l
+485.64 353.21 l
+486.13 359.39 l
+486.62 366.34 l
+487.12 361.70 l
+487.61 357.84 l
+488.10 361.70 l
+488.59 362.86 l
+489.08 361.32 l
+489.57 359.00 l
+490.06 351.28 l
+490.55 358.62 l
+491.04 359.00 l
+491.54 359.77 l
+492.03 359.39 l
+492.52 364.79 l
+493.01 366.34 l
+493.50 369.81 l
+493.99 364.41 l
+494.48 369.43 l
+494.97 375.99 l
+495.46 376.76 l
+495.95 376.76 l
+496.45 380.24 l
+496.94 379.85 l
+497.43 379.85 l
+497.92 372.13 l
+498.41 371.74 l
+498.90 366.34 l
+499.39 368.66 l
+499.88 369.04 l
+500.37 371.36 l
+500.86 376.38 l
+501.36 380.63 l
+501.85 376.76 l
+502.34 379.85 l
+502.83 379.85 l
+503.32 374.83 l
+503.81 381.40 l
+504.30 379.47 l
+504.79 378.69 l
+505.28 377.92 l
+505.78 380.24 l
+506.27 381.01 l
+506.76 378.31 l
+507.25 376.76 l
+507.74 379.47 l
+508.23 378.31 l
+508.72 380.24 l
+509.21 380.63 l
+509.70 384.10 l
+510.19 381.78 l
+510.69 382.94 l
+511.18 382.94 l
+511.67 385.26 l
+512.16 377.15 l
+512.65 375.61 l
+513.14 374.83 l
+513.63 372.52 l
+514.12 370.97 l
+514.61 374.06 l
+515.11 372.90 l
+515.60 363.25 l
+516.09 365.57 l
+516.58 365.95 l
+517.07 364.79 l
+517.56 364.02 l
+518.05 362.48 l
+518.54 363.25 l
+519.03 363.64 l
+519.52 364.79 l
+520.02 362.86 l
+520.51 362.09 l
+521.00 359.77 l
+521.49 359.77 l
+521.98 359.77 l
+522.47 364.02 l
+522.96 360.93 l
+523.45 364.79 l
+523.94 364.41 l
+524.43 371.36 l
+524.93 370.20 l
+525.42 375.22 l
+525.91 370.59 l
+526.40 371.36 l
+526.89 372.90 l
+527.38 375.99 l
+527.87 373.29 l
+528.36 374.06 l
+528.85 368.27 l
+529.35 359.00 l
+529.84 357.07 l
+530.33 356.69 l
+530.82 361.32 l
+531.31 360.16 l
+531.80 360.55 l
+532.29 359.39 l
+532.78 359.39 l
+533.27 357.84 l
+533.76 357.84 l
+534.26 359.39 l
+534.75 358.23 l
+535.24 360.93 l
+535.73 360.55 l
+536.22 359.39 l
+536.71 362.86 l
+537.20 365.95 l
+537.69 364.02 l
+538.18 366.34 l
+538.67 362.86 l
+539.17 366.72 l
+539.66 365.57 l
+540.15 359.77 l
+540.64 356.69 l
+541.13 355.14 l
+541.62 355.53 l
+542.11 357.46 l
+542.60 361.32 l
+543.09 361.70 l
+543.59 361.32 l
+544.08 362.86 l
+544.57 358.62 l
+545.06 358.23 l
+545.55 357.84 l
+546.04 359.77 l
+546.53 352.44 l
+547.02 357.84 l
+547.51 359.00 l
+548.00 357.84 l
+548.50 360.16 l
+548.99 359.39 l
+549.48 362.09 l
+549.97 355.53 l
+550.46 351.67 l
+550.95 354.75 l
+551.44 350.12 l
+551.93 350.12 l
+552.42 348.96 l
+552.92 354.75 l
+553.41 349.35 l
+553.90 350.51 l
+554.39 351.67 l
+554.88 349.73 l
+555.37 353.60 l
+555.86 350.12 l
+556.35 345.10 l
+556.84 352.05 l
+557.33 350.89 l
+557.83 350.51 l
+558.32 348.96 l
+558.81 348.96 l
+559.30 348.58 l
+559.79 347.80 l
+560.28 346.65 l
+560.77 344.33 l
+561.26 347.42 l
+561.75 348.19 l
+562.24 345.87 l
+562.74 348.19 l
+563.23 340.85 l
+563.72 347.03 l
+S
+564.70 345.87 m
+565.19 341.63 l
+565.68 336.99 l
+566.17 338.15 l
+566.66 334.68 l
+567.16 334.68 l
+567.65 338.15 l
+568.14 339.70 l
+568.63 340.85 l
+569.12 338.92 l
+569.61 344.33 l
+570.10 348.19 l
+570.59 335.45 l
+571.08 325.79 l
+571.57 335.45 l
+572.07 338.92 l
+572.56 336.22 l
+573.05 325.79 l
+573.54 335.83 l
+574.03 337.76 l
+574.52 349.73 l
+575.01 350.12 l
+575.50 347.03 l
+575.99 347.03 l
+576.49 343.94 l
+576.98 341.63 l
+577.47 338.15 l
+577.96 339.31 l
+578.45 340.85 l
+578.94 343.17 l
+579.43 340.47 l
+579.92 339.31 l
+580.41 337.38 l
+580.90 339.70 l
+581.40 335.83 l
+581.89 337.76 l
+582.38 341.24 l
+582.87 345.10 l
+583.36 344.72 l
+583.85 348.19 l
+584.34 347.42 l
+584.83 351.67 l
+585.32 347.80 l
+585.81 341.24 l
+586.31 342.01 l
+586.80 344.33 l
+587.29 344.72 l
+587.78 339.70 l
+588.27 339.70 l
+588.76 343.94 l
+589.25 341.24 l
+589.74 343.94 l
+590.23 340.85 l
+590.73 338.92 l
+591.22 342.78 l
+591.71 343.17 l
+592.20 340.08 l
+592.69 336.99 l
+593.18 336.99 l
+593.67 332.74 l
+594.16 328.88 l
+594.65 330.04 l
+595.14 335.83 l
+595.64 338.92 l
+596.13 344.72 l
+596.62 343.17 l
+597.11 336.61 l
+597.60 338.15 l
+598.09 341.24 l
+598.58 343.17 l
+599.07 344.72 l
+599.56 342.01 l
+600.05 340.08 l
+600.55 345.49 l
+601.04 341.24 l
+601.53 342.40 l
+602.02 349.35 l
+602.51 344.33 l
+603.00 346.65 l
+603.49 345.10 l
+603.98 343.94 l
+604.47 342.78 l
+604.97 342.40 l
+605.46 345.49 l
+605.95 344.33 l
+606.44 340.85 l
+606.93 343.17 l
+607.42 341.24 l
+607.91 345.10 l
+608.40 346.65 l
+608.89 351.28 l
+609.38 347.42 l
+609.88 348.58 l
+610.37 349.35 l
+610.86 350.51 l
+611.35 350.51 l
+611.84 348.19 l
+612.33 349.73 l
+612.82 350.89 l
+613.31 351.28 l
+613.80 352.82 l
+614.30 348.96 l
+614.79 352.44 l
+615.28 352.05 l
+615.77 355.14 l
+616.26 355.14 l
+616.75 357.84 l
+617.24 361.32 l
+617.73 356.69 l
+618.22 358.23 l
+618.71 365.57 l
+619.21 362.86 l
+619.70 361.32 l
+620.19 365.18 l
+620.68 362.86 l
+621.17 362.48 l
+621.66 362.86 l
+622.15 366.72 l
+622.64 368.66 l
+623.13 366.72 l
+623.62 364.79 l
+624.12 364.79 l
+624.61 369.81 l
+625.10 374.83 l
+625.59 375.99 l
+626.08 379.47 l
+S
+Q q
+BT
+0.000 0.000 0.000 rg
+/F3 1 Tf 14.00 0.00 -0.00 14.00 243.85 416.89 Tm (Relays on dynamic IP addresses) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 339.41 4.32 Tm (Date) Tj
+ET
+BT
+/F2 1 Tf 0.00 12.00 -12.00 0.00 10.08 195.61 Tm (Running relays) Tj
+ET
+Q q 56.16 59.04 591.84 352.80 re W n
+1.000 0.647 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+78.08 105.31 m
+78.57 104.54 l
+79.06 104.93 l
+79.55 106.47 l
+80.04 107.63 l
+80.54 107.63 l
+81.03 108.02 l
+81.52 110.72 l
+82.01 111.49 l
+82.50 113.42 l
+82.99 113.42 l
+83.48 113.42 l
+83.97 113.04 l
+84.46 114.58 l
+84.95 113.42 l
+85.45 112.65 l
+85.94 116.51 l
+86.43 116.13 l
+86.92 116.51 l
+87.41 116.13 l
+87.90 116.51 l
+88.39 116.13 l
+88.88 117.67 l
+89.37 119.60 l
+89.86 117.67 l
+90.36 116.90 l
+90.85 118.83 l
+91.34 115.74 l
+91.83 115.74 l
+92.32 114.97 l
+92.81 117.67 l
+93.30 118.06 l
+93.79 117.67 l
+94.28 118.06 l
+94.78 117.28 l
+95.27 116.90 l
+95.76 116.13 l
+96.25 114.58 l
+96.74 114.58 l
+97.23 116.51 l
+97.72 117.28 l
+98.21 117.67 l
+98.70 117.28 l
+99.19 119.21 l
+99.69 120.76 l
+100.18 120.76 l
+100.67 118.83 l
+101.16 120.37 l
+101.65 118.06 l
+102.14 122.30 l
+102.63 120.76 l
+103.12 121.15 l
+103.61 123.08 l
+104.11 122.69 l
+104.60 120.76 l
+105.09 121.53 l
+105.58 124.62 l
+106.07 124.23 l
+106.56 125.78 l
+107.05 123.46 l
+107.54 124.62 l
+108.03 124.23 l
+108.52 121.92 l
+109.02 120.76 l
+109.51 120.76 l
+110.00 121.53 l
+110.49 121.92 l
+110.98 122.69 l
+111.47 124.23 l
+111.96 125.39 l
+112.45 125.39 l
+112.94 125.39 l
+113.43 126.55 l
+113.93 125.01 l
+114.42 125.39 l
+114.91 126.94 l
+115.40 127.32 l
+115.89 126.94 l
+116.38 127.32 l
+116.87 129.64 l
+117.36 127.71 l
+117.85 126.55 l
+118.35 129.64 l
+118.84 128.10 l
+119.33 128.10 l
+119.82 124.23 l
+120.31 123.08 l
+120.80 122.69 l
+121.29 123.46 l
+121.78 124.62 l
+122.27 126.55 l
+122.76 130.41 l
+123.26 131.96 l
+123.75 131.57 l
+124.24 130.03 l
+124.73 131.18 l
+125.22 131.18 l
+125.71 131.57 l
+126.20 131.96 l
+126.69 133.89 l
+127.18 133.50 l
+127.67 131.57 l
+128.17 133.12 l
+128.66 131.57 l
+129.15 131.18 l
+129.64 132.34 l
+130.13 133.89 l
+130.62 134.66 l
+131.11 133.89 l
+131.60 134.27 l
+132.09 133.12 l
+132.59 134.66 l
+133.08 136.20 l
+133.57 135.82 l
+134.06 135.82 l
+134.55 133.89 l
+135.04 136.98 l
+135.53 136.98 l
+136.02 138.52 l
+136.51 137.75 l
+137.00 135.05 l
+137.50 135.82 l
+137.99 135.43 l
+138.48 136.98 l
+138.97 135.43 l
+139.46 138.14 l
+139.95 136.98 l
+140.44 135.43 l
+140.93 136.20 l
+141.42 136.98 l
+141.92 135.82 l
+142.41 137.75 l
+142.90 138.52 l
+143.39 142.38 l
+143.88 143.93 l
+144.37 141.22 l
+144.86 143.54 l
+145.35 141.61 l
+145.84 141.61 l
+146.33 143.54 l
+146.83 145.86 l
+147.32 149.33 l
+147.81 148.95 l
+148.30 150.49 l
+148.79 147.02 l
+149.28 147.79 l
+149.77 147.40 l
+150.26 149.33 l
+150.75 147.40 l
+151.24 144.31 l
+151.74 146.63 l
+152.23 147.79 l
+152.72 146.24 l
+153.21 148.17 l
+153.70 145.09 l
+154.19 146.63 l
+154.68 148.17 l
+155.17 150.88 l
+155.66 146.63 l
+156.16 145.09 l
+156.65 144.31 l
+157.14 148.56 l
+157.63 149.33 l
+158.12 146.24 l
+158.61 141.61 l
+159.10 140.45 l
+159.59 144.70 l
+160.08 145.09 l
+160.57 146.63 l
+161.07 145.86 l
+161.56 145.86 l
+162.05 146.24 l
+162.54 148.17 l
+163.03 146.24 l
+163.52 147.02 l
+164.01 147.79 l
+164.50 148.17 l
+164.99 149.33 l
+165.49 147.02 l
+165.98 149.72 l
+166.47 147.79 l
+166.96 147.02 l
+167.45 152.42 l
+167.94 150.11 l
+168.43 150.49 l
+168.92 152.42 l
+169.41 149.72 l
+169.90 154.74 l
+170.40 157.44 l
+170.89 160.92 l
+171.38 160.92 l
+171.87 162.08 l
+172.36 163.23 l
+172.85 164.01 l
+173.34 164.78 l
+173.83 166.71 l
+174.32 165.16 l
+174.81 166.32 l
+175.31 167.09 l
+175.80 169.03 l
+176.29 165.55 l
+176.78 167.87 l
+177.27 169.41 l
+177.76 164.39 l
+178.25 167.87 l
+178.74 166.71 l
+179.23 165.16 l
+179.73 168.25 l
+180.22 163.62 l
+180.71 166.71 l
+181.20 167.48 l
+181.69 168.25 l
+182.18 170.18 l
+182.67 168.64 l
+183.16 166.71 l
+183.65 167.48 l
+184.14 169.80 l
+184.64 170.57 l
+185.13 172.50 l
+185.62 170.57 l
+186.11 165.94 l
+186.60 164.78 l
+187.09 163.62 l
+187.58 165.94 l
+188.07 169.03 l
+188.56 168.64 l
+189.05 166.71 l
+189.55 165.94 l
+190.04 168.64 l
+190.53 168.25 l
+191.02 167.09 l
+191.51 165.94 l
+192.00 167.87 l
+192.49 168.25 l
+192.98 168.64 l
+193.47 169.03 l
+193.97 165.55 l
+194.46 168.25 l
+194.95 167.87 l
+195.44 169.03 l
+195.93 169.41 l
+196.42 170.57 l
+196.91 175.59 l
+197.40 173.27 l
+197.89 170.18 l
+198.38 170.96 l
+198.88 171.34 l
+199.37 169.80 l
+199.86 168.25 l
+200.35 174.05 l
+200.84 173.66 l
+201.33 169.03 l
+201.82 170.57 l
+202.31 166.32 l
+202.80 170.96 l
+203.30 172.89 l
+203.79 170.57 l
+204.28 171.73 l
+204.77 170.57 l
+205.26 170.57 l
+205.75 166.71 l
+206.24 167.87 l
+206.73 168.64 l
+207.22 168.25 l
+207.71 164.01 l
+208.21 161.30 l
+208.70 167.48 l
+209.19 169.41 l
+209.68 169.80 l
+210.17 169.80 l
+210.66 170.18 l
+211.15 173.66 l
+211.64 171.34 l
+212.13 176.36 l
+212.62 171.73 l
+213.12 168.64 l
+213.61 169.80 l
+214.10 171.34 l
+214.59 168.64 l
+215.08 164.39 l
+215.57 168.25 l
+216.06 162.85 l
+216.55 161.30 l
+217.04 162.85 l
+217.54 163.23 l
+218.03 161.69 l
+218.52 161.30 l
+219.01 162.08 l
+219.50 162.85 l
+219.99 163.62 l
+220.48 160.92 l
+220.97 160.14 l
+221.46 160.53 l
+221.95 165.94 l
+222.45 163.62 l
+222.94 161.30 l
+223.43 161.69 l
+223.92 164.39 l
+224.41 165.16 l
+224.90 167.87 l
+225.39 168.25 l
+225.88 165.16 l
+226.37 163.62 l
+226.86 165.16 l
+227.36 164.39 l
+227.85 166.71 l
+228.34 166.32 l
+228.83 165.55 l
+229.32 166.32 l
+229.81 164.39 l
+230.30 163.23 l
+230.79 162.08 l
+231.28 167.09 l
+231.78 166.71 l
+232.27 162.85 l
+232.76 166.71 l
+233.25 167.09 l
+233.74 165.16 l
+234.23 166.32 l
+234.72 162.46 l
+235.21 163.23 l
+235.70 161.30 l
+236.19 160.92 l
+236.69 164.39 l
+237.18 169.80 l
+237.67 168.25 l
+238.16 169.03 l
+238.65 165.16 l
+239.14 171.34 l
+239.63 171.34 l
+240.12 171.34 l
+240.61 170.18 l
+241.11 175.20 l
+241.60 177.13 l
+242.09 170.57 l
+242.58 175.59 l
+243.07 174.05 l
+243.56 177.52 l
+244.05 177.91 l
+244.54 174.43 l
+245.03 178.29 l
+245.52 175.98 l
+246.02 177.91 l
+246.51 181.38 l
+247.00 181.77 l
+247.49 179.45 l
+247.98 181.77 l
+248.47 184.47 l
+248.96 182.54 l
+249.45 183.70 l
+249.94 183.70 l
+250.43 184.08 l
+250.93 187.17 l
+251.42 184.86 l
+251.91 180.61 l
+252.40 180.22 l
+252.89 181.77 l
+253.38 185.63 l
+253.87 183.70 l
+254.36 182.15 l
+254.85 181.38 l
+255.35 185.24 l
+255.84 179.45 l
+256.33 176.75 l
+256.82 182.15 l
+257.31 180.22 l
+257.80 180.61 l
+258.29 184.08 l
+258.78 187.95 l
+259.27 186.79 l
+259.76 184.86 l
+260.26 184.47 l
+260.75 184.86 l
+261.24 186.79 l
+261.73 184.08 l
+262.22 185.63 l
+262.71 184.47 l
+263.20 186.02 l
+263.69 180.61 l
+264.18 183.31 l
+264.67 182.54 l
+265.17 182.15 l
+265.66 184.86 l
+266.15 183.70 l
+266.64 183.70 l
+267.13 182.93 l
+267.62 185.24 l
+268.11 184.47 l
+268.60 189.49 l
+269.09 192.58 l
+269.59 189.10 l
+270.08 187.17 l
+270.57 188.33 l
+271.06 186.40 l
+271.55 188.33 l
+272.04 189.88 l
+272.53 184.47 l
+273.02 178.29 l
+273.51 180.22 l
+274.00 184.86 l
+274.50 184.47 l
+274.99 184.86 l
+275.48 186.40 l
+275.97 187.17 l
+276.46 179.45 l
+276.95 180.61 l
+277.44 182.54 l
+277.93 182.54 l
+278.42 186.02 l
+278.92 184.86 l
+279.41 189.49 l
+279.90 186.79 l
+280.39 182.93 l
+280.88 182.54 l
+281.37 185.63 l
+281.86 183.31 l
+282.35 189.88 l
+282.84 186.40 l
+283.33 184.86 l
+283.83 187.17 l
+284.32 185.24 l
+284.81 186.79 l
+285.30 187.56 l
+285.79 189.49 l
+286.28 191.42 l
+286.77 191.03 l
+287.26 186.40 l
+287.75 188.33 l
+288.24 189.10 l
+288.74 187.17 l
+289.23 187.95 l
+289.72 189.49 l
+290.21 184.47 l
+290.70 185.24 l
+291.19 189.49 l
+291.68 193.35 l
+292.17 192.58 l
+292.66 196.83 l
+293.16 192.19 l
+293.65 190.26 l
+294.14 190.26 l
+294.63 191.42 l
+295.12 194.12 l
+295.61 192.58 l
+296.10 192.97 l
+296.59 196.44 l
+297.08 192.19 l
+297.57 192.19 l
+298.07 191.81 l
+298.56 191.03 l
+299.05 194.12 l
+299.54 193.35 l
+300.03 191.81 l
+300.52 191.03 l
+301.01 189.10 l
+301.50 189.49 l
+301.99 192.58 l
+302.49 191.03 l
+302.98 187.95 l
+303.47 192.58 l
+303.96 191.42 l
+304.45 186.02 l
+304.94 187.56 l
+305.43 187.56 l
+305.92 194.12 l
+306.41 195.67 l
+306.90 196.83 l
+307.40 189.49 l
+307.89 193.35 l
+308.38 191.03 l
+308.87 190.26 l
+309.36 187.17 l
+309.85 189.10 l
+310.34 191.81 l
+310.83 189.49 l
+311.32 189.49 l
+311.81 192.19 l
+312.31 193.35 l
+312.80 193.74 l
+313.29 192.58 l
+313.78 198.76 l
+314.27 195.28 l
+314.76 192.97 l
+315.25 191.81 l
+315.74 192.58 l
+316.23 189.49 l
+316.73 192.58 l
+317.22 187.56 l
+317.71 187.56 l
+318.20 188.33 l
+318.69 188.33 l
+319.18 190.65 l
+319.67 187.95 l
+320.16 194.51 l
+320.65 192.97 l
+321.14 190.26 l
+321.64 188.33 l
+322.13 189.10 l
+322.62 187.95 l
+323.11 188.72 l
+323.60 196.44 l
+324.09 195.28 l
+324.58 193.74 l
+325.07 192.19 l
+325.56 192.58 l
+326.05 190.26 l
+326.55 187.95 l
+327.04 192.58 l
+327.53 195.67 l
+328.02 190.65 l
+328.51 194.51 l
+329.00 194.90 l
+329.49 194.51 l
+329.98 193.74 l
+330.47 192.58 l
+330.97 196.05 l
+331.46 195.28 l
+331.95 194.12 l
+332.44 192.97 l
+332.93 194.90 l
+333.42 192.97 l
+333.91 197.21 l
+334.40 199.92 l
+334.89 196.44 l
+335.38 196.44 l
+335.88 192.19 l
+336.37 192.97 l
+336.86 195.28 l
+337.35 198.76 l
+337.84 202.23 l
+338.33 196.05 l
+338.82 196.83 l
+339.31 201.85 l
+339.80 200.69 l
+340.30 201.85 l
+340.79 200.69 l
+341.28 203.78 l
+341.77 200.69 l
+342.26 195.28 l
+342.75 199.53 l
+343.24 198.37 l
+343.73 197.60 l
+344.22 205.32 l
+344.71 202.23 l
+345.21 203.78 l
+345.70 203.39 l
+346.19 208.02 l
+346.68 207.64 l
+347.17 209.96 l
+347.66 214.59 l
+348.15 217.68 l
+348.64 218.45 l
+349.13 218.84 l
+349.62 216.91 l
+350.12 217.29 l
+350.61 217.29 l
+351.10 220.77 l
+351.59 225.40 l
+352.08 219.99 l
+352.57 218.45 l
+353.06 217.29 l
+353.55 219.99 l
+354.04 221.15 l
+354.54 220.77 l
+355.03 222.70 l
+355.52 219.99 l
+356.01 218.45 l
+356.50 220.77 l
+356.99 221.15 l
+357.48 221.93 l
+357.97 228.49 l
+358.46 236.98 l
+358.95 232.35 l
+359.45 233.90 l
+359.94 238.14 l
+360.43 234.67 l
+360.92 235.44 l
+361.41 236.60 l
+361.90 233.90 l
+362.39 230.03 l
+362.88 231.58 l
+363.37 237.37 l
+363.86 239.69 l
+364.36 239.69 l
+364.85 247.80 l
+365.34 247.02 l
+365.83 245.48 l
+366.32 245.09 l
+366.81 243.16 l
+367.30 242.00 l
+367.79 241.23 l
+368.28 251.66 l
+368.78 257.06 l
+369.27 245.48 l
+369.76 245.48 l
+370.25 246.64 l
+370.74 239.69 l
+371.23 247.80 l
+371.72 254.75 l
+372.21 252.82 l
+372.70 250.50 l
+373.19 245.87 l
+373.69 255.52 l
+374.18 258.22 l
+374.67 254.36 l
+375.16 260.92 l
+375.65 263.24 l
+376.14 258.99 l
+376.63 259.38 l
+377.12 256.68 l
+377.61 253.20 l
+378.11 252.04 l
+378.60 265.56 l
+379.09 267.49 l
+379.58 255.52 l
+380.07 253.59 l
+380.56 257.06 l
+381.05 253.20 l
+381.54 254.75 l
+382.03 267.49 l
+382.52 269.81 l
+383.02 260.15 l
+383.51 263.24 l
+384.00 265.56 l
+384.49 263.24 l
+384.98 270.96 l
+385.47 275.98 l
+385.96 284.09 l
+386.45 271.35 l
+386.94 277.53 l
+387.43 273.28 l
+387.93 275.60 l
+388.42 276.37 l
+388.91 275.98 l
+389.40 282.55 l
+389.89 277.14 l
+390.38 275.21 l
+390.87 275.21 l
+391.36 200.30 l
+391.85 206.09 l
+392.35 201.46 l
+392.84 199.92 l
+393.33 223.47 l
+393.82 271.35 l
+394.31 268.26 l
+394.80 273.28 l
+395.29 285.25 l
+395.78 291.82 l
+396.27 294.52 l
+396.76 289.11 l
+397.26 287.18 l
+397.75 285.64 l
+398.24 289.88 l
+398.73 292.20 l
+399.22 301.47 l
+399.71 303.79 l
+400.20 291.82 l
+400.69 293.75 l
+401.18 293.75 l
+401.67 293.36 l
+402.17 293.75 l
+402.66 297.99 l
+403.15 294.52 l
+403.64 289.88 l
+404.13 288.34 l
+404.62 286.80 l
+405.11 290.66 l
+405.60 289.88 l
+406.09 296.06 l
+406.59 301.08 l
+407.08 291.04 l
+407.57 285.25 l
+408.06 289.50 l
+408.55 289.50 l
+409.04 293.75 l
+409.53 299.54 l
+410.02 301.85 l
+410.51 291.82 l
+411.00 288.73 l
+411.50 289.11 l
+411.99 289.88 l
+412.48 285.64 l
+412.97 287.18 l
+413.46 286.80 l
+413.95 277.14 l
+414.44 274.05 l
+414.93 274.05 l
+415.42 278.30 l
+415.92 279.85 l
+416.41 280.62 l
+416.90 291.04 l
+417.39 290.66 l
+417.88 296.83 l
+418.37 296.45 l
+418.86 296.45 l
+419.35 292.59 l
+419.84 312.28 l
+420.33 316.53 l
+420.83 308.42 l
+421.32 311.89 l
+421.81 313.05 l
+422.30 327.34 l
+422.79 321.93 l
+423.28 328.50 l
+423.77 333.90 l
+424.26 315.76 l
+424.75 314.98 l
+425.24 317.69 l
+425.74 318.84 l
+426.23 317.30 l
+426.72 331.97 l
+427.21 331.97 l
+427.70 321.16 l
+428.19 316.14 l
+428.68 310.74 l
+429.17 312.67 l
+429.66 312.28 l
+430.16 320.77 l
+430.65 312.67 l
+431.14 301.08 l
+431.63 301.85 l
+432.12 303.01 l
+432.61 311.51 l
+433.10 307.65 l
+433.59 317.69 l
+434.08 316.91 l
+434.57 309.96 l
+435.07 306.49 l
+435.56 303.79 l
+436.05 307.26 l
+436.54 308.03 l
+437.03 313.05 l
+437.52 317.69 l
+438.01 304.94 l
+438.50 299.54 l
+438.99 304.56 l
+439.49 302.63 l
+439.98 303.79 l
+440.47 308.42 l
+440.96 311.12 l
+441.45 299.54 l
+441.94 297.99 l
+442.43 306.49 l
+442.92 303.79 l
+443.41 307.26 l
+443.90 318.84 l
+444.40 318.07 l
+444.89 301.08 l
+445.38 297.22 l
+445.87 303.79 l
+446.36 296.83 l
+446.85 295.29 l
+447.34 310.74 l
+447.83 313.82 l
+448.32 296.83 l
+448.81 296.83 l
+449.31 306.10 l
+449.80 300.31 l
+450.29 299.54 l
+450.78 305.33 l
+451.27 298.77 l
+451.76 296.83 l
+452.25 299.15 l
+452.74 301.08 l
+453.23 302.24 l
+453.73 301.85 l
+454.22 311.51 l
+454.71 307.65 l
+455.20 306.10 l
+455.69 301.85 l
+456.18 292.20 l
+456.67 293.75 l
+457.16 302.24 l
+457.65 305.33 l
+458.14 297.22 l
+458.64 303.79 l
+459.13 306.10 l
+459.62 299.54 l
+460.11 295.68 l
+460.60 291.43 l
+461.09 298.77 l
+461.58 303.01 l
+462.07 288.34 l
+462.56 290.66 l
+463.05 287.95 l
+463.55 293.36 l
+464.04 302.24 l
+464.53 298.38 l
+465.02 306.49 l
+465.51 297.99 l
+466.00 291.82 l
+466.49 291.43 l
+466.98 287.95 l
+467.47 287.18 l
+467.97 296.45 l
+468.46 298.38 l
+468.95 279.85 l
+469.44 279.07 l
+469.93 279.07 l
+470.42 282.55 l
+470.91 282.55 l
+471.40 289.11 l
+471.89 289.50 l
+472.38 287.95 l
+472.88 288.73 l
+473.37 293.75 l
+473.86 281.00 l
+474.35 285.25 l
+474.84 288.34 l
+475.33 289.50 l
+475.82 284.86 l
+476.31 283.71 l
+476.80 286.41 l
+477.30 292.20 l
+477.79 287.18 l
+478.28 292.97 l
+478.77 296.83 l
+479.26 287.95 l
+479.75 292.20 l
+480.24 284.86 l
+480.73 290.27 l
+481.22 290.27 l
+481.71 287.57 l
+482.21 289.50 l
+482.70 287.95 l
+483.19 287.18 l
+483.68 262.86 l
+484.17 257.45 l
+484.66 263.63 l
+485.15 276.37 l
+485.64 281.39 l
+486.13 276.37 l
+486.62 276.37 l
+487.12 280.62 l
+487.61 282.16 l
+488.10 280.23 l
+488.59 279.85 l
+489.08 280.62 l
+489.57 274.44 l
+490.06 267.10 l
+490.55 267.10 l
+491.04 265.94 l
+491.54 262.08 l
+492.03 269.81 l
+492.52 272.89 l
+493.01 265.17 l
+493.50 269.03 l
+493.99 265.94 l
+494.48 273.28 l
+494.97 274.44 l
+495.46 275.98 l
+495.95 281.78 l
+496.45 267.49 l
+496.94 270.96 l
+497.43 268.65 l
+497.92 266.33 l
+498.41 267.87 l
+498.90 275.60 l
+499.39 285.25 l
+499.88 277.53 l
+500.37 276.37 l
+500.86 286.41 l
+501.36 276.76 l
+501.85 274.83 l
+502.34 281.78 l
+502.83 286.80 l
+503.32 279.46 l
+503.81 277.14 l
+504.30 274.05 l
+504.79 278.69 l
+505.28 273.67 l
+505.78 277.14 l
+506.27 275.98 l
+506.76 269.42 l
+507.25 274.05 l
+507.74 274.83 l
+508.23 274.44 l
+508.72 274.05 l
+509.21 277.91 l
+509.70 280.62 l
+510.19 275.98 l
+510.69 279.85 l
+511.18 270.96 l
+511.67 272.12 l
+512.16 275.21 l
+512.65 283.71 l
+513.14 286.41 l
+513.63 277.14 l
+514.12 276.37 l
+514.61 277.53 l
+515.11 279.46 l
+515.60 272.89 l
+516.09 273.28 l
+516.58 276.76 l
+517.07 273.28 l
+517.56 278.69 l
+518.05 260.15 l
+518.54 268.26 l
+519.03 269.81 l
+519.52 272.89 l
+520.02 275.21 l
+520.51 264.79 l
+521.00 269.42 l
+521.49 268.26 l
+521.98 265.56 l
+522.47 262.86 l
+522.96 264.79 l
+523.45 267.10 l
+523.94 264.79 l
+524.43 264.01 l
+524.93 264.01 l
+525.42 259.38 l
+525.91 266.72 l
+526.40 269.03 l
+526.89 268.26 l
+527.38 258.99 l
+527.87 262.47 l
+528.36 258.22 l
+528.85 258.99 l
+529.35 262.86 l
+529.84 260.15 l
+530.33 268.65 l
+530.82 267.10 l
+531.31 262.47 l
+531.80 267.10 l
+532.29 265.56 l
+532.78 269.42 l
+533.27 262.08 l
+533.76 268.26 l
+534.26 258.61 l
+534.75 265.94 l
+535.24 264.01 l
+535.73 265.17 l
+536.22 269.42 l
+536.71 269.81 l
+537.20 272.12 l
+537.69 270.19 l
+538.18 267.49 l
+538.67 267.87 l
+539.17 271.35 l
+539.66 272.51 l
+540.15 269.03 l
+540.64 282.16 l
+541.13 274.05 l
+541.62 283.32 l
+542.11 280.23 l
+542.60 277.53 l
+543.09 276.76 l
+543.59 278.30 l
+544.08 278.69 l
+544.57 276.37 l
+545.06 269.42 l
+545.55 266.33 l
+546.04 267.87 l
+546.53 264.01 l
+547.02 272.12 l
+547.51 271.74 l
+548.00 263.24 l
+548.50 261.70 l
+548.99 260.54 l
+549.48 265.94 l
+549.97 267.10 l
+550.46 271.35 l
+550.95 274.05 l
+551.44 274.44 l
+551.93 269.42 l
+552.42 263.24 l
+552.92 267.87 l
+553.41 271.74 l
+553.90 272.51 l
+554.39 274.05 l
+554.88 258.99 l
+555.37 264.40 l
+555.86 259.38 l
+556.35 260.92 l
+556.84 264.40 l
+557.33 272.51 l
+557.83 265.94 l
+558.32 262.08 l
+558.81 259.77 l
+559.30 258.22 l
+559.79 260.15 l
+560.28 261.70 l
+560.77 269.81 l
+561.26 271.74 l
+561.75 262.08 l
+562.24 263.24 l
+562.74 261.70 l
+563.23 258.22 l
+563.72 247.80 l
+S
+564.70 269.81 m
+565.19 256.68 l
+565.68 255.13 l
+566.17 251.66 l
+566.66 249.34 l
+567.16 253.97 l
+567.65 260.54 l
+568.14 259.38 l
+568.63 255.90 l
+569.12 253.59 l
+569.61 247.02 l
+570.10 247.41 l
+570.59 249.34 l
+571.08 254.36 l
+571.57 253.97 l
+572.07 250.50 l
+572.56 248.95 l
+573.05 248.18 l
+573.54 250.50 l
+574.03 250.50 l
+574.52 258.61 l
+575.01 260.15 l
+575.50 247.41 l
+575.99 248.95 l
+576.49 251.66 l
+576.98 253.20 l
+577.47 249.73 l
+577.96 257.84 l
+578.45 259.77 l
+578.94 255.13 l
+579.43 250.50 l
+579.92 252.43 l
+580.41 253.20 l
+580.90 258.61 l
+581.40 261.70 l
+581.89 264.79 l
+582.38 257.84 l
+582.87 254.75 l
+583.36 254.75 l
+583.85 252.82 l
+584.34 253.20 l
+584.83 260.15 l
+585.32 261.70 l
+585.81 254.36 l
+586.31 252.04 l
+586.80 249.34 l
+587.29 256.68 l
+587.78 250.11 l
+588.27 255.90 l
+588.76 261.31 l
+589.25 252.04 l
+589.74 254.36 l
+590.23 252.43 l
+590.73 250.11 l
+591.22 253.59 l
+591.71 256.68 l
+592.20 260.15 l
+592.69 253.59 l
+593.18 250.89 l
+593.67 242.78 l
+594.16 238.14 l
+594.65 242.78 l
+595.14 245.09 l
+595.64 247.41 l
+596.13 247.80 l
+596.62 246.25 l
+597.11 249.73 l
+597.60 247.80 l
+598.09 252.04 l
+598.58 256.68 l
+599.07 260.15 l
+599.56 252.43 l
+600.05 254.75 l
+600.55 251.27 l
+601.04 242.78 l
+601.53 248.95 l
+602.02 254.36 l
+602.51 251.27 l
+603.00 244.32 l
+603.49 238.92 l
+603.98 242.00 l
+604.47 236.98 l
+604.97 243.16 l
+605.46 251.66 l
+605.95 248.57 l
+606.44 240.07 l
+606.93 241.62 l
+607.42 243.55 l
+607.91 245.48 l
+608.40 253.97 l
+608.89 257.45 l
+609.38 258.99 l
+609.88 247.80 l
+610.37 245.87 l
+610.86 248.57 l
+611.35 242.78 l
+611.84 247.02 l
+612.33 247.80 l
+612.82 247.80 l
+613.31 238.14 l
+613.80 241.23 l
+614.30 239.69 l
+614.79 245.48 l
+615.28 248.18 l
+615.77 246.64 l
+616.26 247.80 l
+616.75 245.87 l
+617.24 245.87 l
+617.73 238.53 l
+618.22 238.53 l
+618.71 242.78 l
+619.21 251.66 l
+619.70 249.73 l
+620.19 242.00 l
+620.68 234.67 l
+621.17 237.37 l
+621.66 234.28 l
+622.15 232.74 l
+622.64 246.25 l
+623.13 250.50 l
+623.62 240.46 l
+624.12 238.92 l
+624.61 232.74 l
+625.10 239.30 l
+625.59 237.76 l
+626.08 234.67 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.60 w
+[] 0 d
+1 J
+1 j
+10.00 M
+238.65 59.04 m 597.60 59.04 l S
+238.65 59.04 m 238.65 51.84 l S
+417.88 59.04 m 417.88 51.84 l S
+597.60 59.04 m 597.60 51.84 l S
+88.39 59.04 m 612.82 59.04 l S
+88.39 59.04 m 88.39 57.60 l S
+103.61 59.04 m 103.61 57.60 l S
+118.35 59.04 m 118.35 57.60 l S
+133.57 59.04 m 133.57 57.60 l S
+148.30 59.04 m 148.30 57.60 l S
+163.52 59.04 m 163.52 57.60 l S
+178.74 59.04 m 178.74 57.60 l S
+193.47 59.04 m 193.47 57.60 l S
+208.70 59.04 m 208.70 57.60 l S
+223.43 59.04 m 223.43 57.60 l S
+238.65 59.04 m 238.65 57.60 l S
+253.87 59.04 m 253.87 57.60 l S
+267.62 59.04 m 267.62 57.60 l S
+282.84 59.04 m 282.84 57.60 l S
+297.57 59.04 m 297.57 57.60 l S
+312.80 59.04 m 312.80 57.60 l S
+327.53 59.04 m 327.53 57.60 l S
+342.75 59.04 m 342.75 57.60 l S
+357.97 59.04 m 357.97 57.60 l S
+372.70 59.04 m 372.70 57.60 l S
+387.93 59.04 m 387.93 57.60 l S
+402.66 59.04 m 402.66 57.60 l S
+417.88 59.04 m 417.88 57.60 l S
+433.10 59.04 m 433.10 57.60 l S
+447.34 59.04 m 447.34 57.60 l S
+462.56 59.04 m 462.56 57.60 l S
+477.30 59.04 m 477.30 57.60 l S
+492.52 59.04 m 492.52 57.60 l S
+507.25 59.04 m 507.25 57.60 l S
+522.47 59.04 m 522.47 57.60 l S
+537.69 59.04 m 537.69 57.60 l S
+552.42 59.04 m 552.42 57.60 l S
+567.65 59.04 m 567.65 57.60 l S
+582.38 59.04 m 582.38 57.60 l S
+597.60 59.04 m 597.60 57.60 l S
+612.82 59.04 m 612.82 57.60 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 7.00 0.00 -0.00 7.00 92.84 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 108.65 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 122.80 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 139.18 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 153.91 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 168.55 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 183.77 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 198.12 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 213.54 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 228.27 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 244.27 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 259.10 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 272.07 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 287.87 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 302.02 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 318.41 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 333.14 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 347.78 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 363.00 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 377.35 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 392.76 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 407.50 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 423.49 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 438.33 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 451.79 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 467.59 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 481.75 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 498.13 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 512.86 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 527.50 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 542.72 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 557.07 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 572.48 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 587.22 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 603.22 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 618.05 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 135.45 33.12 Tm (2006) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 314.68 33.12 Tm (2007) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 493.90 33.12 Tm (2008) Tj
+ET
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+78.08 59.04 m
+626.08 59.04 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+56.16 72.11 m 56.16 381.01 l S
+56.16 72.11 m 48.96 72.11 l S
+56.16 149.33 m 48.96 149.33 l S
+56.16 226.56 m 48.96 226.56 l S
+56.16 303.79 m 48.96 303.79 l S
+56.16 381.01 m 48.96 381.01 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 35.09 67.80 Tm (0) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 145.02 Tm (200) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 222.25 Tm (400) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 299.48 Tm (600) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 376.70 Tm (800) Tj
+ET
+Q q 56.16 59.04 591.84 352.80 re W n
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 528.17 393.58 Tm (Static IP address) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 511.52 215.96 Tm (Dynamic IP address) Tj
+ET
+Q
+endstream
+endobj
+7 0 obj
+40641
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+5 0 R
+]
+/Count 1
+/MediaBox [0 0 648 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font <</F2 9 0 R /F3 10 0 R >>
+/ExtGState << >>
+>>
+endobj
+8 0 obj
+<<
+/Type /Encoding
+/BaseEncoding /WinAnsiEncoding
+/Differences [ 45/minus 96/quoteleft
+144/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
+/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space]
+>>
+endobj
+9 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 8 0 R
+>> endobj
+10 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F3
+/BaseFont /Helvetica-Bold
+/Encoding 8 0 R
+>> endobj
+xref
+0 11
+0000000000 65535 f
+0000000021 00000 n
+0000000163 00000 n
+0000041007 00000 n
+0000041090 00000 n
+0000000212 00000 n
+0000000292 00000 n
+0000040986 00000 n
+0000041182 00000 n
+0000041439 00000 n
+0000041535 00000 n
+trailer
+<<
+/Size 11
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+41637
+%%EOF
diff --git a/2009/metrics/guardwfu-hotpets.pdf b/2009/metrics/guardwfu-hotpets.pdf
new file mode 100755
index 0000000..713fb21
--- /dev/null
+++ b/2009/metrics/guardwfu-hotpets.pdf
@@ -0,0 +1,2396 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20090505130228)
+/ModDate (D:20090505130228)
+/Title (R Graphics Output)
+/Producer (R 2.8.1)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+5 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 6 0 R
+/Resources 4 0 R
+>>
+endobj
+6 0 obj
+<<
+/Length 7 0 R
+>>
+stream
+q
+Q q 59.04 59.04 544.32 352.80 re W n
+0.000 0.000 0.545 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+79.20 251.31 m
+80.39 249.44 l
+81.58 241.97 l
+82.77 236.37 l
+83.95 255.97 l
+85.14 250.37 l
+86.33 250.37 l
+87.52 261.57 l
+88.71 264.37 l
+89.90 264.37 l
+91.09 263.44 l
+92.28 262.51 l
+93.46 262.51 l
+94.65 270.91 l
+95.84 270.91 l
+97.03 282.11 l
+98.22 255.04 l
+99.41 255.97 l
+100.60 254.11 l
+101.78 276.51 l
+102.97 268.11 l
+104.16 240.11 l
+105.35 239.17 l
+106.54 257.84 l
+107.73 293.31 l
+108.92 267.17 l
+110.11 264.37 l
+111.29 252.24 l
+112.48 266.24 l
+113.67 266.24 l
+114.86 267.17 l
+116.05 271.84 l
+117.24 289.57 l
+118.43 289.57 l
+119.62 277.44 l
+120.80 284.91 l
+121.99 260.64 l
+123.18 259.71 l
+124.37 258.77 l
+125.56 259.71 l
+126.75 244.77 l
+127.94 259.71 l
+129.12 255.04 l
+130.31 210.24 l
+131.50 212.11 l
+132.69 205.57 l
+133.88 238.24 l
+135.07 263.44 l
+136.26 258.77 l
+137.45 252.24 l
+138.63 236.37 l
+139.82 255.04 l
+141.01 260.64 l
+142.20 263.44 l
+143.39 258.77 l
+144.58 268.11 l
+145.77 269.04 l
+146.95 273.71 l
+148.14 268.11 l
+149.33 264.37 l
+150.52 259.71 l
+151.71 254.11 l
+152.90 255.04 l
+154.09 254.11 l
+155.28 264.37 l
+156.46 270.91 l
+157.65 259.71 l
+158.84 265.31 l
+160.03 267.17 l
+161.22 254.11 l
+162.41 265.31 l
+163.60 277.44 l
+164.78 277.44 l
+165.97 259.71 l
+167.16 266.24 l
+168.35 269.04 l
+169.54 268.11 l
+170.73 270.91 l
+171.92 266.24 l
+173.11 275.57 l
+174.29 283.97 l
+175.48 281.17 l
+176.67 274.64 l
+177.86 265.31 l
+179.05 268.11 l
+180.24 267.17 l
+181.43 252.24 l
+182.62 240.11 l
+183.80 230.77 l
+184.99 228.91 l
+186.18 213.97 l
+187.37 208.37 l
+188.56 229.84 l
+189.75 229.84 l
+190.94 232.64 l
+192.12 223.31 l
+193.31 219.57 l
+194.50 232.64 l
+195.69 211.17 l
+196.88 218.64 l
+198.07 222.37 l
+199.26 207.44 l
+200.45 227.04 l
+201.63 220.51 l
+202.82 226.11 l
+204.01 234.51 l
+205.20 241.97 l
+206.39 241.04 l
+207.58 247.57 l
+208.77 250.37 l
+209.95 253.17 l
+211.14 262.51 l
+212.33 267.17 l
+213.52 274.64 l
+214.71 304.51 l
+215.90 290.51 l
+217.09 281.17 l
+218.28 268.11 l
+219.46 292.37 l
+220.65 267.17 l
+221.84 286.77 l
+223.03 280.24 l
+224.22 306.37 l
+225.41 306.37 l
+226.60 277.44 l
+227.78 291.44 l
+228.97 281.17 l
+230.16 281.17 l
+231.35 273.71 l
+232.54 268.11 l
+233.73 278.37 l
+234.92 257.84 l
+236.11 256.91 l
+237.29 268.11 l
+238.48 276.51 l
+239.67 219.57 l
+240.86 206.51 l
+242.05 210.24 l
+243.24 227.97 l
+244.43 234.51 l
+245.62 221.44 l
+246.80 225.17 l
+247.99 241.04 l
+249.18 239.17 l
+250.37 244.77 l
+251.56 225.17 l
+252.75 227.97 l
+253.94 239.17 l
+255.12 247.57 l
+256.31 258.77 l
+257.50 248.51 l
+258.69 244.77 l
+259.88 244.77 l
+261.07 237.31 l
+262.26 238.24 l
+263.45 237.31 l
+264.63 256.91 l
+265.82 259.71 l
+267.01 248.51 l
+268.20 269.04 l
+269.39 273.71 l
+270.58 276.51 l
+271.77 277.44 l
+272.95 284.91 l
+274.14 282.11 l
+275.33 266.24 l
+276.52 302.64 l
+277.71 294.24 l
+278.90 292.37 l
+280.09 289.57 l
+281.28 294.24 l
+282.46 283.04 l
+283.65 289.57 l
+284.84 286.77 l
+286.03 292.37 l
+287.22 265.31 l
+288.41 295.17 l
+289.60 294.24 l
+290.78 300.77 l
+291.97 299.84 l
+293.16 294.24 l
+294.35 271.84 l
+295.54 268.11 l
+296.73 270.91 l
+297.92 271.84 l
+299.11 277.44 l
+300.29 281.17 l
+301.48 298.91 l
+302.67 311.97 l
+303.86 297.97 l
+305.05 300.77 l
+306.24 265.31 l
+307.43 310.11 l
+308.62 287.71 l
+309.80 282.11 l
+310.99 283.04 l
+312.18 287.71 l
+313.37 272.77 l
+314.56 279.31 l
+315.75 277.44 l
+316.94 247.57 l
+318.12 250.37 l
+319.31 273.71 l
+320.50 255.04 l
+321.69 248.51 l
+322.88 255.97 l
+324.07 269.04 l
+325.26 277.44 l
+326.45 274.64 l
+327.63 246.64 l
+328.82 262.51 l
+330.01 259.71 l
+331.20 255.97 l
+332.39 245.71 l
+333.58 256.91 l
+334.77 262.51 l
+335.95 258.77 l
+337.14 255.97 l
+338.33 260.64 l
+339.52 261.57 l
+340.71 254.11 l
+341.90 269.04 l
+343.09 260.64 l
+344.28 261.57 l
+345.46 264.37 l
+346.65 266.24 l
+347.84 270.91 l
+349.03 286.77 l
+350.22 285.84 l
+351.41 269.97 l
+352.60 271.84 l
+353.78 286.77 l
+354.97 282.11 l
+356.16 283.04 l
+357.35 288.64 l
+358.54 289.57 l
+359.73 297.04 l
+360.92 292.37 l
+362.11 295.17 l
+363.29 268.11 l
+364.48 257.84 l
+365.67 256.91 l
+366.86 272.77 l
+368.05 272.77 l
+369.24 288.64 l
+370.43 300.77 l
+371.62 279.31 l
+372.80 290.51 l
+373.99 317.57 l
+375.18 325.04 l
+376.37 316.64 l
+377.56 303.57 l
+378.75 287.71 l
+379.94 280.24 l
+381.12 258.77 l
+382.31 261.57 l
+383.50 261.57 l
+384.69 259.71 l
+385.88 256.91 l
+387.07 255.04 l
+388.26 251.31 l
+389.45 255.04 l
+390.63 268.11 l
+391.82 250.37 l
+393.01 258.77 l
+394.20 261.57 l
+395.39 244.77 l
+396.58 238.24 l
+397.77 247.57 l
+398.95 264.37 l
+400.14 243.84 l
+401.33 247.57 l
+402.52 272.77 l
+403.71 277.44 l
+404.90 251.31 l
+406.09 255.97 l
+407.28 257.84 l
+408.46 264.37 l
+409.65 268.11 l
+410.84 255.97 l
+412.03 225.17 l
+413.22 236.37 l
+414.41 240.11 l
+415.60 246.64 l
+416.78 260.64 l
+417.97 271.84 l
+419.16 249.44 l
+420.35 246.64 l
+421.54 227.97 l
+422.73 241.04 l
+423.92 247.57 l
+425.11 248.51 l
+426.29 252.24 l
+427.48 251.31 l
+428.67 239.17 l
+429.86 240.11 l
+431.05 255.04 l
+432.24 243.84 l
+433.43 241.04 l
+S
+435.80 130.91 m
+436.99 162.64 l
+438.18 177.57 l
+439.37 202.77 l
+440.56 201.84 l
+441.75 213.97 l
+442.94 216.77 l
+444.12 226.11 l
+445.31 223.31 l
+446.50 234.51 l
+447.69 229.84 l
+448.88 224.24 l
+450.07 238.24 l
+451.26 224.24 l
+452.45 224.24 l
+453.63 203.71 l
+454.82 216.77 l
+456.01 210.24 l
+457.20 213.04 l
+458.39 223.31 l
+459.58 227.04 l
+460.77 220.51 l
+461.95 225.17 l
+463.14 236.37 l
+464.33 227.97 l
+465.52 229.84 l
+466.71 239.17 l
+467.90 223.31 l
+469.09 227.97 l
+470.28 214.91 l
+471.46 218.64 l
+472.65 226.11 l
+473.84 222.37 l
+475.03 213.97 l
+476.22 224.24 l
+477.41 215.84 l
+478.60 229.84 l
+479.78 231.71 l
+480.97 233.57 l
+482.16 225.17 l
+483.35 227.04 l
+484.54 233.57 l
+485.73 229.84 l
+486.92 241.97 l
+488.11 245.71 l
+489.29 232.64 l
+490.48 227.04 l
+491.67 220.51 l
+492.86 215.84 l
+494.05 223.31 l
+495.24 228.91 l
+496.43 223.31 l
+497.62 215.84 l
+498.80 224.24 l
+499.99 224.24 l
+501.18 227.97 l
+502.37 221.44 l
+503.56 217.71 l
+504.75 211.17 l
+505.94 218.64 l
+507.12 201.84 l
+508.31 216.77 l
+509.50 207.44 l
+510.69 213.04 l
+511.88 223.31 l
+513.07 227.97 l
+514.26 247.57 l
+515.45 263.44 l
+516.63 266.24 l
+517.82 268.11 l
+519.01 274.64 l
+520.20 261.57 l
+521.39 238.24 l
+522.58 240.11 l
+523.77 225.17 l
+524.95 227.04 l
+526.14 231.71 l
+527.33 231.71 l
+528.52 241.04 l
+529.71 243.84 l
+530.90 243.84 l
+532.09 221.44 l
+533.28 227.04 l
+534.46 229.84 l
+535.65 237.31 l
+536.84 229.84 l
+538.03 234.51 l
+539.22 233.57 l
+540.41 239.17 l
+541.60 242.91 l
+542.78 238.24 l
+543.97 234.51 l
+545.16 241.04 l
+546.35 241.97 l
+547.54 232.64 l
+548.73 233.57 l
+549.92 241.04 l
+551.11 236.37 l
+552.29 255.04 l
+553.48 253.17 l
+554.67 259.71 l
+555.86 255.04 l
+557.05 276.51 l
+558.24 273.71 l
+559.43 274.64 l
+560.62 283.04 l
+561.80 276.51 l
+562.99 257.84 l
+564.18 241.04 l
+565.37 242.91 l
+566.56 255.04 l
+567.75 272.77 l
+568.94 263.44 l
+570.12 252.24 l
+571.31 255.04 l
+572.50 274.64 l
+573.69 270.91 l
+574.88 283.97 l
+576.07 304.51 l
+577.26 278.37 l
+578.45 282.11 l
+579.63 283.04 l
+580.82 283.97 l
+582.01 289.57 l
+583.20 274.64 l
+S
+Q q
+BT
+0.000 0.000 0.000 rg
+/F3 1 Tf 14.00 0.00 -0.00 14.00 148.21 416.89 Tm (Guard flags as a function of weighted fractional uptime) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 318.53 4.32 Tm (Date) Tj
+ET
+BT
+/F2 1 Tf 0.00 12.00 -12.00 0.00 12.96 189.94 Tm (Number of relays) Tj
+ET
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+79.20 59.04 m 583.20 59.04 l S
+79.20 59.04 m 79.20 59.04 l S
+583.20 59.04 m 583.20 59.04 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 282.20 33.12 Tm (2008) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 534.20 33.12 Tm (2009) Tj
+ET
+0.60 w
+[] 0 d
+514.26 59.04 m 514.26 59.04 l S
+514.26 59.04 m 514.26 50.40 l S
+116.05 59.04 m 551.11 59.04 l S
+116.05 59.04 m 116.05 57.60 l S
+150.52 59.04 m 150.52 57.60 l S
+187.37 59.04 m 187.37 57.60 l S
+223.03 59.04 m 223.03 57.60 l S
+259.88 59.04 m 259.88 57.60 l S
+295.54 59.04 m 295.54 57.60 l S
+332.39 59.04 m 332.39 57.60 l S
+369.24 59.04 m 369.24 57.60 l S
+404.90 59.04 m 404.90 57.60 l S
+441.75 59.04 m 441.75 57.60 l S
+477.41 59.04 m 477.41 57.60 l S
+514.26 59.04 m 514.26 57.60 l S
+551.11 59.04 m 551.11 57.60 l S
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 91.85 48.96 Tm (Jan) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 125.92 48.96 Tm (Feb) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 162.65 48.96 Tm (Mar) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 198.98 48.96 Tm (Apr) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 234.61 48.96 Tm (May) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 271.34 48.96 Tm (Jun) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 309.53 48.96 Tm (Jul) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 344.41 48.96 Tm (Aug) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 379.95 48.96 Tm (Sep) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 417.69 48.96 Tm (Oct) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 452.53 48.96 Tm (Nov) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 489.31 48.96 Tm (Dec) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 526.91 48.96 Tm (Jan) Tj
+ET
+BT
+/F2 1 Tf 8.00 0.00 -0.00 8.00 563.35 48.96 Tm (Feb) Tj
+ET
+0.75 w
+[] 0 d
+59.04 72.11 m 59.04 398.77 l S
+59.04 72.11 m 51.84 72.11 l S
+59.04 118.77 m 51.84 118.77 l S
+59.04 165.44 m 51.84 165.44 l S
+59.04 212.11 m 51.84 212.11 l S
+59.04 258.77 m 51.84 258.77 l S
+59.04 305.44 m 51.84 305.44 l S
+59.04 352.11 m 51.84 352.11 l S
+59.04 398.77 m 51.84 398.77 l S
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 37.97 67.80 Tm (0) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 31.30 114.47 Tm (50) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 24.62 161.13 Tm (100) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 24.62 207.80 Tm (150) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 24.62 254.47 Tm (200) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 24.62 301.13 Tm (250) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 24.62 347.80 Tm (300) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 24.62 394.47 Tm (350) Tj
+ET
+Q q 59.04 59.04 544.32 352.80 re W n
+0.792 0.882 1.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+79.20 309.17 m
+80.39 312.91 l
+81.58 290.51 l
+82.77 286.77 l
+83.95 310.11 l
+85.14 309.17 l
+86.33 320.37 l
+87.52 322.24 l
+88.71 332.51 l
+89.90 339.04 l
+91.09 327.84 l
+92.28 327.84 l
+93.46 314.77 l
+94.65 332.51 l
+95.84 324.11 l
+97.03 339.97 l
+98.22 307.31 l
+99.41 317.57 l
+100.60 331.57 l
+101.78 354.91 l
+102.97 338.11 l
+104.16 316.64 l
+105.35 310.11 l
+106.54 320.37 l
+107.73 367.97 l
+108.92 354.91 l
+110.11 351.17 l
+111.29 333.44 l
+112.48 354.91 l
+113.67 352.11 l
+114.86 340.91 l
+116.05 325.04 l
+117.24 334.37 l
+118.43 339.97 l
+119.62 333.44 l
+120.80 339.97 l
+121.99 319.44 l
+123.18 340.91 l
+124.37 337.17 l
+125.56 339.97 l
+126.75 326.91 l
+127.94 331.57 l
+129.12 336.24 l
+130.31 311.97 l
+131.50 302.64 l
+132.69 286.77 l
+133.88 310.11 l
+135.07 340.91 l
+136.26 338.11 l
+137.45 349.31 l
+138.63 327.84 l
+139.82 336.24 l
+141.01 336.24 l
+142.20 353.04 l
+143.39 338.11 l
+144.58 338.11 l
+145.77 342.77 l
+146.95 348.37 l
+148.14 335.31 l
+149.33 337.17 l
+150.52 339.97 l
+151.71 325.04 l
+152.90 333.44 l
+154.09 332.51 l
+155.28 346.51 l
+156.46 343.71 l
+157.65 334.37 l
+158.84 337.17 l
+160.03 344.64 l
+161.22 331.57 l
+162.41 348.37 l
+163.60 354.91 l
+164.78 367.04 l
+165.97 334.37 l
+167.16 333.44 l
+168.35 323.17 l
+169.54 323.17 l
+170.73 325.04 l
+171.92 323.17 l
+173.11 331.57 l
+174.29 321.31 l
+175.48 314.77 l
+176.67 311.97 l
+177.86 322.24 l
+179.05 328.77 l
+180.24 335.31 l
+181.43 315.71 l
+182.62 305.44 l
+183.80 303.57 l
+184.99 305.44 l
+186.18 283.04 l
+187.37 275.57 l
+188.56 297.04 l
+189.75 301.71 l
+190.94 304.51 l
+192.12 292.37 l
+193.31 286.77 l
+194.50 310.11 l
+195.69 294.24 l
+196.88 296.11 l
+198.07 283.97 l
+199.26 279.31 l
+200.45 292.37 l
+201.63 297.04 l
+202.82 303.57 l
+204.01 309.17 l
+205.20 320.37 l
+206.39 330.64 l
+207.58 318.51 l
+208.77 314.77 l
+209.95 309.17 l
+211.14 315.71 l
+212.33 315.71 l
+213.52 315.71 l
+214.71 350.24 l
+215.90 336.24 l
+217.09 330.64 l
+218.28 324.11 l
+219.46 353.97 l
+220.65 335.31 l
+221.84 350.24 l
+223.03 334.37 l
+224.22 350.24 l
+225.41 362.37 l
+226.60 344.64 l
+227.78 342.77 l
+228.97 331.57 l
+230.16 335.31 l
+231.35 332.51 l
+232.54 327.84 l
+233.73 338.11 l
+234.92 327.84 l
+236.11 336.24 l
+237.29 344.64 l
+238.48 352.11 l
+239.67 285.84 l
+240.86 281.17 l
+242.05 297.04 l
+243.24 300.77 l
+244.43 303.57 l
+245.62 299.84 l
+246.80 297.97 l
+247.99 310.11 l
+249.18 302.64 l
+250.37 310.11 l
+251.56 289.57 l
+252.75 290.51 l
+253.94 310.11 l
+255.12 322.24 l
+256.31 325.97 l
+257.50 316.64 l
+258.69 312.91 l
+259.88 302.64 l
+261.07 281.17 l
+262.26 281.17 l
+263.45 275.57 l
+264.63 302.64 l
+265.82 314.77 l
+267.01 295.17 l
+268.20 315.71 l
+269.39 343.71 l
+270.58 370.77 l
+271.77 369.84 l
+272.95 367.04 l
+274.14 367.04 l
+275.33 349.31 l
+276.52 378.24 l
+277.71 367.04 l
+278.90 382.91 l
+280.09 382.91 l
+281.28 382.91 l
+282.46 375.44 l
+283.65 381.04 l
+284.84 378.24 l
+286.03 395.97 l
+287.22 383.84 l
+288.41 403.44 l
+289.60 399.71 l
+290.78 398.77 l
+291.97 393.17 l
+293.16 397.84 l
+294.35 373.57 l
+295.54 353.04 l
+296.73 364.24 l
+297.92 353.97 l
+299.11 348.37 l
+300.29 353.04 l
+301.48 367.97 l
+302.67 361.44 l
+303.86 365.17 l
+305.05 362.37 l
+306.24 334.37 l
+307.43 380.11 l
+308.62 345.57 l
+309.80 351.17 l
+310.99 351.17 l
+312.18 362.37 l
+313.37 355.84 l
+314.56 363.31 l
+315.75 357.71 l
+316.94 322.24 l
+318.12 339.97 l
+319.31 365.17 l
+320.50 339.04 l
+321.69 332.51 l
+322.88 344.64 l
+324.07 367.97 l
+325.26 363.31 l
+326.45 365.17 l
+327.63 333.44 l
+328.82 354.91 l
+330.01 340.91 l
+331.20 319.44 l
+332.39 321.31 l
+333.58 321.31 l
+334.77 324.11 l
+335.95 316.64 l
+337.14 308.24 l
+338.33 318.51 l
+339.52 316.64 l
+340.71 307.31 l
+341.90 315.71 l
+343.09 310.11 l
+344.28 317.57 l
+345.46 317.57 l
+346.65 327.84 l
+347.84 337.17 l
+349.03 364.24 l
+350.22 365.17 l
+351.41 353.04 l
+352.60 347.44 l
+353.78 357.71 l
+354.97 353.04 l
+356.16 363.31 l
+357.35 376.37 l
+358.54 384.77 l
+359.73 389.44 l
+360.92 381.97 l
+362.11 379.17 l
+363.29 353.04 l
+364.48 326.91 l
+365.67 329.71 l
+366.86 341.84 l
+368.05 325.04 l
+369.24 337.17 l
+370.43 354.91 l
+371.62 357.71 l
+372.80 366.11 l
+373.99 387.57 l
+375.18 382.91 l
+376.37 382.91 l
+377.56 375.44 l
+378.75 364.24 l
+379.94 353.97 l
+381.12 346.51 l
+382.31 348.37 l
+383.50 363.31 l
+384.69 348.37 l
+385.88 346.51 l
+387.07 352.11 l
+388.26 357.71 l
+389.45 356.77 l
+390.63 358.64 l
+391.82 350.24 l
+393.01 373.57 l
+394.20 375.44 l
+395.39 362.37 l
+396.58 347.44 l
+397.77 352.11 l
+398.95 361.44 l
+400.14 335.31 l
+401.33 340.91 l
+402.52 360.51 l
+403.71 349.31 l
+404.90 326.91 l
+406.09 325.04 l
+407.28 338.11 l
+408.46 350.24 l
+409.65 337.17 l
+410.84 310.11 l
+412.03 307.31 l
+413.22 312.91 l
+414.41 323.17 l
+415.60 332.51 l
+416.78 339.04 l
+417.97 339.04 l
+419.16 339.97 l
+420.35 333.44 l
+421.54 314.77 l
+422.73 316.64 l
+423.92 325.04 l
+425.11 323.17 l
+426.29 311.97 l
+427.48 309.17 l
+428.67 309.17 l
+429.86 309.17 l
+431.05 323.17 l
+432.24 310.11 l
+433.43 306.37 l
+S
+435.80 157.04 m
+436.99 193.44 l
+438.18 223.31 l
+439.37 253.17 l
+440.56 255.04 l
+441.75 276.51 l
+442.94 286.77 l
+444.12 291.44 l
+445.31 284.91 l
+446.50 297.97 l
+447.69 292.37 l
+448.88 287.71 l
+450.07 279.31 l
+451.26 257.84 l
+452.45 279.31 l
+453.63 283.97 l
+454.82 289.57 l
+456.01 283.04 l
+457.20 269.04 l
+458.39 269.97 l
+459.58 280.24 l
+460.77 283.04 l
+461.95 285.84 l
+463.14 291.44 l
+464.33 284.91 l
+465.52 288.64 l
+466.71 295.17 l
+467.90 286.77 l
+469.09 296.11 l
+470.28 289.57 l
+471.46 283.04 l
+472.65 296.11 l
+473.84 290.51 l
+475.03 284.91 l
+476.22 292.37 l
+477.41 292.37 l
+478.60 307.31 l
+479.78 317.57 l
+480.97 316.64 l
+482.16 293.31 l
+483.35 299.84 l
+484.54 297.97 l
+485.73 293.31 l
+486.92 315.71 l
+488.11 314.77 l
+489.29 308.24 l
+490.48 302.64 l
+491.67 290.51 l
+492.86 276.51 l
+494.05 290.51 l
+495.24 295.17 l
+496.43 282.11 l
+497.62 285.84 l
+498.80 285.84 l
+499.99 279.31 l
+501.18 281.17 l
+502.37 275.57 l
+503.56 276.51 l
+504.75 269.04 l
+505.94 280.24 l
+507.12 271.84 l
+508.31 295.17 l
+509.50 283.97 l
+510.69 270.91 l
+511.88 278.37 l
+513.07 283.97 l
+514.26 285.84 l
+515.45 301.71 l
+516.63 297.97 l
+517.82 308.24 l
+519.01 305.44 l
+520.20 289.57 l
+521.39 277.44 l
+522.58 275.57 l
+523.77 260.64 l
+524.95 271.84 l
+526.14 289.57 l
+527.33 281.17 l
+528.52 297.97 l
+529.71 305.44 l
+530.90 299.84 l
+532.09 275.57 l
+533.28 280.24 l
+534.46 283.97 l
+535.65 299.84 l
+536.84 301.71 l
+538.03 312.91 l
+539.22 306.37 l
+540.41 308.24 l
+541.60 308.24 l
+542.78 298.91 l
+543.97 296.11 l
+545.16 302.64 l
+546.35 301.71 l
+547.54 302.64 l
+548.73 306.37 l
+549.92 311.04 l
+551.11 303.57 l
+552.29 311.97 l
+553.48 319.44 l
+554.67 325.04 l
+555.86 319.44 l
+557.05 336.24 l
+558.24 338.11 l
+559.43 333.44 l
+560.62 346.51 l
+561.80 349.31 l
+562.99 339.97 l
+564.18 328.77 l
+565.37 332.51 l
+566.56 342.77 l
+567.75 352.11 l
+568.94 331.57 l
+570.12 322.24 l
+571.31 338.11 l
+572.50 353.97 l
+573.69 342.77 l
+574.88 344.64 l
+576.07 362.37 l
+577.26 321.31 l
+578.45 333.44 l
+579.63 332.51 l
+580.82 334.37 l
+582.01 332.51 l
+583.20 322.24 l
+S
+0.737 0.824 0.933 RG
+79.20 307.31 m
+80.39 306.37 l
+81.58 284.91 l
+82.77 279.31 l
+83.95 297.04 l
+85.14 290.51 l
+86.33 301.71 l
+87.52 311.97 l
+88.71 330.64 l
+89.90 330.64 l
+91.09 320.37 l
+92.28 321.31 l
+93.46 309.17 l
+94.65 330.64 l
+95.84 321.31 l
+97.03 330.64 l
+98.22 293.31 l
+99.41 304.51 l
+100.60 311.04 l
+101.78 339.04 l
+102.97 324.11 l
+104.16 304.51 l
+105.35 307.31 l
+106.54 312.91 l
+107.73 353.04 l
+108.92 334.37 l
+110.11 335.31 l
+111.29 325.04 l
+112.48 338.11 l
+113.67 330.64 l
+114.86 327.84 l
+116.05 319.44 l
+117.24 332.51 l
+118.43 336.24 l
+119.62 331.57 l
+120.80 339.97 l
+121.99 315.71 l
+123.18 337.17 l
+124.37 337.17 l
+125.56 331.57 l
+126.75 319.44 l
+127.94 324.11 l
+129.12 325.97 l
+130.31 295.17 l
+131.50 287.71 l
+132.69 270.91 l
+133.88 301.71 l
+135.07 339.97 l
+136.26 330.64 l
+137.45 341.84 l
+138.63 320.37 l
+139.82 328.77 l
+141.01 325.97 l
+142.20 338.11 l
+143.39 322.24 l
+144.58 326.91 l
+145.77 339.04 l
+146.95 340.91 l
+148.14 333.44 l
+149.33 321.31 l
+150.52 324.11 l
+151.71 302.64 l
+152.90 312.91 l
+154.09 319.44 l
+155.28 317.57 l
+156.46 313.84 l
+157.65 305.44 l
+158.84 309.17 l
+160.03 327.84 l
+161.22 313.84 l
+162.41 334.37 l
+163.60 354.91 l
+164.78 353.97 l
+165.97 326.91 l
+167.16 326.91 l
+168.35 321.31 l
+169.54 315.71 l
+170.73 317.57 l
+171.92 309.17 l
+173.11 316.64 l
+174.29 311.04 l
+175.48 298.91 l
+176.67 300.77 l
+177.86 297.97 l
+179.05 296.11 l
+180.24 308.24 l
+181.43 289.57 l
+182.62 286.77 l
+183.80 287.71 l
+184.99 288.64 l
+186.18 282.11 l
+187.37 275.57 l
+188.56 295.17 l
+189.75 299.84 l
+190.94 304.51 l
+192.12 292.37 l
+193.31 285.84 l
+194.50 302.64 l
+195.69 278.37 l
+196.88 277.44 l
+198.07 269.97 l
+199.26 264.37 l
+200.45 277.44 l
+201.63 272.77 l
+202.82 280.24 l
+204.01 293.31 l
+205.20 302.64 l
+206.39 315.71 l
+207.58 302.64 l
+208.77 297.04 l
+209.95 297.97 l
+211.14 309.17 l
+212.33 302.64 l
+213.52 297.04 l
+214.71 327.84 l
+215.90 323.17 l
+217.09 311.04 l
+218.28 307.31 l
+219.46 341.84 l
+220.65 313.84 l
+221.84 331.57 l
+223.03 318.51 l
+224.22 335.31 l
+225.41 342.77 l
+226.60 322.24 l
+227.78 330.64 l
+228.97 318.51 l
+230.16 320.37 l
+231.35 312.91 l
+232.54 305.44 l
+233.73 318.51 l
+234.92 311.97 l
+236.11 318.51 l
+237.29 322.24 l
+238.48 331.57 l
+239.67 268.11 l
+240.86 265.31 l
+242.05 283.97 l
+243.24 286.77 l
+244.43 298.91 l
+245.62 289.57 l
+246.80 285.84 l
+247.99 293.31 l
+249.18 289.57 l
+250.37 293.31 l
+251.56 272.77 l
+252.75 277.44 l
+253.94 295.17 l
+255.12 309.17 l
+256.31 312.91 l
+257.50 304.51 l
+258.69 299.84 l
+259.88 290.51 l
+261.07 266.24 l
+262.26 276.51 l
+263.45 269.97 l
+264.63 293.31 l
+265.82 297.04 l
+267.01 285.84 l
+268.20 298.91 l
+269.39 321.31 l
+270.58 329.71 l
+271.77 336.24 l
+272.95 340.91 l
+274.14 333.44 l
+275.33 325.97 l
+276.52 357.71 l
+277.71 344.64 l
+278.90 353.04 l
+280.09 349.31 l
+281.28 354.91 l
+282.46 349.31 l
+283.65 356.77 l
+284.84 353.97 l
+286.03 361.44 l
+287.22 354.91 l
+288.41 382.91 l
+289.60 385.71 l
+290.78 388.51 l
+291.97 379.17 l
+293.16 379.17 l
+294.35 358.64 l
+295.54 343.71 l
+296.73 352.11 l
+297.92 341.84 l
+299.11 329.71 l
+300.29 337.17 l
+301.48 352.11 l
+302.67 350.24 l
+303.86 349.31 l
+305.05 345.57 l
+306.24 312.91 l
+307.43 350.24 l
+308.62 329.71 l
+309.80 327.84 l
+310.99 326.91 l
+312.18 335.31 l
+313.37 325.97 l
+314.56 334.37 l
+315.75 333.44 l
+316.94 299.84 l
+318.12 307.31 l
+319.31 339.04 l
+320.50 318.51 l
+321.69 312.91 l
+322.88 323.17 l
+324.07 348.37 l
+325.26 350.24 l
+326.45 350.24 l
+327.63 320.37 l
+328.82 340.91 l
+330.01 331.57 l
+331.20 309.17 l
+332.39 309.17 l
+333.58 315.71 l
+334.77 312.91 l
+335.95 303.57 l
+337.14 295.17 l
+338.33 298.91 l
+339.52 293.31 l
+340.71 288.64 l
+341.90 302.64 l
+343.09 302.64 l
+344.28 308.24 l
+345.46 308.24 l
+346.65 307.31 l
+347.84 321.31 l
+349.03 340.91 l
+350.22 340.91 l
+351.41 341.84 l
+352.60 336.24 l
+353.78 348.37 l
+354.97 348.37 l
+356.16 347.44 l
+357.35 357.71 l
+358.54 367.04 l
+359.73 375.44 l
+360.92 380.11 l
+362.11 374.51 l
+363.29 351.17 l
+364.48 326.91 l
+365.67 329.71 l
+366.86 341.84 l
+368.05 325.04 l
+369.24 336.24 l
+370.43 344.64 l
+371.62 350.24 l
+372.80 353.97 l
+373.99 379.17 l
+375.18 382.91 l
+376.37 381.97 l
+377.56 367.97 l
+378.75 356.77 l
+379.94 346.51 l
+381.12 336.24 l
+382.31 338.11 l
+383.50 334.37 l
+384.69 324.11 l
+385.88 315.71 l
+387.07 323.17 l
+388.26 337.17 l
+389.45 344.64 l
+390.63 353.04 l
+391.82 348.37 l
+393.01 365.17 l
+394.20 366.11 l
+395.39 354.91 l
+396.58 341.84 l
+397.77 350.24 l
+398.95 358.64 l
+400.14 326.91 l
+401.33 323.17 l
+402.52 338.11 l
+403.71 333.44 l
+404.90 309.17 l
+406.09 318.51 l
+407.28 329.71 l
+408.46 335.31 l
+409.65 326.91 l
+410.84 307.31 l
+412.03 296.11 l
+413.22 301.71 l
+414.41 313.84 l
+415.60 313.84 l
+416.78 319.44 l
+417.97 325.97 l
+419.16 329.71 l
+420.35 331.57 l
+421.54 313.84 l
+422.73 309.17 l
+423.92 313.84 l
+425.11 311.04 l
+426.29 299.84 l
+427.48 300.77 l
+428.67 296.11 l
+429.86 300.77 l
+431.05 306.37 l
+432.24 292.37 l
+433.43 297.97 l
+S
+435.80 155.17 m
+436.99 190.64 l
+438.18 217.71 l
+439.37 249.44 l
+440.56 249.44 l
+441.75 260.64 l
+442.94 267.17 l
+444.12 277.44 l
+445.31 272.77 l
+446.50 292.37 l
+447.69 292.37 l
+448.88 287.71 l
+450.07 279.31 l
+451.26 257.84 l
+452.45 269.04 l
+453.63 265.31 l
+454.82 282.11 l
+456.01 278.37 l
+457.20 264.37 l
+458.39 263.44 l
+459.58 269.04 l
+460.77 267.17 l
+461.95 272.77 l
+463.14 274.64 l
+464.33 272.77 l
+465.52 274.64 l
+466.71 272.77 l
+467.90 259.71 l
+469.09 254.11 l
+470.28 254.11 l
+471.46 257.84 l
+472.65 260.64 l
+473.84 255.04 l
+475.03 246.64 l
+476.22 262.51 l
+477.41 263.44 l
+478.60 282.11 l
+479.78 292.37 l
+480.97 298.91 l
+482.16 283.04 l
+483.35 292.37 l
+484.54 287.71 l
+485.73 277.44 l
+486.92 286.77 l
+488.11 289.57 l
+489.29 290.51 l
+490.48 284.91 l
+491.67 275.57 l
+492.86 271.84 l
+494.05 283.04 l
+495.24 291.44 l
+496.43 281.17 l
+497.62 279.31 l
+498.80 278.37 l
+499.99 271.84 l
+501.18 271.84 l
+502.37 272.77 l
+503.56 274.64 l
+504.75 263.44 l
+505.94 272.77 l
+507.12 263.44 l
+508.31 287.71 l
+509.50 282.11 l
+510.69 270.91 l
+511.88 276.51 l
+513.07 279.31 l
+514.26 276.51 l
+515.45 282.11 l
+516.63 277.44 l
+517.82 285.84 l
+519.01 293.31 l
+520.20 280.24 l
+521.39 269.04 l
+522.58 264.37 l
+523.77 249.44 l
+524.95 251.31 l
+526.14 257.84 l
+527.33 248.51 l
+528.52 271.84 l
+529.71 283.04 l
+530.90 283.97 l
+532.09 260.64 l
+533.28 268.11 l
+534.46 275.57 l
+535.65 281.17 l
+536.84 275.57 l
+538.03 287.71 l
+539.22 280.24 l
+540.41 284.91 l
+541.60 295.17 l
+542.78 295.17 l
+543.97 283.04 l
+545.16 296.11 l
+546.35 287.71 l
+547.54 294.24 l
+548.73 298.91 l
+549.92 297.04 l
+551.11 292.37 l
+552.29 304.51 l
+553.48 309.17 l
+554.67 323.17 l
+555.86 306.37 l
+557.05 321.31 l
+558.24 324.11 l
+559.43 317.57 l
+560.62 332.51 l
+561.80 331.57 l
+562.99 311.97 l
+564.18 304.51 l
+565.37 315.71 l
+566.56 333.44 l
+567.75 345.57 l
+568.94 329.71 l
+570.12 314.77 l
+571.31 326.91 l
+572.50 339.04 l
+573.69 331.57 l
+574.88 339.97 l
+576.07 362.37 l
+577.26 321.31 l
+578.45 325.97 l
+579.63 325.04 l
+580.82 326.91 l
+582.01 320.37 l
+583.20 313.84 l
+S
+0.635 0.710 0.804 RG
+79.20 281.17 m
+80.39 280.24 l
+81.58 267.17 l
+82.77 256.91 l
+83.95 265.31 l
+85.14 258.77 l
+86.33 256.91 l
+87.52 265.31 l
+88.71 271.84 l
+89.90 278.37 l
+91.09 270.91 l
+92.28 268.11 l
+93.46 265.31 l
+94.65 275.57 l
+95.84 273.71 l
+97.03 289.57 l
+98.22 261.57 l
+99.41 263.44 l
+100.60 255.04 l
+101.78 277.44 l
+102.97 269.97 l
+104.16 246.64 l
+105.35 243.84 l
+106.54 260.64 l
+107.73 294.24 l
+108.92 270.91 l
+110.11 269.04 l
+111.29 256.91 l
+112.48 276.51 l
+113.67 275.57 l
+114.86 276.51 l
+116.05 273.71 l
+117.24 292.37 l
+118.43 291.44 l
+119.62 285.84 l
+120.80 296.11 l
+121.99 270.91 l
+123.18 282.11 l
+124.37 288.64 l
+125.56 297.97 l
+126.75 282.11 l
+127.94 287.71 l
+129.12 291.44 l
+130.31 258.77 l
+131.50 251.31 l
+132.69 236.37 l
+133.88 263.44 l
+135.07 288.64 l
+136.26 282.11 l
+137.45 296.11 l
+138.63 285.84 l
+139.82 297.97 l
+141.01 295.17 l
+142.20 314.77 l
+143.39 301.71 l
+144.58 299.84 l
+145.77 307.31 l
+146.95 309.17 l
+148.14 306.37 l
+149.33 291.44 l
+150.52 290.51 l
+151.71 277.44 l
+152.90 290.51 l
+154.09 288.64 l
+155.28 291.44 l
+156.46 285.84 l
+157.65 273.71 l
+158.84 279.31 l
+160.03 275.57 l
+161.22 263.44 l
+162.41 283.97 l
+163.60 296.11 l
+164.78 292.37 l
+165.97 276.51 l
+167.16 284.91 l
+168.35 282.11 l
+169.54 289.57 l
+170.73 304.51 l
+171.92 296.11 l
+173.11 306.37 l
+174.29 303.57 l
+175.48 287.71 l
+176.67 279.31 l
+177.86 273.71 l
+179.05 279.31 l
+180.24 278.37 l
+181.43 257.84 l
+182.62 254.11 l
+183.80 250.37 l
+184.99 245.71 l
+186.18 238.24 l
+187.37 226.11 l
+188.56 250.37 l
+189.75 253.17 l
+190.94 253.17 l
+192.12 247.57 l
+193.31 255.04 l
+194.50 275.57 l
+195.69 262.51 l
+196.88 257.84 l
+198.07 250.37 l
+199.26 241.04 l
+200.45 248.51 l
+201.63 247.57 l
+202.82 260.64 l
+204.01 268.11 l
+205.20 274.64 l
+206.39 280.24 l
+207.58 284.91 l
+208.77 285.84 l
+209.95 280.24 l
+211.14 286.77 l
+212.33 287.71 l
+213.52 282.11 l
+214.71 311.04 l
+215.90 300.77 l
+217.09 289.57 l
+218.28 284.91 l
+219.46 319.44 l
+220.65 290.51 l
+221.84 306.37 l
+223.03 301.71 l
+224.22 322.24 l
+225.41 314.77 l
+226.60 290.51 l
+227.78 300.77 l
+228.97 285.84 l
+230.16 289.57 l
+231.35 287.71 l
+232.54 280.24 l
+233.73 284.91 l
+234.92 277.44 l
+236.11 283.04 l
+237.29 293.31 l
+238.48 299.84 l
+239.67 234.51 l
+240.86 216.77 l
+242.05 232.64 l
+243.24 263.44 l
+244.43 272.77 l
+245.62 260.64 l
+246.80 264.37 l
+247.99 278.37 l
+249.18 273.71 l
+250.37 275.57 l
+251.56 251.31 l
+252.75 256.91 l
+253.94 278.37 l
+255.12 291.44 l
+256.31 295.17 l
+257.50 290.51 l
+258.69 285.84 l
+259.88 276.51 l
+261.07 255.04 l
+262.26 261.57 l
+263.45 255.04 l
+264.63 283.97 l
+265.82 283.04 l
+267.01 268.11 l
+268.20 287.71 l
+269.39 311.97 l
+270.58 316.64 l
+271.77 320.37 l
+272.95 330.64 l
+274.14 324.11 l
+275.33 312.91 l
+276.52 342.77 l
+277.71 326.91 l
+278.90 341.84 l
+280.09 337.17 l
+281.28 339.97 l
+282.46 340.91 l
+283.65 352.11 l
+284.84 342.77 l
+286.03 352.11 l
+287.22 331.57 l
+288.41 356.77 l
+289.60 351.17 l
+290.78 359.57 l
+291.97 349.31 l
+293.16 342.77 l
+294.35 326.91 l
+295.54 325.04 l
+296.73 327.84 l
+297.92 331.57 l
+299.11 319.44 l
+300.29 319.44 l
+301.48 333.44 l
+302.67 340.91 l
+303.86 341.84 l
+305.05 339.04 l
+306.24 304.51 l
+307.43 347.44 l
+308.62 325.97 l
+309.80 321.31 l
+310.99 316.64 l
+312.18 323.17 l
+313.37 312.91 l
+314.56 311.97 l
+315.75 305.44 l
+316.94 276.51 l
+318.12 282.11 l
+319.31 315.71 l
+320.50 298.91 l
+321.69 281.17 l
+322.88 284.91 l
+324.07 311.04 l
+325.26 320.37 l
+326.45 326.91 l
+327.63 305.44 l
+328.82 325.97 l
+330.01 321.31 l
+331.20 301.71 l
+332.39 300.77 l
+333.58 304.51 l
+334.77 302.64 l
+335.95 293.31 l
+337.14 285.84 l
+338.33 293.31 l
+339.52 287.71 l
+340.71 281.17 l
+341.90 292.37 l
+343.09 280.24 l
+344.28 281.17 l
+345.46 284.91 l
+346.65 285.84 l
+347.84 306.37 l
+349.03 325.97 l
+350.22 325.04 l
+351.41 327.84 l
+352.60 325.97 l
+353.78 336.24 l
+354.97 335.31 l
+356.16 336.24 l
+357.35 339.04 l
+358.54 349.31 l
+359.73 366.11 l
+360.92 359.57 l
+362.11 361.44 l
+363.29 329.71 l
+364.48 306.37 l
+365.67 309.17 l
+366.86 319.44 l
+368.05 306.37 l
+369.24 321.31 l
+370.43 330.64 l
+371.62 334.37 l
+372.80 339.04 l
+373.99 356.77 l
+375.18 356.77 l
+376.37 352.11 l
+377.56 342.77 l
+378.75 340.91 l
+379.94 331.57 l
+381.12 315.71 l
+382.31 313.84 l
+383.50 309.17 l
+384.69 303.57 l
+385.88 299.84 l
+387.07 290.51 l
+388.26 295.17 l
+389.45 300.77 l
+390.63 311.97 l
+391.82 298.91 l
+393.01 315.71 l
+394.20 325.04 l
+395.39 317.57 l
+396.58 312.91 l
+397.77 316.64 l
+398.95 334.37 l
+400.14 307.31 l
+401.33 303.57 l
+402.52 322.24 l
+403.71 319.44 l
+404.90 296.11 l
+406.09 288.64 l
+407.28 300.77 l
+408.46 307.31 l
+409.65 304.51 l
+410.84 283.97 l
+412.03 266.24 l
+413.22 269.97 l
+414.41 291.44 l
+415.60 292.37 l
+416.78 297.04 l
+417.97 299.84 l
+419.16 301.71 l
+420.35 297.97 l
+421.54 279.31 l
+422.73 283.04 l
+423.92 293.31 l
+425.11 288.64 l
+426.29 280.24 l
+427.48 283.97 l
+428.67 282.11 l
+429.86 282.11 l
+431.05 285.84 l
+432.24 270.91 l
+433.43 271.84 l
+S
+435.80 146.77 m
+436.99 182.24 l
+438.18 205.57 l
+439.37 240.11 l
+440.56 241.04 l
+441.75 253.17 l
+442.94 258.77 l
+444.12 259.71 l
+445.31 259.71 l
+446.50 272.77 l
+447.69 263.44 l
+448.88 256.91 l
+450.07 256.91 l
+451.26 234.51 l
+452.45 242.91 l
+453.63 232.64 l
+454.82 245.71 l
+456.01 241.04 l
+457.20 225.17 l
+458.39 233.57 l
+459.58 239.17 l
+460.77 233.57 l
+461.95 249.44 l
+463.14 261.57 l
+464.33 260.64 l
+465.52 262.51 l
+466.71 259.71 l
+467.90 246.64 l
+469.09 241.04 l
+470.28 230.77 l
+471.46 229.84 l
+472.65 237.31 l
+473.84 231.71 l
+475.03 220.51 l
+476.22 229.84 l
+477.41 228.91 l
+478.60 250.37 l
+479.78 254.11 l
+480.97 252.24 l
+482.16 251.31 l
+483.35 253.17 l
+484.54 249.44 l
+485.73 248.51 l
+486.92 258.77 l
+488.11 278.37 l
+489.29 269.97 l
+490.48 260.64 l
+491.67 248.51 l
+492.86 239.17 l
+494.05 249.44 l
+495.24 255.04 l
+496.43 234.51 l
+497.62 236.37 l
+498.80 242.91 l
+499.99 235.44 l
+501.18 246.64 l
+502.37 245.71 l
+503.56 251.31 l
+504.75 244.77 l
+505.94 251.31 l
+507.12 241.04 l
+508.31 258.77 l
+509.50 257.84 l
+510.69 247.57 l
+511.88 255.04 l
+513.07 259.71 l
+514.26 265.31 l
+515.45 274.64 l
+516.63 272.77 l
+517.82 275.57 l
+519.01 285.84 l
+520.20 273.71 l
+521.39 257.84 l
+522.58 255.97 l
+523.77 237.31 l
+524.95 237.31 l
+526.14 244.77 l
+527.33 241.04 l
+528.52 253.17 l
+529.71 254.11 l
+530.90 251.31 l
+532.09 230.77 l
+533.28 231.71 l
+534.46 233.57 l
+535.65 241.04 l
+536.84 255.04 l
+538.03 263.44 l
+539.22 261.57 l
+540.41 265.31 l
+541.60 256.91 l
+542.78 250.37 l
+543.97 241.04 l
+545.16 259.71 l
+546.35 255.04 l
+547.54 255.04 l
+548.73 263.44 l
+549.92 273.71 l
+551.11 264.37 l
+552.29 272.77 l
+553.48 272.77 l
+554.67 274.64 l
+555.86 271.84 l
+557.05 282.11 l
+558.24 283.97 l
+559.43 284.91 l
+560.62 303.57 l
+561.80 308.24 l
+562.99 291.44 l
+564.18 275.57 l
+565.37 282.11 l
+566.56 299.84 l
+567.75 315.71 l
+568.94 304.51 l
+570.12 295.17 l
+571.31 297.97 l
+572.50 322.24 l
+573.69 324.11 l
+574.88 330.64 l
+576.07 355.84 l
+577.26 314.77 l
+578.45 317.57 l
+579.63 317.57 l
+580.82 321.31 l
+582.01 318.51 l
+583.20 303.57 l
+S
+0.431 0.482 0.545 RG
+79.20 253.17 m
+80.39 251.31 l
+81.58 241.97 l
+82.77 236.37 l
+83.95 255.97 l
+85.14 250.37 l
+86.33 251.31 l
+87.52 261.57 l
+88.71 264.37 l
+89.90 266.24 l
+91.09 263.44 l
+92.28 262.51 l
+93.46 262.51 l
+94.65 270.91 l
+95.84 270.91 l
+97.03 282.11 l
+98.22 255.04 l
+99.41 255.97 l
+100.60 254.11 l
+101.78 276.51 l
+102.97 268.11 l
+104.16 240.11 l
+105.35 239.17 l
+106.54 257.84 l
+107.73 293.31 l
+108.92 267.17 l
+110.11 264.37 l
+111.29 252.24 l
+112.48 266.24 l
+113.67 266.24 l
+114.86 267.17 l
+116.05 271.84 l
+117.24 289.57 l
+118.43 289.57 l
+119.62 277.44 l
+120.80 284.91 l
+121.99 260.64 l
+123.18 259.71 l
+124.37 260.64 l
+125.56 259.71 l
+126.75 250.37 l
+127.94 266.24 l
+129.12 257.84 l
+130.31 219.57 l
+131.50 213.97 l
+132.69 208.37 l
+133.88 238.24 l
+135.07 263.44 l
+136.26 258.77 l
+137.45 252.24 l
+138.63 241.04 l
+139.82 260.64 l
+141.01 260.64 l
+142.20 269.97 l
+143.39 261.57 l
+144.58 270.91 l
+145.77 271.84 l
+146.95 277.44 l
+148.14 269.04 l
+149.33 268.11 l
+150.52 265.31 l
+151.71 259.71 l
+152.90 267.17 l
+154.09 267.17 l
+155.28 275.57 l
+156.46 282.11 l
+157.65 271.84 l
+158.84 273.71 l
+160.03 269.97 l
+161.22 255.04 l
+162.41 266.24 l
+163.60 280.24 l
+164.78 278.37 l
+165.97 262.51 l
+167.16 269.04 l
+168.35 269.04 l
+169.54 268.11 l
+170.73 272.77 l
+171.92 266.24 l
+173.11 275.57 l
+174.29 283.97 l
+175.48 281.17 l
+176.67 274.64 l
+177.86 265.31 l
+179.05 269.97 l
+180.24 273.71 l
+181.43 256.91 l
+182.62 241.04 l
+183.80 232.64 l
+184.99 231.71 l
+186.18 218.64 l
+187.37 213.97 l
+188.56 235.44 l
+189.75 235.44 l
+190.94 232.64 l
+192.12 223.31 l
+193.31 219.57 l
+194.50 232.64 l
+195.69 213.04 l
+196.88 223.31 l
+198.07 223.31 l
+199.26 216.77 l
+200.45 227.04 l
+201.63 224.24 l
+202.82 236.37 l
+204.01 244.77 l
+205.20 246.64 l
+206.39 257.84 l
+207.58 261.57 l
+208.77 259.71 l
+209.95 259.71 l
+211.14 269.04 l
+212.33 268.11 l
+213.52 274.64 l
+214.71 304.51 l
+215.90 290.51 l
+217.09 281.17 l
+218.28 268.11 l
+219.46 293.31 l
+220.65 267.17 l
+221.84 288.64 l
+223.03 281.17 l
+224.22 306.37 l
+225.41 306.37 l
+226.60 277.44 l
+227.78 291.44 l
+228.97 281.17 l
+230.16 281.17 l
+231.35 273.71 l
+232.54 268.11 l
+233.73 278.37 l
+234.92 258.77 l
+236.11 256.91 l
+237.29 268.11 l
+238.48 277.44 l
+239.67 219.57 l
+240.86 206.51 l
+242.05 210.24 l
+243.24 227.97 l
+244.43 234.51 l
+245.62 225.17 l
+246.80 227.97 l
+247.99 241.04 l
+249.18 239.17 l
+250.37 244.77 l
+251.56 227.97 l
+252.75 233.57 l
+253.94 260.64 l
+255.12 276.51 l
+256.31 282.11 l
+257.50 283.04 l
+258.69 278.37 l
+259.88 271.84 l
+261.07 250.37 l
+262.26 260.64 l
+263.45 255.04 l
+264.63 276.51 l
+265.82 274.64 l
+267.01 257.84 l
+268.20 270.91 l
+269.39 278.37 l
+270.58 283.04 l
+271.77 290.51 l
+272.95 298.91 l
+274.14 293.31 l
+275.33 273.71 l
+276.52 308.24 l
+277.71 298.91 l
+278.90 305.44 l
+280.09 311.04 l
+281.28 314.77 l
+282.46 318.51 l
+283.65 319.44 l
+284.84 309.17 l
+286.03 314.77 l
+287.22 292.37 l
+288.41 318.51 l
+289.60 322.24 l
+290.78 336.24 l
+291.97 341.84 l
+293.16 334.37 l
+294.35 314.77 l
+295.54 310.11 l
+296.73 311.04 l
+297.92 306.37 l
+299.11 297.04 l
+300.29 305.44 l
+301.48 322.24 l
+302.67 327.84 l
+303.86 322.24 l
+305.05 319.44 l
+306.24 293.31 l
+307.43 332.51 l
+308.62 311.04 l
+309.80 306.37 l
+310.99 301.71 l
+312.18 311.97 l
+313.37 299.84 l
+314.56 302.64 l
+315.75 298.91 l
+316.94 266.24 l
+318.12 261.57 l
+319.31 279.31 l
+320.50 262.51 l
+321.69 251.31 l
+322.88 264.37 l
+324.07 282.11 l
+325.26 292.37 l
+326.45 297.04 l
+327.63 272.77 l
+328.82 297.04 l
+330.01 287.71 l
+331.20 274.64 l
+332.39 275.57 l
+333.58 274.64 l
+334.77 285.84 l
+335.95 279.31 l
+337.14 271.84 l
+338.33 280.24 l
+339.52 272.77 l
+340.71 270.91 l
+341.90 283.04 l
+343.09 266.24 l
+344.28 264.37 l
+345.46 269.04 l
+346.65 273.71 l
+347.84 286.77 l
+349.03 309.17 l
+350.22 310.11 l
+351.41 292.37 l
+352.60 287.71 l
+353.78 305.44 l
+354.97 298.91 l
+356.16 305.44 l
+357.35 311.04 l
+358.54 307.31 l
+359.73 339.97 l
+360.92 334.37 l
+362.11 333.44 l
+363.29 297.97 l
+364.48 278.37 l
+365.67 279.31 l
+366.86 292.37 l
+368.05 290.51 l
+369.24 304.51 l
+370.43 314.77 l
+371.62 310.11 l
+372.80 304.51 l
+373.99 326.91 l
+375.18 333.44 l
+376.37 334.37 l
+377.56 325.97 l
+378.75 318.51 l
+379.94 310.11 l
+381.12 294.24 l
+382.31 284.91 l
+383.50 278.37 l
+384.69 274.64 l
+385.88 277.44 l
+387.07 278.37 l
+388.26 272.77 l
+389.45 278.37 l
+390.63 290.51 l
+391.82 288.64 l
+393.01 295.17 l
+394.20 293.31 l
+395.39 289.57 l
+396.58 288.64 l
+397.77 290.51 l
+398.95 301.71 l
+400.14 273.71 l
+401.33 273.71 l
+402.52 296.11 l
+403.71 298.91 l
+404.90 281.17 l
+406.09 275.57 l
+407.28 287.71 l
+408.46 292.37 l
+409.65 290.51 l
+410.84 276.51 l
+412.03 258.77 l
+413.22 261.57 l
+414.41 267.17 l
+415.60 271.84 l
+416.78 269.04 l
+417.97 277.44 l
+419.16 278.37 l
+420.35 278.37 l
+421.54 262.51 l
+422.73 269.04 l
+423.92 282.11 l
+425.11 280.24 l
+426.29 270.91 l
+427.48 265.31 l
+428.67 258.77 l
+429.86 258.77 l
+431.05 265.31 l
+432.24 257.84 l
+433.43 256.91 l
+S
+435.80 140.24 m
+436.99 171.04 l
+438.18 186.91 l
+439.37 210.24 l
+440.56 205.57 l
+441.75 222.37 l
+442.94 227.04 l
+444.12 237.31 l
+445.31 233.57 l
+446.50 249.44 l
+447.69 248.51 l
+448.88 242.91 l
+450.07 243.84 l
+451.26 224.24 l
+452.45 224.24 l
+453.63 203.71 l
+454.82 216.77 l
+456.01 212.11 l
+457.20 213.97 l
+458.39 223.31 l
+459.58 227.04 l
+460.77 220.51 l
+461.95 225.17 l
+463.14 236.37 l
+464.33 227.97 l
+465.52 229.84 l
+466.71 239.17 l
+467.90 223.31 l
+469.09 227.97 l
+470.28 215.84 l
+471.46 219.57 l
+472.65 230.77 l
+473.84 226.11 l
+475.03 215.84 l
+476.22 224.24 l
+477.41 216.77 l
+478.60 230.77 l
+479.78 234.51 l
+480.97 238.24 l
+482.16 227.04 l
+483.35 227.04 l
+484.54 233.57 l
+485.73 229.84 l
+486.92 241.97 l
+488.11 245.71 l
+489.29 237.31 l
+490.48 229.84 l
+491.67 222.37 l
+492.86 216.77 l
+494.05 227.97 l
+495.24 241.04 l
+496.43 233.57 l
+497.62 227.97 l
+498.80 235.44 l
+499.99 229.84 l
+501.18 231.71 l
+502.37 221.44 l
+503.56 219.57 l
+504.75 213.04 l
+505.94 221.44 l
+507.12 201.84 l
+508.31 216.77 l
+509.50 213.04 l
+510.69 218.64 l
+511.88 230.77 l
+513.07 246.64 l
+514.26 257.84 l
+515.45 267.17 l
+516.63 266.24 l
+517.82 268.11 l
+519.01 277.44 l
+520.20 263.44 l
+521.39 243.84 l
+522.58 241.04 l
+523.77 227.97 l
+524.95 228.91 l
+526.14 231.71 l
+527.33 233.57 l
+528.52 241.97 l
+529.71 244.77 l
+530.90 243.84 l
+532.09 225.17 l
+533.28 227.04 l
+534.46 230.77 l
+535.65 241.04 l
+536.84 230.77 l
+538.03 239.17 l
+539.22 239.17 l
+540.41 249.44 l
+541.60 249.44 l
+542.78 242.91 l
+543.97 235.44 l
+545.16 246.64 l
+546.35 245.71 l
+547.54 234.51 l
+548.73 235.44 l
+549.92 241.97 l
+551.11 236.37 l
+552.29 255.04 l
+553.48 253.17 l
+554.67 260.64 l
+555.86 255.97 l
+557.05 276.51 l
+558.24 279.31 l
+559.43 276.51 l
+560.62 283.97 l
+561.80 279.31 l
+562.99 259.71 l
+564.18 246.64 l
+565.37 247.57 l
+566.56 256.91 l
+567.75 277.44 l
+568.94 273.71 l
+570.12 263.44 l
+571.31 274.64 l
+572.50 289.57 l
+573.69 297.97 l
+574.88 307.31 l
+576.07 320.37 l
+577.26 297.04 l
+578.45 292.37 l
+579.63 295.17 l
+580.82 302.64 l
+582.01 301.71 l
+583.20 296.11 l
+S
+Q q
+BT
+0.792 0.882 1.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 603.36 347.80 Tm (0.7) Tj
+ET
+BT
+0.737 0.824 0.933 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 603.36 329.13 Tm (0.8) Tj
+ET
+BT
+0.635 0.710 0.804 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 603.36 310.47 Tm (0.9) Tj
+ET
+BT
+0.431 0.482 0.545 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 603.36 291.80 Tm (0.95) Tj
+ET
+BT
+0.000 0.000 0.545 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 603.36 273.53 Tm (0.995) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 603.36 259.13 Tm (\(current) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 603.36 244.73 Tm (default\)) Tj
+ET
+Q
+endstream
+endobj
+7 0 obj
+37420
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+5 0 R
+]
+/Count 1
+/MediaBox [0 0 648 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font <</F2 9 0 R /F3 10 0 R >>
+/ExtGState << >>
+>>
+endobj
+8 0 obj
+<<
+/Type /Encoding
+/BaseEncoding /WinAnsiEncoding
+/Differences [ 45/minus 96/quoteleft
+144/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
+/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space]
+>>
+endobj
+9 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 8 0 R
+>> endobj
+10 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F3
+/BaseFont /Helvetica-Bold
+/Encoding 8 0 R
+>> endobj
+xref
+0 11
+0000000000 65535 f
+0000000021 00000 n
+0000000163 00000 n
+0000037786 00000 n
+0000037869 00000 n
+0000000212 00000 n
+0000000292 00000 n
+0000037765 00000 n
+0000037961 00000 n
+0000038218 00000 n
+0000038314 00000 n
+trailer
+<<
+/Size 11
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+38416
+%%EOF
diff --git a/2009/metrics/llncs.cls b/2009/metrics/llncs.cls
new file mode 100755
index 0000000..23fd1c6
--- /dev/null
+++ b/2009/metrics/llncs.cls
@@ -0,0 +1,1190 @@
+% LLNCS DOCUMENT CLASS -- version 2.14 (17-Aug-2004)
+% Springer Verlag LaTeX2e support for Lecture Notes in Computer Science
+%
+%%
+%% \CharacterTable
+%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z
+%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z
+%% Digits \0\1\2\3\4\5\6\7\8\9
+%% Exclamation \! Double quote \" Hash (number) \#
+%% Dollar \$ Percent \% Ampersand \&
+%% Acute accent \' Left paren \( Right paren \)
+%% Asterisk \* Plus \+ Comma \,
+%% Minus \- Point \. Solidus \/
+%% Colon \: Semicolon \; Less than \<
+%% Equals \= Greater than \> Question mark \?
+%% Commercial at \@ Left bracket \[ Backslash \\
+%% Right bracket \] Circumflex \^ Underscore \_
+%% Grave accent \` Left brace \{ Vertical bar \|
+%% Right brace \} Tilde \~}
+%%
+\NeedsTeXFormat{LaTeX2e}[1995/12/01]
+\ProvidesClass{llncs}[2004/08/17 v2.14
+^^J LaTeX document class for Lecture Notes in Computer Science]
+% Options
+\let\if@envcntreset\iffalse
+\DeclareOption{envcountreset}{\let\if@envcntreset\iftrue}
+\DeclareOption{citeauthoryear}{\let\citeauthoryear=Y}
+\DeclareOption{oribibl}{\let\oribibl=Y}
+\let\if@custvec\iftrue
+\DeclareOption{orivec}{\let\if@custvec\iffalse}
+\let\if@envcntsame\iffalse
+\DeclareOption{envcountsame}{\let\if@envcntsame\iftrue}
+\let\if@envcntsect\iffalse
+\DeclareOption{envcountsect}{\let\if@envcntsect\iftrue}
+\let\if@runhead\iffalse
+\DeclareOption{runningheads}{\let\if@runhead\iftrue}
+
+\let\if@openbib\iffalse
+\DeclareOption{openbib}{\let\if@openbib\iftrue}
+
+% languages
+\let\switcht@@therlang\relax
+\def\ds@deutsch{\def\switcht@@therlang{\switcht@deutsch}}
+\def\ds@francais{\def\switcht@@therlang{\switcht@francais}}
+
+\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
+
+\ProcessOptions
+
+\LoadClass[twoside]{article}
+\RequirePackage{multicol} % needed for the list of participants, index
+
+\setlength{\textwidth}{12.2cm}
+\setlength{\textheight}{19.3cm}
+\renewcommand\@pnumwidth{2em}
+\renewcommand\(a)tocrmarg{3.5em}
+%
+\def\@dottedtocline#1#2#3#4#5{%
+ \ifnum #1>\c@tocdepth \else
+ \vskip \z@ \@plus.2\p@
+ {\leftskip #2\relax \rightskip \@tocrmarg \advance\rightskip by 0pt plus 2cm
+ \parfillskip -\rightskip \pretolerance=10000
+ \parindent #2\relax\@afterindenttrue
+ \interlinepenalty\@M
+ \leavevmode
+ \@tempdima #3\relax
+ \advance\leftskip \@tempdima \null\nobreak\hskip -\leftskip
+ {#4}\nobreak
+ \leaders\hbox{$\m@th
+ \mkern \@dotsep mu\hbox{.}\mkern \@dotsep
+ mu$}\hfill
+ \nobreak
+ \hb@xt@\@pnumwidth{\hfil\normalfont \normalcolor #5}%
+ \par}%
+ \fi}
+%
+\def\switcht@albion{%
+\def\abstractname{Abstract.}
+\def\ackname{Acknowledgement.}
+\def\andname{and}
+\def\lastandname{\unskip, and}
+\def\appendixname{Appendix}
+\def\chaptername{Chapter}
+\def\claimname{Claim}
+\def\conjecturename{Conjecture}
+\def\contentsname{Table of Contents}
+\def\corollaryname{Corollary}
+\def\definitionname{Definition}
+\def\examplename{Example}
+\def\exercisename{Exercise}
+\def\figurename{Fig.}
+\def\keywordname{{\bf Key words:}}
+\def\indexname{Index}
+\def\lemmaname{Lemma}
+\def\contriblistname{List of Contributors}
+\def\listfigurename{List of Figures}
+\def\listtablename{List of Tables}
+\def\mailname{{\it Correspondence to\/}:}
+\def\noteaddname{Note added in proof}
+\def\notename{Note}
+\def\partname{Part}
+\def\problemname{Problem}
+\def\proofname{Proof}
+\def\propertyname{Property}
+\def\propositionname{Proposition}
+\def\questionname{Question}
+\def\remarkname{Remark}
+\def\seename{see}
+\def\solutionname{Solution}
+\def\subclassname{{\it Subject Classifications\/}:}
+\def\tablename{Table}
+\def\theoremname{Theorem}}
+\switcht@albion
+% Names of theorem like environments are already defined
+% but must be translated if another language is chosen
+%
+% French section
+\def\switcht@francais{%\typeout{On parle francais.}%
+ \def\abstractname{R\'esum\'e.}%
+ \def\ackname{Remerciements.}%
+ \def\andname{et}%
+ \def\lastandname{ et}%
+ \def\appendixname{Appendice}
+ \def\chaptername{Chapitre}%
+ \def\claimname{Pr\'etention}%
+ \def\conjecturename{Hypoth\`ese}%
+ \def\contentsname{Table des mati\`eres}%
+ \def\corollaryname{Corollaire}%
+ \def\definitionname{D\'efinition}%
+ \def\examplename{Exemple}%
+ \def\exercisename{Exercice}%
+ \def\figurename{Fig.}%
+ \def\keywordname{{\bf Mots-cl\'e:}}
+ \def\indexname{Index}
+ \def\lemmaname{Lemme}%
+ \def\contriblistname{Liste des contributeurs}
+ \def\listfigurename{Liste des figures}%
+ \def\listtablename{Liste des tables}%
+ \def\mailname{{\it Correspondence to\/}:}
+ \def\noteaddname{Note ajout\'ee \`a l'\'epreuve}%
+ \def\notename{Remarque}%
+ \def\partname{Partie}%
+ \def\problemname{Probl\`eme}%
+ \def\proofname{Preuve}%
+ \def\propertyname{Caract\'eristique}%
+%\def\propositionname{Proposition}%
+ \def\questionname{Question}%
+ \def\remarkname{Remarque}%
+ \def\seename{voir}
+ \def\solutionname{Solution}%
+ \def\subclassname{{\it Subject Classifications\/}:}
+ \def\tablename{Tableau}%
+ \def\theoremname{Th\'eor\`eme}%
+}
+%
+% German section
+\def\switcht@deutsch{%\typeout{Man spricht deutsch.}%
+ \def\abstractname{Zusammenfassung.}%
+ \def\ackname{Danksagung.}%
+ \def\andname{und}%
+ \def\lastandname{ und}%
+ \def\appendixname{Anhang}%
+ \def\chaptername{Kapitel}%
+ \def\claimname{Behauptung}%
+ \def\conjecturename{Hypothese}%
+ \def\contentsname{Inhaltsverzeichnis}%
+ \def\corollaryname{Korollar}%
+%\def\definitionname{Definition}%
+ \def\examplename{Beispiel}%
+ \def\exercisename{\"Ubung}%
+ \def\figurename{Abb.}%
+ \def\keywordname{{\bf Schl\"usselw\"orter:}}
+ \def\indexname{Index}
+%\def\lemmaname{Lemma}%
+ \def\contriblistname{Mitarbeiter}
+ \def\listfigurename{Abbildungsverzeichnis}%
+ \def\listtablename{Tabellenverzeichnis}%
+ \def\mailname{{\it Correspondence to\/}:}
+ \def\noteaddname{Nachtrag}%
+ \def\notename{Anmerkung}%
+ \def\partname{Teil}%
+%\def\problemname{Problem}%
+ \def\proofname{Beweis}%
+ \def\propertyname{Eigenschaft}%
+%\def\propositionname{Proposition}%
+ \def\questionname{Frage}%
+ \def\remarkname{Anmerkung}%
+ \def\seename{siehe}
+ \def\solutionname{L\"osung}%
+ \def\subclassname{{\it Subject Classifications\/}:}
+ \def\tablename{Tabelle}%
+%\def\theoremname{Theorem}%
+}
+
+% Ragged bottom for the actual page
+\def\thisbottomragged{\def\@textbottom{\vskip\z@ plus.0001fil
+\global\let\@textbottom\relax}}
+
+\renewcommand\small{%
+ \@setfontsize\small\@ixpt{11}%
+ \abovedisplayskip 8.5\p@ \@plus3\p@ \@minus4\p@
+ \abovedisplayshortskip \z@ \@plus2\p@
+ \belowdisplayshortskip 4\p@ \@plus2\p@ \@minus2\p@
+ \def\@listi{\leftmargin\leftmargini
+ \parsep 0\p@ \@plus1\p@ \@minus\p@
+ \topsep 8\p@ \@plus2\p@ \@minus4\p@
+ \itemsep0\p@}%
+ \belowdisplayskip \abovedisplayskip
+}
+
+\frenchspacing
+\widowpenalty=10000
+\clubpenalty=10000
+
+\setlength\oddsidemargin {63\p@}
+\setlength\evensidemargin {63\p@}
+\setlength\marginparwidth {90\p@}
+
+\setlength\headsep {16\p@}
+
+\setlength\footnotesep{7.7\p@}
+\setlength\textfloatsep{8mm\@plus 2\p@ \@minus 4\p@}
+\setlength\intextsep {8mm\@plus 2\p@ \@minus 2\p@}
+
+\setcounter{secnumdepth}{2}
+
+\newcounter {chapter}
+\renewcommand\thechapter {\@arabic\c@chapter}
+
+\newif\if@mainmatter \@mainmattertrue
+\newcommand\frontmatter{\cleardoublepage
+ \@mainmatterfalse\pagenumbering{Roman}}
+\newcommand\mainmatter{\cleardoublepage
+ \@mainmattertrue\pagenumbering{arabic}}
+\newcommand\backmatter{\if@openright\cleardoublepage\else\clearpage\fi
+ \@mainmatterfalse}
+
+\renewcommand\part{\cleardoublepage
+ \thispagestyle{empty}%
+ \if@twocolumn
+ \onecolumn
+ \@tempswatrue
+ \else
+ \@tempswafalse
+ \fi
+ \null\vfil
+ \secdef\@part\@spart}
+
+\def\@part[#1]#2{%
+ \ifnum \c@secnumdepth >-2\relax
+ \refstepcounter{part}%
+ \addcontentsline{toc}{part}{\thepart\hspace{1em}#1}%
+ \else
+ \addcontentsline{toc}{part}{#1}%
+ \fi
+ \markboth{}{}%
+ {\centering
+ \interlinepenalty \@M
+ \normalfont
+ \ifnum \c@secnumdepth >-2\relax
+ \huge\bfseries \partname~\thepart
+ \par
+ \vskip 20\p@
+ \fi
+ \Huge \bfseries #2\par}%
+ \@endpart}
+\def\@spart#1{%
+ {\centering
+ \interlinepenalty \@M
+ \normalfont
+ \Huge \bfseries #1\par}%
+ \@endpart}
+\def\@endpart{\vfil\newpage
+ \if@twoside
+ \null
+ \thispagestyle{empty}%
+ \newpage
+ \fi
+ \if@tempswa
+ \twocolumn
+ \fi}
+
+\newcommand\chapter{\clearpage
+ \thispagestyle{empty}%
+ \global\@topnum\z@
+ \@afterindentfalse
+ \secdef\@chapter\@schapter}
+\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
+ \if@mainmatter
+ \refstepcounter{chapter}%
+ \typeout{\(a)chapapp\space\thechapter.}%
+ \addcontentsline{toc}{chapter}%
+ {\protect\numberline{\thechapter}#1}%
+ \else
+ \addcontentsline{toc}{chapter}{#1}%
+ \fi
+ \else
+ \addcontentsline{toc}{chapter}{#1}%
+ \fi
+ \chaptermark{#1}%
+ \addtocontents{lof}{\protect\addvspace{10\p@}}%
+ \addtocontents{lot}{\protect\addvspace{10\p@}}%
+ \if@twocolumn
+ \@topnewpage[\@makechapterhead{#2}]%
+ \else
+ \@makechapterhead{#2}%
+ \@afterheading
+ \fi}
+\def\@makechapterhead#1{%
+% \vspace*{50\p@}%
+ {\centering
+ \ifnum \c@secnumdepth >\m@ne
+ \if@mainmatter
+ \large\bfseries \@chapapp{} \thechapter
+ \par\nobreak
+ \vskip 20\p@
+ \fi
+ \fi
+ \interlinepenalty\@M
+ \Large \bfseries #1\par\nobreak
+ \vskip 40\p@
+ }}
+\def\@schapter#1{\if@twocolumn
+ \@topnewpage[\@makeschapterhead{#1}]%
+ \else
+ \@makeschapterhead{#1}%
+ \@afterheading
+ \fi}
+\def\@makeschapterhead#1{%
+% \vspace*{50\p@}%
+ {\centering
+ \normalfont
+ \interlinepenalty\@M
+ \Large \bfseries #1\par\nobreak
+ \vskip 40\p@
+ }}
+
+\renewcommand\section{\@startsection{section}{1}{\z@}%
+ {-18\p@ \@plus -4\p@ \@minus -4\p@}%
+ {12\p@ \@plus 4\p@ \@minus 4\p@}%
+ {\normalfont\large\bfseries\boldmath
+ \rightskip=\z@ \@plus 8em\pretolerance=10000 }}
+\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
+ {-18\p@ \@plus -4\p@ \@minus -4\p@}%
+ {8\p@ \@plus 4\p@ \@minus 4\p@}%
+ {\normalfont\normalsize\bfseries\boldmath
+ \rightskip=\z@ \@plus 8em\pretolerance=10000 }}
+\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
+ {-18\p@ \@plus -4\p@ \@minus -4\p@}%
+ {-0.5em \@plus -0.22em \@minus -0.1em}%
+ {\normalfont\normalsize\bfseries\boldmath}}
+\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
+ {-12\p@ \@plus -4\p@ \@minus -4\p@}%
+ {-0.5em \@plus -0.22em \@minus -0.1em}%
+ {\normalfont\normalsize\itshape}}
+\renewcommand\subparagraph[1]{\typeout{LLNCS warning: You should not use
+ \string\subparagraph\space with this class}\vskip0.5cm
+You should not use \verb|\subparagraph| with this class.\vskip0.5cm}
+
+\DeclareMathSymbol{\Gamma}{\mathalpha}{letters}{"00}
+\DeclareMathSymbol{\Delta}{\mathalpha}{letters}{"01}
+\DeclareMathSymbol{\Theta}{\mathalpha}{letters}{"02}
+\DeclareMathSymbol{\Lambda}{\mathalpha}{letters}{"03}
+\DeclareMathSymbol{\Xi}{\mathalpha}{letters}{"04}
+\DeclareMathSymbol{\Pi}{\mathalpha}{letters}{"05}
+\DeclareMathSymbol{\Sigma}{\mathalpha}{letters}{"06}
+\DeclareMathSymbol{\Upsilon}{\mathalpha}{letters}{"07}
+\DeclareMathSymbol{\Phi}{\mathalpha}{letters}{"08}
+\DeclareMathSymbol{\Psi}{\mathalpha}{letters}{"09}
+\DeclareMathSymbol{\Omega}{\mathalpha}{letters}{"0A}
+
+\let\footnotesize\small
+
+\if@custvec
+\def\vec#1{\mathchoice{\mbox{\boldmath$\displaystyle#1$}}
+{\mbox{\boldmath$\textstyle#1$}}
+{\mbox{\boldmath$\scriptstyle#1$}}
+{\mbox{\boldmath$\scriptscriptstyle#1$}}}
+\fi
+
+\def\squareforqed{\hbox{\rlap{$\sqcap$}$\sqcup$}}
+\def\qed{\ifmmode\squareforqed\else{\unskip\nobreak\hfil
+\penalty50\hskip1em\null\nobreak\hfil\squareforqed
+\parfillskip=0pt\finalhyphendemerits=0\endgraf}\fi}
+
+\def\getsto{\mathrel{\mathchoice {\vcenter{\offinterlineskip
+\halign{\hfil
+$\displaystyle##$\hfil\cr\gets\cr\to\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr\gets
+\cr\to\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr\gets
+\cr\to\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
+\gets\cr\to\cr}}}}}
+\def\lid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
+$\displaystyle##$\hfil\cr<\cr\noalign{\vskip1.2pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr<\cr
+\noalign{\vskip1.2pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr<\cr
+\noalign{\vskip1pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
+<\cr
+\noalign{\vskip0.9pt}=\cr}}}}}
+\def\gid{\mathrel{\mathchoice {\vcenter{\offinterlineskip\halign{\hfil
+$\displaystyle##$\hfil\cr>\cr\noalign{\vskip1.2pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr>\cr
+\noalign{\vskip1.2pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr>\cr
+\noalign{\vskip1pt}=\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
+>\cr
+\noalign{\vskip0.9pt}=\cr}}}}}
+\def\grole{\mathrel{\mathchoice {\vcenter{\offinterlineskip
+\halign{\hfil
+$\displaystyle##$\hfil\cr>\cr\noalign{\vskip-1pt}<\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\textstyle##$\hfil\cr
+>\cr\noalign{\vskip-1pt}<\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptstyle##$\hfil\cr
+>\cr\noalign{\vskip-0.8pt}<\cr}}}
+{\vcenter{\offinterlineskip\halign{\hfil$\scriptscriptstyle##$\hfil\cr
+>\cr\noalign{\vskip-0.3pt}<\cr}}}}}
+\def\bbbr{{\rm I\!R}} %reelle Zahlen
+\def\bbbm{{\rm I\!M}}
+\def\bbbn{{\rm I\!N}} %natuerliche Zahlen
+\def\bbbf{{\rm I\!F}}
+\def\bbbh{{\rm I\!H}}
+\def\bbbk{{\rm I\!K}}
+\def\bbbp{{\rm I\!P}}
+\def\bbbone{{\mathchoice {\rm 1\mskip-4mu l} {\rm 1\mskip-4mu l}
+{\rm 1\mskip-4.5mu l} {\rm 1\mskip-5mu l}}}
+\def\bbbc{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm C$}\hbox{\hbox
+to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\textstyle\rm C$}\hbox{\hbox
+to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptstyle\rm C$}\hbox{\hbox
+to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptscriptstyle\rm C$}\hbox{\hbox
+to0pt{\kern0.4\wd0\vrule height0.9\ht0\hss}\box0}}}}
+\def\bbbq{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
+Q$}\hbox{\raise
+0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
+{\setbox0=\hbox{$\textstyle\rm Q$}\hbox{\raise
+0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.8\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptstyle\rm Q$}\hbox{\raise
+0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptscriptstyle\rm Q$}\hbox{\raise
+0.15\ht0\hbox to0pt{\kern0.4\wd0\vrule height0.7\ht0\hss}\box0}}}}
+\def\bbbt{{\mathchoice {\setbox0=\hbox{$\displaystyle\rm
+T$}\hbox{\hbox to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\textstyle\rm T$}\hbox{\hbox
+to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptstyle\rm T$}\hbox{\hbox
+to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptscriptstyle\rm T$}\hbox{\hbox
+to0pt{\kern0.3\wd0\vrule height0.9\ht0\hss}\box0}}}}
+\def\bbbs{{\mathchoice
+{\setbox0=\hbox{$\displaystyle \rm S$}\hbox{\raise0.5\ht0\hbox
+to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
+to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
+{\setbox0=\hbox{$\textstyle \rm S$}\hbox{\raise0.5\ht0\hbox
+to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\hbox
+to0pt{\kern0.55\wd0\vrule height0.5\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptstyle \rm S$}\hbox{\raise0.5\ht0\hbox
+to0pt{\kern0.35\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
+to0pt{\kern0.5\wd0\vrule height0.45\ht0\hss}\box0}}
+{\setbox0=\hbox{$\scriptscriptstyle\rm S$}\hbox{\raise0.5\ht0\hbox
+to0pt{\kern0.4\wd0\vrule height0.45\ht0\hss}\raise0.05\ht0\hbox
+to0pt{\kern0.55\wd0\vrule height0.45\ht0\hss}\box0}}}}
+\def\bbbz{{\mathchoice {\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
+{\hbox{$\mathsf\textstyle Z\kern-0.4em Z$}}
+{\hbox{$\mathsf\scriptstyle Z\kern-0.3em Z$}}
+{\hbox{$\mathsf\scriptscriptstyle Z\kern-0.2em Z$}}}}
+
+\let\ts\,
+
+\setlength\leftmargini {17\p@}
+\setlength\leftmargin {\leftmargini}
+\setlength\leftmarginii {\leftmargini}
+\setlength\leftmarginiii {\leftmargini}
+\setlength\leftmarginiv {\leftmargini}
+\setlength \labelsep {.5em}
+\setlength \labelwidth{\leftmargini}
+\addtolength\labelwidth{-\labelsep}
+
+\def\@listI{\leftmargin\leftmargini
+ \parsep 0\p@ \@plus1\p@ \@minus\p@
+ \topsep 8\p@ \@plus2\p@ \@minus4\p@
+ \itemsep0\p@}
+\let\@listi\@listI
+\@listi
+\def\@listii {\leftmargin\leftmarginii
+ \labelwidth\leftmarginii
+ \advance\labelwidth-\labelsep
+ \topsep 0\p@ \@plus2\p@ \@minus\p@}
+\def\@listiii{\leftmargin\leftmarginiii
+ \labelwidth\leftmarginiii
+ \advance\labelwidth-\labelsep
+ \topsep 0\p@ \@plus\p@\@minus\p@
+ \parsep \z@
+ \partopsep \p@ \@plus\z@ \@minus\p@}
+
+\renewcommand\labelitemi{\normalfont\bfseries --}
+\renewcommand\labelitemii{$\m@th\bullet$}
+
+\setlength\arraycolsep{1.4\p@}
+\setlength\tabcolsep{1.4\p@}
+
+\def\tableofcontents{\chapter*{\contentsname\@mkboth{{\contentsname}}%
+ {{\contentsname}}}
+ \def\authcount##1{\setcounter{auco}{##1}\setcounter{@auth}{1}}
+ \def\lastand{\ifnum\value{auco}=2\relax
+ \unskip{} \andname\
+ \else
+ \unskip \lastandname\
+ \fi}%
+ \def\and{\stepcounter{@auth}\relax
+ \ifnum\value{@auth}=\value{auco}%
+ \lastand
+ \else
+ \unskip,
+ \fi}%
+ \@starttoc{toc}\if@restonecol\twocolumn\fi}
+
+\def\l@part#1#2{\addpenalty{\@secpenalty}%
+ \addvspace{2em plus\p@}% % space above part line
+ \begingroup
+ \parindent \z@
+ \rightskip \z@ plus 5em
+ \hrule\vskip5pt
+ \large % same size as for a contribution heading
+ \bfseries\boldmath % set line in boldface
+ \leavevmode % TeX command to enter horizontal mode.
+ #1\par
+ \vskip5pt
+ \hrule
+ \vskip1pt
+ \nobreak % Never break after part entry
+ \endgroup}
+
+\def\@dotsep{2}
+
+\def\hyperhrefextend{\ifx\hyper@anchor\@undefined\else
+{chapter.\thechapter}\fi}
+
+\def\addnumcontentsmark#1#2#3{%
+\addtocontents{#1}{\protect\contentsline{#2}{\protect\numberline
+ {\thechapter}#3}{\thepage}\hyperhrefextend}}
+\def\addcontentsmark#1#2#3{%
+\addtocontents{#1}{\protect\contentsline{#2}{#3}{\thepage}\hyperhrefextend}}
+\def\addcontentsmarkwop#1#2#3{%
+\addtocontents{#1}{\protect\contentsline{#2}{#3}{0}\hyperhrefextend}}
+
+\def\@adcmk[#1]{\ifcase #1 \or
+\def\@gtempa{\addnumcontentsmark}%
+ \or \def\@gtempa{\addcontentsmark}%
+ \or \def\@gtempa{\addcontentsmarkwop}%
+ \fi\@gtempa{toc}{chapter}}
+\def\addtocmark{\@ifnextchar[{\@adcmk}{\@adcmk[3]}}
+
+\def\l@chapter#1#2{\addpenalty{-\@highpenalty}
+ \vskip 1.0em plus 1pt \@tempdima 1.5em \begingroup
+ \parindent \z@ \rightskip \@tocrmarg
+ \advance\rightskip by 0pt plus 2cm
+ \parfillskip -\rightskip \pretolerance=10000
+ \leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
+ {\large\bfseries\boldmath#1}\ifx0#2\hfil\null
+ \else
+ \nobreak
+ \leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
+ \@dotsep mu$}\hfill
+ \nobreak\hbox to\@pnumwidth{\hss #2}%
+ \fi\par
+ \penalty\@highpenalty \endgroup}
+
+\def\l@title#1#2{\addpenalty{-\@highpenalty}
+ \addvspace{8pt plus 1pt}
+ \@tempdima \z@
+ \begingroup
+ \parindent \z@ \rightskip \@tocrmarg
+ \advance\rightskip by 0pt plus 2cm
+ \parfillskip -\rightskip \pretolerance=10000
+ \leavevmode \advance\leftskip\@tempdima \hskip -\leftskip
+ #1\nobreak
+ \leaders\hbox{$\m@th \mkern \@dotsep mu.\mkern
+ \@dotsep mu$}\hfill
+ \nobreak\hbox to\@pnumwidth{\hss #2}\par
+ \penalty\@highpenalty \endgroup}
+
+\def\l@author#1#2{\addpenalty{\@highpenalty}
+ \@tempdima=15\p@ %\z@
+ \begingroup
+ \parindent \z@ \rightskip \@tocrmarg
+ \advance\rightskip by 0pt plus 2cm
+ \pretolerance=10000
+ \leavevmode \advance\leftskip\@tempdima %\hskip -\leftskip
+ \textit{#1}\par
+ \penalty\@highpenalty \endgroup}
+
+\setcounter{tocdepth}{0}
+\newdimen\tocchpnum
+\newdimen\tocsecnum
+\newdimen\tocsectotal
+\newdimen\tocsubsecnum
+\newdimen\tocsubsectotal
+\newdimen\tocsubsubsecnum
+\newdimen\tocsubsubsectotal
+\newdimen\tocparanum
+\newdimen\tocparatotal
+\newdimen\tocsubparanum
+\tocchpnum=\z@ % no chapter numbers
+\tocsecnum=15\p@ % section 88. plus 2.222pt
+\tocsubsecnum=23\p@ % subsection 88.8 plus 2.222pt
+\tocsubsubsecnum=27\p@ % subsubsection 88.8.8 plus 1.444pt
+\tocparanum=35\p@ % paragraph 88.8.8.8 plus 1.666pt
+\tocsubparanum=43\p@ % subparagraph 88.8.8.8.8 plus 1.888pt
+\def\calctocindent{%
+\tocsectotal=\tocchpnum
+\advance\tocsectotal by\tocsecnum
+\tocsubsectotal=\tocsectotal
+\advance\tocsubsectotal by\tocsubsecnum
+\tocsubsubsectotal=\tocsubsectotal
+\advance\tocsubsubsectotal by\tocsubsubsecnum
+\tocparatotal=\tocsubsubsectotal
+\advance\tocparatotal by\tocparanum}
+\calctocindent
+
+\def\l@section{\@dottedtocline{1}{\tocchpnum}{\tocsecnum}}
+\def\l@subsection{\@dottedtocline{2}{\tocsectotal}{\tocsubsecnum}}
+\def\l@subsubsection{\@dottedtocline{3}{\tocsubsectotal}{\tocsubsubsecnum}}
+\def\l@paragraph{\@dottedtocline{4}{\tocsubsubsectotal}{\tocparanum}}
+\def\l@subparagraph{\@dottedtocline{5}{\tocparatotal}{\tocsubparanum}}
+
+\def\listoffigures{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
+ \fi\section*{\listfigurename\@mkboth{{\listfigurename}}{{\listfigurename}}}
+ \@starttoc{lof}\if@restonecol\twocolumn\fi}
+\def\l@figure{\@dottedtocline{1}{0em}{1.5em}}
+
+\def\listoftables{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
+ \fi\section*{\listtablename\@mkboth{{\listtablename}}{{\listtablename}}}
+ \@starttoc{lot}\if@restonecol\twocolumn\fi}
+\let\l@table\l@figure
+
+\renewcommand\listoffigures{%
+ \section*{\listfigurename
+ \@mkboth{\listfigurename}{\listfigurename}}%
+ \@starttoc{lof}%
+ }
+
+\renewcommand\listoftables{%
+ \section*{\listtablename
+ \@mkboth{\listtablename}{\listtablename}}%
+ \@starttoc{lot}%
+ }
+
+\ifx\oribibl\undefined
+\ifx\citeauthoryear\undefined
+\renewenvironment{thebibliography}[1]
+ {\section*{\refname}
+ \def\(a)biblabel##1{##1.}
+ \small
+ \list{\@biblabel{\@arabic\c@enumiv}}%
+ {\settowidth\labelwidth{\@biblabel{#1}}%
+ \leftmargin\labelwidth
+ \advance\leftmargin\labelsep
+ \if@openbib
+ \advance\leftmargin\bibindent
+ \itemindent -\bibindent
+ \listparindent \itemindent
+ \parsep \z@
+ \fi
+ \usecounter{enumiv}%
+ \let\p@enumiv\@empty
+ \renewcommand\theenumiv{\@arabic\c@enumiv}}%
+ \if@openbib
+ \renewcommand\newblock{\par}%
+ \else
+ \renewcommand\newblock{\hskip .11em \(a)plus.33em \(a)minus.07em}%
+ \fi
+ \sloppy\clubpenalty4000\widowpenalty4000%
+ \sfcode`\.=\@m}
+ {\def\@noitemerr
+ {\@latex@warning{Empty `thebibliography' environment}}%
+ \endlist}
+\def\@lbibitem[#1]#2{\item[{[#1]}\hfill]\if@filesw
+ {\let\protect\noexpand\immediate
+ \write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
+\newcount\@tempcntc
+\def\@citex[#1]#2{\if@filesw\immediate\write\@auxout{\string\citation{#2}}\fi
+ \@tempcnta\z@\@tempcntb\m@ne\def\@citea{}\@cite{\@for\@citeb:=#2\do
+ {\@ifundefined
+ {b@\@citeb}{\@citeo\@tempcntb\m@ne\@citea\def\@citea{,}{\bfseries
+ ?}\@warning
+ {Citation `\@citeb' on page \thepage \space undefined}}%
+ {\setbox\z@\hbox{\global\@tempcntc0\csname b@\@citeb\endcsname\relax}%
+ \ifnum\@tempcntc=\z@ \@citeo\@tempcntb\m@ne
+ \@citea\def\@citea{,}\hbox{\csname b@\@citeb\endcsname}%
+ \else
+ \advance\@tempcntb\@ne
+ \ifnum\@tempcntb=\@tempcntc
+ \else\advance\@tempcntb\m@ne\@citeo
+ \@tempcnta\@tempcntc\@tempcntb\@tempcntc\fi\fi}}\@citeo}{#1}}
+\def\@citeo{\ifnum\@tempcnta>\@tempcntb\else
+ \@citea\def\@citea{,\,\hskip\z@skip}%
+ \ifnum\@tempcnta=\@tempcntb\the\@tempcnta\else
+ {\advance\@tempcnta\@ne\ifnum\@tempcnta=\@tempcntb \else
+ \def\@citea{--}\fi
+ \advance\@tempcnta\m@ne\the\@tempcnta\@citea\the\@tempcntb}\fi\fi}
+\else
+\renewenvironment{thebibliography}[1]
+ {\section*{\refname}
+ \small
+ \list{}%
+ {\settowidth\labelwidth{}%
+ \leftmargin\parindent
+ \itemindent=-\parindent
+ \labelsep=\z@
+ \if@openbib
+ \advance\leftmargin\bibindent
+ \itemindent -\bibindent
+ \listparindent \itemindent
+ \parsep \z@
+ \fi
+ \usecounter{enumiv}%
+ \let\p@enumiv\@empty
+ \renewcommand\theenumiv{}}%
+ \if@openbib
+ \renewcommand\newblock{\par}%
+ \else
+ \renewcommand\newblock{\hskip .11em \(a)plus.33em \(a)minus.07em}%
+ \fi
+ \sloppy\clubpenalty4000\widowpenalty4000%
+ \sfcode`\.=\@m}
+ {\def\@noitemerr
+ {\@latex@warning{Empty `thebibliography' environment}}%
+ \endlist}
+ \def\@cite#1{#1}%
+ \def\@lbibitem[#1]#2{\item[]\if@filesw
+ {\def\protect##1{\string ##1\space}\immediate
+ \write\@auxout{\string\bibcite{#2}{#1}}}\fi\ignorespaces}
+ \fi
+\else
+\@cons\@openbib@code{\noexpand\small}
+\fi
+
+\def\idxquad{\hskip 10\p@}% space that divides entry from number
+
+\def\@idxitem{\par\hangindent 10\p@}
+
+\def\subitem{\par\setbox0=\hbox{--\enspace}% second order
+ \noindent\hangindent\wd0\box0}% index entry
+
+\def\subsubitem{\par\setbox0=\hbox{--\,--\enspace}% third
+ \noindent\hangindent\wd0\box0}% order index entry
+
+\def\indexspace{\par \vskip 10\p@ plus5\p@ minus3\p@\relax}
+
+\renewenvironment{theindex}
+ {\@mkboth{\indexname}{\indexname}%
+ \thispagestyle{empty}\parindent\z@
+ \parskip\z@ \@plus .3\p@\relax
+ \let\item\par
+ \def\,{\relax\ifmmode\mskip\thinmuskip
+ \else\hskip0.2em\ignorespaces\fi}%
+ \normalfont\small
+ \begin{multicols}{2}[\@makeschapterhead{\indexname}]%
+ }
+ {\end{multicols}}
+
+\renewcommand\footnoterule{%
+ \kern-3\p@
+ \hrule\@width 2truecm
+ \kern2.6\p@}
+ \newdimen\fnindent
+ \fnindent1em
+\long\def\@makefntext#1{%
+ \parindent \fnindent%
+ \leftskip \fnindent%
+ \noindent
+ \llap{\hb@xt@1em{\hss\@makefnmark\ }}\ignorespaces#1}
+
+\long\def\@makecaption#1#2{%
+ \vskip\abovecaptionskip
+ \sbox\@tempboxa{{\bfseries #1.} #2}%
+ \ifdim \wd\@tempboxa >\hsize
+ {\bfseries #1.} #2\par
+ \else
+ \global \@minipagefalse
+ \hb@xt@\hsize{\hfil\box\@tempboxa\hfil}%
+ \fi
+ \vskip\belowcaptionskip}
+
+\def\fps@figure{htbp}
+\def\fnum@figure{\figurename\thinspace\thefigure}
+\def \@floatboxreset {%
+ \reset@font
+ \small
+ \@setnobreak
+ \@setminipage
+}
+\def\fps@table{htbp}
+\def\fnum@table{\tablename~\thetable}
+\renewenvironment{table}
+ {\setlength\abovecaptionskip{0\p@}%
+ \setlength\belowcaptionskip{10\p@}%
+ \@float{table}}
+ {\end@float}
+\renewenvironment{table*}
+ {\setlength\abovecaptionskip{0\p@}%
+ \setlength\belowcaptionskip{10\p@}%
+ \@dblfloat{table}}
+ {\end@dblfloat}
+
+\long\def\@caption#1[#2]#3{\par\addcontentsline{\csname
+ ext@#1\endcsname}{#1}{\protect\numberline{\csname
+ the#1\endcsname}{\ignorespaces #2}}\begingroup
+ \@parboxrestore
+ \@makecaption{\csname fnum@#1\endcsname}{\ignorespaces #3}\par
+ \endgroup}
+
+% LaTeX does not provide a command to enter the authors institute
+% addresses. The \institute command is defined here.
+
+\newcounter{@inst}
+\newcounter{@auth}
+\newcounter{auco}
+\newdimen\instindent
+\newbox\authrun
+\newtoks\authorrunning
+\newtoks\tocauthor
+\newbox\titrun
+\newtoks\titlerunning
+\newtoks\toctitle
+
+\def\clearheadinfo{\gdef\@author{No Author Given}%
+ \gdef\@title{No Title Given}%
+ \gdef\@subtitle{}%
+ \gdef\@institute{No Institute Given}%
+ \gdef\@thanks{}%
+ \global\titlerunning={}\global\authorrunning={}%
+ \global\toctitle={}\global\tocauthor={}}
+
+\def\institute#1{\gdef\@institute{#1}}
+
+\def\institutename{\par
+ \begingroup
+ \parskip=\z@
+ \parindent=\z@
+ \setcounter{@inst}{1}%
+ \def\and{\par\stepcounter{@inst}%
+ \noindent$^{\the@inst}$\enspace\ignorespaces}%
+ \setbox0=\vbox{\def\thanks##1{}\@institute}%
+ \ifnum\c@@inst=1\relax
+ \gdef\fnnstart{0}%
+ \else
+ \xdef\fnnstart{\c@@inst}%
+ \setcounter{@inst}{1}%
+ \noindent$^{\the@inst}$\enspace
+ \fi
+ \ignorespaces
+ \@institute\par
+ \endgroup}
+
+\def\@fnsymbol#1{\ensuremath{\ifcase#1\or\star\or{\star\star}\or
+ {\star\star\star}\or \dagger\or \ddagger\or
+ \mathchar "278\or \mathchar "27B\or \|\or **\or \dagger\dagger
+ \or \ddagger\ddagger \else\@ctrerr\fi}}
+
+\def\inst#1{\unskip$^{#1}$}
+\def\fnmsep{\unskip$^,$}
+\def\email#1{{\tt#1}}
+\AtBeginDocument{\@ifundefined{url}{\def\url#1{#1}}{}%
+\@ifpackageloaded{babel}{%
+\@ifundefined{extrasenglish}{}{\addto\extrasenglish{\switcht@albion}}%
+\@ifundefined{extrasfrenchb}{}{\addto\extrasfrenchb{\switcht@francais}}%
+\@ifundefined{extrasgerman}{}{\addto\extrasgerman{\switcht@deutsch}}%
+}{\switcht@@therlang}%
+}
+\def\homedir{\~{ }}
+
+\def\subtitle#1{\gdef\@subtitle{#1}}
+\clearheadinfo
+%
+\renewcommand\maketitle{\newpage
+ \refstepcounter{chapter}%
+ \stepcounter{section}%
+ \setcounter{section}{0}%
+ \setcounter{subsection}{0}%
+ \setcounter{figure}{0}
+ \setcounter{table}{0}
+ \setcounter{equation}{0}
+ \setcounter{footnote}{0}%
+ \begingroup
+ \parindent=\z@
+ \renewcommand\thefootnote{\@fnsymbol\c@footnote}%
+ \if@twocolumn
+ \ifnum \col@number=\@ne
+ \@maketitle
+ \else
+ \twocolumn[\@maketitle]%
+ \fi
+ \else
+ \newpage
+ \global\@topnum\z@ % Prevents figures from going at top of page.
+ \@maketitle
+ \fi
+ \thispagestyle{empty}\@thanks
+%
+ \def\\{\unskip\ \ignorespaces}\def\inst##1{\unskip{}}%
+ \def\thanks##1{\unskip{}}\def\fnmsep{\unskip}%
+ \instindent=\hsize
+ \advance\instindent by-\headlineindent
+ \if!\the\toctitle!\addcontentsline{toc}{title}{\@title}\else
+ \addcontentsline{toc}{title}{\the\toctitle}\fi
+ \if@runhead
+ \if!\the\titlerunning!\else
+ \edef\@title{\the\titlerunning}%
+ \fi
+ \global\setbox\titrun=\hbox{\small\rm\unboldmath\ignorespaces\@title}%
+ \ifdim\wd\titrun>\instindent
+ \typeout{Title too long for running head. Please supply}%
+ \typeout{a shorter form with \string\titlerunning\space prior to
+ \string\maketitle}%
+ \global\setbox\titrun=\hbox{\small\rm
+ Title Suppressed Due to Excessive Length}%
+ \fi
+ \xdef\@title{\copy\titrun}%
+ \fi
+%
+ \if!\the\tocauthor!\relax
+ {\def\and{\noexpand\protect\noexpand\and}%
+ \protected@xdef\toc@uthor{\@author}}%
+ \else
+ \def\\{\noexpand\protect\noexpand\newline}%
+ \protected@xdef\scratch{\the\tocauthor}%
+ \protected@xdef\toc@uthor{\scratch}%
+ \fi
+ \addtocontents{toc}{\noexpand\protect\noexpand\authcount{\the\c@auco}}%
+ \addcontentsline{toc}{author}{\toc@uthor}%
+ \if@runhead
+ \if!\the\authorrunning!
+ \value{@inst}=\value{@auth}%
+ \setcounter{@auth}{1}%
+ \else
+ \edef\@author{\the\authorrunning}%
+ \fi
+ \global\setbox\authrun=\hbox{\small\unboldmath\@author\unskip}%
+ \ifdim\wd\authrun>\instindent
+ \typeout{Names of authors too long for running head. Please supply}%
+ \typeout{a shorter form with \string\authorrunning\space prior to
+ \string\maketitle}%
+ \global\setbox\authrun=\hbox{\small\rm
+ Authors Suppressed Due to Excessive Length}%
+ \fi
+ \xdef\@author{\copy\authrun}%
+ \markboth{\@author}{\@title}%
+ \fi
+ \endgroup
+ \setcounter{footnote}{\fnnstart}%
+ \clearheadinfo}
+%
+\def\@maketitle{\newpage
+ \markboth{}{}%
+ \def\lastand{\ifnum\value{@inst}=2\relax
+ \unskip{} \andname\
+ \else
+ \unskip \lastandname\
+ \fi}%
+ \def\and{\stepcounter{@auth}\relax
+ \ifnum\value{@auth}=\value{@inst}%
+ \lastand
+ \else
+ \unskip,
+ \fi}%
+ \begin{center}%
+ \let\newline\\
+ {\Large \bfseries\boldmath
+ \pretolerance=10000
+ \@title \par}\vskip .8cm
+\if!\@subtitle!\else {\large \bfseries\boldmath
+ \vskip -.65cm
+ \pretolerance=10000
+ \@subtitle \par}\vskip .8cm\fi
+ \setbox0=\vbox{\setcounter{@auth}{1}\def\and{\stepcounter{@auth}}%
+ \def\thanks##1{}\@author}%
+ \global\value{@inst}=\value{@auth}%
+ \global\value{auco}=\value{@auth}%
+ \setcounter{@auth}{1}%
+{\lineskip .5em
+\noindent\ignorespaces
+\(a)author\vskip.35cm}
+ {\small\institutename}
+ \end{center}%
+ }
+
+% definition of the "\spnewtheorem" command.
+%
+% Usage:
+%
+% \spnewtheorem{env_nam}{caption}[within]{cap_font}{body_font}
+% or \spnewtheorem{env_nam}[numbered_like]{caption}{cap_font}{body_font}
+% or \spnewtheorem*{env_nam}{caption}{cap_font}{body_font}
+%
+% New is "cap_font" and "body_font". It stands for
+% fontdefinition of the caption and the text itself.
+%
+% "\spnewtheorem*" gives a theorem without number.
+%
+% A defined spnewthoerem environment is used as described
+% by Lamport.
+%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\def\@thmcountersep{}
+\def\(a)thmcounterend{.}
+
+\def\spnewtheorem{\@ifstar{\@sthm}{\@Sthm}}
+
+% definition of \spnewtheorem with number
+
+\def\@spnthm#1#2{%
+ \@ifnextchar[{\@spxnthm{#1}{#2}}{\@spynthm{#1}{#2}}}
+\def\@Sthm#1{\@ifnextchar[{\@spothm{#1}}{\@spnthm{#1}}}
+
+\def\@spxnthm#1#2[#3]#4#5{\expandafter\@ifdefinable\csname #1\endcsname
+ {\@definecounter{#1}\@addtoreset{#1}{#3}%
+ \expandafter\xdef\csname the#1\endcsname{\expandafter\noexpand
+ \csname the#3\endcsname \noexpand\@thmcountersep \@thmcounter{#1}}%
+ \expandafter\xdef\csname #1name\endcsname{#2}%
+ \global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#4}{#5}}%
+ \global\@namedef{end#1}{\@endtheorem}}}
+
+\def\@spynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
+ {\@definecounter{#1}%
+ \expandafter\xdef\csname the#1\endcsname{\@thmcounter{#1}}%
+ \expandafter\xdef\csname #1name\endcsname{#2}%
+ \global\@namedef{#1}{\@spthm{#1}{\csname #1name\endcsname}{#3}{#4}}%
+ \global\@namedef{end#1}{\@endtheorem}}}
+
+\def\@spothm#1[#2]#3#4#5{%
+ \@ifundefined{c@#2}{\@latexerr{No theorem environment `#2' defined}\@eha}%
+ {\expandafter\@ifdefinable\csname #1\endcsname
+ {\global\@namedef{the#1}{\@nameuse{the#2}}%
+ \expandafter\xdef\csname #1name\endcsname{#3}%
+ \global\@namedef{#1}{\@spthm{#2}{\csname #1name\endcsname}{#4}{#5}}%
+ \global\@namedef{end#1}{\@endtheorem}}}}
+
+\def\@spthm#1#2#3#4{\topsep 7\p@ \@plus2\p@ \@minus4\p@
+\refstepcounter{#1}%
+\@ifnextchar[{\@spythm{#1}{#2}{#3}{#4}}{\@spxthm{#1}{#2}{#3}{#4}}}
+
+\def\@spxthm#1#2#3#4{\@spbegintheorem{#2}{\csname the#1\endcsname}{#3}{#4}%
+ \ignorespaces}
+
+\def\@spythm#1#2#3#4[#5]{\@spopargbegintheorem{#2}{\csname
+ the#1\endcsname}{#5}{#3}{#4}\ignorespaces}
+
+\def\@spbegintheorem#1#2#3#4{\trivlist
+ \item[\hskip\labelsep{#3#1\ #2\@thmcounterend}]#4}
+
+\def\@spopargbegintheorem#1#2#3#4#5{\trivlist
+ \item[\hskip\labelsep{#4#1\ #2}]{#4(#3)\@thmcounterend\ }#5}
+
+% definition of \spnewtheorem* without number
+
+\def\@sthm#1#2{\@Ynthm{#1}{#2}}
+
+\def\@Ynthm#1#2#3#4{\expandafter\@ifdefinable\csname #1\endcsname
+ {\global\@namedef{#1}{\@Thm{\csname #1name\endcsname}{#3}{#4}}%
+ \expandafter\xdef\csname #1name\endcsname{#2}%
+ \global\@namedef{end#1}{\@endtheorem}}}
+
+\def\@Thm#1#2#3{\topsep 7\p@ \@plus2\p@ \@minus4\p@
+\@ifnextchar[{\@Ythm{#1}{#2}{#3}}{\@Xthm{#1}{#2}{#3}}}
+
+\def\@Xthm#1#2#3{\@Begintheorem{#1}{#2}{#3}\ignorespaces}
+
+\def\@Ythm#1#2#3[#4]{\@Opargbegintheorem{#1}
+ {#4}{#2}{#3}\ignorespaces}
+
+\def\@Begintheorem#1#2#3{#3\trivlist
+ \item[\hskip\labelsep{#2#1\@thmcounterend}]}
+
+\def\@Opargbegintheorem#1#2#3#4{#4\trivlist
+ \item[\hskip\labelsep{#3#1}]{#3(#2)\@thmcounterend\ }}
+
+\if@envcntsect
+ \def\(a)thmcountersep{.}
+ \spnewtheorem{theorem}{Theorem}[section]{\bfseries}{\itshape}
+\else
+ \spnewtheorem{theorem}{Theorem}{\bfseries}{\itshape}
+ \if@envcntreset
+ \@addtoreset{theorem}{section}
+ \else
+ \@addtoreset{theorem}{chapter}
+ \fi
+\fi
+
+%definition of divers theorem environments
+\spnewtheorem*{claim}{Claim}{\itshape}{\rmfamily}
+\spnewtheorem*{proof}{Proof}{\itshape}{\rmfamily}
+\if@envcntsame % alle Umgebungen wie Theorem.
+ \def\spn@wtheorem#1#2#3#4{\@spothm{#1}[theorem]{#2}{#3}{#4}}
+\else % alle Umgebungen mit eigenem Zaehler
+ \if@envcntsect % mit section numeriert
+ \def\spn@wtheorem#1#2#3#4{\@spxnthm{#1}{#2}[section]{#3}{#4}}
+ \else % nicht mit section numeriert
+ \if@envcntreset
+ \def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
+ \@addtoreset{#1}{section}}
+ \else
+ \def\spn@wtheorem#1#2#3#4{\@spynthm{#1}{#2}{#3}{#4}
+ \@addtoreset{#1}{chapter}}%
+ \fi
+ \fi
+\fi
+\spn@wtheorem{case}{Case}{\itshape}{\rmfamily}
+\spn@wtheorem{conjecture}{Conjecture}{\itshape}{\rmfamily}
+\spn@wtheorem{corollary}{Corollary}{\bfseries}{\itshape}
+\spn@wtheorem{definition}{Definition}{\bfseries}{\itshape}
+\spn@wtheorem{example}{Example}{\itshape}{\rmfamily}
+\spn@wtheorem{exercise}{Exercise}{\itshape}{\rmfamily}
+\spn@wtheorem{lemma}{Lemma}{\bfseries}{\itshape}
+\spn@wtheorem{note}{Note}{\itshape}{\rmfamily}
+\spn@wtheorem{problem}{Problem}{\itshape}{\rmfamily}
+\spn@wtheorem{property}{Property}{\itshape}{\rmfamily}
+\spn@wtheorem{proposition}{Proposition}{\bfseries}{\itshape}
+\spn@wtheorem{question}{Question}{\itshape}{\rmfamily}
+\spn@wtheorem{solution}{Solution}{\itshape}{\rmfamily}
+\spn@wtheorem{remark}{Remark}{\itshape}{\rmfamily}
+
+\def\@takefromreset#1#2{%
+ \def\@tempa{#1}%
+ \let\@tempd\@elt
+ \def\@elt##1{%
+ \def\@tempb{##1}%
+ \ifx\@tempa\@tempb\else
+ \@addtoreset{##1}{#2}%
+ \fi}%
+ \expandafter\expandafter\let\expandafter\@tempc\csname cl@#2\endcsname
+ \expandafter\def\csname cl@#2\endcsname{}%
+ \@tempc
+ \let\@elt\@tempd}
+
+\def\theopargself{\def\@spopargbegintheorem##1##2##3##4##5{\trivlist
+ \item[\hskip\labelsep{##4##1\ ##2}]{##4##3\@thmcounterend\ }##5}
+ \def\@Opargbegintheorem##1##2##3##4{##4\trivlist
+ \item[\hskip\labelsep{##3##1}]{##3##2\@thmcounterend\ }}
+ }
+
+\renewenvironment{abstract}{%
+ \list{}{\advance\topsep by0.35cm\relax\small
+ \leftmargin=1cm
+ \labelwidth=\z@
+ \listparindent=\z@
+ \itemindent\listparindent
+ \rightmargin\leftmargin}\item[\hskip\labelsep
+ \bfseries\abstractname]}
+ {\endlist}
+
+\newdimen\headlineindent % dimension for space between
+\headlineindent=1.166cm % number and text of headings.
+
+\def\ps@headings{\let\@mkboth\@gobbletwo
+ \let\@oddfoot\@empty\let\@evenfoot\@empty
+ \def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
+ \leftmark\hfil}
+ \def\@oddhead{\normalfont\small\hfil\rightmark\hspace{\headlineindent}%
+ \llap{\thepage}}
+ \def\chaptermark##1{}%
+ \def\sectionmark##1{}%
+ \def\subsectionmark##1{}}
+
+\def\ps@titlepage{\let\@mkboth\@gobbletwo
+ \let\@oddfoot\@empty\let\@evenfoot\@empty
+ \def\@evenhead{\normalfont\small\rlap{\thepage}\hspace{\headlineindent}%
+ \hfil}
+ \def\@oddhead{\normalfont\small\hfil\hspace{\headlineindent}%
+ \llap{\thepage}}
+ \def\chaptermark##1{}%
+ \def\sectionmark##1{}%
+ \def\subsectionmark##1{}}
+
+\if@runhead\ps@headings\else
+\ps@empty\fi
+
+\setlength\arraycolsep{1.4\p@}
+\setlength\tabcolsep{1.4\p@}
+
+\endinput
+%end of file llncs.cls
diff --git a/2009/metrics/metrics.bib b/2009/metrics/metrics.bib
new file mode 100755
index 0000000..2dc5476
--- /dev/null
+++ b/2009/metrics/metrics.bib
@@ -0,0 +1,87 @@
+@inproceedings{dingledine2004tor,
+ author = {Roger Dingledine and Nick Mathewson and Paul Syverson},
+ title = {Tor: The Second-Generation Onion Router},
+ booktitle = {Proceedings of the 13th USENIX Security Symposium},
+ year = {2004},
+ month = {August},
+ pages = {303--320},
+ pdf = {dingledine2004tor.pdf},
+}
+
+@phdthesis{loesing2008privacy,
+ title = {Privacy-enhancing Technologies for Private Services},
+ author = {Karsten Loesing},
+ school = {University of Bamberg},
+ year = {2009},
+ month = {May},
+}
+
+@inproceedings{overlier2006locating,
+ title = {Locating Hidden Servers},
+ author = {Lasse {\O}verlier and Paul Syverson},
+ booktitle = {Proceedings of the Symposium on Security and Privacy (S{\&}P 2006)},
+ year = {2006},
+ month = {May},
+ publisher = {IEEE Computer Society},
+}
+
+@techreport{dingledine2009clients,
+ author = {Roger Dingledine},
+ title = {Clients download consensus + microdescriptors},
+ year = {2009},
+ month = {January},
+ note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/proposals/158-microdescriptors.txt}},
+ institution = {The Tor Project},
+ type = {Tor Proposal},
+ number = {158},
+}
+
+@inproceedings{mccoy2008shining,
+ title = {Shining Light in Dark Places: Understanding the {Tor} Network},
+ author = {Damon McCoy and Kevin Bauer and Dirk Grunwald and Tadayoshi Kohno and Douglas Sicker},
+ booktitle = {Proceedings of the Eighth Symposium on Privacy Enhancing Technologies (PETS 2008)},
+ year = {2008},
+ month = {July},
+ address = {Leuven, Belgium},
+ pages = {63--76},
+ editor = {Nikita Borisov and Ian Goldberg},
+ publisher = {Springer},
+ series = {Lecture Notes in Computer Science},
+ volume = {5134},
+}
+
+@inproceedings{bauer2007low,
+ title = {Low-Resource Routing Attacks Against {Tor}},
+ author = {Kevin S. Bauer and Damon McCoy and Dirk Grunwald and Tadayoshi Kohno and Douglas Sicker},
+ booktitle = {Proceedings of the Workshop on Privacy in the Electronic Society (WPES 2007)},
+ year = {2007},
+ month = {October},
+ publisher = {ACM},
+}
+
+@manual{tor2009dirspec,
+ author = {The Tor Project},
+ title = {Tor directory protocol, version 3},
+ year = {2009},
+ note = {\url{https://git.torproject.org/checkout/tor/master/doc/spec/dir-spec.txt}},
+}
+
+@inproceedings{lenhard2009performance,
+ title = {Performance Measurements of Tor Hidden Services in Low-Bandwidth Access Networks},
+ author = {J{\"o}rg Lenhard and Karsten Loesing and Guido Wirtz},
+ booktitle = {Proceedings of the Seventh International Conference on Applied Cryptography and Network Security (ACNS 2009), Paris-Rocquencourt, France},
+ publisher = {Springer},
+ pages = {324--341},
+ series = {Lecture Notes in Computer Science},
+ volume = {5536},
+ year = {2009},
+ month = {June},
+}
+
+@other{mulazzani2009personal,
+ author = {Martin Mulazzani},
+ title = {Personal communication},
+ year = {2009},
+ month = {March},
+}
+
diff --git a/2009/metrics/metrics.tex b/2009/metrics/metrics.tex
new file mode 100755
index 0000000..3135400
--- /dev/null
+++ b/2009/metrics/metrics.tex
@@ -0,0 +1,275 @@
+\documentclass[letterpaper,11pt]{llncs}
+\usepackage{cite}
+\usepackage[utf8]{inputenc}
+\usepackage{fontenc}
+\usepackage[dvips]{graphicx}
+\usepackage{graphics}
+\usepackage{color}
+\usepackage{url}
+\usepackage{amsmath}
+\usepackage{booktabs}
+\begin{document}
+\title{Measuring the Tor Network from\\Public Directory Information}
+\author{Karsten Loesing}
+\institute{The Tor Project\\
+karsten.loesing(a)gmx.net}
+\date{}
+\maketitle
+
+\begin{abstract}
+The Tor network is one of the largest deployed anonymity networks, with more than one thousand servers, called relays, and probably hundreds of thousands of clients.
+A few facts are known about the Tor network, even though single individuals or organizations, including The Tor Project, control only small parts of the network.
+The reason is that clients need to know which relays there are in the network in order to build circuits and anonymize their traffic.
+Therefore, relays periodically report their addresses and capabilities to a small set of directory servers which redistribute relay lists as directories to clients.
+Everyone can collect these directories and analyze them to obtain statistics about the relays in the Tor network.
+In this paper we demonstrate statistics about the Tor network from February 2006 to February 2009 solely based on archived directory information.
+The goal is to observe trends in the network without having to collect any data that might compromise the security or anonymity of Tor users.
+\end{abstract}
+
+\section{Introduction}
+
+Privacy-enhancing technologies have become an invaluable tool to help people protect their privacy on the Internet.
+%In fact, with current und upcoming data retention laws, privacy of Internet users is more at risk than ever before.
+Privacy-enhancing technologies allow people to stay anonymous or pseudonymous by redirecting their traffic over multiple nodes in an anonymity network.
+Tor \cite{dingledine2004tor} is one example for such an anonymity network.
+The Tor network consists of more than one thousand servers, called relays, which are run on a voluntary basis by individuals and organizations worldwide.
+These relays are used by presumably a few hundreds of thousands of clients to anonymize their Internet communication.
+This makes the Tor network one of the largest deployed anonymity networks.
+
+Tor clients obtain anonymity by building circuits of usually three relays that redirect their communication before exiting to the real Internet.
+All messages along the circuits are encrypted multiple times so that neither participant can tell where the circuit begins and where it ends.
+The result of this redirection is that nobody can link the clients' IP addresses to the data contents.
+Clients learn about running relays by downloading lists of running relays from directory authorities, a small number of relays that collect and distribute routing information in the network.
+Clients use this information to decide which relays to select when building circuits.
+%, thus providing anonymity when searching the Internet or publishing information.
+
+The Tor network is open in the sense that everyone with a moderately fast Internet connection can join the Tor network and run a relay.
+The idea is to distribute trust and make it very hard for a single person or organization to control large parts of the network.
+%The drawback from a developer's perspective is that it becomes harder to monitor and improve the operation of the network.
+%Anyone with a moderately fast Internet connection can set up a relay and join the Tor network, or leave it whenever they like. This makes the Tor network somewhat hard to measure. Fortunately, certain data need to be known in the network for normal operation. These data can be used for analysis as well.
+From the perspective of the Tor project %as the network operator
+it is desirable to learn about certain characteristics to improve the network for its users.
+In the present paper we describe an approach to observe trends in the network from evaluating archived directory information.
+Examples include but are not limited to:
+
+\begin{itemize}
+\item The directory authorities assign flags to some of the relays that are used by clients to make path selection decisions. The analysis of directory archives can show whether the assumptions for assigning flags are still adequate or need to be changed.
+
+\item Knowing about relay versions and platforms in the network can be useful to learn about the update behavior of relay operators and to decide when to request popular operating system distributors to upgrade to a new Tor version series.
+
+\item Learning about the number of relays on dynamic IP addresses can help prioritize development efforts to better support IP address changes on relays.
+
+\item An analysis of advertised and used bandwidth on relays can give first insights into investigating why Tor is slow and how to improve it.
+
+\item Changes in the distribution of relays to countries can give hints that more efforts need to be taken to support relay operators in certain countries. %(beispiel: rÌckgang in deutschland in 2009 deutet darauf hin, dass unsicherheit in bezug auf vorratsdatenspeicherung vorherrscht, die man durch zusÀtzliche informationen fÌr relay operatoren evtl reduzieren könnte).
+
+\item Information about the characteristics of the Tor network can help when simulating the effectiveness of attacks or design changes. As an example, the rates of joining and leaving relays per hour were used to derive the average availability of hidden service descriptors in a distributed directory before deployment \cite{loesing2008privacy}.
+\end{itemize}
+
+This paper focuses only on directory information that is already publicly known. Most of the data is required for the operation of Tor and is downloaded by all clients. All data can be collected without running a single piece of the network infrastructure simply by downloading data from the directory authorities.
+% Obviously, one could easily modify the Tor software to gather additional data about performance or usage. That would raise a number of concerns, though, both from a legal perspective and from a security point of view. These concerns do not apply to the public directory data used in this analysis.
+This approach allows us to gain insights about trends in the network infrastructure and, to a small extent, its usage.
+%The analysis shall further show what kinds of evaluations are already possible with the existing directory data and which are not.
+
+\section{Tor Directory Protocol}
+
+Relays and clients communicate over the directory protocol \cite{tor2009dirspec} to exchange directory information. The reason is that clients need to know which relays exist to build circuits. Clients further need to know about the relays' capabilities to make good path selection decisions before building circuits.
+
+The first step in the directory protocol is that relays publish router descriptors to the directory authorities, reporting their current contact data and capabilities. The contact data includes information like the IP address and port to listen for onion routing protocol requests as well as cryptographic keys. Capabilities include, among other things, available bandwidth and exit policy. Table~\ref{tab:routerdesc} shows the data from router descriptors that can be relevant for statistical analysis.
+
+\begin{table}
+\caption{Subset of the data contained in a router descriptor}
+\label{tab:routerdesc}
+\begin{tabular}{p{3cm}p{9cm}}
+\toprule
+\textbf{Data field} & \textbf{Description}\\
+\midrule
+Nickname & Name for the relay as chosen by its operator\\
+Address & IP address\\
+OR port & Port that accepts connections from clients and other relays\\
+Dir port & Port that answers directory requests\\
+Average bandwidth & Number of bytes the relay is willing to sustain over long periods\\
+Burst bandwidth & Number of bytes the relay is willing to sustain in short intervals\\
+Observed bandwidth & Estimate of the capacity that the relay can handle\\
+Platform & Tor software version and operating system\\
+Published & Time when the descriptor was generated\\
+Fingerprint & Hash of the relay's public key\\
+Uptime & Number of seconds that the relay has been running\\
+Onion key & Medium-term key used for onion routing\\
+Signing key & Long-term identity key\\
+Exit policy & Rules that define what targets and ports are allowed for exiting\\
+Contact & Address to contact the relay operator\\
+Family & List of relays operated by the same operator\\
+\bottomrule
+\end{tabular}
+\end{table}
+
+All data in a router descriptor is signed by the relay and hence cannot be altered by anyone. However, nothing prevents a relay operator from changing the source code, e.g., to lie about the relay's capabilities. Various authors have exploited the fact that relays self-advertise information that clients use for making path selection decisions later to conduct attacks on Tor \cite{overlier2006locating, bauer2007low}.
+
+In addition to router descriptors, relays publish a second type of document to the directory authorities, called extra-info document. Extra-info documents contain data which are not required for normal operation but which might be useful for statistical purposes. Extra-info documents are not meant to be downloaded by clients, but they are publicly available for everyone to download, too. The only data that is contained in extra-info documents right now is the relay's bandwidth history over the past 24 hours. Table~\ref{tab:extrainfo} shows the two relevant data fields of extra-info documents.
+
+\begin{table}
+\caption{Subset of the data contained in an extra-info document}
+\label{tab:extrainfo}
+\begin{tabular}{p{3cm}p{9cm}}
+\toprule
+\textbf{Data field} & \textbf{Description}\\
+\midrule
+Read history & Number of bytes received by this relay in 15-minutes intervals during the past 24 hours\\
+Write history & Number of bytes sent by this relay in 15-minutes intervals during the past 24 hours\\
+\bottomrule
+\end{tabular}
+\end{table}
+
+The reason for separating out extra-info documents from router descriptors was that clients should not need to download data that is not essential for their operation. Recent measurements have shown that even with this separation, clients on low-bandwidth access networks spend most of their bootstrapping time on downloading router descriptors from the directories \cite{lenhard2009performance}. It is desirable for clients with limited connectivitiy to further reduce the size of router descriptors while retaining the data, e.g., for statistical purposes. The recently proposed microdescriptor approach \cite{dingledine2009clients} might be an important step into this direction.
+
+The directory authorities store router descriptors and continuously verify availability of relays to maintain a list of running relays. The authorities further assign various flags to each relay based on their knowledge of the whole network to indicate special properties of a relay, e.g., if it is more stable than others. These flags are used by clients to make their path selection decisions. Every hour, the directory authorities exchange their views on the network and agree on a common list of available relays, called network status consensus. Every running relay has an entry in a network status consensus with the data as shown in Table~\ref{tab:statusentry}.
+
+\begin{table}
+\caption{Subset of the data contained in a network status consensus entry}
+\label{tab:statusentry}
+\begin{tabular}{p{3cm}p{9cm}}
+\toprule
+\textbf{Data field} & \textbf{Description}\\
+\midrule
+Relay identity & Unique relay identity, derived from identity key\\
+Descriptor identifier & Referenced descriptor\\
+Exit flag & Authorities think this relay should be preserved for building exit circuits\\
+Fast flag & Authorities think this relay is suitable for high-bandwidth circuits\\
+Guard flag & Authorities think this relay is suitable for use as entry guard\\
+Stable flag & Authorities think this relay is suitable for long-lived circuits\\
+\bottomrule
+\end{tabular}
+\end{table}
+
+Clients learn about the available relays by downloading a network status consensus and all referenced router descriptors from the directory authorities.
+
+All the directory information as described here can be easily collected on a regular basis. One could run a relay and configure it to act as a directory cache to obtain this information automatically. Alternatively, one can downloaded all documents from the directories using simple HTTP GET requests. The latter can be automated using scripts.\footnote{See Peter Palfrader's directory archive script that performs this task: \url{https://git.torproject.org/checkout/tor/master/contrib/directory-archive/}}
+
+The directory data are already used to provide an overview of the Tor network. TorStatus is a web-based application to present basic statistics on the Tor network.\footnote{See the project homepage of TorStatus, developed by Joseph B.\ Kowalski and Kasimir Gabert, at: \url{http://project.torstatus.kgprog.com/trac/}} Only recently, TorStatus was extended by Martin Mulazzani \cite{mulazzani2009personal} by writing a subset of directory information to a database and visualizing the collected data in the web interface. Mulazzani's approach differs from the approach taken here by creating an interface for users to let them analyze data about the Tor network rather than collecting data and performing the analysis offline. An integration of both approaches in the future might be beneficial.
+
+\section{Results}
+
+The following statistics are the result of a continuous collection of directory data from February 2006 to February 2009 by Peter Palfrader. A copy of these data can be requested for research purposes by contacting the author of this paper. The tools to import the directory archives into a database and perform evaluations on them have been made freely available.\footnote{\url{git://git.torproject.org/git/metrics/}}
+
+%interessante ergebnisse
+%- 80 \% ÃŒber infrastruktur
+% - wer bietet relays an (nach lÀndern)
+% - versionen, plattformen
+% - verfÃŒgbare bandbreite
+%- 20 \% nutzung
+% - bw histories
+
+\paragraph{Relay flags assigned by directory authorities.}
+
+The first analysis focuses on the total number of relays and their flags as assigned by the directory authorities. Figure~\ref{fig:relayflags} shows the average number of relays per day. The topmost line represents all running relays. % with a maximum of 1,500 relays at the beginning of 2008.
+%
+The shown flags shall help clients make better path selection decisions rather than picking relays uniformly. Directory authorities assign the \texttt{Fast} flag to relays that have at least the advertised bandwidth as 90\% of all relays, so that clients can pick these relays for high-bandwidth circuits. The \texttt{Stable} flag is assigned to relays that the authorities think are more stable than others and therefore suitable for long-lived circuits. The \texttt{Exit} flag indicates that a relay permits at least some connections to exit to the Internet and should therefore be preserved for use as exit relay in a circuit rather than be overloaded by being selected for other positions. The \texttt{Guard} flag suggests to clients that a relay is suitable for being selected into a small set of entry guards; the idea to use a fixed set of entry guards is to prevent an adversary from forcing a victim to build new circuits until they control the first relay in the circuit and be a
ble to locate the victim using traffic analysis \cite{overlier2006locating}.
+
+\begin{figure}
+\centering
+\includegraphics[width=.95\textwidth]{relayflags-hotpets.pdf}
+\caption{Average number of running relays per day with flags assigned by the directory authorities}
+\label{fig:relayflags}
+\end{figure}
+
+The overall trend that can be seen in the graph is that the network grows rather quickly until the beginning of 2008 but starts shrinking from then on. The reason for the shrinking is not immediately visible. The graph also contains a few artifacts that can be explained from external events or from the measurement setup. In the interval from February 2006 to November 2007, the directory authorities did not vote on a common network status consensus, so that the evaluation in that interval is based on the view of a single directory; this explains the sharp decline in running relays in November 2007 which was not present in the views of other directories (which in turn would contain other such artifacts). The intermittent decrease of running relays in May 2008 can be explained by the Debian OpenSSL predictable random generator bug that led to blacklisting a certain number of relays by the directory authorities. The high variability of relays with \texttt{Stable} and \texttt{Gua
rd} flags indicates a problem in the authorities assigning these flags that is currently under investigation, which is in parts the result of visualizing the problem as it is done here.
+
+This graph can also be useful to decide whether conditions to assign certain flags might require modification. For example, the average number of guard nodes has become rather low, given that these nodes carry one third of the total load of the network. One of the requirements for assigning the \texttt{Guard} flag to a relay is a weighted fractional uptime of at least 0.995, i.e., a relay was available for at least 99.5\% of the time it is known to a directory authority. This number is simply a guess of the developers. Figure~\ref{fig:guardwfu} shows the simulated effect of reducing the required weighted fractional uptime on the number of relays with the \texttt{Guard} flag. Simulations like this one based on real network data can be a useful tool for developers to estimate the consequences of design changes.
+
+\begin{figure}
+\centering
+\includegraphics[width=.95\textwidth]{guardwfu-hotpets.pdf}
+\caption{Simulation of the number of guard nodes when reducing the required weighted fractional uptime}
+\label{fig:guardwfu}
+\end{figure}
+
+\paragraph{Relay versions.}
+
+Relays include a platform string in their router descriptors containing the version of the Tor software and operating system. These strings can be evaluated to learn about the distribution of versions in the network as well as the update behavior of relay operators. Figure~\ref{fig:platforms} visualizes the number of relays running different major versions of the Tor software. The vertical lines denote the points in time when a major version was declared to be the new stable version. The version life cycles can be subdivided into an alpha and release candidate phase (April 2006 to April 2007 for 0.1.2.x), a stable phase (April 2007 to July 2008), and an out-of-date phase (July 2008 until today). For all major versions there is an upper limit of approximately 200 relay operators running alpha or release candidate versions. There is no visible increase when versions are moved from alpha state to release candidate state (March 2, 2007 for 0.1.2.x, February 24, 2008 for 0.2.0.x)
. The stable phases for all versions show that it can take months until most relay operators switch from an out-of-date version to the stable version (April 2007 to around end of 2007 for 0.1.1.x). Accordingly, the out-of-date phases show that old versions are used even years after new stable versions are available (0.1.1.x still in use in 2009).
+
+These results indicate that more efforts need to be taken to encourage relay operators to upgrade. It is desirable that relay operators upgrade to the stable versions as soon as possible or by no later than the end-of-life announcement. Approaches to make relay operators upgrade more quickly include helping popular operating system distributors to include up-to-date Tor versions or providing a semi-automatic updating mechanism to facilitate the upgrade process.\footnote{For more details about the secure updater for Tor, called Thandy, which is currently under development, see \url{https://git.torproject.org/checkout/thandy/master/}}
+
+\begin{figure}
+\centering
+\includegraphics[width=.95\textwidth]{platforms-hotpets.pdf}
+\caption{Number of relays running different major Tor software versions}
+\label{fig:platforms}
+\end{figure}
+
+\paragraph{Relays on dynamic IP addresses.}
+
+The relays in the public Tor network are run by volunteers which are both individuals and organizations donating their bandwidth and processing power to the network. As a result, some relays are run on home computers that obtain a new dynamic IP address periodically or after a reconnect. After an IP address change, clients need to learn the new IP address of a relay in order to build circuits using it. %It is important to know the fraction of relays having dynamic IP addresses to decide whether support for address changes needs to be improved.
+
+It is not immediately possible to determine for the analysis whether a relay uses a dynamic IP address or not. For this analysis we distinguish relays running on dynamic from static IP addresses from the total number of addresses that a relay has used throughout the analysis interval. Relays seen with only 1 or 2 addresses are considered to run on static IP addresses, with the rationale that they might have been moved to another location at most once while keeping their identity. Relays that were seen with 3 or more IP addresses are considered to have dynamic IP addresses. More sophisticated ways to distinguish dynamic from static IP addresses, e.g., looking up addresses in a dynamic IP address database, have not been approached for this analysis.
+
+Figure~\ref{fig:dynamic} shows the number of relays running on static and on dynamic IP addresses. The high number of relays on dynamic addresses indicates that efforts should be taken to make new relay addresses available to clients more quickly. Otherwise, a certain share of relays is unreachable for clients, leading to under-utilization of available bandwidth and a higher fraction of failed circuit build attempts. Interestingly, the decline of relays on dynamic IP addresses in 2008 has a similar pattern as the overall decrease of relays in that time.
+
+\begin{figure}
+\centering
+\includegraphics[width=.95\textwidth]{dynamic-hotpets.pdf}
+\caption{Number of relays presumably running on dynamic and static IP addresses}
+\label{fig:dynamic}
+\end{figure}
+
+\paragraph{Bandwidth capacity and usage.}
+
+Relays report their observed bandwidth capacity and bandwidth usage to the directories. The bandwidth capacity is the maximum bandwidth as observed over any ten seconds in the past day. The idea is that this bandwidth peak constitutes the bandwidth that a relay is able to provide to its clients. The bandwidth capacity is used by clients during the path selection process to weight relays and obtain an overall load balancing in the network. Bandwidth usage is calculated as the total number of relayed bytes in 15-minutes intervals over the past day. This usage information is not considered by clients at all but is only made available for statistical purposes.
+
+The graph in Figure~\ref{fig:advertised} shows that roughly half of the available bandwidth capacity is used by clients. If the assumption is correct that relays can handle as much traffic as shown in the maximum 10-seconds interval over the past day, this indicates that the other half of the bandwidth remains unused. That would mean that better load balancing algorithms might make better use of the available bandwidth. On the contrary, the approach to measure bandwidth capacity as it is done today might be wrong and relays are not capable of handling that much traffic over longer periods. Further investigations are necessary to explain the discrepancy between provided and used bandwidth.
+
+\begin{figure}
+\centering
+\includegraphics[width=.95\textwidth]{advertised-hotpets.pdf}
+\caption{Total bandwidth capactiy and usage in the network}
+\label{fig:advertised}
+\end{figure}
+
+\paragraph{Relays by country.}
+
+Finally, the archived directory data can be used to determine the locations of relays by using a GeoIP database. %\footnote{maxmind database}
+The distribution of relays to countries can give valuable insights into the willingness of people in certain countries to setup a relay. The trends can help detect possible problems that can be encountered by providing better support for relay operators in countries with decreasing numbers of relays.
+
+Figure~\ref{fig:country} shows the numbers of running relays in the top-5 contributing countries. The most visible trend is that the number of German relays suddenly stops growing in January 2008 and significantly shrinks over 2008. This trend might be the result of data retention laws and the uncertainty of relay operators whether running a relay is still legal or not. The graph indicates that the loss of German relays is responsible for the decline of relays in the network in 2008.
+
+Figure~\ref{fig:countrybw} shows the top-5 contributing countries, this time by bandwidth usage. The pattern for German nodes in 2008 is similar to Figure~\ref{fig:country}. Another pattern is that French relays have suddenly seen less usage (which is a result of less advertised capacity) in July 2008. Finally, the Netherlands are the third largest provider of bandwidth, even though they did not show up in absolute numbers in Figure~\ref{fig:country}. Possible explanations for the sudden decrease of bandwidth provided by French relays and the high bandwidth-per-relay ratio of relays located in the Netherlands are single hosting companies who support (or have stopped supporting) the operation of relays. It might be beneficial to put more efforts into keeping good hosting companies happy so that they continue to support individuals and organizations who wish to run relays.
+
+\begin{figure}
+\centering
+\includegraphics[width=.95\textwidth]{country-hotpets.pdf}
+\caption{Number of relays in the top-5 contributing countries}
+\label{fig:country}
+\end{figure}
+
+\begin{figure}
+\centering
+\includegraphics[width=.95\textwidth]{countrybw-hotpets.pdf}
+\caption{Bandwidth usage as observed by relays located in the top-5 contributing countries}
+\label{fig:countrybw}
+\end{figure}
+
+
+\section{Conclusion and Future Work}
+
+This paper presents an analysis of the Tor network by evaluating the existing directory information that is required for network operation anyway. The results show trends and reveal problems in the current network that need to be encountered, e.g., by lowering requirements for assigning certain flags, facilitating the upgrade process, improving support for dynamic IP addresses, possibly calculating bandwidth capacity more reliably, and clarifying legal issues for running relays in view of data retention laws. Statistical analysis of the network infrastructure can be a useful tool to detect problems and simulate or monitor the effect of changes.
+
+The next step in analyzing the public Tor network would be to focus on performance and blocking-resistance metrics. The only data in the current analysis that is generated by users is bandwidth usage in terms of numbers of bytes in 15-minutes intervals. Future measurements could include more fine-grained network data in order to improve the Tor software and make it more useful. In contrast to the data presented here, more fine-grained network data would require collecting data that is not required for normal operation of the network. This raises concerns, both legally and regarding the security and anonymity of Tor users that need to be answered first, though. The work of McCoy et.\ al \cite{mccoy2008shining} has shown that additional measurements can be useful to learn more about the Tor network, but reinforces the necessity to settle possible liabilities before starting to collect more data. %which data needs to be collected to answer these questions without putting the se
curity of Tor users at risk.
+%
+%was kann man aus zusÀtzlich erhobenen daten Ìber tor nw lernen; fokus: responsible data collection
+%track: dealing with data
+%diskutieren was man tun sollte und was nicht
+%- welche daten fallen in anon-nw an? (spezifisch tor)
+%- wozu benötigt man statistiken Ìber diese daten?
+%- welche sollte man wie sammeln, welche sind zu sensibel?
+%- fokus: ansÀtze diskutieren
+
+%In addition to bandwidth histories, relays could collect more data about their operation and include them in extra-info documents.
+%For example, relays could passively monitor latencies and throughput of direct connections to other relays.
+%These data can help getting a better picture on the real capabilities of relays rather than the self-advertised bandwidth.
+%Researchers in the past have modified relays to lie about their real bandwidth and attract more clients which could be detected from reports of directly connected relays (\textbf{refs siehe diss!}).
+%In the future, these data might also be passed on by the directories to clients to make better path-selection decisions. (eher von DAs auswerten lassen, nicht an clients weitergeben, um bootstrapping problem nicht zu verschlimmern. siehe auch microdescriptor-ansatz)
+
+\bibliographystyle{plain}
+\bibliography{metrics}
+\end{document}
+
diff --git a/2009/metrics/platforms-hotpets.pdf b/2009/metrics/platforms-hotpets.pdf
new file mode 100755
index 0000000..6ac3fb9
--- /dev/null
+++ b/2009/metrics/platforms-hotpets.pdf
@@ -0,0 +1,4760 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20090505141421)
+/ModDate (D:20090505141421)
+/Title (R Graphics Output)
+/Producer (R 2.8.1)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+5 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 6 0 R
+/Resources 4 0 R
+>>
+endobj
+6 0 obj
+<<
+/Length 7 0 R
+>>
+stream
+q
+Q q 56.16 59.04 591.84 352.80 re W n
+1.000 0.647 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+108.03 72.11 m
+108.52 72.63 l
+109.02 72.89 l
+109.51 72.63 l
+110.00 73.15 l
+110.49 72.89 l
+110.98 72.89 l
+111.47 73.15 l
+111.96 73.15 l
+112.45 73.41 l
+112.94 73.15 l
+113.43 73.15 l
+113.93 73.15 l
+114.42 73.15 l
+114.91 73.41 l
+115.40 73.93 l
+115.89 73.67 l
+116.38 73.67 l
+116.87 73.93 l
+117.36 73.67 l
+117.85 73.93 l
+118.35 73.67 l
+118.84 73.67 l
+119.33 73.93 l
+119.82 73.93 l
+120.31 73.67 l
+120.80 73.41 l
+121.29 73.15 l
+121.78 73.41 l
+122.27 73.41 l
+122.76 73.41 l
+123.26 73.15 l
+123.75 72.89 l
+124.24 73.15 l
+124.73 73.15 l
+125.22 73.15 l
+125.71 73.15 l
+126.20 73.15 l
+126.69 72.89 l
+127.18 73.15 l
+127.67 73.15 l
+128.17 73.15 l
+128.66 73.15 l
+129.15 72.89 l
+129.64 73.15 l
+130.13 73.15 l
+130.62 73.15 l
+131.11 72.89 l
+131.60 73.15 l
+132.09 73.15 l
+132.59 73.15 l
+133.08 73.41 l
+133.57 73.41 l
+134.06 73.41 l
+134.55 73.41 l
+135.04 73.41 l
+135.53 73.93 l
+136.02 73.93 l
+136.51 73.41 l
+137.00 73.67 l
+137.50 73.67 l
+137.99 73.67 l
+138.48 73.67 l
+138.97 73.41 l
+139.46 73.15 l
+139.95 72.89 l
+140.44 73.93 l
+140.93 74.71 l
+141.42 74.71 l
+141.92 74.71 l
+142.41 74.71 l
+142.90 74.97 l
+143.39 75.49 l
+143.88 75.23 l
+144.37 74.97 l
+144.86 75.23 l
+145.35 74.71 l
+145.84 74.71 l
+146.33 74.45 l
+146.83 74.71 l
+147.32 74.97 l
+147.81 75.23 l
+148.30 75.23 l
+148.79 75.23 l
+149.28 75.49 l
+149.77 75.23 l
+150.26 74.97 l
+150.75 74.97 l
+151.24 74.71 l
+151.74 74.45 l
+152.23 74.45 l
+152.72 74.45 l
+153.21 74.45 l
+153.70 74.45 l
+154.19 74.45 l
+154.68 74.45 l
+155.17 74.45 l
+155.66 74.45 l
+156.16 74.71 l
+156.65 74.97 l
+157.14 74.71 l
+157.63 74.45 l
+158.12 74.45 l
+158.61 74.19 l
+159.10 74.45 l
+159.59 74.45 l
+160.08 74.45 l
+160.57 74.45 l
+161.07 74.19 l
+161.56 74.19 l
+162.05 74.19 l
+162.54 74.19 l
+163.03 74.45 l
+163.52 74.71 l
+164.01 74.71 l
+164.50 74.71 l
+164.99 74.71 l
+165.49 74.71 l
+165.98 74.71 l
+166.47 74.71 l
+166.96 74.45 l
+167.45 74.45 l
+167.94 74.45 l
+168.43 74.45 l
+168.92 74.45 l
+169.41 74.71 l
+169.90 74.71 l
+170.40 74.71 l
+170.89 74.45 l
+171.38 74.71 l
+171.87 74.45 l
+172.36 74.71 l
+172.85 74.45 l
+173.34 74.45 l
+173.83 74.45 l
+174.32 74.45 l
+174.81 74.71 l
+175.31 74.19 l
+175.80 74.19 l
+176.29 74.19 l
+176.78 74.19 l
+177.27 74.97 l
+177.76 76.27 l
+178.25 76.53 l
+178.74 77.05 l
+179.23 77.31 l
+179.73 77.57 l
+180.22 77.57 l
+180.71 77.83 l
+181.20 77.31 l
+181.69 77.31 l
+182.18 77.05 l
+182.67 77.05 l
+183.16 77.57 l
+183.65 77.31 l
+184.14 78.09 l
+184.64 78.35 l
+185.13 79.39 l
+185.62 79.92 l
+186.11 80.18 l
+186.60 80.18 l
+187.09 79.92 l
+187.58 80.18 l
+188.07 79.66 l
+188.56 79.66 l
+189.05 79.13 l
+189.55 79.66 l
+190.04 79.92 l
+190.53 79.39 l
+191.02 78.87 l
+191.51 79.39 l
+192.00 79.13 l
+192.49 79.13 l
+192.98 78.61 l
+193.47 78.87 l
+193.97 78.87 l
+194.46 78.09 l
+194.95 78.35 l
+195.44 78.61 l
+195.93 78.61 l
+196.42 80.18 l
+196.91 79.13 l
+197.40 79.66 l
+197.89 80.44 l
+198.38 80.18 l
+198.88 79.92 l
+199.37 80.70 l
+199.86 82.00 l
+200.35 82.78 l
+200.84 82.52 l
+201.33 82.00 l
+201.82 83.04 l
+202.31 82.26 l
+202.80 82.52 l
+203.30 82.26 l
+203.79 82.78 l
+204.28 82.26 l
+204.77 82.00 l
+205.26 82.52 l
+205.75 82.00 l
+206.24 82.78 l
+206.73 82.26 l
+207.22 82.52 l
+207.71 82.00 l
+208.21 82.78 l
+208.70 82.78 l
+209.19 82.52 l
+209.68 83.56 l
+210.17 83.30 l
+210.66 83.82 l
+211.15 84.60 l
+211.64 84.34 l
+212.13 84.60 l
+212.62 84.34 l
+213.12 84.08 l
+213.61 83.56 l
+214.10 83.56 l
+214.59 82.78 l
+215.08 83.56 l
+215.57 85.38 l
+216.06 84.34 l
+216.55 83.30 l
+217.04 83.56 l
+217.54 83.82 l
+218.03 83.30 l
+218.52 83.82 l
+219.01 83.04 l
+219.50 84.08 l
+219.99 83.56 l
+220.48 84.34 l
+220.97 85.12 l
+221.46 85.38 l
+221.95 85.12 l
+222.45 84.34 l
+222.94 85.38 l
+223.43 84.86 l
+223.92 85.12 l
+224.41 85.12 l
+224.90 85.38 l
+225.39 85.38 l
+225.88 85.12 l
+226.37 84.34 l
+226.86 84.60 l
+227.36 86.16 l
+227.85 86.68 l
+228.34 86.42 l
+228.83 86.94 l
+229.32 87.20 l
+229.81 87.46 l
+230.30 86.94 l
+230.79 88.24 l
+231.28 88.77 l
+231.78 87.98 l
+232.27 86.94 l
+232.76 88.24 l
+233.25 88.24 l
+233.74 88.77 l
+234.23 89.55 l
+234.72 89.03 l
+235.21 89.03 l
+235.70 89.55 l
+236.19 89.03 l
+236.69 90.07 l
+237.18 90.59 l
+237.67 90.07 l
+238.16 89.81 l
+238.65 89.55 l
+239.14 89.29 l
+239.63 89.29 l
+240.12 89.03 l
+240.61 89.81 l
+241.11 89.81 l
+241.60 90.33 l
+242.09 90.33 l
+242.58 89.81 l
+243.07 90.33 l
+243.56 90.59 l
+244.05 91.11 l
+244.54 91.11 l
+245.03 91.89 l
+245.52 93.19 l
+246.02 92.67 l
+246.51 93.97 l
+247.00 93.45 l
+247.49 92.41 l
+247.98 92.67 l
+248.47 92.67 l
+248.96 93.45 l
+249.45 93.97 l
+249.94 92.15 l
+250.43 93.19 l
+250.93 92.93 l
+251.42 91.11 l
+251.91 91.63 l
+252.40 94.75 l
+252.89 93.19 l
+253.38 92.15 l
+253.87 90.59 l
+254.36 93.19 l
+254.85 93.71 l
+255.35 95.01 l
+255.84 94.23 l
+256.33 94.75 l
+256.82 96.05 l
+257.31 95.53 l
+257.80 96.31 l
+258.29 98.14 l
+258.78 98.92 l
+259.27 99.44 l
+259.76 101.52 l
+260.26 103.34 l
+260.75 101.52 l
+261.24 101.26 l
+261.73 102.56 l
+262.22 104.12 l
+262.71 104.38 l
+263.20 103.60 l
+263.69 102.82 l
+264.18 101.78 l
+264.67 100.22 l
+265.17 99.44 l
+265.66 99.44 l
+266.15 99.70 l
+266.64 100.74 l
+267.13 100.48 l
+267.62 102.30 l
+268.11 101.00 l
+268.60 102.30 l
+269.09 104.90 l
+269.59 104.38 l
+270.08 102.04 l
+270.57 102.82 l
+271.06 102.30 l
+271.55 99.96 l
+272.04 100.22 l
+272.53 99.96 l
+273.02 99.96 l
+273.51 99.70 l
+274.00 101.26 l
+274.50 101.26 l
+274.99 100.48 l
+275.48 101.00 l
+275.97 102.82 l
+276.46 102.56 l
+276.95 101.78 l
+277.44 102.30 l
+277.93 102.82 l
+278.42 103.08 l
+278.92 103.08 l
+279.41 105.16 l
+279.90 105.94 l
+280.39 107.51 l
+280.88 105.68 l
+281.37 104.38 l
+281.86 103.86 l
+282.35 105.16 l
+282.84 105.68 l
+283.33 105.16 l
+283.83 106.73 l
+284.32 107.51 l
+284.81 109.59 l
+285.30 110.37 l
+285.79 110.11 l
+286.28 108.55 l
+286.77 109.59 l
+287.26 107.51 l
+287.75 107.77 l
+288.24 109.85 l
+288.74 108.55 l
+289.23 109.07 l
+289.72 110.37 l
+290.21 109.33 l
+290.70 110.11 l
+291.19 110.63 l
+291.68 111.93 l
+292.17 111.67 l
+292.66 114.53 l
+293.16 113.49 l
+293.65 112.71 l
+294.14 113.75 l
+294.63 119.22 l
+295.12 137.70 l
+295.61 143.95 l
+296.10 146.29 l
+296.59 153.32 l
+297.08 156.18 l
+297.57 159.83 l
+298.07 163.47 l
+298.56 164.25 l
+299.05 168.94 l
+299.54 170.76 l
+300.03 171.54 l
+300.52 175.96 l
+301.01 175.44 l
+301.50 175.18 l
+301.99 179.09 l
+302.49 181.17 l
+302.98 177.00 l
+303.47 181.43 l
+303.96 184.29 l
+304.45 187.42 l
+304.94 190.02 l
+305.43 187.94 l
+305.92 194.70 l
+306.41 195.75 l
+306.90 200.69 l
+307.40 201.47 l
+307.89 203.81 l
+308.38 204.07 l
+308.87 206.16 l
+309.36 202.77 l
+309.85 203.29 l
+310.34 204.60 l
+310.83 207.72 l
+311.32 211.88 l
+311.81 209.80 l
+312.31 210.58 l
+312.80 213.19 l
+313.29 215.53 l
+313.78 217.09 l
+314.27 215.01 l
+314.76 218.13 l
+315.25 217.35 l
+315.74 217.87 l
+316.23 215.53 l
+316.73 217.09 l
+317.22 217.09 l
+317.71 215.01 l
+318.20 216.57 l
+318.69 216.31 l
+319.18 216.83 l
+319.67 218.13 l
+320.16 231.15 l
+320.65 216.83 l
+321.14 219.17 l
+321.64 224.90 l
+322.13 231.67 l
+322.62 228.02 l
+323.11 218.13 l
+323.60 219.43 l
+324.09 219.17 l
+324.58 225.16 l
+325.07 228.02 l
+325.56 239.73 l
+326.05 236.09 l
+326.55 226.72 l
+327.04 225.42 l
+327.53 225.94 l
+328.02 220.73 l
+328.51 226.46 l
+329.00 226.46 l
+329.49 229.84 l
+329.98 230.88 l
+330.47 230.62 l
+330.97 231.93 l
+331.46 230.62 l
+331.95 229.84 l
+332.44 232.71 l
+332.93 231.15 l
+333.42 230.62 l
+333.91 230.88 l
+334.40 233.23 l
+334.89 230.88 l
+335.38 237.91 l
+335.88 242.08 l
+336.37 244.68 l
+336.86 242.60 l
+337.35 238.69 l
+337.84 241.82 l
+338.33 238.17 l
+338.82 237.65 l
+339.31 239.21 l
+339.80 238.17 l
+340.30 237.91 l
+340.79 238.69 l
+341.28 242.86 l
+341.77 241.30 l
+342.26 241.82 l
+342.75 245.20 l
+343.24 247.02 l
+343.73 249.11 l
+344.22 253.01 l
+344.71 253.27 l
+345.21 255.09 l
+345.70 257.96 l
+346.19 263.94 l
+346.68 258.48 l
+347.17 262.12 l
+347.66 265.24 l
+348.15 268.37 l
+348.64 272.01 l
+349.13 269.15 l
+349.62 271.49 l
+350.12 271.49 l
+350.61 267.85 l
+351.10 270.45 l
+351.59 270.71 l
+352.08 271.49 l
+352.57 273.31 l
+353.06 270.97 l
+353.55 269.93 l
+354.04 273.05 l
+354.54 275.13 l
+355.03 276.70 l
+355.52 273.31 l
+356.01 271.49 l
+356.50 274.35 l
+356.99 270.19 l
+357.48 278.52 l
+357.97 282.42 l
+358.46 291.27 l
+358.95 289.71 l
+359.45 292.83 l
+359.94 293.36 l
+360.43 288.67 l
+360.92 285.55 l
+361.41 280.86 l
+361.90 282.68 l
+362.39 281.12 l
+362.88 287.63 l
+363.37 292.57 l
+363.86 299.86 l
+364.36 297.26 l
+364.85 299.08 l
+365.34 299.86 l
+365.83 300.38 l
+366.32 302.99 l
+366.81 303.25 l
+367.30 302.47 l
+367.79 303.77 l
+368.28 309.49 l
+368.78 312.10 l
+369.27 304.03 l
+369.76 305.85 l
+370.25 308.19 l
+370.74 294.92 l
+371.23 303.51 l
+371.72 305.07 l
+372.21 304.03 l
+372.70 306.37 l
+373.19 305.59 l
+373.69 313.92 l
+374.18 312.88 l
+374.67 310.27 l
+375.16 315.74 l
+375.65 317.04 l
+376.14 314.18 l
+376.63 317.30 l
+377.12 317.04 l
+377.61 311.32 l
+378.11 309.49 l
+378.60 321.21 l
+379.09 321.73 l
+379.58 316.26 l
+380.07 315.48 l
+380.56 313.92 l
+381.05 313.92 l
+381.54 310.27 l
+382.03 319.12 l
+382.52 319.12 l
+383.02 316.78 l
+383.51 318.34 l
+384.00 319.64 l
+384.49 317.30 l
+384.98 322.25 l
+385.47 325.63 l
+385.96 326.93 l
+386.45 321.47 l
+386.94 331.88 l
+387.43 327.97 l
+387.93 331.88 l
+388.42 330.84 l
+388.91 329.80 l
+389.40 334.48 l
+389.89 331.36 l
+390.38 333.44 l
+390.87 335.78 l
+391.36 248.85 l
+391.85 266.28 l
+392.35 249.89 l
+392.84 250.15 l
+393.33 285.03 l
+393.82 333.44 l
+394.31 337.34 l
+394.80 344.63 l
+395.29 352.44 l
+395.78 355.04 l
+396.27 353.22 l
+396.76 354.78 l
+397.26 356.61 l
+397.75 354.00 l
+398.24 359.47 l
+398.73 359.47 l
+399.22 366.24 l
+399.71 367.80 l
+400.20 355.56 l
+400.69 359.99 l
+401.18 356.61 l
+401.67 357.91 l
+402.17 355.30 l
+402.66 359.73 l
+403.15 357.65 l
+403.64 354.00 l
+404.13 354.52 l
+404.62 351.14 l
+405.11 351.66 l
+405.60 352.18 l
+406.09 356.61 l
+406.59 361.03 l
+407.08 356.61 l
+407.57 352.44 l
+408.06 352.96 l
+408.55 351.66 l
+409.04 353.74 l
+409.53 358.95 l
+410.02 362.85 l
+410.51 356.87 l
+411.00 353.74 l
+411.50 351.40 l
+411.99 348.28 l
+412.48 345.93 l
+412.97 345.93 l
+413.46 348.02 l
+413.95 344.37 l
+414.44 341.25 l
+414.93 343.33 l
+415.42 345.67 l
+415.92 346.45 l
+416.41 348.02 l
+416.90 358.69 l
+417.39 358.43 l
+417.88 365.46 l
+418.37 365.46 l
+418.86 369.88 l
+419.35 369.62 l
+419.84 381.07 l
+420.33 384.98 l
+420.83 379.25 l
+421.32 380.55 l
+421.81 380.29 l
+422.30 387.58 l
+422.79 387.58 l
+423.28 392.01 l
+423.77 397.21 l
+424.26 386.54 l
+424.75 388.62 l
+425.24 388.10 l
+425.74 387.84 l
+426.23 384.20 l
+426.72 397.99 l
+427.21 398.77 l
+427.70 390.70 l
+428.19 387.32 l
+428.68 378.47 l
+429.17 378.47 l
+429.66 377.17 l
+430.16 383.94 l
+430.65 382.64 l
+431.14 377.17 l
+431.63 378.21 l
+432.12 376.65 l
+432.61 383.94 l
+433.10 384.20 l
+433.59 392.79 l
+434.08 390.18 l
+434.57 382.37 l
+435.07 383.42 l
+435.56 378.73 l
+436.05 378.99 l
+436.54 376.39 l
+437.03 381.07 l
+437.52 384.98 l
+438.01 380.29 l
+438.50 376.91 l
+438.99 381.07 l
+439.49 382.11 l
+439.98 385.50 l
+440.47 389.92 l
+440.96 388.10 l
+441.45 381.59 l
+441.94 380.81 l
+442.43 382.64 l
+442.92 379.51 l
+443.41 380.81 l
+443.90 382.64 l
+444.40 384.72 l
+444.89 381.59 l
+445.38 381.85 l
+445.87 383.42 l
+446.36 376.39 l
+446.85 374.31 l
+447.34 384.20 l
+447.83 388.10 l
+448.32 376.65 l
+448.81 381.07 l
+449.31 383.94 l
+449.80 374.83 l
+450.29 376.13 l
+450.78 380.55 l
+451.27 376.65 l
+451.76 375.35 l
+452.25 374.57 l
+452.74 376.65 l
+453.23 374.57 l
+453.73 374.83 l
+454.22 382.64 l
+454.71 379.77 l
+455.20 381.07 l
+455.69 377.95 l
+456.18 371.96 l
+456.67 369.36 l
+457.16 374.31 l
+457.65 374.31 l
+458.14 373.79 l
+458.64 380.55 l
+459.13 383.16 l
+459.62 378.21 l
+460.11 371.70 l
+460.60 365.72 l
+461.09 373.00 l
+461.58 377.43 l
+462.07 368.32 l
+462.56 366.24 l
+463.05 367.80 l
+463.55 369.62 l
+464.04 375.35 l
+464.53 371.44 l
+465.02 376.65 l
+465.51 371.44 l
+466.00 368.06 l
+466.49 375.09 l
+466.98 367.80 l
+467.47 366.76 l
+467.97 370.14 l
+468.46 370.40 l
+468.95 363.37 l
+469.44 362.33 l
+469.93 364.41 l
+470.42 367.80 l
+470.91 364.41 l
+471.40 365.72 l
+471.89 366.24 l
+472.38 365.98 l
+472.88 369.36 l
+473.37 371.44 l
+473.86 361.81 l
+474.35 364.15 l
+474.84 363.37 l
+475.33 364.41 l
+475.82 359.21 l
+476.31 358.43 l
+476.80 358.17 l
+477.30 363.37 l
+477.79 360.25 l
+478.28 364.94 l
+478.77 368.84 l
+479.26 366.76 l
+479.75 368.58 l
+480.24 362.59 l
+480.73 365.72 l
+481.22 361.29 l
+481.71 359.47 l
+482.21 361.29 l
+482.70 360.77 l
+483.19 359.47 l
+483.68 326.41 l
+484.17 326.93 l
+484.66 335.00 l
+485.15 344.11 l
+485.64 345.15 l
+486.13 345.41 l
+486.62 349.06 l
+487.12 349.06 l
+487.61 347.50 l
+488.10 349.06 l
+488.59 348.28 l
+489.08 347.50 l
+489.57 343.07 l
+490.06 332.66 l
+490.55 336.30 l
+491.04 337.08 l
+491.54 335.26 l
+492.03 338.91 l
+492.52 342.03 l
+493.01 340.21 l
+493.50 345.41 l
+493.99 339.17 l
+494.48 349.58 l
+494.97 354.52 l
+495.46 355.04 l
+495.95 358.43 l
+496.45 350.62 l
+496.94 353.22 l
+497.43 350.36 l
+497.92 346.71 l
+498.41 348.02 l
+498.90 347.76 l
+499.39 354.00 l
+499.88 350.10 l
+500.37 350.10 l
+500.86 358.69 l
+501.36 356.61 l
+501.85 353.22 l
+502.34 360.25 l
+502.83 363.37 l
+503.32 356.35 l
+503.81 359.21 l
+504.30 354.78 l
+504.79 357.65 l
+505.28 355.30 l
+505.78 357.65 l
+506.27 357.13 l
+506.76 350.10 l
+507.25 348.80 l
+507.74 349.58 l
+508.23 350.36 l
+508.72 351.14 l
+509.21 352.96 l
+509.70 359.47 l
+510.19 355.83 l
+510.69 358.43 l
+511.18 352.96 l
+511.67 354.52 l
+512.16 351.92 l
+512.65 355.04 l
+513.14 357.65 l
+513.63 350.62 l
+514.12 349.58 l
+514.61 350.10 l
+515.11 340.73 l
+515.60 326.93 l
+516.09 324.59 l
+516.58 324.85 l
+517.07 318.86 l
+517.56 317.56 l
+518.05 304.81 l
+518.54 307.15 l
+519.03 307.93 l
+519.52 310.79 l
+520.02 309.49 l
+520.51 301.94 l
+521.00 301.16 l
+521.49 299.86 l
+521.98 298.82 l
+522.47 294.40 l
+522.96 291.79 l
+523.45 290.49 l
+523.94 285.55 l
+524.43 287.37 l
+524.93 282.94 l
+525.42 278.52 l
+525.91 280.34 l
+526.40 277.22 l
+526.89 274.61 l
+527.38 267.85 l
+527.87 266.02 l
+528.36 264.46 l
+528.85 261.08 l
+529.35 257.96 l
+529.84 254.57 l
+530.33 258.48 l
+530.82 257.69 l
+531.31 254.83 l
+531.80 252.49 l
+532.29 251.19 l
+532.78 246.50 l
+533.27 242.08 l
+533.76 243.12 l
+534.26 236.09 l
+534.75 236.61 l
+535.24 235.57 l
+535.73 233.75 l
+536.22 230.88 l
+536.71 229.32 l
+537.20 230.10 l
+537.69 228.02 l
+538.18 229.32 l
+538.67 224.64 l
+539.17 224.64 l
+539.66 223.60 l
+540.15 217.87 l
+540.64 223.86 l
+541.13 219.69 l
+541.62 220.73 l
+542.11 218.65 l
+542.60 215.79 l
+543.09 212.92 l
+543.59 211.36 l
+544.08 210.06 l
+544.57 203.55 l
+545.06 203.81 l
+545.55 201.21 l
+546.04 200.69 l
+546.53 197.57 l
+547.02 201.73 l
+547.51 201.99 l
+548.00 198.35 l
+548.50 197.31 l
+548.99 196.79 l
+549.48 198.35 l
+549.97 196.53 l
+550.46 199.65 l
+550.95 199.91 l
+551.44 197.05 l
+551.93 192.36 l
+552.42 187.42 l
+552.92 190.80 l
+553.41 190.28 l
+553.90 192.62 l
+554.39 191.58 l
+554.88 182.73 l
+555.37 187.68 l
+555.86 184.03 l
+556.35 181.17 l
+556.84 184.55 l
+557.33 187.94 l
+557.83 183.51 l
+558.32 182.73 l
+558.81 179.87 l
+559.30 179.61 l
+559.79 181.17 l
+560.28 179.09 l
+560.77 181.43 l
+561.26 182.21 l
+561.75 178.57 l
+562.24 175.70 l
+562.74 175.44 l
+563.23 171.02 l
+563.72 171.28 l
+S
+564.70 175.44 m
+565.19 172.32 l
+565.68 171.02 l
+566.17 168.41 l
+566.66 165.55 l
+567.16 166.59 l
+567.65 168.41 l
+568.14 167.37 l
+568.63 164.77 l
+569.12 165.03 l
+569.61 164.25 l
+570.10 166.33 l
+570.59 166.07 l
+571.08 165.55 l
+571.57 164.77 l
+572.07 161.13 l
+572.56 161.13 l
+573.05 159.04 l
+573.54 158.52 l
+574.03 159.30 l
+574.52 163.47 l
+575.01 165.55 l
+575.50 160.35 l
+575.99 161.13 l
+576.49 163.21 l
+576.98 161.91 l
+577.47 160.09 l
+577.96 161.65 l
+578.45 160.87 l
+578.94 158.78 l
+579.43 155.40 l
+579.92 153.58 l
+580.41 153.32 l
+580.90 152.54 l
+581.40 151.50 l
+581.89 150.98 l
+582.38 149.93 l
+582.87 153.32 l
+583.36 153.32 l
+583.85 151.50 l
+584.34 152.02 l
+584.83 153.58 l
+585.32 154.62 l
+585.81 151.24 l
+586.31 148.89 l
+586.80 150.19 l
+587.29 150.45 l
+587.78 149.93 l
+588.27 151.50 l
+588.76 151.76 l
+589.25 150.71 l
+589.74 149.93 l
+590.23 148.11 l
+590.73 146.29 l
+591.22 147.07 l
+591.71 147.33 l
+592.20 145.51 l
+592.69 144.47 l
+593.18 143.95 l
+593.67 141.08 l
+594.16 141.08 l
+594.65 141.60 l
+595.14 142.65 l
+595.64 143.17 l
+596.13 145.25 l
+596.62 143.95 l
+597.11 144.99 l
+597.60 145.77 l
+598.09 144.73 l
+598.58 145.51 l
+599.07 144.21 l
+599.56 143.17 l
+600.05 141.60 l
+600.55 141.86 l
+601.04 137.70 l
+601.53 141.08 l
+602.02 142.91 l
+602.51 141.60 l
+603.00 141.34 l
+603.49 140.82 l
+603.98 139.52 l
+604.47 137.70 l
+604.97 137.44 l
+605.46 140.56 l
+605.95 139.00 l
+606.44 138.22 l
+606.93 136.40 l
+607.42 135.10 l
+607.91 137.18 l
+608.40 133.02 l
+608.89 132.75 l
+609.38 132.49 l
+609.88 131.45 l
+610.37 134.32 l
+610.86 131.71 l
+611.35 128.85 l
+611.84 132.23 l
+612.33 132.49 l
+612.82 132.49 l
+613.31 131.19 l
+613.80 132.75 l
+614.30 131.71 l
+614.79 130.67 l
+615.28 130.93 l
+615.77 131.71 l
+616.26 131.19 l
+616.75 129.63 l
+617.24 128.33 l
+617.73 126.25 l
+618.22 129.11 l
+618.71 129.89 l
+619.21 129.89 l
+619.70 128.85 l
+620.19 126.77 l
+620.68 125.73 l
+621.17 127.03 l
+621.66 126.77 l
+622.15 124.69 l
+622.64 125.99 l
+623.13 125.99 l
+623.62 124.69 l
+624.12 122.08 l
+624.61 120.78 l
+625.10 125.21 l
+625.59 123.64 l
+626.08 123.64 l
+S
+Q q
+BT
+0.000 0.000 0.000 rg
+/F3 1 Tf 14.00 0.00 -0.00 14.00 302.91 416.89 Tm (Relay versions) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 339.41 4.32 Tm (Date) Tj
+ET
+BT
+/F2 1 Tf 0.00 12.00 -12.00 0.00 10.08 195.61 Tm (Running relays) Tj
+ET
+Q q 56.16 59.04 591.84 352.80 re W n
+0.627 0.125 0.941 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+78.08 146.29 m
+78.57 145.25 l
+79.06 144.47 l
+79.55 145.25 l
+80.04 145.51 l
+80.54 147.33 l
+81.03 143.17 l
+81.52 150.98 l
+82.01 152.02 l
+82.50 152.80 l
+82.99 153.32 l
+83.48 154.62 l
+83.97 158.78 l
+84.46 158.78 l
+84.95 156.44 l
+85.45 156.44 l
+85.94 158.52 l
+86.43 159.30 l
+86.92 158.52 l
+87.41 161.13 l
+87.90 160.35 l
+88.39 160.35 l
+88.88 160.61 l
+89.37 162.69 l
+89.86 160.35 l
+90.36 160.09 l
+90.85 160.09 l
+91.34 157.74 l
+91.83 156.70 l
+92.32 155.14 l
+92.81 154.62 l
+93.30 155.14 l
+93.79 155.14 l
+94.28 157.48 l
+94.78 151.50 l
+95.27 153.06 l
+95.76 154.88 l
+96.25 153.06 l
+96.74 153.58 l
+97.23 155.14 l
+97.72 157.22 l
+98.21 157.74 l
+98.70 158.00 l
+99.19 158.26 l
+99.69 158.26 l
+100.18 157.74 l
+100.67 156.70 l
+101.16 159.30 l
+101.65 159.56 l
+102.14 159.30 l
+102.63 159.04 l
+103.12 155.40 l
+103.61 161.39 l
+104.11 160.09 l
+104.60 161.39 l
+105.09 159.56 l
+105.58 162.17 l
+106.07 161.91 l
+106.56 161.65 l
+107.05 159.56 l
+107.54 158.00 l
+108.03 158.00 l
+108.52 155.66 l
+109.02 156.18 l
+109.51 156.44 l
+110.00 155.66 l
+110.49 154.88 l
+110.98 156.96 l
+111.47 159.56 l
+111.96 161.39 l
+112.45 161.65 l
+112.94 161.39 l
+113.43 163.21 l
+113.93 159.30 l
+114.42 160.87 l
+114.91 163.21 l
+115.40 163.73 l
+115.89 162.17 l
+116.38 163.21 l
+116.87 163.73 l
+117.36 163.47 l
+117.85 162.95 l
+118.35 166.07 l
+118.84 163.99 l
+119.33 162.95 l
+119.82 161.39 l
+120.31 161.39 l
+120.80 160.35 l
+121.29 161.39 l
+121.78 166.59 l
+122.27 167.11 l
+122.76 165.29 l
+123.26 167.63 l
+123.75 164.51 l
+124.24 163.47 l
+124.73 163.21 l
+125.22 170.50 l
+125.71 168.68 l
+126.20 169.46 l
+126.69 169.72 l
+127.18 164.25 l
+127.67 166.59 l
+128.17 167.63 l
+128.66 167.63 l
+129.15 166.07 l
+129.64 162.69 l
+130.13 157.48 l
+130.62 151.50 l
+131.11 149.41 l
+131.60 147.07 l
+132.09 145.77 l
+132.59 144.99 l
+133.08 143.69 l
+133.57 144.73 l
+134.06 142.65 l
+134.55 140.04 l
+135.04 140.56 l
+135.53 140.04 l
+136.02 137.18 l
+136.51 134.58 l
+137.00 132.75 l
+137.50 129.37 l
+137.99 127.03 l
+138.48 126.25 l
+138.97 126.25 l
+139.46 125.47 l
+139.95 125.21 l
+140.44 123.64 l
+140.93 122.60 l
+141.42 121.82 l
+141.92 122.08 l
+142.41 122.34 l
+142.90 124.95 l
+143.39 123.64 l
+143.88 125.73 l
+144.37 123.64 l
+144.86 123.64 l
+145.35 122.08 l
+145.84 123.12 l
+146.33 122.60 l
+146.83 122.08 l
+147.32 120.78 l
+147.81 118.70 l
+148.30 120.00 l
+148.79 118.96 l
+149.28 120.26 l
+149.77 120.78 l
+150.26 120.52 l
+150.75 121.04 l
+151.24 118.70 l
+151.74 118.70 l
+152.23 116.10 l
+152.72 117.66 l
+153.21 120.26 l
+153.70 121.04 l
+154.19 121.04 l
+154.68 120.78 l
+155.17 119.74 l
+155.66 119.74 l
+156.16 117.66 l
+156.65 115.05 l
+157.14 114.53 l
+157.63 114.01 l
+158.12 112.45 l
+158.61 112.19 l
+159.10 113.23 l
+159.59 114.53 l
+160.08 113.75 l
+160.57 112.97 l
+161.07 112.71 l
+161.56 111.67 l
+162.05 113.23 l
+162.54 114.27 l
+163.03 117.14 l
+163.52 115.32 l
+164.01 114.53 l
+164.50 114.79 l
+164.99 107.77 l
+165.49 105.16 l
+165.98 104.64 l
+166.47 104.90 l
+166.96 104.64 l
+167.45 104.90 l
+167.94 103.60 l
+168.43 102.56 l
+168.92 100.22 l
+169.41 99.70 l
+169.90 100.22 l
+170.40 102.82 l
+170.89 102.56 l
+171.38 101.26 l
+171.87 98.66 l
+172.36 99.18 l
+172.85 99.44 l
+173.34 98.66 l
+173.83 98.14 l
+174.32 97.62 l
+174.81 97.09 l
+175.31 96.83 l
+175.80 96.83 l
+176.29 96.83 l
+176.78 97.09 l
+177.27 96.83 l
+177.76 96.31 l
+178.25 96.05 l
+178.74 90.59 l
+179.23 88.24 l
+179.73 89.29 l
+180.22 89.29 l
+180.71 89.29 l
+181.20 88.51 l
+181.69 87.98 l
+182.18 87.72 l
+182.67 86.94 l
+183.16 87.46 l
+183.65 87.46 l
+184.14 86.68 l
+184.64 86.16 l
+185.13 87.20 l
+185.62 86.68 l
+186.11 86.16 l
+186.60 86.42 l
+187.09 86.42 l
+187.58 85.64 l
+188.07 84.86 l
+188.56 85.38 l
+189.05 84.60 l
+189.55 84.60 l
+190.04 83.82 l
+190.53 83.30 l
+191.02 83.56 l
+191.51 83.56 l
+192.00 84.08 l
+192.49 83.82 l
+192.98 84.08 l
+193.47 84.08 l
+193.97 85.12 l
+194.46 85.12 l
+194.95 84.86 l
+195.44 84.60 l
+195.93 84.86 l
+196.42 84.60 l
+196.91 84.60 l
+197.40 83.56 l
+197.89 83.82 l
+198.38 83.56 l
+198.88 83.30 l
+199.37 83.30 l
+199.86 83.04 l
+200.35 83.56 l
+200.84 84.08 l
+201.33 83.56 l
+201.82 84.34 l
+202.31 83.04 l
+202.80 82.52 l
+203.30 82.52 l
+203.79 82.26 l
+204.28 81.74 l
+204.77 82.00 l
+205.26 81.74 l
+205.75 81.48 l
+206.24 80.96 l
+206.73 80.70 l
+207.22 80.44 l
+207.71 80.70 l
+208.21 80.70 l
+208.70 80.18 l
+209.19 79.66 l
+209.68 79.39 l
+210.17 79.13 l
+210.66 78.61 l
+211.15 78.35 l
+211.64 78.87 l
+212.13 78.87 l
+212.62 78.87 l
+213.12 78.61 l
+213.61 78.09 l
+214.10 78.09 l
+214.59 78.61 l
+215.08 78.87 l
+215.57 79.13 l
+216.06 79.13 l
+216.55 79.13 l
+217.04 79.13 l
+217.54 79.39 l
+218.03 78.87 l
+218.52 78.87 l
+219.01 78.87 l
+219.50 78.87 l
+219.99 78.61 l
+220.48 78.61 l
+220.97 78.61 l
+221.46 78.61 l
+221.95 78.87 l
+222.45 79.39 l
+222.94 79.13 l
+223.43 79.13 l
+223.92 79.13 l
+224.41 79.13 l
+224.90 78.87 l
+225.39 79.13 l
+225.88 78.61 l
+226.37 78.61 l
+226.86 78.35 l
+227.36 78.61 l
+227.85 78.61 l
+228.34 78.87 l
+228.83 79.13 l
+229.32 78.61 l
+229.81 78.35 l
+230.30 78.09 l
+230.79 77.83 l
+231.28 77.83 l
+231.78 78.09 l
+232.27 78.09 l
+232.76 77.83 l
+233.25 77.83 l
+233.74 77.83 l
+234.23 78.35 l
+234.72 78.61 l
+235.21 78.61 l
+235.70 78.35 l
+236.19 78.35 l
+236.69 78.35 l
+237.18 78.35 l
+237.67 78.61 l
+238.16 78.87 l
+238.65 78.61 l
+239.14 78.87 l
+239.63 78.61 l
+240.12 78.61 l
+240.61 78.87 l
+241.11 78.61 l
+241.60 78.09 l
+242.09 78.35 l
+242.58 78.35 l
+243.07 78.35 l
+243.56 78.61 l
+244.05 78.61 l
+244.54 78.09 l
+245.03 78.09 l
+245.52 78.87 l
+246.02 78.61 l
+246.51 78.87 l
+247.00 78.61 l
+247.49 78.35 l
+247.98 78.35 l
+248.47 78.61 l
+248.96 78.35 l
+249.45 78.09 l
+249.94 78.09 l
+250.43 78.35 l
+250.93 78.61 l
+251.42 78.35 l
+251.91 78.35 l
+252.40 78.35 l
+252.89 78.35 l
+253.38 78.61 l
+253.87 78.61 l
+254.36 78.35 l
+254.85 78.35 l
+255.35 78.87 l
+255.84 78.35 l
+256.33 78.35 l
+256.82 78.87 l
+257.31 78.87 l
+257.80 78.87 l
+258.29 78.35 l
+258.78 78.09 l
+259.27 78.35 l
+259.76 78.61 l
+260.26 78.61 l
+260.75 78.09 l
+261.24 78.09 l
+261.73 78.35 l
+262.22 78.09 l
+262.71 77.83 l
+263.20 77.83 l
+263.69 77.83 l
+264.18 77.57 l
+264.67 77.57 l
+265.17 77.57 l
+265.66 77.31 l
+266.15 77.05 l
+266.64 76.79 l
+267.13 76.79 l
+267.62 76.79 l
+268.11 77.05 l
+268.60 77.05 l
+269.09 77.05 l
+269.59 77.05 l
+270.08 76.79 l
+270.57 76.53 l
+271.06 77.05 l
+271.55 77.05 l
+272.04 76.79 l
+272.53 77.05 l
+273.02 76.79 l
+273.51 77.05 l
+274.00 76.79 l
+274.50 76.79 l
+274.99 76.53 l
+275.48 76.79 l
+275.97 76.79 l
+276.46 76.53 l
+276.95 76.53 l
+277.44 76.53 l
+277.93 76.27 l
+278.42 76.27 l
+278.92 76.01 l
+279.41 76.01 l
+279.90 75.75 l
+280.39 75.75 l
+280.88 75.75 l
+281.37 75.75 l
+281.86 76.79 l
+282.35 76.53 l
+282.84 76.53 l
+283.33 76.27 l
+283.83 76.53 l
+284.32 76.53 l
+284.81 76.27 l
+285.30 76.27 l
+285.79 76.01 l
+286.28 76.27 l
+286.77 76.27 l
+287.26 76.01 l
+287.75 76.27 l
+288.24 76.27 l
+288.74 76.01 l
+289.23 76.01 l
+289.72 76.01 l
+290.21 76.01 l
+290.70 76.27 l
+291.19 76.27 l
+291.68 76.27 l
+292.17 76.53 l
+292.66 76.79 l
+293.16 76.27 l
+293.65 75.75 l
+294.14 75.49 l
+294.63 75.49 l
+295.12 75.75 l
+295.61 75.49 l
+296.10 75.49 l
+296.59 76.01 l
+297.08 76.01 l
+297.57 76.01 l
+298.07 76.01 l
+298.56 76.01 l
+299.05 76.01 l
+299.54 75.49 l
+300.03 75.23 l
+300.52 74.97 l
+301.01 75.23 l
+301.50 75.23 l
+301.99 75.23 l
+302.49 75.23 l
+302.98 74.97 l
+303.47 75.23 l
+303.96 75.49 l
+304.45 75.75 l
+304.94 75.49 l
+305.43 75.49 l
+305.92 75.49 l
+306.41 75.49 l
+306.90 75.49 l
+307.40 75.75 l
+307.89 76.27 l
+308.38 76.27 l
+308.87 75.75 l
+309.36 75.49 l
+309.85 75.23 l
+310.34 75.23 l
+310.83 75.75 l
+311.32 75.49 l
+311.81 75.23 l
+312.31 75.23 l
+312.80 75.23 l
+313.29 75.23 l
+313.78 75.23 l
+314.27 74.97 l
+314.76 74.45 l
+315.25 74.45 l
+315.74 74.45 l
+316.23 74.45 l
+316.73 74.45 l
+317.22 74.45 l
+317.71 74.45 l
+318.20 74.19 l
+318.69 74.45 l
+319.18 74.45 l
+319.67 74.45 l
+320.16 74.45 l
+320.65 74.45 l
+321.14 74.45 l
+321.64 74.19 l
+322.13 73.93 l
+322.62 74.19 l
+323.11 74.19 l
+323.60 74.19 l
+324.09 73.93 l
+324.58 74.19 l
+325.07 74.19 l
+325.56 73.93 l
+326.05 73.93 l
+326.55 73.93 l
+327.04 73.93 l
+327.53 73.93 l
+328.02 73.93 l
+328.51 73.93 l
+329.00 73.67 l
+329.49 73.41 l
+329.98 73.67 l
+330.47 73.67 l
+330.97 73.93 l
+331.46 73.93 l
+331.95 73.67 l
+332.44 73.67 l
+332.93 73.41 l
+333.42 73.41 l
+333.91 73.67 l
+334.40 73.67 l
+334.89 73.67 l
+335.38 73.93 l
+335.88 73.93 l
+336.37 73.93 l
+336.86 74.19 l
+337.35 74.19 l
+337.84 74.19 l
+338.33 73.93 l
+338.82 73.93 l
+339.31 73.93 l
+339.80 74.45 l
+340.30 74.19 l
+340.79 73.93 l
+341.28 73.67 l
+341.77 73.93 l
+342.26 73.93 l
+342.75 73.93 l
+343.24 74.19 l
+343.73 74.19 l
+344.22 74.19 l
+344.71 74.19 l
+345.21 73.93 l
+345.70 73.93 l
+346.19 73.93 l
+346.68 73.67 l
+347.17 73.41 l
+347.66 73.41 l
+348.15 73.15 l
+348.64 73.15 l
+349.13 73.41 l
+349.62 73.15 l
+350.12 73.15 l
+350.61 73.41 l
+351.10 73.41 l
+351.59 73.15 l
+352.08 73.15 l
+352.57 73.15 l
+353.06 73.41 l
+353.55 73.41 l
+354.04 73.15 l
+354.54 72.89 l
+355.03 72.89 l
+355.52 72.89 l
+356.01 72.63 l
+356.50 72.89 l
+356.99 72.89 l
+357.48 72.89 l
+357.97 73.15 l
+358.46 73.15 l
+358.95 73.41 l
+359.45 73.15 l
+359.94 73.15 l
+360.43 72.89 l
+360.92 72.89 l
+361.41 72.63 l
+361.90 72.63 l
+362.39 72.63 l
+362.88 72.63 l
+363.37 72.63 l
+363.86 72.63 l
+364.36 72.63 l
+364.85 72.63 l
+365.34 72.63 l
+365.83 72.63 l
+366.32 72.63 l
+366.81 72.63 l
+367.30 72.63 l
+367.79 72.63 l
+368.28 72.63 l
+368.78 72.63 l
+369.27 72.63 l
+369.76 72.63 l
+370.25 72.63 l
+370.74 72.37 l
+371.23 72.63 l
+371.72 72.63 l
+372.21 72.63 l
+372.70 72.63 l
+373.19 72.63 l
+373.69 72.63 l
+374.18 72.63 l
+374.67 72.63 l
+375.16 72.63 l
+375.65 72.63 l
+376.14 72.63 l
+376.63 72.37 l
+377.12 72.63 l
+377.61 72.37 l
+378.11 72.63 l
+378.60 72.63 l
+379.09 72.63 l
+379.58 72.63 l
+380.07 72.63 l
+380.56 72.63 l
+381.05 72.63 l
+381.54 72.63 l
+382.03 72.63 l
+382.52 72.63 l
+383.02 72.63 l
+383.51 72.63 l
+384.00 72.63 l
+384.49 72.63 l
+384.98 72.63 l
+385.47 72.63 l
+385.96 72.37 l
+386.45 72.37 l
+386.94 72.37 l
+387.43 72.37 l
+387.93 72.37 l
+388.42 72.37 l
+388.91 72.37 l
+389.40 72.37 l
+389.89 72.37 l
+390.38 72.37 l
+390.87 72.37 l
+391.36 72.37 l
+391.85 72.37 l
+392.35 72.37 l
+392.84 72.37 l
+393.33 72.37 l
+393.82 72.37 l
+394.31 72.37 l
+394.80 72.37 l
+395.29 72.37 l
+395.78 72.37 l
+396.27 72.37 l
+396.76 72.37 l
+397.26 72.37 l
+397.75 72.37 l
+398.24 72.63 l
+398.73 72.63 l
+399.22 72.63 l
+399.71 72.63 l
+400.20 72.63 l
+400.69 72.63 l
+401.18 72.63 l
+401.67 72.63 l
+402.17 72.63 l
+402.66 72.63 l
+403.15 72.63 l
+403.64 72.63 l
+404.13 72.63 l
+404.62 72.63 l
+405.11 72.63 l
+405.60 72.37 l
+406.09 72.63 l
+406.59 72.63 l
+407.08 72.63 l
+407.57 72.63 l
+408.06 72.63 l
+408.55 72.63 l
+409.04 72.63 l
+409.53 72.63 l
+410.02 72.63 l
+410.51 72.63 l
+411.00 72.63 l
+411.50 72.63 l
+411.99 72.63 l
+412.48 72.63 l
+412.97 72.89 l
+413.46 72.63 l
+413.95 72.63 l
+414.44 72.63 l
+414.93 72.63 l
+415.42 72.63 l
+415.92 72.63 l
+416.41 72.37 l
+416.90 72.63 l
+417.39 72.63 l
+417.88 72.89 l
+418.37 72.63 l
+418.86 72.37 l
+419.35 72.37 l
+419.84 72.37 l
+420.33 72.37 l
+420.83 72.37 l
+421.32 72.37 l
+421.81 72.37 l
+422.30 72.37 l
+422.79 72.37 l
+423.28 72.37 l
+423.77 72.37 l
+424.26 72.37 l
+424.75 72.37 l
+425.24 72.37 l
+425.74 72.37 l
+426.23 72.37 l
+426.72 72.37 l
+427.21 72.37 l
+427.70 72.37 l
+428.19 72.37 l
+428.68 72.37 l
+429.17 72.37 l
+429.66 72.37 l
+430.16 72.37 l
+430.65 72.37 l
+431.14 72.37 l
+431.63 72.37 l
+432.12 72.37 l
+432.61 72.37 l
+433.10 72.37 l
+433.59 72.37 l
+434.08 72.37 l
+434.57 72.37 l
+435.07 72.11 l
+435.56 72.11 l
+436.05 72.11 l
+436.54 72.11 l
+437.03 72.11 l
+437.52 72.11 l
+438.01 72.11 l
+438.50 72.37 l
+438.99 72.37 l
+439.49 72.37 l
+439.98 72.37 l
+440.47 72.37 l
+440.96 72.37 l
+441.45 72.37 l
+441.94 72.37 l
+442.43 72.37 l
+442.92 72.37 l
+443.41 72.37 l
+443.90 72.37 l
+444.40 72.37 l
+444.89 72.37 l
+445.38 72.37 l
+445.87 72.37 l
+446.36 72.37 l
+446.85 72.63 l
+447.34 72.63 l
+447.83 72.63 l
+448.32 72.63 l
+448.81 72.63 l
+449.31 72.63 l
+449.80 72.63 l
+450.29 72.63 l
+450.78 72.63 l
+451.27 72.63 l
+451.76 72.63 l
+452.25 72.63 l
+452.74 72.63 l
+453.23 72.63 l
+453.73 72.63 l
+454.22 72.63 l
+454.71 72.63 l
+455.20 72.63 l
+455.69 72.63 l
+456.18 72.63 l
+456.67 72.63 l
+457.16 72.63 l
+457.65 72.63 l
+458.14 72.63 l
+458.64 72.37 l
+459.13 72.11 l
+459.62 72.11 l
+460.11 72.11 l
+460.60 72.11 l
+461.09 72.11 l
+461.58 72.11 l
+462.07 72.11 l
+462.56 72.11 l
+463.05 72.11 l
+463.55 72.11 l
+464.04 72.11 l
+464.53 72.11 l
+465.02 72.11 l
+465.51 72.11 l
+466.00 72.11 l
+466.49 72.11 l
+466.98 72.11 l
+467.47 72.11 l
+467.97 72.11 l
+468.46 72.11 l
+468.95 72.11 l
+469.44 72.11 l
+469.93 72.11 l
+470.42 72.11 l
+470.91 72.11 l
+471.40 72.11 l
+471.89 72.11 l
+472.38 72.11 l
+472.88 72.11 l
+473.37 72.11 l
+473.86 72.11 l
+474.35 72.11 l
+474.84 72.11 l
+475.33 72.11 l
+475.82 72.11 l
+476.31 72.11 l
+476.80 72.11 l
+477.30 72.11 l
+477.79 72.11 l
+478.28 72.11 l
+478.77 72.11 l
+479.26 72.11 l
+479.75 72.11 l
+480.24 72.11 l
+480.73 72.11 l
+481.22 72.11 l
+481.71 72.11 l
+482.21 72.11 l
+482.70 72.11 l
+483.19 72.11 l
+483.68 72.11 l
+484.17 72.11 l
+484.66 72.11 l
+485.15 72.11 l
+485.64 72.11 l
+486.13 72.11 l
+486.62 72.11 l
+487.12 72.11 l
+487.61 72.11 l
+488.10 72.11 l
+488.59 72.11 l
+489.08 72.11 l
+489.57 72.11 l
+490.06 72.11 l
+490.55 72.11 l
+491.04 72.11 l
+491.54 72.11 l
+492.03 72.11 l
+492.52 72.11 l
+493.01 72.11 l
+493.50 72.11 l
+493.99 72.11 l
+494.48 72.11 l
+494.97 72.11 l
+495.46 72.11 l
+495.95 72.11 l
+496.45 72.11 l
+496.94 72.11 l
+497.43 72.11 l
+497.92 72.11 l
+498.41 72.11 l
+498.90 72.11 l
+499.39 72.11 l
+499.88 72.11 l
+500.37 72.11 l
+500.86 72.11 l
+501.36 72.11 l
+501.85 72.11 l
+502.34 72.11 l
+502.83 72.11 l
+503.32 72.11 l
+503.81 72.11 l
+504.30 72.11 l
+504.79 72.11 l
+505.28 72.11 l
+505.78 72.11 l
+506.27 72.11 l
+506.76 72.11 l
+507.25 72.11 l
+507.74 72.11 l
+508.23 72.11 l
+508.72 72.11 l
+509.21 72.11 l
+509.70 72.11 l
+510.19 72.11 l
+510.69 72.11 l
+511.18 72.11 l
+511.67 72.11 l
+512.16 72.11 l
+512.65 72.11 l
+513.14 72.11 l
+513.63 72.11 l
+514.12 72.11 l
+514.61 72.11 l
+515.11 72.11 l
+515.60 72.11 l
+516.09 72.11 l
+516.58 72.11 l
+517.07 72.11 l
+517.56 72.11 l
+518.05 72.11 l
+518.54 72.11 l
+519.03 72.11 l
+519.52 72.11 l
+520.02 72.11 l
+520.51 72.11 l
+521.00 72.11 l
+521.49 72.11 l
+521.98 72.11 l
+522.47 72.11 l
+522.96 72.11 l
+523.45 72.11 l
+523.94 72.11 l
+524.43 72.11 l
+524.93 72.11 l
+525.42 72.11 l
+525.91 72.11 l
+526.40 72.11 l
+526.89 72.11 l
+527.38 72.11 l
+527.87 72.11 l
+528.36 72.11 l
+528.85 72.11 l
+529.35 72.11 l
+529.84 72.11 l
+530.33 72.11 l
+530.82 72.11 l
+531.31 72.11 l
+531.80 72.11 l
+532.29 72.11 l
+532.78 72.11 l
+533.27 72.11 l
+533.76 72.11 l
+534.26 72.11 l
+534.75 72.11 l
+535.24 72.11 l
+535.73 72.11 l
+536.22 72.11 l
+536.71 72.11 l
+537.20 72.11 l
+537.69 72.11 l
+538.18 72.11 l
+538.67 72.11 l
+539.17 72.11 l
+539.66 72.11 l
+540.15 72.11 l
+540.64 72.11 l
+541.13 72.11 l
+541.62 72.11 l
+542.11 72.11 l
+542.60 72.11 l
+543.09 72.11 l
+543.59 72.11 l
+544.08 72.11 l
+544.57 72.11 l
+545.06 72.11 l
+545.55 72.11 l
+546.04 72.11 l
+546.53 72.11 l
+547.02 72.11 l
+547.51 72.11 l
+548.00 72.11 l
+548.50 72.11 l
+548.99 72.11 l
+549.48 72.11 l
+549.97 72.11 l
+550.46 72.11 l
+550.95 72.11 l
+551.44 72.11 l
+551.93 72.11 l
+552.42 72.11 l
+552.92 72.11 l
+553.41 72.11 l
+553.90 72.11 l
+554.39 72.11 l
+554.88 72.11 l
+555.37 72.11 l
+555.86 72.11 l
+556.35 72.11 l
+556.84 72.11 l
+557.33 72.11 l
+557.83 72.11 l
+558.32 72.11 l
+558.81 72.11 l
+559.30 72.11 l
+559.79 72.11 l
+560.28 72.11 l
+560.77 72.11 l
+561.26 72.11 l
+561.75 72.11 l
+562.24 72.11 l
+562.74 72.11 l
+563.23 72.11 l
+563.72 72.11 l
+S
+564.70 72.11 m
+565.19 72.11 l
+565.68 72.11 l
+566.17 72.11 l
+566.66 72.11 l
+567.16 72.11 l
+567.65 72.11 l
+568.14 72.11 l
+568.63 72.11 l
+569.12 72.11 l
+569.61 72.11 l
+570.10 72.11 l
+570.59 72.11 l
+571.08 72.11 l
+571.57 72.11 l
+572.07 72.11 l
+572.56 72.11 l
+573.05 72.11 l
+573.54 72.11 l
+574.03 72.11 l
+574.52 72.11 l
+575.01 72.11 l
+575.50 72.11 l
+575.99 72.11 l
+576.49 72.11 l
+576.98 72.11 l
+577.47 72.11 l
+577.96 72.11 l
+578.45 72.11 l
+578.94 72.11 l
+579.43 72.11 l
+579.92 72.11 l
+580.41 72.11 l
+580.90 72.11 l
+581.40 72.11 l
+581.89 72.11 l
+582.38 72.11 l
+582.87 72.11 l
+583.36 72.11 l
+583.85 72.11 l
+584.34 72.11 l
+584.83 72.11 l
+585.32 72.11 l
+585.81 72.11 l
+586.31 72.11 l
+586.80 72.11 l
+587.29 72.11 l
+587.78 72.11 l
+588.27 72.11 l
+588.76 72.11 l
+589.25 72.11 l
+589.74 72.11 l
+590.23 72.11 l
+590.73 72.11 l
+591.22 72.11 l
+591.71 72.11 l
+592.20 72.11 l
+592.69 72.11 l
+593.18 72.11 l
+593.67 72.11 l
+594.16 72.11 l
+594.65 72.11 l
+595.14 72.11 l
+595.64 72.11 l
+596.13 72.11 l
+596.62 72.11 l
+597.11 72.11 l
+597.60 72.11 l
+598.09 72.11 l
+598.58 72.11 l
+599.07 72.11 l
+599.56 72.11 l
+600.05 72.11 l
+600.55 72.11 l
+601.04 72.11 l
+601.53 72.11 l
+602.02 72.11 l
+602.51 72.11 l
+603.00 72.11 l
+603.49 72.11 l
+603.98 72.11 l
+604.47 72.11 l
+604.97 72.11 l
+605.46 72.11 l
+605.95 72.11 l
+606.44 72.11 l
+606.93 72.11 l
+607.42 72.11 l
+607.91 72.11 l
+608.40 72.11 l
+608.89 72.11 l
+609.38 72.11 l
+609.88 72.11 l
+610.37 72.11 l
+610.86 72.11 l
+611.35 72.11 l
+611.84 72.11 l
+612.33 72.11 l
+612.82 72.11 l
+613.31 72.11 l
+613.80 72.11 l
+614.30 72.11 l
+614.79 72.11 l
+615.28 72.11 l
+615.77 72.11 l
+616.26 72.11 l
+616.75 72.11 l
+617.24 72.11 l
+617.73 72.11 l
+618.22 72.11 l
+618.71 72.11 l
+619.21 72.11 l
+619.70 72.11 l
+620.19 72.11 l
+620.68 72.11 l
+621.17 72.11 l
+621.66 72.11 l
+622.15 72.11 l
+622.64 72.11 l
+623.13 72.11 l
+623.62 72.11 l
+624.12 72.11 l
+624.61 72.11 l
+625.10 72.11 l
+625.59 72.11 l
+626.08 72.11 l
+S
+1.000 0.000 0.000 RG
+78.08 94.49 m
+78.57 94.75 l
+79.06 94.75 l
+79.55 95.79 l
+80.04 96.31 l
+80.54 96.31 l
+81.03 95.53 l
+81.52 97.36 l
+82.01 98.92 l
+82.50 100.74 l
+82.99 99.70 l
+83.48 98.66 l
+83.97 98.66 l
+84.46 99.44 l
+84.95 99.70 l
+85.45 99.18 l
+85.94 99.96 l
+86.43 99.70 l
+86.92 98.92 l
+87.41 99.96 l
+87.90 100.22 l
+88.39 99.44 l
+88.88 100.22 l
+89.37 98.92 l
+89.86 98.40 l
+90.36 98.66 l
+90.85 98.92 l
+91.34 100.48 l
+91.83 99.96 l
+92.32 99.18 l
+92.81 99.70 l
+93.30 99.18 l
+93.79 100.74 l
+94.28 101.52 l
+94.78 102.56 l
+95.27 102.82 l
+95.76 102.04 l
+96.25 102.56 l
+96.74 102.30 l
+97.23 102.56 l
+97.72 104.12 l
+98.21 104.12 l
+98.70 104.12 l
+99.19 104.12 l
+99.69 104.12 l
+100.18 104.38 l
+100.67 103.60 l
+101.16 104.64 l
+101.65 104.64 l
+102.14 105.94 l
+102.63 105.16 l
+103.12 105.42 l
+103.61 105.68 l
+104.11 105.68 l
+104.60 104.90 l
+105.09 105.68 l
+105.58 106.47 l
+106.07 104.90 l
+106.56 103.86 l
+107.05 104.38 l
+107.54 106.99 l
+108.03 108.29 l
+108.52 106.99 l
+109.02 106.73 l
+109.51 106.20 l
+110.00 106.73 l
+110.49 108.03 l
+110.98 107.51 l
+111.47 109.07 l
+111.96 109.85 l
+112.45 110.89 l
+112.94 112.45 l
+113.43 112.71 l
+113.93 111.41 l
+114.42 111.67 l
+114.91 112.19 l
+115.40 112.19 l
+115.89 111.67 l
+116.38 111.41 l
+116.87 111.41 l
+117.36 110.63 l
+117.85 111.15 l
+118.35 111.67 l
+118.84 110.89 l
+119.33 112.19 l
+119.82 110.37 l
+120.31 109.59 l
+120.80 109.85 l
+121.29 109.59 l
+121.78 109.59 l
+122.27 110.63 l
+122.76 110.89 l
+123.26 111.67 l
+123.75 114.01 l
+124.24 114.27 l
+124.73 114.53 l
+125.22 115.05 l
+125.71 114.79 l
+126.20 115.05 l
+126.69 116.62 l
+127.18 118.70 l
+127.67 118.44 l
+128.17 118.18 l
+128.66 118.44 l
+129.15 117.40 l
+129.64 122.34 l
+130.13 132.75 l
+130.62 133.80 l
+131.11 137.70 l
+131.60 140.56 l
+132.09 143.17 l
+132.59 146.03 l
+133.08 146.81 l
+133.57 152.02 l
+134.06 152.28 l
+134.55 154.62 l
+135.04 157.74 l
+135.53 160.87 l
+136.02 164.77 l
+136.51 164.51 l
+137.00 165.29 l
+137.50 167.89 l
+137.99 169.72 l
+138.48 171.02 l
+138.97 173.88 l
+139.46 177.00 l
+139.95 176.22 l
+140.44 176.74 l
+140.93 177.52 l
+141.42 177.00 l
+141.92 175.70 l
+142.41 179.09 l
+142.90 182.21 l
+143.39 185.85 l
+143.88 185.85 l
+144.37 186.90 l
+144.86 186.90 l
+145.35 184.55 l
+145.84 184.55 l
+146.33 182.99 l
+146.83 185.85 l
+147.32 192.62 l
+147.81 192.10 l
+148.30 192.62 l
+148.79 190.80 l
+149.28 191.58 l
+149.77 189.50 l
+150.26 193.14 l
+150.75 191.84 l
+151.24 188.98 l
+151.74 192.36 l
+152.23 197.05 l
+152.72 196.27 l
+153.21 199.13 l
+153.70 199.39 l
+154.19 202.51 l
+154.68 204.60 l
+155.17 206.16 l
+155.66 204.07 l
+156.16 201.73 l
+156.65 199.65 l
+157.14 204.60 l
+157.63 206.94 l
+158.12 202.77 l
+158.61 199.91 l
+159.10 200.17 l
+159.59 205.12 l
+160.08 206.16 l
+160.57 208.50 l
+161.07 209.54 l
+161.56 207.46 l
+162.05 206.16 l
+162.54 207.72 l
+163.03 209.28 l
+163.52 212.40 l
+164.01 212.14 l
+164.50 213.97 l
+164.99 218.39 l
+165.49 218.91 l
+165.98 221.25 l
+166.47 220.73 l
+166.96 221.51 l
+167.45 227.24 l
+167.94 225.94 l
+168.43 228.28 l
+168.92 226.98 l
+169.41 228.28 l
+169.90 228.02 l
+170.40 232.71 l
+170.89 238.95 l
+171.38 242.08 l
+171.87 240.52 l
+172.36 241.30 l
+172.85 242.86 l
+173.34 244.42 l
+173.83 247.28 l
+174.32 248.58 l
+174.81 252.23 l
+175.31 252.75 l
+175.80 256.39 l
+176.29 253.79 l
+176.78 255.61 l
+177.27 259.26 l
+177.76 254.83 l
+178.25 259.26 l
+178.74 256.13 l
+179.23 252.75 l
+179.73 251.19 l
+180.22 253.79 l
+180.71 254.05 l
+181.20 253.79 l
+181.69 252.75 l
+182.18 254.57 l
+182.67 249.37 l
+183.16 246.76 l
+183.65 250.41 l
+184.14 253.27 l
+184.64 255.35 l
+185.13 258.74 l
+185.62 259.00 l
+186.11 254.05 l
+186.60 253.53 l
+187.09 253.01 l
+187.58 255.35 l
+188.07 256.39 l
+188.56 255.87 l
+189.05 256.91 l
+189.55 258.74 l
+190.04 264.46 l
+190.53 262.12 l
+191.02 264.46 l
+191.51 266.54 l
+192.00 267.59 l
+192.49 267.59 l
+192.98 267.59 l
+193.47 271.49 l
+193.97 269.93 l
+194.46 272.01 l
+194.95 269.93 l
+195.44 267.33 l
+195.93 268.63 l
+196.42 270.45 l
+196.91 272.01 l
+197.40 271.75 l
+197.89 272.79 l
+198.38 271.75 l
+198.88 270.45 l
+199.37 268.37 l
+199.86 265.76 l
+200.35 267.85 l
+200.84 268.11 l
+201.33 263.16 l
+201.82 262.38 l
+202.31 260.56 l
+202.80 262.12 l
+203.30 263.42 l
+203.79 257.17 l
+204.28 261.60 l
+204.77 263.16 l
+205.26 258.48 l
+205.75 249.89 l
+206.24 251.19 l
+206.73 252.75 l
+207.22 254.83 l
+207.71 252.23 l
+208.21 249.37 l
+208.70 256.13 l
+209.19 254.83 l
+209.68 255.09 l
+210.17 256.65 l
+210.66 256.39 l
+211.15 258.74 l
+211.64 257.69 l
+212.13 259.78 l
+212.62 260.30 l
+213.12 257.69 l
+213.61 258.48 l
+214.10 260.82 l
+214.59 259.00 l
+215.08 257.17 l
+215.57 255.87 l
+216.06 248.32 l
+216.55 248.06 l
+217.04 246.50 l
+217.54 245.98 l
+218.03 245.20 l
+218.52 245.72 l
+219.01 247.02 l
+219.50 248.32 l
+219.99 247.80 l
+220.48 245.20 l
+220.97 245.72 l
+221.46 244.68 l
+221.95 248.06 l
+222.45 244.16 l
+222.94 238.69 l
+223.43 243.12 l
+223.92 250.15 l
+224.41 250.15 l
+224.90 253.53 l
+225.39 250.67 l
+225.88 243.64 l
+226.37 243.12 l
+226.86 243.38 l
+227.36 243.64 l
+227.85 246.24 l
+228.34 245.20 l
+228.83 243.64 l
+229.32 247.02 l
+229.81 243.64 l
+230.30 244.68 l
+230.79 243.64 l
+231.28 247.02 l
+231.78 248.85 l
+232.27 247.02 l
+232.76 248.06 l
+233.25 245.46 l
+233.74 244.16 l
+234.23 245.20 l
+234.72 240.78 l
+235.21 241.04 l
+235.70 243.64 l
+236.19 242.86 l
+236.69 247.02 l
+237.18 254.05 l
+237.67 253.01 l
+238.16 252.49 l
+238.65 250.15 l
+239.14 255.35 l
+239.63 256.65 l
+240.12 260.56 l
+240.61 260.56 l
+241.11 263.16 l
+241.60 266.02 l
+242.09 257.69 l
+242.58 259.00 l
+243.07 257.96 l
+243.56 266.28 l
+244.05 267.07 l
+244.54 264.20 l
+245.03 269.15 l
+245.52 267.33 l
+246.02 270.19 l
+246.51 274.09 l
+247.00 275.13 l
+247.49 275.13 l
+247.98 274.87 l
+248.47 275.39 l
+248.96 273.83 l
+249.45 272.79 l
+249.94 273.31 l
+250.43 269.41 l
+250.93 271.75 l
+251.42 270.19 l
+251.91 265.76 l
+252.40 263.94 l
+252.89 266.54 l
+253.38 267.59 l
+253.87 266.28 l
+254.36 264.98 l
+254.85 261.60 l
+255.35 265.24 l
+255.84 264.98 l
+256.33 257.96 l
+256.82 268.63 l
+257.31 266.28 l
+257.80 271.75 l
+258.29 277.22 l
+258.78 279.30 l
+259.27 278.26 l
+259.76 276.96 l
+260.26 278.78 l
+260.75 278.26 l
+261.24 281.12 l
+261.73 274.35 l
+262.22 273.83 l
+262.71 275.13 l
+263.20 275.92 l
+263.69 269.15 l
+264.18 270.71 l
+264.67 268.37 l
+265.17 267.07 l
+265.66 269.67 l
+266.15 270.71 l
+266.64 269.15 l
+267.13 270.19 l
+267.62 269.41 l
+268.11 268.11 l
+268.60 273.31 l
+269.09 276.44 l
+269.59 270.71 l
+270.08 269.93 l
+270.57 271.49 l
+271.06 264.72 l
+271.55 268.63 l
+272.04 269.93 l
+272.53 265.24 l
+273.02 260.30 l
+273.51 263.68 l
+274.00 268.11 l
+274.50 267.33 l
+274.99 267.59 l
+275.48 268.89 l
+275.97 268.63 l
+276.46 263.42 l
+276.95 266.28 l
+277.44 262.64 l
+277.93 259.78 l
+278.42 261.60 l
+278.92 260.82 l
+279.41 267.59 l
+279.90 265.24 l
+280.39 265.50 l
+280.88 262.64 l
+281.37 265.50 l
+281.86 264.20 l
+282.35 264.20 l
+282.84 261.60 l
+283.33 258.74 l
+283.83 261.34 l
+284.32 262.12 l
+284.81 263.94 l
+285.30 261.60 l
+285.79 264.20 l
+286.28 266.81 l
+286.77 266.54 l
+287.26 264.46 l
+287.75 265.50 l
+288.24 266.54 l
+288.74 264.98 l
+289.23 261.60 l
+289.72 263.68 l
+290.21 264.72 l
+290.70 264.46 l
+291.19 264.20 l
+291.68 268.37 l
+292.17 269.67 l
+292.66 271.75 l
+293.16 270.71 l
+293.65 267.85 l
+294.14 267.59 l
+294.63 261.08 l
+295.12 248.06 l
+295.61 237.39 l
+296.10 235.05 l
+296.59 233.49 l
+297.08 227.50 l
+297.57 222.03 l
+298.07 217.61 l
+298.56 210.32 l
+299.05 207.20 l
+299.54 204.07 l
+300.03 203.81 l
+300.52 205.38 l
+301.01 204.34 l
+301.50 205.90 l
+301.99 205.90 l
+302.49 203.29 l
+302.98 197.31 l
+303.47 203.55 l
+303.96 202.25 l
+304.45 199.91 l
+304.94 197.05 l
+305.43 197.05 l
+305.92 196.79 l
+306.41 193.66 l
+306.90 192.62 l
+307.40 190.02 l
+307.89 189.76 l
+308.38 187.68 l
+308.87 185.07 l
+309.36 183.77 l
+309.85 180.13 l
+310.34 180.39 l
+310.83 179.35 l
+311.32 175.70 l
+311.81 175.96 l
+312.31 174.92 l
+312.80 175.96 l
+313.29 173.62 l
+313.78 177.00 l
+314.27 175.70 l
+314.76 172.32 l
+315.25 169.46 l
+315.74 169.98 l
+316.23 168.41 l
+316.73 165.29 l
+317.22 162.69 l
+317.71 163.73 l
+318.20 162.95 l
+318.69 156.18 l
+319.18 160.09 l
+319.67 159.04 l
+320.16 161.13 l
+320.65 160.35 l
+321.14 157.74 l
+321.64 156.18 l
+322.13 153.84 l
+322.62 151.50 l
+323.11 152.28 l
+323.60 153.84 l
+324.09 153.32 l
+324.58 151.50 l
+325.07 150.45 l
+325.56 150.98 l
+326.05 149.93 l
+326.55 148.37 l
+327.04 148.37 l
+327.53 149.41 l
+328.02 145.51 l
+328.51 146.29 l
+329.00 146.03 l
+329.49 146.55 l
+329.98 144.73 l
+330.47 142.13 l
+330.97 141.60 l
+331.46 139.78 l
+331.95 140.30 l
+332.44 142.13 l
+332.93 141.08 l
+333.42 140.30 l
+333.91 137.44 l
+334.40 137.96 l
+334.89 136.92 l
+335.38 135.62 l
+335.88 134.58 l
+336.37 133.54 l
+336.86 134.32 l
+337.35 133.02 l
+337.84 135.10 l
+338.33 134.84 l
+338.82 135.62 l
+339.31 134.84 l
+339.80 131.71 l
+340.30 131.19 l
+340.79 129.89 l
+341.28 128.33 l
+341.77 130.41 l
+342.26 130.93 l
+342.75 131.45 l
+343.24 129.11 l
+343.73 128.07 l
+344.22 127.55 l
+344.71 126.77 l
+345.21 125.21 l
+345.70 125.47 l
+346.19 124.69 l
+346.68 123.64 l
+347.17 122.34 l
+347.66 122.60 l
+348.15 121.56 l
+348.64 120.00 l
+349.13 118.18 l
+349.62 117.92 l
+350.12 118.18 l
+350.61 118.96 l
+351.10 120.52 l
+351.59 121.30 l
+352.08 118.96 l
+352.57 117.40 l
+353.06 117.14 l
+353.55 118.70 l
+354.04 118.18 l
+354.54 118.44 l
+355.03 120.52 l
+355.52 117.66 l
+356.01 116.62 l
+356.50 116.62 l
+356.99 117.92 l
+357.48 117.14 l
+357.97 116.10 l
+358.46 119.22 l
+358.95 116.36 l
+359.45 116.36 l
+359.94 116.10 l
+360.43 116.10 l
+360.92 115.84 l
+361.41 114.01 l
+361.90 113.23 l
+362.39 111.93 l
+362.88 111.93 l
+363.37 112.19 l
+363.86 110.89 l
+364.36 110.11 l
+364.85 109.07 l
+365.34 111.41 l
+365.83 111.41 l
+366.32 108.81 l
+366.81 110.11 l
+367.30 109.85 l
+367.79 110.11 l
+368.28 110.11 l
+368.78 112.45 l
+369.27 112.45 l
+369.76 110.89 l
+370.25 111.41 l
+370.74 109.85 l
+371.23 111.41 l
+371.72 110.89 l
+372.21 110.11 l
+372.70 110.11 l
+373.19 110.11 l
+373.69 110.11 l
+374.18 110.37 l
+374.67 110.11 l
+375.16 110.89 l
+375.65 110.89 l
+376.14 110.11 l
+376.63 109.85 l
+377.12 109.07 l
+377.61 106.99 l
+378.11 105.16 l
+378.60 104.38 l
+379.09 105.16 l
+379.58 105.16 l
+380.07 106.47 l
+380.56 106.99 l
+381.05 105.16 l
+381.54 103.86 l
+382.03 103.08 l
+382.52 102.56 l
+383.02 100.48 l
+383.51 101.52 l
+384.00 102.56 l
+384.49 102.30 l
+384.98 101.52 l
+385.47 101.52 l
+385.96 101.26 l
+386.45 100.74 l
+386.94 101.00 l
+387.43 100.22 l
+387.93 100.22 l
+388.42 100.74 l
+388.91 100.22 l
+389.40 100.48 l
+389.89 99.70 l
+390.38 98.66 l
+390.87 99.44 l
+391.36 88.24 l
+391.85 91.11 l
+392.35 89.03 l
+392.84 87.98 l
+393.33 91.63 l
+393.82 95.79 l
+394.31 95.79 l
+394.80 95.79 l
+395.29 95.53 l
+395.78 95.79 l
+396.27 96.31 l
+396.76 96.05 l
+397.26 95.79 l
+397.75 93.71 l
+398.24 94.49 l
+398.73 95.27 l
+399.22 95.01 l
+399.71 95.01 l
+400.20 94.75 l
+400.69 95.27 l
+401.18 94.49 l
+401.67 93.97 l
+402.17 94.49 l
+402.66 95.01 l
+403.15 95.53 l
+403.64 94.23 l
+404.13 93.97 l
+404.62 92.67 l
+405.11 92.41 l
+405.60 93.45 l
+406.09 92.93 l
+406.59 93.19 l
+407.08 92.93 l
+407.57 92.67 l
+408.06 92.67 l
+408.55 92.67 l
+409.04 92.67 l
+409.53 92.67 l
+410.02 92.41 l
+410.51 91.37 l
+411.00 92.15 l
+411.50 92.41 l
+411.99 92.41 l
+412.48 92.41 l
+412.97 92.15 l
+413.46 92.15 l
+413.95 91.11 l
+414.44 91.89 l
+414.93 91.63 l
+415.42 92.41 l
+415.92 91.89 l
+416.41 90.85 l
+416.90 90.33 l
+417.39 89.81 l
+417.88 89.55 l
+418.37 90.33 l
+418.86 90.07 l
+419.35 90.07 l
+419.84 90.07 l
+420.33 89.55 l
+420.83 89.29 l
+421.32 89.81 l
+421.81 89.55 l
+422.30 89.29 l
+422.79 91.11 l
+423.28 90.59 l
+423.77 89.81 l
+424.26 89.81 l
+424.75 90.07 l
+425.24 90.07 l
+425.74 89.55 l
+426.23 90.07 l
+426.72 89.81 l
+427.21 89.55 l
+427.70 89.55 l
+428.19 88.77 l
+428.68 89.03 l
+429.17 89.03 l
+429.66 89.29 l
+430.16 89.29 l
+430.65 88.51 l
+431.14 88.77 l
+431.63 88.51 l
+432.12 88.51 l
+432.61 88.77 l
+433.10 88.51 l
+433.59 88.77 l
+434.08 89.81 l
+434.57 89.29 l
+435.07 89.03 l
+435.56 89.03 l
+436.05 89.29 l
+436.54 89.03 l
+437.03 88.24 l
+437.52 88.77 l
+438.01 87.98 l
+438.50 87.20 l
+438.99 87.46 l
+439.49 88.24 l
+439.98 89.03 l
+440.47 87.20 l
+440.96 88.51 l
+441.45 88.24 l
+441.94 88.77 l
+442.43 88.51 l
+442.92 86.94 l
+443.41 87.46 l
+443.90 86.94 l
+444.40 86.68 l
+444.89 86.68 l
+445.38 86.94 l
+445.87 86.94 l
+446.36 87.46 l
+446.85 86.94 l
+447.34 86.42 l
+447.83 87.20 l
+448.32 86.68 l
+448.81 86.94 l
+449.31 86.94 l
+449.80 85.90 l
+450.29 85.38 l
+450.78 85.90 l
+451.27 86.16 l
+451.76 86.68 l
+452.25 86.68 l
+452.74 86.94 l
+453.23 86.42 l
+453.73 86.16 l
+454.22 85.90 l
+454.71 85.12 l
+455.20 85.64 l
+455.69 85.90 l
+456.18 84.60 l
+456.67 84.60 l
+457.16 85.38 l
+457.65 85.38 l
+458.14 84.86 l
+458.64 85.64 l
+459.13 84.60 l
+459.62 84.08 l
+460.11 84.08 l
+460.60 84.08 l
+461.09 83.56 l
+461.58 83.30 l
+462.07 82.78 l
+462.56 82.52 l
+463.05 82.00 l
+463.55 81.48 l
+464.04 81.48 l
+464.53 80.96 l
+465.02 81.22 l
+465.51 81.22 l
+466.00 81.48 l
+466.49 81.74 l
+466.98 81.74 l
+467.47 80.96 l
+467.97 80.96 l
+468.46 81.48 l
+468.95 81.74 l
+469.44 81.48 l
+469.93 82.26 l
+470.42 82.00 l
+470.91 82.00 l
+471.40 82.00 l
+471.89 82.26 l
+472.38 82.26 l
+472.88 82.26 l
+473.37 81.74 l
+473.86 80.96 l
+474.35 81.48 l
+474.84 80.96 l
+475.33 81.22 l
+475.82 81.48 l
+476.31 81.48 l
+476.80 82.00 l
+477.30 82.26 l
+477.79 81.48 l
+478.28 81.22 l
+478.77 80.96 l
+479.26 81.48 l
+479.75 82.00 l
+480.24 81.74 l
+480.73 81.74 l
+481.22 80.96 l
+481.71 80.70 l
+482.21 80.96 l
+482.70 81.48 l
+483.19 81.48 l
+483.68 81.48 l
+484.17 81.48 l
+484.66 81.48 l
+485.15 82.00 l
+485.64 80.96 l
+486.13 80.96 l
+486.62 81.48 l
+487.12 81.74 l
+487.61 81.48 l
+488.10 82.00 l
+488.59 82.26 l
+489.08 82.00 l
+489.57 82.26 l
+490.06 82.26 l
+490.55 82.00 l
+491.04 81.48 l
+491.54 81.48 l
+492.03 80.96 l
+492.52 81.22 l
+493.01 80.70 l
+493.50 80.44 l
+493.99 80.96 l
+494.48 80.96 l
+494.97 81.22 l
+495.46 80.70 l
+495.95 80.96 l
+496.45 80.44 l
+496.94 80.70 l
+497.43 80.70 l
+497.92 80.18 l
+498.41 80.70 l
+498.90 80.18 l
+499.39 79.66 l
+499.88 79.39 l
+500.37 79.39 l
+500.86 79.39 l
+501.36 79.92 l
+501.85 79.92 l
+502.34 80.18 l
+502.83 80.18 l
+503.32 79.92 l
+503.81 79.92 l
+504.30 79.66 l
+504.79 79.39 l
+505.28 79.13 l
+505.78 79.13 l
+506.27 79.66 l
+506.76 79.66 l
+507.25 80.70 l
+507.74 79.66 l
+508.23 79.39 l
+508.72 79.66 l
+509.21 79.39 l
+509.70 79.66 l
+510.19 79.66 l
+510.69 79.92 l
+511.18 79.66 l
+511.67 79.92 l
+512.16 79.92 l
+512.65 79.66 l
+513.14 79.66 l
+513.63 79.66 l
+514.12 79.66 l
+514.61 79.66 l
+515.11 79.92 l
+515.60 80.18 l
+516.09 79.92 l
+516.58 79.92 l
+517.07 79.66 l
+517.56 79.39 l
+518.05 79.92 l
+518.54 79.92 l
+519.03 79.92 l
+519.52 79.66 l
+520.02 79.39 l
+520.51 79.92 l
+521.00 79.92 l
+521.49 79.66 l
+521.98 79.39 l
+522.47 79.66 l
+522.96 79.39 l
+523.45 79.39 l
+523.94 79.92 l
+524.43 79.13 l
+524.93 79.66 l
+525.42 80.18 l
+525.91 79.92 l
+526.40 79.39 l
+526.89 79.66 l
+527.38 79.66 l
+527.87 79.66 l
+528.36 79.92 l
+528.85 80.18 l
+529.35 79.66 l
+529.84 79.13 l
+530.33 79.13 l
+530.82 78.87 l
+531.31 78.61 l
+531.80 77.83 l
+532.29 78.09 l
+532.78 78.09 l
+533.27 77.83 l
+533.76 78.09 l
+534.26 77.83 l
+534.75 78.35 l
+535.24 78.61 l
+535.73 78.61 l
+536.22 78.61 l
+536.71 78.09 l
+537.20 78.09 l
+537.69 78.35 l
+538.18 78.09 l
+538.67 78.35 l
+539.17 78.09 l
+539.66 78.09 l
+540.15 77.83 l
+540.64 77.83 l
+541.13 77.83 l
+541.62 78.35 l
+542.11 78.35 l
+542.60 78.87 l
+543.09 79.13 l
+543.59 78.61 l
+544.08 78.35 l
+544.57 77.83 l
+545.06 78.09 l
+545.55 78.09 l
+546.04 77.83 l
+546.53 77.31 l
+547.02 77.83 l
+547.51 77.83 l
+548.00 78.61 l
+548.50 78.35 l
+548.99 78.35 l
+549.48 78.35 l
+549.97 77.83 l
+550.46 77.31 l
+550.95 77.05 l
+551.44 77.31 l
+551.93 77.05 l
+552.42 77.05 l
+552.92 76.79 l
+553.41 76.79 l
+553.90 77.57 l
+554.39 77.57 l
+554.88 77.83 l
+555.37 77.57 l
+555.86 77.83 l
+556.35 77.57 l
+556.84 78.09 l
+557.33 78.09 l
+557.83 77.83 l
+558.32 77.83 l
+558.81 77.83 l
+559.30 78.09 l
+559.79 77.31 l
+560.28 77.31 l
+560.77 76.53 l
+561.26 76.53 l
+561.75 76.79 l
+562.24 77.57 l
+562.74 77.31 l
+563.23 77.05 l
+563.72 77.05 l
+S
+564.70 76.79 m
+565.19 76.79 l
+565.68 76.79 l
+566.17 76.79 l
+566.66 77.05 l
+567.16 77.05 l
+567.65 77.05 l
+568.14 76.53 l
+568.63 76.53 l
+569.12 76.27 l
+569.61 76.79 l
+570.10 76.79 l
+570.59 76.79 l
+571.08 76.53 l
+571.57 76.79 l
+572.07 76.79 l
+572.56 76.79 l
+573.05 76.79 l
+573.54 76.79 l
+574.03 76.79 l
+574.52 76.79 l
+575.01 76.79 l
+575.50 76.53 l
+575.99 76.27 l
+576.49 76.27 l
+576.98 76.01 l
+577.47 76.27 l
+577.96 76.53 l
+578.45 76.27 l
+578.94 76.53 l
+579.43 76.79 l
+579.92 77.05 l
+580.41 77.57 l
+580.90 77.31 l
+581.40 77.05 l
+581.89 76.79 l
+582.38 76.53 l
+582.87 76.01 l
+583.36 76.27 l
+583.85 76.01 l
+584.34 76.01 l
+584.83 76.01 l
+585.32 75.23 l
+585.81 75.23 l
+586.31 75.49 l
+586.80 75.75 l
+587.29 75.49 l
+587.78 75.23 l
+588.27 75.23 l
+588.76 75.49 l
+589.25 75.49 l
+589.74 76.01 l
+590.23 75.75 l
+590.73 76.01 l
+591.22 76.53 l
+591.71 76.27 l
+592.20 75.75 l
+592.69 76.01 l
+593.18 76.27 l
+593.67 76.53 l
+594.16 76.27 l
+594.65 76.27 l
+595.14 76.53 l
+595.64 76.79 l
+596.13 76.53 l
+596.62 76.79 l
+597.11 76.79 l
+597.60 76.53 l
+598.09 77.05 l
+598.58 76.79 l
+599.07 76.79 l
+599.56 77.05 l
+600.05 77.05 l
+600.55 76.79 l
+601.04 76.79 l
+601.53 76.53 l
+602.02 76.79 l
+602.51 76.79 l
+603.00 76.01 l
+603.49 76.01 l
+603.98 76.53 l
+604.47 76.53 l
+604.97 76.79 l
+605.46 76.53 l
+605.95 76.53 l
+606.44 76.27 l
+606.93 76.27 l
+607.42 77.05 l
+607.91 76.53 l
+608.40 76.53 l
+608.89 76.53 l
+609.38 75.75 l
+609.88 76.27 l
+610.37 76.01 l
+610.86 76.53 l
+611.35 76.79 l
+611.84 77.05 l
+612.33 76.79 l
+612.82 77.31 l
+613.31 77.57 l
+613.80 77.83 l
+614.30 77.57 l
+614.79 78.09 l
+615.28 77.57 l
+615.77 77.57 l
+616.26 77.05 l
+616.75 77.83 l
+617.24 77.31 l
+617.73 76.79 l
+618.22 76.53 l
+618.71 76.27 l
+619.21 76.27 l
+619.70 76.27 l
+620.19 76.27 l
+620.68 76.27 l
+621.17 76.01 l
+621.66 76.27 l
+622.15 76.53 l
+622.64 76.27 l
+623.13 76.01 l
+623.62 76.27 l
+624.12 76.27 l
+624.61 76.27 l
+625.10 76.27 l
+625.59 76.27 l
+626.08 75.75 l
+S
+0.000 0.392 0.000 RG
+269.09 72.11 m
+269.59 72.63 l
+270.08 73.93 l
+270.57 73.67 l
+271.06 73.67 l
+271.55 73.67 l
+272.04 73.93 l
+272.53 74.19 l
+273.02 74.97 l
+273.51 74.97 l
+274.00 74.97 l
+274.50 74.71 l
+274.99 74.97 l
+275.48 75.23 l
+275.97 75.49 l
+276.46 75.49 l
+276.95 75.75 l
+277.44 75.49 l
+277.93 75.75 l
+278.42 75.75 l
+278.92 76.27 l
+279.41 75.23 l
+279.90 75.75 l
+280.39 74.71 l
+280.88 74.45 l
+281.37 74.71 l
+281.86 74.71 l
+282.35 74.19 l
+282.84 73.93 l
+283.33 73.93 l
+283.83 73.93 l
+284.32 73.41 l
+284.81 74.71 l
+285.30 74.97 l
+285.79 74.97 l
+286.28 74.97 l
+286.77 74.97 l
+287.26 74.97 l
+287.75 76.01 l
+288.24 76.01 l
+288.74 76.01 l
+289.23 75.75 l
+289.72 75.75 l
+290.21 75.23 l
+290.70 74.97 l
+291.19 74.71 l
+291.68 75.23 l
+292.17 75.75 l
+292.66 75.49 l
+293.16 75.75 l
+293.65 75.23 l
+294.14 74.71 l
+294.63 75.23 l
+295.12 74.97 l
+295.61 75.49 l
+296.10 75.23 l
+296.59 75.49 l
+297.08 75.23 l
+297.57 75.49 l
+298.07 75.23 l
+298.56 75.23 l
+299.05 75.49 l
+299.54 75.75 l
+300.03 75.75 l
+300.52 75.75 l
+301.01 75.49 l
+301.50 76.01 l
+301.99 75.75 l
+302.49 75.75 l
+302.98 75.49 l
+303.47 76.01 l
+303.96 75.75 l
+304.45 75.75 l
+304.94 76.27 l
+305.43 76.53 l
+305.92 76.01 l
+306.41 75.75 l
+306.90 75.75 l
+307.40 75.23 l
+307.89 75.49 l
+308.38 75.49 l
+308.87 75.49 l
+309.36 74.97 l
+309.85 74.97 l
+310.34 75.23 l
+310.83 74.97 l
+311.32 76.01 l
+311.81 76.01 l
+312.31 75.49 l
+312.80 75.75 l
+313.29 76.53 l
+313.78 77.57 l
+314.27 79.39 l
+314.76 79.66 l
+315.25 80.70 l
+315.74 80.70 l
+316.23 80.44 l
+316.73 82.52 l
+317.22 82.78 l
+317.71 84.34 l
+318.20 84.60 l
+318.69 86.42 l
+319.18 86.94 l
+319.67 85.64 l
+320.16 88.24 l
+320.65 87.98 l
+321.14 87.20 l
+321.64 86.68 l
+322.13 87.20 l
+322.62 86.68 l
+323.11 88.77 l
+323.60 90.33 l
+324.09 88.77 l
+324.58 88.24 l
+325.07 87.98 l
+325.56 88.24 l
+326.05 88.24 l
+326.55 87.98 l
+327.04 90.85 l
+327.53 90.07 l
+328.02 89.03 l
+328.51 90.33 l
+329.00 89.55 l
+329.49 89.81 l
+329.98 90.33 l
+330.47 87.98 l
+330.97 89.81 l
+331.46 91.11 l
+331.95 91.11 l
+332.44 90.85 l
+332.93 90.85 l
+333.42 90.85 l
+333.91 93.19 l
+334.40 91.89 l
+334.89 92.15 l
+335.38 93.45 l
+335.88 94.49 l
+336.37 92.93 l
+336.86 93.45 l
+337.35 93.71 l
+337.84 93.19 l
+338.33 93.71 l
+338.82 95.27 l
+339.31 95.27 l
+339.80 93.97 l
+340.30 93.45 l
+340.79 93.19 l
+341.28 94.23 l
+341.77 93.19 l
+342.26 92.67 l
+342.75 95.79 l
+343.24 95.53 l
+343.73 94.23 l
+344.22 93.71 l
+344.71 94.75 l
+345.21 95.79 l
+345.70 94.49 l
+346.19 95.01 l
+346.68 96.57 l
+347.17 95.01 l
+347.66 97.09 l
+348.15 97.62 l
+348.64 99.70 l
+349.13 99.96 l
+349.62 97.62 l
+350.12 97.62 l
+350.61 97.88 l
+351.10 96.57 l
+351.59 97.36 l
+352.08 98.14 l
+352.57 98.66 l
+353.06 99.96 l
+353.55 100.22 l
+354.04 100.22 l
+354.54 101.00 l
+355.03 102.04 l
+355.52 102.30 l
+356.01 102.56 l
+356.50 103.60 l
+356.99 102.30 l
+357.48 101.52 l
+357.97 102.56 l
+358.46 103.34 l
+358.95 105.16 l
+359.45 105.42 l
+359.94 105.16 l
+360.43 107.51 l
+360.92 108.55 l
+361.41 106.20 l
+361.90 106.20 l
+362.39 108.81 l
+362.88 110.37 l
+363.37 110.63 l
+363.86 109.33 l
+364.36 109.85 l
+364.85 111.41 l
+365.34 108.81 l
+365.83 109.33 l
+366.32 110.37 l
+366.81 109.85 l
+367.30 108.55 l
+367.79 108.81 l
+368.28 110.11 l
+368.78 111.41 l
+369.27 111.41 l
+369.76 109.85 l
+370.25 109.33 l
+370.74 111.15 l
+371.23 114.01 l
+371.72 111.93 l
+372.21 112.71 l
+372.70 110.89 l
+373.19 110.37 l
+373.69 111.41 l
+374.18 111.93 l
+374.67 110.63 l
+375.16 108.29 l
+375.65 109.33 l
+376.14 109.33 l
+376.63 109.85 l
+377.12 109.07 l
+377.61 110.89 l
+378.11 110.11 l
+378.60 113.49 l
+379.09 114.27 l
+379.58 111.41 l
+380.07 112.19 l
+380.56 112.71 l
+381.05 111.67 l
+381.54 111.15 l
+382.03 112.71 l
+382.52 114.27 l
+383.02 113.49 l
+383.51 112.71 l
+384.00 113.75 l
+384.49 115.84 l
+384.98 117.92 l
+385.47 116.62 l
+385.96 118.96 l
+386.45 116.88 l
+386.94 116.36 l
+387.43 114.27 l
+387.93 116.10 l
+388.42 115.58 l
+388.91 114.27 l
+389.40 116.36 l
+389.89 115.32 l
+390.38 114.79 l
+390.87 114.79 l
+391.36 99.44 l
+391.85 102.30 l
+392.35 101.00 l
+392.84 99.18 l
+393.33 104.90 l
+393.82 114.53 l
+394.31 114.53 l
+394.80 111.67 l
+395.29 114.27 l
+395.78 117.14 l
+396.27 117.14 l
+396.76 116.10 l
+397.26 115.84 l
+397.75 115.58 l
+398.24 115.84 l
+398.73 115.32 l
+399.22 114.01 l
+399.71 114.27 l
+400.20 115.32 l
+400.69 115.05 l
+401.18 117.40 l
+401.67 117.40 l
+402.17 117.92 l
+402.66 115.32 l
+403.15 113.75 l
+403.64 114.79 l
+404.13 113.23 l
+404.62 113.49 l
+405.11 114.79 l
+405.60 115.05 l
+406.09 115.05 l
+406.59 116.88 l
+407.08 113.49 l
+407.57 112.97 l
+408.06 114.01 l
+408.55 114.79 l
+409.04 114.01 l
+409.53 115.05 l
+410.02 114.27 l
+410.51 113.49 l
+411.00 114.27 l
+411.50 115.32 l
+411.99 115.84 l
+412.48 115.84 l
+412.97 115.32 l
+413.46 115.05 l
+413.95 113.23 l
+414.44 115.05 l
+414.93 111.41 l
+415.42 112.71 l
+415.92 112.71 l
+416.41 112.45 l
+416.90 115.32 l
+417.39 116.10 l
+417.88 115.05 l
+418.37 115.05 l
+418.86 113.75 l
+419.35 113.23 l
+419.84 115.58 l
+420.33 114.79 l
+420.83 113.49 l
+421.32 115.05 l
+421.81 117.14 l
+422.30 117.14 l
+422.79 114.79 l
+423.28 116.36 l
+423.77 117.14 l
+424.26 113.75 l
+424.75 113.75 l
+425.24 114.01 l
+425.74 114.27 l
+426.23 115.32 l
+426.72 115.84 l
+427.21 116.88 l
+427.70 118.96 l
+428.19 118.44 l
+428.68 118.18 l
+429.17 115.58 l
+429.66 116.10 l
+430.16 119.48 l
+430.65 117.40 l
+431.14 115.05 l
+431.63 115.84 l
+432.12 116.62 l
+432.61 115.58 l
+433.10 116.62 l
+433.59 118.44 l
+434.08 117.66 l
+434.57 118.18 l
+435.07 115.32 l
+435.56 115.84 l
+436.05 117.14 l
+436.54 117.92 l
+437.03 118.96 l
+437.52 118.96 l
+438.01 118.96 l
+438.50 118.44 l
+438.99 118.96 l
+439.49 117.40 l
+439.98 117.66 l
+440.47 118.44 l
+440.96 118.18 l
+441.45 117.66 l
+441.94 116.88 l
+442.43 117.14 l
+442.92 116.62 l
+443.41 117.92 l
+443.90 118.44 l
+444.40 117.40 l
+444.89 115.84 l
+445.38 113.49 l
+445.87 115.32 l
+446.36 114.27 l
+446.85 114.53 l
+447.34 117.14 l
+447.83 116.36 l
+448.32 114.01 l
+448.81 113.49 l
+449.31 114.27 l
+449.80 116.10 l
+450.29 114.01 l
+450.78 114.27 l
+451.27 112.45 l
+451.76 112.71 l
+452.25 113.23 l
+452.74 112.19 l
+453.23 112.71 l
+453.73 112.71 l
+454.22 113.49 l
+454.71 113.75 l
+455.20 113.49 l
+455.69 115.32 l
+456.18 114.53 l
+456.67 117.14 l
+457.16 116.36 l
+457.65 117.40 l
+458.14 115.58 l
+458.64 115.32 l
+459.13 116.62 l
+459.62 116.36 l
+460.11 116.62 l
+460.60 114.79 l
+461.09 115.05 l
+461.58 116.10 l
+462.07 114.53 l
+462.56 114.27 l
+463.05 112.45 l
+463.55 113.49 l
+464.04 114.01 l
+464.53 113.23 l
+465.02 115.84 l
+465.51 116.10 l
+466.00 113.75 l
+466.49 112.71 l
+466.98 113.23 l
+467.47 113.23 l
+467.97 115.32 l
+468.46 116.88 l
+468.95 114.27 l
+469.44 116.10 l
+469.93 116.36 l
+470.42 117.66 l
+470.91 117.66 l
+471.40 119.22 l
+471.89 120.52 l
+472.38 120.52 l
+472.88 120.52 l
+473.37 119.48 l
+473.86 116.62 l
+474.35 118.44 l
+474.84 119.48 l
+475.33 118.18 l
+475.82 118.44 l
+476.31 117.66 l
+476.80 117.92 l
+477.30 118.70 l
+477.79 118.96 l
+478.28 118.70 l
+478.77 119.22 l
+479.26 117.40 l
+479.75 118.18 l
+480.24 117.14 l
+480.73 120.00 l
+481.22 118.70 l
+481.71 117.14 l
+482.21 116.88 l
+482.70 117.40 l
+483.19 118.96 l
+483.68 117.40 l
+484.17 116.88 l
+484.66 116.88 l
+485.15 120.00 l
+485.64 119.48 l
+486.13 120.00 l
+486.62 120.78 l
+487.12 120.00 l
+487.61 120.26 l
+488.10 119.48 l
+488.59 120.26 l
+489.08 121.56 l
+489.57 118.96 l
+490.06 118.96 l
+490.55 121.30 l
+491.04 120.26 l
+491.54 120.00 l
+492.03 121.56 l
+492.52 123.90 l
+493.01 122.60 l
+493.50 122.08 l
+493.99 121.82 l
+494.48 120.52 l
+494.97 120.52 l
+495.46 122.08 l
+495.95 122.34 l
+496.45 123.38 l
+496.94 122.08 l
+497.43 123.12 l
+497.92 121.04 l
+498.41 120.00 l
+498.90 122.08 l
+499.39 123.12 l
+499.88 122.08 l
+500.37 122.86 l
+500.86 122.08 l
+501.36 120.00 l
+501.85 119.22 l
+502.34 118.70 l
+502.83 118.18 l
+503.32 116.88 l
+503.81 116.62 l
+504.30 117.66 l
+504.79 117.92 l
+505.28 117.14 l
+505.78 118.18 l
+506.27 116.62 l
+506.76 117.14 l
+507.25 117.92 l
+507.74 119.22 l
+508.23 116.88 l
+508.72 116.62 l
+509.21 117.66 l
+509.70 115.84 l
+510.19 115.32 l
+510.69 115.32 l
+511.18 114.53 l
+511.67 114.27 l
+512.16 114.01 l
+512.65 114.79 l
+513.14 114.53 l
+513.63 114.01 l
+514.12 112.71 l
+514.61 114.53 l
+515.11 122.86 l
+515.60 126.25 l
+516.09 130.93 l
+516.58 133.80 l
+517.07 135.62 l
+517.56 139.00 l
+518.05 137.44 l
+518.54 140.04 l
+519.03 141.08 l
+519.52 141.60 l
+520.02 144.21 l
+520.51 143.43 l
+521.00 144.99 l
+521.49 144.73 l
+521.98 144.21 l
+522.47 150.45 l
+522.96 152.54 l
+523.45 157.22 l
+523.94 159.83 l
+524.43 162.69 l
+524.93 165.55 l
+525.42 166.85 l
+525.91 167.89 l
+526.40 171.80 l
+526.89 173.62 l
+527.38 176.74 l
+527.87 178.57 l
+528.36 177.79 l
+528.85 178.05 l
+529.35 178.57 l
+529.84 179.35 l
+530.33 180.13 l
+530.82 183.51 l
+531.31 182.21 l
+531.80 188.20 l
+532.29 187.16 l
+532.78 193.66 l
+533.27 193.40 l
+533.76 196.79 l
+534.26 197.83 l
+534.75 200.95 l
+535.24 202.25 l
+535.73 204.34 l
+536.22 209.28 l
+536.71 212.40 l
+537.20 215.53 l
+537.69 215.27 l
+538.18 213.19 l
+538.67 216.05 l
+539.17 220.21 l
+539.66 220.99 l
+540.15 221.25 l
+540.64 222.82 l
+541.13 221.77 l
+541.62 226.72 l
+542.11 228.28 l
+542.60 231.67 l
+543.09 233.23 l
+543.59 236.09 l
+544.08 237.91 l
+544.57 238.43 l
+545.06 234.27 l
+545.55 235.05 l
+546.04 238.69 l
+546.53 235.83 l
+547.02 238.69 l
+547.51 239.21 l
+548.00 237.39 l
+548.50 237.91 l
+548.99 236.87 l
+549.48 239.73 l
+549.97 239.21 l
+550.46 236.61 l
+550.95 240.00 l
+551.44 239.73 l
+551.93 241.30 l
+552.42 242.08 l
+552.92 244.94 l
+553.41 246.24 l
+553.90 243.64 l
+554.39 246.50 l
+554.88 243.12 l
+555.37 245.46 l
+555.86 242.60 l
+556.35 243.64 l
+556.84 245.46 l
+557.33 248.06 l
+557.83 248.85 l
+558.32 245.98 l
+558.81 247.54 l
+559.30 245.98 l
+559.79 245.46 l
+560.28 248.58 l
+560.77 250.67 l
+561.26 252.49 l
+561.75 249.89 l
+562.24 249.37 l
+562.74 250.93 l
+563.23 248.58 l
+563.72 246.24 l
+S
+564.70 255.61 m
+565.19 248.58 l
+565.68 245.72 l
+566.17 247.28 l
+566.66 245.72 l
+567.16 247.54 l
+567.65 251.45 l
+568.14 254.57 l
+568.63 255.61 l
+569.12 254.05 l
+569.61 253.53 l
+570.10 255.09 l
+570.59 247.80 l
+571.08 245.98 l
+571.57 251.45 l
+572.07 254.31 l
+572.56 251.97 l
+573.05 246.76 l
+573.54 254.31 l
+574.03 254.05 l
+574.52 262.38 l
+575.01 262.12 l
+575.50 257.17 l
+575.99 256.91 l
+576.49 255.35 l
+576.98 255.61 l
+577.47 251.45 l
+577.96 256.65 l
+578.45 259.78 l
+578.94 261.60 l
+579.43 260.30 l
+579.92 263.42 l
+580.41 260.30 l
+580.90 265.24 l
+581.40 266.02 l
+581.89 268.37 l
+582.38 268.89 l
+582.87 267.33 l
+583.36 266.81 l
+583.85 269.15 l
+584.34 269.67 l
+584.83 274.35 l
+585.32 272.79 l
+585.81 267.59 l
+586.31 266.81 l
+586.80 265.50 l
+587.29 270.97 l
+587.78 264.20 l
+588.27 266.54 l
+588.76 271.23 l
+589.25 265.24 l
+589.74 268.63 l
+590.23 266.81 l
+590.73 265.24 l
+591.22 269.67 l
+591.71 271.49 l
+592.20 273.57 l
+592.69 266.81 l
+593.18 266.02 l
+593.67 260.04 l
+594.16 256.39 l
+594.65 259.00 l
+595.14 262.64 l
+595.64 266.02 l
+596.13 268.11 l
+596.62 267.07 l
+597.11 263.94 l
+597.60 263.16 l
+598.09 270.45 l
+598.58 273.57 l
+599.07 276.96 l
+599.56 270.97 l
+600.05 272.27 l
+600.55 273.31 l
+601.04 269.15 l
+601.53 269.93 l
+602.02 276.44 l
+602.51 271.49 l
+603.00 270.71 l
+603.49 266.81 l
+603.98 268.11 l
+604.47 266.02 l
+604.97 268.37 l
+605.46 271.49 l
+605.95 270.71 l
+606.44 263.42 l
+606.93 268.11 l
+607.42 268.11 l
+607.91 269.41 l
+608.40 279.30 l
+608.89 286.59 l
+609.38 285.81 l
+609.88 278.78 l
+610.37 276.70 l
+610.86 280.60 l
+611.35 278.78 l
+611.84 278.52 l
+612.33 278.78 l
+612.82 278.78 l
+613.31 273.31 l
+613.80 273.83 l
+614.30 271.75 l
+614.79 277.22 l
+615.28 278.78 l
+615.77 278.52 l
+616.26 281.64 l
+616.75 281.12 l
+617.24 285.55 l
+617.73 281.90 l
+618.22 279.82 l
+618.71 289.19 l
+619.21 292.31 l
+619.70 290.75 l
+620.19 291.53 l
+620.68 285.81 l
+621.17 286.59 l
+621.66 286.59 l
+622.15 288.41 l
+622.64 296.48 l
+623.13 298.82 l
+623.62 291.53 l
+624.12 293.09 l
+624.61 293.36 l
+625.10 296.22 l
+625.59 297.78 l
+626.08 298.56 l
+S
+0.000 0.000 1.000 RG
+445.38 72.11 m
+445.87 72.11 l
+446.36 72.63 l
+446.85 72.89 l
+447.34 73.41 l
+447.83 73.67 l
+448.32 73.41 l
+448.81 73.67 l
+449.31 73.67 l
+449.80 73.67 l
+450.29 73.67 l
+450.78 73.67 l
+451.27 73.41 l
+451.76 73.93 l
+452.25 73.93 l
+452.74 73.93 l
+453.23 73.93 l
+453.73 74.19 l
+454.22 73.93 l
+454.71 73.67 l
+455.20 73.93 l
+455.69 73.93 l
+456.18 74.45 l
+456.67 74.19 l
+457.16 73.67 l
+457.65 73.93 l
+458.14 74.45 l
+458.64 74.19 l
+459.13 73.93 l
+459.62 73.93 l
+460.11 74.19 l
+460.60 73.67 l
+461.09 73.67 l
+461.58 73.67 l
+462.07 73.67 l
+462.56 73.67 l
+463.05 73.67 l
+463.55 73.67 l
+464.04 74.19 l
+464.53 74.19 l
+465.02 74.19 l
+465.51 74.45 l
+466.00 73.93 l
+466.49 74.19 l
+466.98 74.45 l
+467.47 74.71 l
+467.97 74.19 l
+468.46 74.45 l
+468.95 74.97 l
+469.44 74.71 l
+469.93 74.45 l
+470.42 73.93 l
+470.91 73.41 l
+471.40 73.67 l
+471.89 73.67 l
+472.38 73.93 l
+472.88 74.45 l
+473.37 74.45 l
+473.86 74.45 l
+474.35 74.71 l
+474.84 74.71 l
+475.33 74.45 l
+475.82 74.71 l
+476.31 74.97 l
+476.80 74.45 l
+477.30 74.45 l
+477.79 74.45 l
+478.28 74.19 l
+478.77 74.19 l
+479.26 73.93 l
+479.75 74.19 l
+480.24 74.45 l
+480.73 73.93 l
+481.22 74.19 l
+481.71 73.93 l
+482.21 74.45 l
+482.70 74.19 l
+483.19 73.67 l
+483.68 73.41 l
+484.17 73.67 l
+484.66 73.67 l
+485.15 73.67 l
+485.64 73.41 l
+486.13 73.67 l
+486.62 73.41 l
+487.12 73.41 l
+487.61 73.41 l
+488.10 73.41 l
+488.59 73.41 l
+489.08 73.41 l
+489.57 73.93 l
+490.06 73.67 l
+490.55 73.93 l
+491.04 73.93 l
+491.54 73.93 l
+492.03 73.93 l
+492.52 73.93 l
+493.01 73.67 l
+493.50 73.93 l
+493.99 73.93 l
+494.48 73.67 l
+494.97 73.67 l
+495.46 73.67 l
+495.95 73.67 l
+496.45 73.41 l
+496.94 73.93 l
+497.43 74.19 l
+497.92 73.93 l
+498.41 73.93 l
+498.90 74.45 l
+499.39 75.23 l
+499.88 75.49 l
+500.37 76.01 l
+500.86 77.57 l
+501.36 78.09 l
+501.85 78.35 l
+502.34 78.35 l
+502.83 78.87 l
+503.32 78.87 l
+503.81 79.66 l
+504.30 79.92 l
+504.79 79.13 l
+505.28 79.39 l
+505.78 79.66 l
+506.27 81.22 l
+506.76 80.96 l
+507.25 82.52 l
+507.74 83.56 l
+508.23 84.60 l
+508.72 84.86 l
+509.21 85.38 l
+509.70 84.60 l
+510.19 84.34 l
+510.69 84.34 l
+511.18 84.86 l
+511.67 85.64 l
+512.16 85.38 l
+512.65 86.42 l
+513.14 85.12 l
+513.63 85.12 l
+514.12 85.38 l
+514.61 86.16 l
+515.11 87.46 l
+515.60 86.68 l
+516.09 86.42 l
+516.58 85.90 l
+517.07 87.20 l
+517.56 89.03 l
+518.05 88.77 l
+518.54 90.07 l
+519.03 89.29 l
+519.52 89.03 l
+520.02 88.24 l
+520.51 88.24 l
+521.00 89.55 l
+521.49 90.33 l
+521.98 90.07 l
+522.47 89.29 l
+522.96 89.81 l
+523.45 89.55 l
+523.94 90.07 l
+524.43 90.33 l
+524.93 91.11 l
+525.42 93.71 l
+525.91 92.67 l
+526.40 94.49 l
+526.89 96.05 l
+527.38 95.27 l
+527.87 95.27 l
+528.36 95.79 l
+528.85 95.27 l
+529.35 94.49 l
+529.84 94.49 l
+530.33 94.75 l
+530.82 95.01 l
+531.31 95.27 l
+531.80 95.79 l
+532.29 96.31 l
+532.78 96.83 l
+533.27 96.05 l
+533.76 95.27 l
+534.26 96.57 l
+534.75 96.57 l
+535.24 96.05 l
+535.73 96.57 l
+536.22 96.31 l
+536.71 98.14 l
+537.20 97.62 l
+537.69 97.36 l
+538.18 97.62 l
+538.67 97.09 l
+539.17 98.92 l
+539.66 98.66 l
+540.15 98.14 l
+540.64 97.36 l
+541.13 96.31 l
+541.62 96.05 l
+542.11 95.79 l
+542.60 95.27 l
+543.09 96.31 l
+543.59 96.31 l
+544.08 97.62 l
+544.57 99.18 l
+545.06 98.40 l
+545.55 97.36 l
+546.04 97.62 l
+546.53 96.31 l
+547.02 97.88 l
+547.51 97.36 l
+548.00 96.05 l
+548.50 97.09 l
+548.99 97.09 l
+549.48 97.88 l
+549.97 97.62 l
+550.46 98.14 l
+550.95 98.40 l
+551.44 98.40 l
+551.93 98.14 l
+552.42 97.62 l
+552.92 98.14 l
+553.41 96.83 l
+553.90 97.88 l
+554.39 97.62 l
+554.88 98.14 l
+555.37 97.36 l
+555.86 98.14 l
+556.35 97.36 l
+556.84 98.92 l
+557.33 97.62 l
+557.83 96.31 l
+558.32 96.57 l
+558.81 96.31 l
+559.30 96.57 l
+559.79 97.36 l
+560.28 96.57 l
+560.77 96.57 l
+561.26 97.62 l
+561.75 97.88 l
+562.24 99.70 l
+562.74 98.92 l
+563.23 98.66 l
+563.72 97.62 l
+S
+564.70 98.66 m
+565.19 97.36 l
+565.68 97.09 l
+566.17 96.57 l
+566.66 96.57 l
+567.16 96.83 l
+567.65 98.14 l
+568.14 97.09 l
+568.63 96.57 l
+569.12 95.53 l
+569.61 95.01 l
+570.10 94.49 l
+570.59 94.75 l
+571.08 94.49 l
+571.57 95.53 l
+572.07 96.31 l
+572.56 95.79 l
+573.05 95.53 l
+573.54 96.57 l
+574.03 97.62 l
+574.52 98.92 l
+575.01 98.14 l
+575.50 98.14 l
+575.99 99.18 l
+576.49 98.40 l
+576.98 98.92 l
+577.47 99.44 l
+577.96 99.44 l
+578.45 99.18 l
+578.94 97.62 l
+579.43 97.36 l
+579.92 96.31 l
+580.41 98.40 l
+580.90 99.44 l
+581.40 99.70 l
+581.89 101.52 l
+582.38 99.70 l
+582.87 98.92 l
+583.36 99.18 l
+583.85 99.44 l
+584.34 98.92 l
+584.83 100.22 l
+585.32 99.70 l
+585.81 98.92 l
+586.31 100.22 l
+586.80 99.70 l
+587.29 99.96 l
+587.78 99.70 l
+588.27 99.70 l
+588.76 101.00 l
+589.25 99.44 l
+589.74 100.22 l
+590.23 100.48 l
+590.73 100.74 l
+591.22 100.48 l
+591.71 100.74 l
+592.20 101.26 l
+592.69 102.30 l
+593.18 101.00 l
+593.67 101.52 l
+594.16 99.96 l
+594.65 100.74 l
+595.14 100.74 l
+595.64 100.74 l
+596.13 101.00 l
+596.62 101.00 l
+597.11 100.74 l
+597.60 100.74 l
+598.09 99.18 l
+598.58 100.22 l
+599.07 101.00 l
+599.56 100.74 l
+600.05 101.52 l
+600.55 101.78 l
+601.04 101.26 l
+601.53 102.30 l
+602.02 102.56 l
+602.51 102.82 l
+603.00 101.52 l
+603.49 101.52 l
+603.98 102.04 l
+604.47 102.04 l
+604.97 103.86 l
+605.46 105.42 l
+605.95 104.90 l
+606.44 105.16 l
+606.93 104.64 l
+607.42 105.16 l
+607.91 106.20 l
+608.40 107.51 l
+608.89 105.94 l
+609.38 106.20 l
+609.88 106.47 l
+610.37 105.42 l
+610.86 106.47 l
+611.35 106.73 l
+611.84 104.90 l
+612.33 105.94 l
+612.82 106.20 l
+613.31 106.47 l
+613.80 107.77 l
+614.30 107.51 l
+614.79 108.55 l
+615.28 108.81 l
+615.77 109.33 l
+616.26 107.77 l
+616.75 109.85 l
+617.24 109.59 l
+617.73 107.25 l
+618.22 108.29 l
+618.71 106.20 l
+619.21 106.99 l
+619.70 107.25 l
+620.19 105.94 l
+620.68 106.73 l
+621.17 105.94 l
+621.66 104.38 l
+622.15 105.68 l
+622.64 106.73 l
+623.13 106.73 l
+623.62 106.73 l
+624.12 106.73 l
+624.61 106.99 l
+625.10 107.51 l
+625.59 107.51 l
+626.08 107.25 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.60 w
+[] 0 d
+1 J
+1 j
+10.00 M
+238.65 59.04 m 597.60 59.04 l S
+238.65 59.04 m 238.65 51.84 l S
+417.88 59.04 m 417.88 51.84 l S
+597.60 59.04 m 597.60 51.84 l S
+88.39 59.04 m 612.82 59.04 l S
+88.39 59.04 m 88.39 57.60 l S
+103.61 59.04 m 103.61 57.60 l S
+118.35 59.04 m 118.35 57.60 l S
+133.57 59.04 m 133.57 57.60 l S
+148.30 59.04 m 148.30 57.60 l S
+163.52 59.04 m 163.52 57.60 l S
+178.74 59.04 m 178.74 57.60 l S
+193.47 59.04 m 193.47 57.60 l S
+208.70 59.04 m 208.70 57.60 l S
+223.43 59.04 m 223.43 57.60 l S
+238.65 59.04 m 238.65 57.60 l S
+253.87 59.04 m 253.87 57.60 l S
+267.62 59.04 m 267.62 57.60 l S
+282.84 59.04 m 282.84 57.60 l S
+297.57 59.04 m 297.57 57.60 l S
+312.80 59.04 m 312.80 57.60 l S
+327.53 59.04 m 327.53 57.60 l S
+342.75 59.04 m 342.75 57.60 l S
+357.97 59.04 m 357.97 57.60 l S
+372.70 59.04 m 372.70 57.60 l S
+387.93 59.04 m 387.93 57.60 l S
+402.66 59.04 m 402.66 57.60 l S
+417.88 59.04 m 417.88 57.60 l S
+433.10 59.04 m 433.10 57.60 l S
+447.34 59.04 m 447.34 57.60 l S
+462.56 59.04 m 462.56 57.60 l S
+477.30 59.04 m 477.30 57.60 l S
+492.52 59.04 m 492.52 57.60 l S
+507.25 59.04 m 507.25 57.60 l S
+522.47 59.04 m 522.47 57.60 l S
+537.69 59.04 m 537.69 57.60 l S
+552.42 59.04 m 552.42 57.60 l S
+567.65 59.04 m 567.65 57.60 l S
+582.38 59.04 m 582.38 57.60 l S
+597.60 59.04 m 597.60 57.60 l S
+612.82 59.04 m 612.82 57.60 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 7.00 0.00 -0.00 7.00 92.84 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 108.65 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 122.80 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 139.18 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 153.91 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 168.55 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 183.77 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 198.12 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 213.54 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 228.27 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 244.27 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 259.10 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 272.07 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 287.87 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 302.02 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 318.41 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 333.14 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 347.78 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 363.00 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 377.35 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 392.76 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 407.50 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 423.49 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 438.33 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 451.79 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 467.59 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 481.75 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 498.13 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 512.86 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 527.50 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 542.72 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 557.07 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 572.48 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 587.22 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 603.22 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 7.00 0.00 -0.00 7.00 618.05 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 135.45 33.12 Tm (2006) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 314.68 33.12 Tm (2007) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 493.90 33.12 Tm (2008) Tj
+ET
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+78.08 59.04 m
+626.08 59.04 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+56.16 72.11 m 56.16 384.46 l S
+56.16 72.11 m 48.96 72.11 l S
+56.16 124.17 m 48.96 124.17 l S
+56.16 176.22 m 48.96 176.22 l S
+56.16 228.28 m 48.96 228.28 l S
+56.16 280.34 m 48.96 280.34 l S
+56.16 332.40 m 48.96 332.40 l S
+56.16 384.46 m 48.96 384.46 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 35.09 67.80 Tm (0) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 119.86 Tm (200) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 171.92 Tm (400) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 223.97 Tm (600) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 276.03 Tm (800) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 15.07 328.09 Tm (1000) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 15.07 380.15 Tm (1200) Tj
+ET
+Q q 56.16 59.04 591.84 352.80 re W n
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 84.13 176.02 Tm (0.1.0.x) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 219.16 286.65 Tm (0.1.1.x) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 373.84 385.56 Tm (0.1.2.x) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 550.62 281.44 Tm (0.2.0.x) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 550.62 107.05 Tm (0.2.1.x) Tj
+ET
+1.000 0.000 0.000 RG
+1.50 w
+[ 4.50 7.50] 0 d
+1 J
+1 j
+10.00 M
+129.15 59.04 m 129.15 411.84 l S
+1.000 0.647 0.000 RG
+294.14 59.04 m 294.14 411.84 l S
+0.000 0.392 0.000 RG
+514.12 59.04 m 514.12 411.84 l S
+Q
+endstream
+endobj
+7 0 obj
+73460
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+5 0 R
+]
+/Count 1
+/MediaBox [0 0 648 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font <</F2 9 0 R /F3 10 0 R >>
+/ExtGState << >>
+>>
+endobj
+8 0 obj
+<<
+/Type /Encoding
+/BaseEncoding /WinAnsiEncoding
+/Differences [ 45/minus 96/quoteleft
+144/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
+/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space]
+>>
+endobj
+9 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 8 0 R
+>> endobj
+10 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F3
+/BaseFont /Helvetica-Bold
+/Encoding 8 0 R
+>> endobj
+xref
+0 11
+0000000000 65535 f
+0000000021 00000 n
+0000000163 00000 n
+0000073826 00000 n
+0000073909 00000 n
+0000000212 00000 n
+0000000292 00000 n
+0000073805 00000 n
+0000074001 00000 n
+0000074258 00000 n
+0000074354 00000 n
+trailer
+<<
+/Size 11
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+74456
+%%EOF
diff --git a/2009/metrics/relayflags-hotpets.pdf b/2009/metrics/relayflags-hotpets.pdf
new file mode 100755
index 0000000..baa078e
--- /dev/null
+++ b/2009/metrics/relayflags-hotpets.pdf
@@ -0,0 +1,5937 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20090505130648)
+/ModDate (D:20090505130648)
+/Title (R Graphics Output)
+/Producer (R 2.8.1)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+5 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 6 0 R
+/Resources 4 0 R
+>>
+endobj
+6 0 obj
+<<
+/Length 7 0 R
+>>
+stream
+q
+Q q 56.16 59.04 555.84 352.80 re W n
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+76.75 153.66 m
+77.21 153.23 l
+77.67 152.57 l
+78.13 154.32 l
+78.59 155.19 l
+79.05 156.50 l
+79.51 152.14 l
+79.97 160.42 l
+80.44 162.61 l
+80.90 164.79 l
+81.36 164.35 l
+81.82 164.79 l
+82.28 168.06 l
+82.74 168.71 l
+83.20 166.97 l
+83.66 166.31 l
+84.13 168.93 l
+84.59 169.15 l
+85.05 167.84 l
+85.51 171.11 l
+85.97 170.46 l
+86.43 169.80 l
+86.89 170.67 l
+87.35 171.55 l
+87.81 169.15 l
+88.28 169.15 l
+88.74 169.37 l
+89.20 168.49 l
+89.66 167.40 l
+90.12 165.44 l
+90.58 165.22 l
+91.04 165.22 l
+91.50 166.75 l
+91.97 169.15 l
+92.43 165.00 l
+92.89 166.75 l
+93.35 167.62 l
+93.81 166.53 l
+94.27 166.75 l
+94.73 168.27 l
+95.19 171.11 l
+95.65 171.76 l
+96.12 172.20 l
+96.58 172.64 l
+97.04 172.42 l
+97.50 172.20 l
+97.96 170.67 l
+98.42 173.73 l
+98.88 173.94 l
+99.34 174.82 l
+99.81 173.94 l
+100.27 171.11 l
+100.73 176.56 l
+101.19 175.25 l
+101.65 175.91 l
+102.11 175.04 l
+102.57 177.65 l
+103.03 176.34 l
+103.49 175.04 l
+103.96 173.73 l
+104.42 174.38 l
+104.88 175.47 l
+105.34 173.07 l
+105.80 173.51 l
+106.26 173.29 l
+106.72 173.29 l
+107.18 173.51 l
+107.65 174.82 l
+108.11 178.31 l
+108.57 180.70 l
+109.03 182.01 l
+109.49 183.10 l
+109.95 184.63 l
+110.41 180.05 l
+110.87 181.80 l
+111.33 185.28 l
+111.80 185.28 l
+112.26 183.54 l
+112.72 184.19 l
+113.18 184.63 l
+113.64 183.54 l
+114.10 183.54 l
+114.56 186.59 l
+115.02 184.19 l
+115.49 184.63 l
+115.95 181.80 l
+116.41 181.14 l
+116.87 179.83 l
+117.33 180.70 l
+117.79 185.07 l
+118.25 186.37 l
+118.71 184.85 l
+119.17 187.46 l
+119.64 186.59 l
+120.10 185.94 l
+120.56 186.16 l
+121.02 192.70 l
+121.48 190.95 l
+121.94 191.83 l
+122.40 193.13 l
+122.86 190.30 l
+123.32 192.04 l
+123.79 192.70 l
+124.25 192.92 l
+124.71 190.52 l
+125.17 192.04 l
+125.63 196.41 l
+126.09 192.04 l
+126.55 193.57 l
+127.01 194.23 l
+127.48 195.53 l
+127.94 197.06 l
+128.40 196.84 l
+128.86 202.08 l
+129.32 200.33 l
+129.78 200.33 l
+130.24 203.17 l
+130.70 206.00 l
+131.16 206.87 l
+131.63 204.04 l
+132.09 203.17 l
+132.55 202.51 l
+133.01 202.08 l
+133.47 202.73 l
+133.93 205.13 l
+134.39 206.44 l
+134.85 205.56 l
+135.32 205.56 l
+135.78 206.00 l
+136.24 204.91 l
+136.70 204.04 l
+137.16 207.09 l
+137.62 212.32 l
+138.08 214.72 l
+138.54 216.47 l
+139.00 215.38 l
+139.47 215.60 l
+139.93 211.89 l
+140.39 212.54 l
+140.85 210.80 l
+141.31 212.98 l
+141.77 217.56 l
+142.23 215.60 l
+142.69 216.90 l
+143.16 214.72 l
+143.62 216.47 l
+144.08 215.16 l
+144.54 217.56 l
+145.00 216.90 l
+145.46 212.54 l
+145.92 214.94 l
+146.38 216.69 l
+146.84 217.34 l
+147.31 221.92 l
+147.77 222.57 l
+148.23 225.19 l
+148.69 226.94 l
+149.15 227.37 l
+149.61 225.63 l
+150.07 222.14 l
+150.53 218.43 l
+151.00 221.92 l
+151.46 223.23 l
+151.92 218.43 l
+152.38 215.60 l
+152.84 216.90 l
+153.30 222.14 l
+153.76 222.36 l
+154.22 223.45 l
+154.68 223.88 l
+155.15 221.48 l
+155.61 221.48 l
+156.07 223.66 l
+156.53 227.81 l
+156.99 229.12 l
+157.45 228.03 l
+157.91 229.77 l
+158.37 227.81 l
+158.84 225.84 l
+159.30 227.37 l
+159.76 226.94 l
+160.22 227.37 l
+160.68 232.17 l
+161.14 230.21 l
+161.60 231.30 l
+162.06 228.03 l
+162.52 228.90 l
+162.99 229.33 l
+163.45 235.22 l
+163.91 240.24 l
+164.37 241.98 l
+164.83 238.27 l
+165.29 239.58 l
+165.75 240.89 l
+166.21 241.33 l
+166.67 243.51 l
+167.14 244.16 l
+167.60 247.00 l
+168.06 247.00 l
+168.52 249.83 l
+168.98 247.65 l
+169.44 249.40 l
+169.90 252.89 l
+170.36 249.83 l
+170.83 253.32 l
+171.29 246.78 l
+171.75 241.98 l
+172.21 241.76 l
+172.67 244.16 l
+173.13 244.16 l
+173.59 243.07 l
+174.05 241.76 l
+174.51 242.85 l
+174.98 237.84 l
+175.44 236.53 l
+175.90 239.37 l
+176.36 241.76 l
+176.82 243.51 l
+177.28 247.65 l
+177.74 248.09 l
+178.20 243.73 l
+178.67 243.51 l
+179.13 242.64 l
+179.59 244.16 l
+180.05 244.38 l
+180.51 244.16 l
+180.97 244.16 l
+181.43 245.91 l
+181.89 250.27 l
+182.35 247.43 l
+182.82 249.18 l
+183.28 251.36 l
+183.74 252.23 l
+184.20 252.01 l
+184.66 252.01 l
+185.12 255.72 l
+185.58 255.07 l
+186.04 256.37 l
+186.51 254.41 l
+186.97 252.01 l
+187.43 253.54 l
+187.89 256.16 l
+188.35 256.37 l
+188.81 256.16 l
+189.27 257.46 l
+189.73 256.59 l
+190.19 255.07 l
+190.66 253.76 l
+191.12 252.67 l
+191.58 255.28 l
+192.04 255.94 l
+192.50 250.92 l
+192.96 251.80 l
+193.42 248.52 l
+193.88 249.40 l
+194.35 250.49 l
+194.81 245.69 l
+195.27 248.31 l
+195.73 249.61 l
+196.19 245.91 l
+196.65 238.06 l
+197.11 239.58 l
+197.57 240.02 l
+198.03 241.76 l
+198.50 239.15 l
+198.96 237.62 l
+199.42 243.07 l
+199.88 241.33 l
+200.34 241.98 l
+200.80 242.85 l
+201.26 242.64 l
+201.72 245.04 l
+202.19 244.16 l
+202.65 246.13 l
+203.11 246.56 l
+203.57 243.73 l
+204.03 243.51 l
+204.49 245.47 l
+204.95 243.73 l
+205.41 242.85 l
+205.87 243.51 l
+206.34 236.53 l
+206.80 235.44 l
+207.26 234.79 l
+207.72 234.35 l
+208.18 233.04 l
+208.64 233.91 l
+209.10 234.35 l
+209.56 236.09 l
+210.03 235.44 l
+210.49 233.70 l
+210.95 234.57 l
+211.41 233.91 l
+211.87 236.75 l
+212.33 233.26 l
+212.79 229.55 l
+213.25 232.61 l
+213.71 238.71 l
+214.18 238.49 l
+214.64 241.55 l
+215.10 239.37 l
+215.56 233.04 l
+216.02 231.51 l
+216.48 231.95 l
+216.94 233.70 l
+217.40 236.31 l
+217.86 235.44 l
+218.33 234.57 l
+218.79 237.40 l
+219.25 234.57 l
+219.71 235.00 l
+220.17 234.57 l
+220.63 238.06 l
+221.09 239.15 l
+221.55 236.75 l
+222.02 238.27 l
+222.48 236.31 l
+222.94 235.66 l
+223.40 237.40 l
+223.86 233.70 l
+224.32 233.91 l
+224.78 236.31 l
+225.24 235.44 l
+225.70 239.80 l
+226.17 245.91 l
+226.63 244.82 l
+227.09 244.38 l
+227.55 241.98 l
+228.01 246.56 l
+228.47 247.00 l
+228.93 250.27 l
+229.39 250.92 l
+229.86 253.10 l
+230.32 255.50 l
+230.78 248.74 l
+231.24 249.61 l
+231.70 248.96 l
+232.16 256.37 l
+232.62 257.46 l
+233.08 254.63 l
+233.54 259.43 l
+234.01 259.65 l
+234.47 261.39 l
+234.93 265.97 l
+235.39 266.19 l
+235.85 265.10 l
+236.31 265.10 l
+236.77 265.75 l
+237.23 265.10 l
+237.70 264.23 l
+238.16 263.13 l
+238.62 260.95 l
+239.08 262.70 l
+239.54 260.08 l
+240.00 256.37 l
+240.46 257.68 l
+240.92 258.77 l
+241.38 258.56 l
+241.85 255.72 l
+242.31 256.81 l
+242.77 254.63 l
+243.23 258.99 l
+243.69 257.90 l
+244.15 252.45 l
+244.61 262.92 l
+245.07 260.30 l
+245.54 265.75 l
+246.00 271.20 l
+246.46 273.60 l
+246.92 273.38 l
+247.38 274.26 l
+247.84 277.31 l
+248.30 274.69 l
+248.76 277.09 l
+249.22 272.73 l
+249.69 273.38 l
+250.15 274.47 l
+250.61 274.47 l
+251.07 268.15 l
+251.53 268.37 l
+251.99 265.10 l
+252.45 262.92 l
+252.91 265.10 l
+253.38 266.19 l
+253.84 265.10 l
+254.30 265.75 l
+254.76 266.84 l
+255.22 264.88 l
+255.68 270.33 l
+256.14 275.13 l
+256.60 270.33 l
+257.06 268.37 l
+257.53 270.33 l
+257.99 264.44 l
+258.45 265.97 l
+258.91 267.28 l
+259.37 263.57 l
+259.83 260.08 l
+260.29 262.26 l
+260.75 267.50 l
+261.22 266.62 l
+261.68 266.19 l
+262.14 267.93 l
+262.60 269.46 l
+263.06 264.66 l
+263.52 266.62 l
+263.98 263.57 l
+264.44 262.04 l
+264.90 263.57 l
+265.37 262.92 l
+265.83 269.68 l
+266.29 268.59 l
+266.75 269.46 l
+267.21 265.32 l
+267.67 266.84 l
+268.13 265.97 l
+268.59 266.41 l
+269.05 264.44 l
+269.52 261.83 l
+269.98 265.10 l
+270.44 265.97 l
+270.90 270.11 l
+271.36 269.02 l
+271.82 270.77 l
+272.28 271.86 l
+272.74 272.73 l
+273.21 268.80 l
+273.67 271.20 l
+274.13 273.60 l
+274.59 270.99 l
+275.05 268.37 l
+275.51 271.20 l
+275.97 270.99 l
+276.43 270.99 l
+276.89 271.42 l
+277.36 276.22 l
+277.82 277.75 l
+278.28 281.89 l
+278.74 279.93 l
+279.20 276.00 l
+279.66 276.22 l
+280.12 275.78 l
+280.58 280.14 l
+281.05 276.65 l
+281.51 276.65 l
+281.97 281.89 l
+282.43 278.84 l
+282.89 277.53 l
+283.35 276.65 l
+283.81 271.20 l
+284.27 272.95 l
+284.73 271.64 l
+285.20 271.64 l
+285.66 276.87 l
+286.12 275.13 l
+286.58 276.65 l
+287.04 279.71 l
+287.50 279.49 l
+287.96 270.33 l
+288.42 279.93 l
+288.89 281.45 l
+289.35 282.32 l
+289.81 282.32 l
+290.27 280.58 l
+290.73 285.81 l
+291.19 283.85 l
+291.65 287.12 l
+292.11 285.16 l
+292.57 287.78 l
+293.04 286.47 l
+293.50 285.38 l
+293.96 280.80 l
+294.42 277.96 l
+294.88 279.27 l
+295.34 281.23 l
+295.80 282.32 l
+296.26 280.58 l
+296.73 280.14 l
+297.19 283.20 l
+297.65 284.07 l
+298.11 288.87 l
+298.57 287.56 l
+299.03 287.12 l
+299.49 284.94 l
+299.95 285.60 l
+300.41 281.89 l
+300.88 282.54 l
+301.34 280.58 l
+301.80 281.23 l
+302.26 281.89 l
+302.72 277.75 l
+303.18 281.67 l
+303.64 280.58 l
+304.10 295.63 l
+304.57 282.76 l
+305.03 281.89 l
+305.49 284.94 l
+305.95 288.87 l
+306.41 283.42 l
+306.87 277.75 l
+307.33 281.02 l
+307.79 279.49 l
+308.25 282.32 l
+308.72 283.63 l
+309.18 294.10 l
+309.64 289.96 l
+310.10 280.58 l
+310.56 281.89 l
+311.02 282.54 l
+311.48 274.04 l
+311.94 280.58 l
+312.40 279.71 l
+312.87 282.76 l
+313.33 282.98 l
+313.79 278.40 l
+314.25 281.02 l
+314.71 279.49 l
+315.17 279.05 l
+315.63 282.54 l
+316.09 280.36 l
+316.56 279.27 l
+317.02 279.27 l
+317.48 280.36 l
+317.94 277.96 l
+318.40 283.85 l
+318.86 287.34 l
+319.32 287.34 l
+319.78 286.90 l
+320.24 282.98 l
+320.71 286.69 l
+321.17 284.07 l
+321.63 285.16 l
+322.09 286.03 l
+322.55 281.67 l
+323.01 280.58 l
+323.47 279.49 l
+323.93 282.32 l
+324.40 282.32 l
+324.86 282.54 l
+325.32 288.65 l
+325.78 288.43 l
+326.24 287.78 l
+326.70 290.39 l
+327.16 290.61 l
+327.62 291.48 l
+328.08 293.23 l
+328.55 298.03 l
+329.01 293.45 l
+329.47 294.10 l
+329.93 298.24 l
+330.39 300.64 l
+330.85 303.91 l
+331.31 300.42 l
+331.77 300.21 l
+332.24 300.21 l
+332.70 298.46 l
+333.16 300.86 l
+333.62 301.95 l
+334.08 301.30 l
+334.54 302.17 l
+335.00 301.08 l
+335.46 301.73 l
+335.92 303.91 l
+336.39 306.31 l
+336.85 310.24 l
+337.31 305.00 l
+337.77 302.82 l
+338.23 306.31 l
+338.69 302.61 l
+339.15 308.27 l
+339.61 311.76 l
+340.08 322.45 l
+340.54 320.49 l
+341.00 323.10 l
+341.46 322.89 l
+341.92 321.14 l
+342.38 318.96 l
+342.84 311.55 l
+343.30 312.20 l
+343.76 311.76 l
+344.23 318.96 l
+344.69 323.32 l
+345.15 327.25 l
+345.61 324.63 l
+346.07 326.81 l
+346.53 327.25 l
+346.99 328.12 l
+347.45 328.77 l
+347.92 330.08 l
+348.38 327.90 l
+348.84 329.65 l
+349.30 335.32 l
+349.76 340.55 l
+350.22 333.79 l
+350.68 332.48 l
+351.14 334.44 l
+351.60 323.76 l
+352.07 334.66 l
+352.53 333.79 l
+352.99 332.92 l
+353.45 333.35 l
+353.91 332.26 l
+354.37 340.11 l
+354.83 339.89 l
+355.29 336.19 l
+355.76 339.46 l
+356.22 341.86 l
+356.68 338.59 l
+357.14 341.42 l
+357.60 340.11 l
+358.06 335.10 l
+358.52 331.17 l
+358.98 343.17 l
+359.44 344.91 l
+359.91 338.15 l
+360.37 339.02 l
+360.83 338.37 l
+361.29 336.19 l
+361.75 331.61 l
+362.21 339.89 l
+362.67 340.55 l
+363.13 336.19 l
+363.59 337.50 l
+364.06 340.55 l
+364.52 340.11 l
+364.98 345.13 l
+365.44 346.87 l
+365.90 350.14 l
+366.36 343.17 l
+366.82 351.45 l
+367.28 345.78 l
+367.75 350.58 l
+368.21 349.71 l
+368.67 347.31 l
+369.13 353.20 l
+369.59 349.27 l
+370.05 349.49 l
+370.51 352.11 l
+370.97 257.03 l
+371.43 276.44 l
+371.90 259.86 l
+372.36 257.68 l
+372.82 294.75 l
+373.28 347.09 l
+373.74 350.14 l
+374.20 353.63 l
+374.66 362.36 l
+375.12 367.37 l
+375.59 366.28 l
+376.05 366.28 l
+376.51 367.37 l
+376.97 363.23 l
+377.43 368.90 l
+377.89 369.12 l
+378.35 373.48 l
+378.81 375.22 l
+379.27 365.41 l
+379.74 369.33 l
+380.20 367.81 l
+380.66 368.68 l
+381.12 367.15 l
+381.58 369.99 l
+382.04 367.81 l
+382.50 364.10 l
+382.96 363.23 l
+383.43 359.52 l
+383.89 360.61 l
+384.35 361.92 l
+384.81 365.41 l
+385.27 370.86 l
+385.73 364.32 l
+386.19 359.96 l
+386.65 361.27 l
+387.11 360.83 l
+387.58 361.92 l
+388.04 366.94 l
+388.50 369.33 l
+388.96 362.79 l
+389.42 361.70 l
+389.88 360.61 l
+390.34 358.87 l
+390.80 356.69 l
+391.27 356.25 l
+391.73 357.56 l
+392.19 352.11 l
+392.65 351.67 l
+393.11 350.14 l
+393.57 353.42 l
+394.03 353.85 l
+394.49 354.07 l
+394.95 364.97 l
+395.42 365.19 l
+395.88 369.99 l
+396.34 370.86 l
+396.80 373.04 l
+397.26 372.17 l
+397.72 383.73 l
+398.18 385.47 l
+398.64 379.80 l
+399.11 382.64 l
+399.57 383.73 l
+400.03 389.61 l
+400.49 389.61 l
+400.95 393.98 l
+401.41 398.34 l
+401.87 386.34 l
+402.33 388.31 l
+402.79 387.87 l
+403.26 387.65 l
+403.72 385.91 l
+404.18 397.25 l
+404.64 398.77 l
+405.10 393.76 l
+405.56 390.05 l
+406.02 382.42 l
+406.48 380.46 l
+406.94 380.02 l
+407.41 388.52 l
+407.87 385.04 l
+408.33 378.49 l
+408.79 380.24 l
+409.25 379.37 l
+409.71 384.60 l
+410.17 385.69 l
+410.63 394.63 l
+411.10 392.89 l
+411.56 386.13 l
+412.02 384.16 l
+412.48 380.46 l
+412.94 382.20 l
+413.40 380.24 l
+413.86 384.38 l
+414.32 388.31 l
+414.78 383.51 l
+415.25 379.80 l
+415.71 384.38 l
+416.17 384.82 l
+416.63 388.52 l
+417.09 391.80 l
+417.55 390.92 l
+418.01 385.04 l
+418.47 383.73 l
+418.94 385.04 l
+419.40 380.67 l
+419.86 383.07 l
+420.32 384.60 l
+420.78 385.25 l
+421.24 381.11 l
+421.70 379.80 l
+422.16 382.85 l
+422.62 377.18 l
+423.09 375.44 l
+423.55 385.91 l
+424.01 389.18 l
+424.47 377.18 l
+424.93 380.67 l
+425.39 383.94 l
+425.85 377.18 l
+426.31 376.09 l
+426.78 380.46 l
+427.24 375.22 l
+427.70 375.22 l
+428.16 375.22 l
+428.62 376.53 l
+429.08 374.57 l
+429.54 375.22 l
+430.00 381.76 l
+430.46 378.93 l
+430.93 380.24 l
+431.39 379.37 l
+431.85 373.04 l
+432.31 372.82 l
+432.77 376.09 l
+433.23 377.84 l
+433.69 375.44 l
+434.15 381.55 l
+434.62 383.29 l
+435.08 378.06 l
+435.54 373.48 l
+436.00 366.50 l
+436.46 371.95 l
+436.92 376.09 l
+437.38 366.94 l
+437.84 364.75 l
+438.30 364.10 l
+438.77 366.06 l
+439.23 371.73 l
+439.69 367.37 l
+440.15 374.13 l
+440.61 370.21 l
+441.07 365.41 l
+441.53 370.86 l
+441.99 365.19 l
+442.46 363.88 l
+442.92 368.03 l
+443.38 370.42 l
+443.84 362.79 l
+444.30 362.79 l
+444.76 365.63 l
+445.22 368.68 l
+445.68 365.63 l
+446.14 368.46 l
+446.61 369.77 l
+447.07 369.77 l
+447.53 373.04 l
+447.99 373.70 l
+448.45 362.57 l
+448.91 366.50 l
+449.37 366.72 l
+449.83 366.50 l
+450.30 362.79 l
+450.76 361.48 l
+451.22 361.48 l
+451.68 366.94 l
+452.14 363.66 l
+452.60 366.06 l
+453.06 370.21 l
+453.52 366.94 l
+453.98 369.99 l
+454.45 364.32 l
+454.91 368.24 l
+455.37 363.01 l
+455.83 360.18 l
+456.29 361.70 l
+456.75 362.36 l
+457.21 362.14 l
+457.67 332.70 l
+458.13 332.70 l
+458.60 339.24 l
+459.06 350.14 l
+459.52 349.93 l
+459.98 350.58 l
+460.44 354.51 l
+460.90 354.29 l
+461.36 352.98 l
+461.82 353.85 l
+462.29 354.07 l
+462.75 354.07 l
+463.21 348.84 l
+463.67 340.33 l
+464.13 345.13 l
+464.59 344.47 l
+465.05 343.17 l
+465.51 346.87 l
+465.97 351.67 l
+466.44 348.40 l
+466.90 352.32 l
+467.36 347.09 l
+467.82 354.51 l
+468.28 358.87 l
+468.74 359.96 l
+469.20 363.23 l
+469.66 356.90 l
+470.13 358.87 l
+470.59 357.34 l
+471.05 351.67 l
+471.51 352.32 l
+471.97 353.85 l
+472.43 360.39 l
+472.89 356.25 l
+473.35 357.12 l
+473.81 365.19 l
+474.28 362.57 l
+474.74 359.74 l
+475.20 365.19 l
+475.66 367.81 l
+476.12 360.61 l
+476.58 363.01 l
+477.04 360.18 l
+477.50 362.36 l
+477.97 359.52 l
+478.43 362.79 l
+478.89 362.57 l
+479.35 357.12 l
+479.81 358.87 l
+480.27 360.83 l
+480.73 359.96 l
+481.19 360.83 l
+481.65 363.23 l
+482.12 366.72 l
+482.58 363.01 l
+483.04 365.41 l
+483.50 360.83 l
+483.96 362.57 l
+484.42 359.96 l
+484.88 363.88 l
+485.34 364.97 l
+485.81 358.65 l
+486.27 357.12 l
+486.73 359.52 l
+487.19 359.96 l
+487.65 350.58 l
+488.11 352.11 l
+488.57 354.29 l
+489.03 351.67 l
+489.49 354.51 l
+489.96 342.95 l
+490.42 347.96 l
+490.88 349.27 l
+491.34 351.45 l
+491.80 351.89 l
+492.26 345.13 l
+492.72 346.87 l
+493.18 346.00 l
+493.65 344.47 l
+494.11 345.56 l
+494.57 344.91 l
+495.03 347.75 l
+495.49 346.65 l
+495.95 349.93 l
+496.41 349.49 l
+496.87 349.71 l
+497.33 351.23 l
+497.80 352.76 l
+498.26 353.42 l
+498.72 350.14 l
+499.18 350.14 l
+499.64 348.40 l
+500.10 345.56 l
+500.56 342.51 l
+501.02 339.89 l
+501.49 344.04 l
+501.95 346.22 l
+502.41 342.73 l
+502.87 345.78 l
+503.33 344.26 l
+503.79 346.44 l
+504.25 341.42 l
+504.71 344.91 l
+505.17 340.55 l
+505.64 344.04 l
+506.10 344.04 l
+506.56 344.69 l
+507.02 346.22 l
+507.48 348.62 l
+507.94 351.67 l
+508.40 349.49 l
+508.86 349.05 l
+509.32 347.31 l
+509.79 351.89 l
+510.25 351.89 l
+510.71 346.44 l
+511.17 351.89 l
+511.63 346.65 l
+512.09 352.11 l
+512.55 351.23 l
+513.01 351.67 l
+513.48 351.67 l
+513.94 352.54 l
+514.40 353.42 l
+514.86 349.93 l
+515.32 346.00 l
+515.78 343.60 l
+516.24 345.78 l
+516.70 339.46 l
+517.16 347.09 l
+517.63 347.53 l
+518.09 342.29 l
+518.55 342.73 l
+519.01 341.42 l
+519.47 345.56 l
+519.93 342.95 l
+520.39 343.38 l
+520.85 346.44 l
+521.32 344.04 l
+521.78 340.99 l
+522.24 337.28 l
+522.70 342.51 l
+523.16 342.29 l
+523.62 343.17 l
+524.08 344.69 l
+524.54 334.88 l
+525.00 340.33 l
+525.47 335.53 l
+525.93 333.35 l
+526.39 339.46 l
+526.85 343.17 l
+527.31 339.24 l
+527.77 336.19 l
+528.23 334.88 l
+528.69 333.57 l
+529.16 334.66 l
+529.62 334.88 l
+530.08 337.93 l
+530.54 340.77 l
+531.00 336.19 l
+531.46 335.53 l
+531.92 335.53 l
+532.38 329.65 l
+532.84 327.03 l
+S
+533.77 339.02 m
+534.23 329.43 l
+534.69 325.50 l
+535.15 324.41 l
+535.61 320.92 l
+536.07 323.54 l
+536.53 329.43 l
+537.00 329.65 l
+537.46 328.12 l
+537.92 325.94 l
+538.38 325.07 l
+538.84 327.46 l
+539.30 321.36 l
+539.76 318.74 l
+540.22 323.98 l
+540.68 323.98 l
+541.15 321.58 l
+541.61 315.47 l
+542.07 323.10 l
+542.53 323.54 l
+542.99 334.88 l
+543.45 335.75 l
+543.91 327.03 l
+544.37 327.90 l
+544.84 327.68 l
+545.30 327.03 l
+545.76 322.89 l
+546.22 328.56 l
+546.68 330.30 l
+547.14 328.99 l
+547.60 324.85 l
+548.06 325.50 l
+548.52 324.85 l
+548.99 328.99 l
+549.45 328.56 l
+549.91 331.61 l
+550.37 329.43 l
+550.83 329.86 l
+551.29 329.86 l
+551.75 330.30 l
+552.21 330.52 l
+552.67 336.84 l
+553.14 335.75 l
+553.60 327.46 l
+554.06 326.59 l
+554.52 326.16 l
+554.98 330.95 l
+555.44 324.41 l
+555.90 327.68 l
+556.36 333.13 l
+556.83 326.16 l
+557.29 329.21 l
+557.75 326.16 l
+558.21 323.76 l
+558.67 328.12 l
+559.13 330.08 l
+559.59 330.52 l
+560.05 324.85 l
+560.51 322.89 l
+560.98 316.34 l
+561.44 311.55 l
+561.90 314.82 l
+562.36 319.18 l
+562.82 322.45 l
+563.28 325.94 l
+563.74 324.19 l
+564.20 322.23 l
+564.67 322.23 l
+565.13 326.16 l
+565.59 330.08 l
+566.05 332.70 l
+566.51 326.81 l
+566.97 327.03 l
+567.43 327.90 l
+567.89 320.92 l
+568.35 325.07 l
+568.82 332.26 l
+569.28 327.68 l
+569.74 324.85 l
+570.20 320.92 l
+570.66 321.80 l
+571.12 318.52 l
+571.58 322.01 l
+572.04 328.34 l
+572.51 325.94 l
+572.97 319.18 l
+573.43 321.36 l
+573.89 321.36 l
+574.35 324.41 l
+574.81 330.30 l
+575.27 334.88 l
+575.73 333.57 l
+576.19 327.68 l
+576.66 327.25 l
+577.12 329.43 l
+577.58 325.94 l
+578.04 327.25 l
+578.50 328.56 l
+578.96 329.21 l
+579.42 323.76 l
+579.88 326.81 l
+580.35 323.54 l
+580.81 328.77 l
+581.27 330.08 l
+581.73 331.17 l
+582.19 331.61 l
+582.65 332.04 l
+583.11 333.79 l
+583.57 327.03 l
+584.03 328.34 l
+584.50 334.66 l
+584.96 338.15 l
+585.42 336.19 l
+585.88 334.23 l
+586.34 328.77 l
+586.80 329.65 l
+587.26 328.34 l
+587.72 329.43 l
+588.19 338.37 l
+588.65 339.68 l
+589.11 332.92 l
+589.57 332.04 l
+590.03 331.39 l
+590.49 337.71 l
+590.95 337.71 l
+591.41 337.93 l
+S
+Q q
+BT
+0.000 0.000 0.000 rg
+/F3 1 Tf 14.00 0.00 -0.00 14.00 285.20 416.89 Tm (Relay statuses) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 321.41 4.32 Tm (Date) Tj
+ET
+BT
+/F2 1 Tf 0.00 12.00 -12.00 0.00 10.08 195.61 Tm (Running relays) Tj
+ET
+Q q 56.16 59.04 555.84 352.80 re W n
+0.000 0.392 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+76.75 76.47 m
+77.21 76.25 l
+77.67 76.47 l
+78.13 76.47 l
+78.59 76.69 l
+79.05 76.69 l
+79.51 76.03 l
+79.97 76.03 l
+80.44 76.03 l
+80.90 76.25 l
+81.36 76.69 l
+81.82 76.69 l
+82.28 76.47 l
+82.74 76.47 l
+83.20 76.47 l
+83.66 76.69 l
+84.13 76.69 l
+84.59 76.69 l
+85.05 77.12 l
+85.51 77.12 l
+85.97 77.34 l
+86.43 77.34 l
+86.89 77.56 l
+87.35 77.56 l
+87.81 77.12 l
+88.28 77.34 l
+88.74 77.12 l
+89.20 76.90 l
+89.66 77.12 l
+90.12 76.90 l
+90.58 76.90 l
+91.04 76.69 l
+91.50 76.90 l
+91.97 77.12 l
+92.43 76.69 l
+92.89 77.78 l
+93.35 77.78 l
+93.81 77.78 l
+94.27 77.56 l
+94.73 77.34 l
+95.19 76.90 l
+95.65 77.56 l
+96.12 77.56 l
+96.58 77.34 l
+97.04 77.78 l
+97.50 77.99 l
+97.96 77.12 l
+98.42 77.12 l
+98.88 76.90 l
+99.34 77.34 l
+99.81 77.56 l
+100.27 76.69 l
+100.73 77.78 l
+101.19 77.99 l
+101.65 77.12 l
+102.11 76.90 l
+102.57 77.12 l
+103.03 77.34 l
+103.49 77.56 l
+103.96 77.78 l
+104.42 77.56 l
+104.88 77.34 l
+105.34 77.78 l
+105.80 78.43 l
+106.26 78.21 l
+106.72 78.21 l
+107.18 77.99 l
+107.65 77.99 l
+108.11 78.43 l
+108.57 79.30 l
+109.03 80.18 l
+109.49 79.74 l
+109.95 79.96 l
+110.41 79.74 l
+110.87 79.74 l
+111.33 79.74 l
+111.80 79.96 l
+112.26 79.52 l
+112.72 79.96 l
+113.18 79.74 l
+113.64 79.74 l
+114.10 79.52 l
+114.56 79.30 l
+115.02 78.43 l
+115.49 78.43 l
+115.95 78.43 l
+116.41 78.87 l
+116.87 78.65 l
+117.33 78.65 l
+117.79 79.74 l
+118.25 80.39 l
+118.71 78.65 l
+119.17 79.30 l
+119.64 79.30 l
+120.10 79.30 l
+120.56 79.08 l
+121.02 80.83 l
+121.48 81.27 l
+121.94 81.48 l
+122.40 80.39 l
+122.86 77.99 l
+123.32 80.39 l
+123.79 81.48 l
+124.25 81.05 l
+124.71 80.39 l
+125.17 79.30 l
+125.63 78.87 l
+126.09 77.56 l
+126.55 77.56 l
+127.01 77.78 l
+127.48 77.78 l
+127.94 77.56 l
+128.40 78.43 l
+128.86 80.18 l
+129.32 79.96 l
+129.78 79.96 l
+130.24 80.18 l
+130.70 80.18 l
+131.16 79.30 l
+131.63 78.87 l
+132.09 78.65 l
+132.55 78.43 l
+133.01 78.43 l
+133.47 78.43 l
+133.93 83.01 l
+134.39 131.86 l
+134.85 132.51 l
+135.32 132.73 l
+135.78 125.10 l
+136.24 124.66 l
+136.70 123.35 l
+137.16 125.97 l
+137.62 129.46 l
+138.08 129.46 l
+138.54 131.20 l
+139.00 130.33 l
+139.47 131.64 l
+139.93 130.11 l
+140.39 130.11 l
+140.85 127.50 l
+141.31 129.46 l
+141.77 130.77 l
+142.23 130.77 l
+142.69 131.42 l
+143.16 130.99 l
+143.62 130.99 l
+144.08 130.33 l
+144.54 131.42 l
+145.00 130.11 l
+145.46 128.59 l
+145.92 129.24 l
+146.38 129.89 l
+146.84 132.51 l
+147.31 135.56 l
+147.77 136.65 l
+148.23 137.75 l
+148.69 137.09 l
+149.15 136.87 l
+149.61 134.47 l
+150.07 132.95 l
+150.53 130.77 l
+151.00 131.20 l
+151.46 133.17 l
+151.92 131.42 l
+152.38 131.42 l
+152.84 131.64 l
+153.30 133.60 l
+153.76 132.08 l
+154.22 133.82 l
+154.68 135.56 l
+155.15 134.26 l
+155.61 133.17 l
+156.07 134.26 l
+156.53 136.87 l
+156.99 138.40 l
+157.45 135.35 l
+157.91 133.82 l
+158.37 132.95 l
+158.84 131.86 l
+159.30 130.77 l
+159.76 131.20 l
+160.22 132.08 l
+160.68 135.56 l
+161.14 135.78 l
+161.60 134.47 l
+162.06 131.64 l
+162.52 133.17 l
+162.99 132.29 l
+163.45 134.91 l
+163.91 139.05 l
+164.37 139.05 l
+164.83 136.00 l
+165.29 137.53 l
+165.75 138.40 l
+166.21 136.65 l
+166.67 137.53 l
+167.14 136.65 l
+167.60 138.62 l
+168.06 139.71 l
+168.52 139.49 l
+168.98 138.40 l
+169.44 139.27 l
+169.90 141.02 l
+170.36 140.80 l
+170.83 143.63 l
+171.29 139.05 l
+171.75 136.44 l
+172.21 136.44 l
+172.67 138.18 l
+173.13 136.87 l
+173.59 137.53 l
+174.05 135.78 l
+174.51 135.13 l
+174.98 131.64 l
+175.44 130.55 l
+175.90 132.08 l
+176.36 132.29 l
+176.82 132.95 l
+177.28 135.13 l
+177.74 135.13 l
+178.20 134.04 l
+178.67 135.35 l
+179.13 135.78 l
+179.59 135.78 l
+180.05 135.78 l
+180.51 134.47 l
+180.97 133.38 l
+181.43 134.04 l
+181.89 137.09 l
+182.35 136.44 l
+182.82 138.18 l
+183.28 139.93 l
+183.74 140.58 l
+184.20 139.27 l
+184.66 137.09 l
+185.12 137.96 l
+185.58 136.22 l
+186.04 137.53 l
+186.51 137.53 l
+186.97 137.31 l
+187.43 138.18 l
+187.89 139.27 l
+188.35 140.14 l
+188.81 137.96 l
+189.27 138.62 l
+189.73 138.18 l
+190.19 138.40 l
+190.66 135.78 l
+191.12 135.56 l
+191.58 136.65 l
+192.04 137.75 l
+192.50 135.13 l
+192.96 136.87 l
+193.42 134.26 l
+193.88 134.47 l
+194.35 133.60 l
+194.81 131.20 l
+195.27 133.17 l
+195.73 134.91 l
+196.19 134.26 l
+196.65 129.24 l
+197.11 129.46 l
+197.57 129.02 l
+198.03 127.28 l
+198.50 125.53 l
+198.96 125.32 l
+199.42 127.06 l
+199.88 128.15 l
+200.34 128.37 l
+200.80 126.84 l
+201.26 126.41 l
+201.72 128.15 l
+202.19 127.93 l
+202.65 129.46 l
+203.11 128.37 l
+203.57 126.19 l
+204.03 124.66 l
+204.49 127.93 l
+204.95 127.28 l
+205.41 124.88 l
+205.87 125.97 l
+206.34 123.57 l
+206.80 123.79 l
+207.26 123.35 l
+207.72 122.26 l
+208.18 122.48 l
+208.64 125.53 l
+209.10 124.88 l
+209.56 125.75 l
+210.03 124.88 l
+210.49 124.88 l
+210.95 125.32 l
+211.41 125.75 l
+211.87 126.19 l
+212.33 123.13 l
+212.79 120.95 l
+213.25 122.92 l
+213.71 124.23 l
+214.18 124.01 l
+214.64 125.32 l
+215.10 124.44 l
+215.56 122.92 l
+216.02 120.95 l
+216.48 120.08 l
+216.94 121.39 l
+217.40 123.79 l
+217.86 122.26 l
+218.33 121.83 l
+218.79 123.57 l
+219.25 122.26 l
+219.71 124.01 l
+220.17 125.75 l
+220.63 126.41 l
+221.09 126.19 l
+221.55 124.01 l
+222.02 125.32 l
+222.48 123.79 l
+222.94 125.53 l
+223.40 127.28 l
+223.86 125.97 l
+224.32 125.10 l
+224.78 125.97 l
+225.24 126.62 l
+225.70 129.68 l
+226.17 131.42 l
+226.63 132.08 l
+227.09 130.33 l
+227.55 128.37 l
+228.01 130.33 l
+228.47 130.77 l
+228.93 129.89 l
+229.39 130.33 l
+229.86 132.73 l
+230.32 133.38 l
+230.78 130.77 l
+231.24 128.80 l
+231.70 129.02 l
+232.16 131.86 l
+232.62 133.38 l
+233.08 132.51 l
+233.54 133.82 l
+234.01 131.86 l
+234.47 135.13 l
+234.93 139.93 l
+235.39 139.93 l
+235.85 138.40 l
+236.31 136.87 l
+236.77 136.44 l
+237.23 136.87 l
+237.70 134.47 l
+238.16 132.95 l
+238.62 131.42 l
+239.08 131.64 l
+239.54 130.99 l
+240.00 128.80 l
+240.46 133.38 l
+240.92 131.86 l
+241.38 133.17 l
+241.85 133.38 l
+242.31 133.82 l
+242.77 132.95 l
+243.23 134.04 l
+243.69 133.60 l
+244.15 131.42 l
+244.61 135.13 l
+245.07 132.51 l
+245.54 136.22 l
+246.00 138.18 l
+246.46 140.58 l
+246.92 138.62 l
+247.38 139.71 l
+247.84 142.11 l
+248.30 141.89 l
+248.76 141.67 l
+249.22 139.05 l
+249.69 140.36 l
+250.15 141.02 l
+250.61 140.58 l
+251.07 139.71 l
+251.53 139.71 l
+251.99 138.62 l
+252.45 137.53 l
+252.91 138.62 l
+253.38 138.18 l
+253.84 137.53 l
+254.30 137.09 l
+254.76 139.27 l
+255.22 137.75 l
+255.68 141.23 l
+256.14 142.32 l
+256.60 139.27 l
+257.06 139.05 l
+257.53 138.40 l
+257.99 137.09 l
+258.45 137.09 l
+258.91 136.00 l
+259.37 136.22 l
+259.83 136.22 l
+260.29 135.13 l
+260.75 139.05 l
+261.22 139.27 l
+261.68 139.05 l
+262.14 139.49 l
+262.60 140.58 l
+263.06 136.87 l
+263.52 138.18 l
+263.98 136.00 l
+264.44 133.38 l
+264.90 134.47 l
+265.37 134.26 l
+265.83 137.31 l
+266.29 136.65 l
+266.75 138.62 l
+267.21 135.35 l
+267.67 136.87 l
+268.13 137.96 l
+268.59 139.27 l
+269.05 138.62 l
+269.52 136.87 l
+269.98 137.96 l
+270.44 139.49 l
+270.90 140.14 l
+271.36 141.89 l
+271.82 143.63 l
+272.28 143.20 l
+272.74 145.16 l
+273.21 141.45 l
+273.67 141.89 l
+274.13 142.32 l
+274.59 139.93 l
+275.05 139.27 l
+275.51 140.36 l
+275.97 139.71 l
+276.43 138.84 l
+276.89 139.05 l
+277.36 139.93 l
+277.82 140.14 l
+278.28 145.16 l
+278.74 143.85 l
+279.20 141.45 l
+279.66 141.45 l
+280.12 139.71 l
+280.58 142.32 l
+281.05 139.27 l
+281.51 140.80 l
+281.97 146.25 l
+282.43 143.20 l
+282.89 142.11 l
+283.35 141.23 l
+283.81 138.84 l
+284.27 141.89 l
+284.73 144.07 l
+285.20 143.85 l
+285.66 147.99 l
+286.12 147.34 l
+286.58 148.21 l
+287.04 149.52 l
+287.50 148.65 l
+287.96 147.12 l
+288.42 149.74 l
+288.89 150.83 l
+289.35 150.39 l
+289.81 148.65 l
+290.27 147.99 l
+290.73 151.27 l
+291.19 150.61 l
+291.65 152.79 l
+292.11 151.48 l
+292.57 154.32 l
+293.04 75.16 l
+293.50 72.11 l
+293.96 72.11 l
+294.42 72.11 l
+294.88 72.11 l
+295.34 72.11 l
+295.80 81.48 l
+296.26 149.96 l
+296.73 149.96 l
+297.19 152.57 l
+297.65 153.88 l
+298.11 155.41 l
+298.57 152.79 l
+299.03 152.79 l
+299.49 151.92 l
+299.95 153.01 l
+300.41 150.18 l
+300.88 151.92 l
+301.34 150.18 l
+301.80 150.61 l
+302.26 151.05 l
+302.72 149.96 l
+303.18 151.92 l
+303.64 151.05 l
+304.10 156.50 l
+304.57 155.19 l
+305.03 152.79 l
+305.49 153.66 l
+305.95 151.70 l
+306.41 149.96 l
+306.87 152.36 l
+307.33 154.75 l
+307.79 151.92 l
+308.25 152.57 l
+308.72 150.39 l
+309.18 154.10 l
+309.64 153.88 l
+310.10 152.79 l
+310.56 153.01 l
+311.02 152.57 l
+311.48 148.43 l
+311.94 151.92 l
+312.40 150.83 l
+312.87 154.75 l
+313.33 154.97 l
+313.79 151.48 l
+314.25 152.36 l
+314.71 150.83 l
+315.17 149.96 l
+315.63 150.18 l
+316.09 151.05 l
+316.56 149.52 l
+317.02 148.65 l
+317.48 148.65 l
+317.94 147.34 l
+318.40 147.34 l
+318.86 146.90 l
+319.32 147.99 l
+319.78 150.39 l
+320.24 151.92 l
+320.71 154.32 l
+321.17 152.57 l
+321.63 152.14 l
+322.09 152.36 l
+322.55 151.05 l
+323.01 150.61 l
+323.47 151.48 l
+323.93 153.45 l
+324.40 152.57 l
+324.86 153.23 l
+325.32 159.55 l
+325.78 158.68 l
+326.24 158.46 l
+326.70 159.99 l
+327.16 159.77 l
+327.62 161.08 l
+328.08 161.08 l
+328.55 165.00 l
+329.01 162.61 l
+329.47 161.73 l
+329.93 165.00 l
+330.39 166.53 l
+330.85 168.71 l
+331.31 165.22 l
+331.77 166.53 l
+332.24 167.84 l
+332.70 167.18 l
+333.16 169.15 l
+333.62 169.37 l
+334.08 167.84 l
+334.54 170.02 l
+335.00 169.15 l
+335.46 168.49 l
+335.92 170.46 l
+336.39 171.55 l
+336.85 176.56 l
+337.31 172.42 l
+337.77 172.42 l
+338.23 173.94 l
+338.69 172.20 l
+339.15 176.13 l
+339.61 178.74 l
+340.08 185.50 l
+340.54 181.58 l
+341.00 182.23 l
+341.46 183.54 l
+341.92 183.76 l
+342.38 181.36 l
+342.84 175.25 l
+343.30 174.82 l
+343.76 173.94 l
+344.23 178.96 l
+344.69 183.10 l
+345.15 187.90 l
+345.61 186.16 l
+346.07 186.37 l
+346.53 187.68 l
+346.99 186.16 l
+347.45 187.68 l
+347.92 188.34 l
+348.38 186.37 l
+348.84 187.25 l
+349.30 192.26 l
+349.76 195.75 l
+350.22 188.12 l
+350.68 186.81 l
+351.14 185.94 l
+351.60 181.58 l
+352.07 188.56 l
+352.53 188.77 l
+352.99 190.08 l
+353.45 188.77 l
+353.91 187.03 l
+354.37 193.57 l
+354.83 194.44 l
+355.29 191.39 l
+355.76 196.62 l
+356.22 197.50 l
+356.68 195.75 l
+357.14 197.06 l
+357.60 196.62 l
+358.06 195.53 l
+358.52 192.48 l
+358.98 200.55 l
+359.44 202.29 l
+359.91 194.01 l
+360.37 192.26 l
+360.83 194.66 l
+361.29 194.01 l
+361.75 192.70 l
+362.21 197.93 l
+362.67 198.37 l
+363.13 194.44 l
+363.59 196.84 l
+364.06 198.80 l
+364.52 198.37 l
+364.98 200.77 l
+365.44 202.29 l
+365.90 206.22 l
+366.36 199.89 l
+366.82 203.38 l
+367.28 197.50 l
+367.75 200.55 l
+368.21 201.20 l
+368.67 200.33 l
+369.13 206.87 l
+369.59 202.51 l
+370.05 204.91 l
+370.51 204.26 l
+370.97 161.73 l
+371.43 167.40 l
+371.90 162.39 l
+372.36 163.91 l
+372.82 174.60 l
+373.28 198.15 l
+373.74 199.89 l
+374.20 201.20 l
+374.66 207.96 l
+375.12 212.54 l
+375.59 211.23 l
+376.05 209.49 l
+376.51 209.93 l
+376.97 209.27 l
+377.43 211.89 l
+377.89 213.63 l
+378.35 217.78 l
+378.81 216.47 l
+379.27 209.05 l
+379.74 210.58 l
+380.20 209.27 l
+380.66 210.14 l
+381.12 209.27 l
+381.58 209.05 l
+382.04 206.22 l
+382.50 202.29 l
+382.96 201.42 l
+383.43 199.46 l
+383.89 203.38 l
+384.35 205.13 l
+384.81 209.27 l
+385.27 210.80 l
+385.73 202.73 l
+386.19 199.89 l
+386.65 202.51 l
+387.11 206.00 l
+387.58 206.87 l
+388.04 211.89 l
+388.50 212.98 l
+388.96 207.96 l
+389.42 204.91 l
+389.88 205.13 l
+390.34 204.91 l
+390.80 201.64 l
+391.27 202.95 l
+391.73 204.04 l
+392.19 200.77 l
+392.65 198.59 l
+393.11 198.59 l
+393.57 201.64 l
+394.03 203.38 l
+394.49 204.91 l
+394.95 211.02 l
+395.42 208.62 l
+395.88 211.89 l
+396.34 214.07 l
+396.80 216.90 l
+397.26 216.90 l
+397.72 224.97 l
+398.18 225.84 l
+398.64 218.87 l
+399.11 217.99 l
+399.57 219.52 l
+400.03 225.19 l
+400.49 222.14 l
+400.95 224.97 l
+401.41 227.81 l
+401.87 217.34 l
+402.33 218.43 l
+402.79 219.52 l
+403.26 217.78 l
+403.72 215.81 l
+404.18 225.41 l
+404.64 225.63 l
+405.10 221.05 l
+405.56 219.08 l
+406.02 214.94 l
+406.48 212.98 l
+406.94 211.45 l
+407.41 215.60 l
+407.87 216.47 l
+408.33 212.54 l
+408.79 211.23 l
+409.25 209.49 l
+409.71 214.51 l
+410.17 214.51 l
+410.63 219.52 l
+411.10 219.52 l
+411.56 213.85 l
+412.02 215.16 l
+412.48 210.80 l
+412.94 212.11 l
+413.40 209.93 l
+413.86 211.02 l
+414.32 215.16 l
+414.78 214.29 l
+415.25 211.45 l
+415.71 217.12 l
+416.17 217.12 l
+416.63 219.74 l
+417.09 218.43 l
+417.55 214.51 l
+418.01 212.32 l
+418.47 212.11 l
+418.94 214.94 l
+419.40 212.54 l
+419.86 216.03 l
+420.32 218.65 l
+420.78 217.12 l
+421.24 214.72 l
+421.70 214.29 l
+422.16 216.03 l
+422.62 212.32 l
+423.09 209.05 l
+423.55 218.21 l
+424.01 221.92 l
+424.47 213.63 l
+424.93 215.81 l
+425.39 216.25 l
+425.85 211.45 l
+426.31 212.98 l
+426.78 215.16 l
+427.24 211.67 l
+427.70 213.85 l
+428.16 214.51 l
+428.62 212.54 l
+429.08 210.58 l
+429.54 210.58 l
+430.00 216.69 l
+430.46 215.38 l
+430.93 216.25 l
+431.39 213.63 l
+431.85 210.58 l
+432.31 211.67 l
+432.77 214.94 l
+433.23 215.38 l
+433.69 211.23 l
+434.15 213.85 l
+434.62 214.72 l
+435.08 211.45 l
+435.54 209.05 l
+436.00 205.35 l
+436.46 211.23 l
+436.92 215.16 l
+437.38 208.62 l
+437.84 207.31 l
+438.30 206.22 l
+438.77 208.84 l
+439.23 213.42 l
+439.69 210.14 l
+440.15 214.07 l
+440.61 211.23 l
+441.07 206.87 l
+441.53 210.58 l
+441.99 208.40 l
+442.46 207.75 l
+442.92 209.49 l
+443.38 210.58 l
+443.84 204.04 l
+444.30 203.60 l
+444.76 202.95 l
+445.22 206.44 l
+445.68 205.35 l
+446.14 207.75 l
+446.61 208.62 l
+447.07 207.09 l
+447.53 208.18 l
+447.99 209.05 l
+448.45 203.17 l
+448.91 205.78 l
+449.37 203.38 l
+449.83 204.47 l
+450.30 201.42 l
+450.76 200.77 l
+451.22 202.08 l
+451.68 207.09 l
+452.14 203.17 l
+452.60 203.38 l
+453.06 209.49 l
+453.52 208.18 l
+453.98 208.18 l
+454.45 202.73 l
+454.91 207.09 l
+455.37 201.86 l
+455.83 199.24 l
+456.29 200.99 l
+456.75 201.64 l
+457.21 199.68 l
+457.67 188.56 l
+458.13 187.46 l
+458.60 190.30 l
+459.06 197.50 l
+459.52 200.33 l
+459.98 196.62 l
+460.44 198.80 l
+460.90 197.93 l
+461.36 194.88 l
+461.82 195.53 l
+462.29 197.06 l
+462.75 196.84 l
+463.21 193.35 l
+463.67 187.46 l
+464.13 191.39 l
+464.59 189.65 l
+465.05 189.65 l
+465.51 193.35 l
+465.97 195.53 l
+466.44 192.92 l
+466.90 197.50 l
+467.36 194.44 l
+467.82 197.71 l
+468.28 201.42 l
+468.74 202.29 l
+469.20 203.60 l
+469.66 200.55 l
+470.13 202.95 l
+470.59 200.99 l
+471.05 196.84 l
+471.51 200.77 l
+471.97 201.42 l
+472.43 207.53 l
+472.89 201.86 l
+473.35 201.42 l
+473.81 209.27 l
+474.28 206.22 l
+474.74 206.00 l
+475.20 208.40 l
+475.66 209.71 l
+476.12 206.44 l
+476.58 208.62 l
+477.04 207.96 l
+477.50 209.05 l
+477.97 205.78 l
+478.43 208.40 l
+478.89 206.87 l
+479.35 204.91 l
+479.81 204.26 l
+480.27 204.69 l
+480.73 206.65 l
+481.19 207.53 l
+481.65 208.84 l
+482.12 210.80 l
+482.58 207.96 l
+483.04 209.27 l
+483.50 204.91 l
+483.96 206.44 l
+484.42 208.40 l
+484.88 209.71 l
+485.34 210.80 l
+485.81 204.04 l
+486.27 204.26 l
+486.73 206.87 l
+487.19 206.22 l
+487.65 200.11 l
+488.11 201.42 l
+488.57 204.91 l
+489.03 202.73 l
+489.49 207.09 l
+489.96 195.97 l
+490.42 198.59 l
+490.88 199.68 l
+491.34 200.11 l
+491.80 202.29 l
+492.26 196.19 l
+492.72 197.28 l
+493.18 197.50 l
+493.65 195.32 l
+494.11 196.19 l
+494.57 197.06 l
+495.03 200.33 l
+495.49 198.80 l
+495.95 198.59 l
+496.41 198.37 l
+496.87 198.80 l
+497.33 200.55 l
+497.80 202.29 l
+498.26 201.42 l
+498.72 199.68 l
+499.18 199.46 l
+499.64 198.80 l
+500.10 197.06 l
+500.56 194.44 l
+501.02 192.26 l
+501.49 195.10 l
+501.95 195.10 l
+502.41 191.83 l
+502.87 194.44 l
+503.33 193.57 l
+503.79 194.88 l
+504.25 195.10 l
+504.71 197.06 l
+505.17 192.48 l
+505.64 196.41 l
+506.10 197.28 l
+506.56 196.41 l
+507.02 197.93 l
+507.48 201.64 l
+507.94 205.78 l
+508.40 200.11 l
+508.86 199.24 l
+509.32 198.59 l
+509.79 201.20 l
+510.25 201.86 l
+510.71 199.24 l
+511.17 203.82 l
+511.63 199.46 l
+512.09 201.86 l
+512.55 200.55 l
+513.01 200.55 l
+513.48 202.29 l
+513.94 204.47 l
+514.40 202.95 l
+514.86 200.33 l
+515.32 196.41 l
+515.78 194.23 l
+516.24 194.88 l
+516.70 192.48 l
+517.16 198.15 l
+517.63 199.24 l
+518.09 195.53 l
+518.55 195.97 l
+519.01 193.79 l
+519.47 197.06 l
+519.93 196.41 l
+520.39 197.71 l
+520.85 197.93 l
+521.32 196.62 l
+521.78 194.88 l
+522.24 191.17 l
+522.70 196.62 l
+523.16 195.10 l
+523.62 197.93 l
+524.08 197.50 l
+524.54 192.70 l
+525.00 195.32 l
+525.47 191.39 l
+525.93 188.99 l
+526.39 193.35 l
+526.85 196.84 l
+527.31 194.44 l
+527.77 192.92 l
+528.23 193.13 l
+528.69 190.74 l
+529.16 192.70 l
+529.62 193.79 l
+530.08 197.06 l
+530.54 197.93 l
+531.00 193.79 l
+531.46 192.70 l
+531.92 192.48 l
+532.38 189.65 l
+532.84 188.34 l
+S
+533.77 195.75 m
+534.23 187.46 l
+534.69 186.37 l
+535.15 186.59 l
+535.61 184.41 l
+536.07 186.81 l
+536.53 191.17 l
+537.00 191.83 l
+537.46 190.52 l
+537.92 188.56 l
+538.38 184.85 l
+538.84 184.85 l
+539.30 185.94 l
+539.76 187.03 l
+540.22 189.43 l
+540.68 188.99 l
+541.15 187.68 l
+541.61 184.19 l
+542.07 187.46 l
+542.53 187.03 l
+542.99 192.70 l
+543.45 193.13 l
+543.91 186.81 l
+544.37 187.03 l
+544.84 185.94 l
+545.30 186.59 l
+545.76 184.85 l
+546.22 186.16 l
+546.68 187.68 l
+547.14 187.25 l
+547.60 185.07 l
+548.06 187.46 l
+548.52 189.43 l
+548.99 189.86 l
+549.45 190.74 l
+549.91 191.83 l
+550.37 191.39 l
+550.83 189.43 l
+551.29 189.21 l
+551.75 188.56 l
+552.21 187.68 l
+552.67 191.61 l
+553.14 191.39 l
+553.60 187.25 l
+554.06 186.81 l
+554.52 186.16 l
+554.98 191.39 l
+555.44 188.99 l
+555.90 191.61 l
+556.36 195.75 l
+556.83 189.21 l
+557.29 191.17 l
+557.75 188.34 l
+558.21 187.03 l
+558.67 189.65 l
+559.13 191.17 l
+559.59 190.95 l
+560.05 188.34 l
+560.51 186.81 l
+560.98 183.10 l
+561.44 181.36 l
+561.90 182.89 l
+562.36 187.25 l
+562.82 188.12 l
+563.28 191.61 l
+563.74 188.34 l
+564.20 187.25 l
+564.67 189.86 l
+565.13 191.83 l
+565.59 195.10 l
+566.05 195.10 l
+566.51 193.13 l
+566.97 192.70 l
+567.43 194.44 l
+567.89 188.56 l
+568.35 190.95 l
+568.82 197.50 l
+569.28 193.35 l
+569.74 191.39 l
+570.20 188.99 l
+570.66 189.65 l
+571.12 185.28 l
+571.58 188.34 l
+572.04 192.92 l
+572.51 188.56 l
+572.97 184.63 l
+573.43 184.63 l
+573.89 185.50 l
+574.35 188.77 l
+574.81 191.83 l
+575.27 193.35 l
+575.73 193.35 l
+576.19 188.77 l
+576.66 190.08 l
+577.12 189.21 l
+577.58 186.16 l
+578.04 186.59 l
+578.50 185.50 l
+578.96 187.46 l
+579.42 181.80 l
+579.88 180.70 l
+580.35 178.74 l
+580.81 182.23 l
+581.27 183.10 l
+581.73 185.72 l
+582.19 185.07 l
+582.65 186.16 l
+583.11 185.07 l
+583.57 179.18 l
+584.03 178.74 l
+584.50 184.63 l
+584.96 187.68 l
+585.42 185.94 l
+585.88 184.41 l
+586.34 181.80 l
+586.80 183.76 l
+587.26 183.10 l
+587.72 183.76 l
+588.19 189.43 l
+588.65 190.74 l
+589.11 183.54 l
+589.57 182.23 l
+590.03 181.80 l
+590.49 187.03 l
+590.95 188.56 l
+591.41 188.34 l
+S
+1.000 0.000 0.000 RG
+76.75 152.14 m
+77.21 151.92 l
+77.67 150.83 l
+78.13 152.57 l
+78.59 153.23 l
+79.05 154.10 l
+79.51 150.18 l
+79.97 158.24 l
+80.44 160.21 l
+80.90 162.17 l
+81.36 161.51 l
+81.82 161.30 l
+82.28 165.22 l
+82.74 165.66 l
+83.20 164.79 l
+83.66 163.91 l
+84.13 166.53 l
+84.59 166.97 l
+85.05 165.22 l
+85.51 168.27 l
+85.97 167.84 l
+86.43 166.97 l
+86.89 167.62 l
+87.35 168.71 l
+87.81 166.53 l
+88.28 166.31 l
+88.74 166.31 l
+89.20 165.22 l
+89.66 164.13 l
+90.12 161.95 l
+90.58 161.95 l
+91.04 162.61 l
+91.50 163.26 l
+91.97 165.88 l
+92.43 162.17 l
+92.89 163.91 l
+93.35 164.79 l
+93.81 163.48 l
+94.27 163.91 l
+94.73 165.00 l
+95.19 168.71 l
+95.65 168.71 l
+96.12 169.15 l
+96.58 169.37 l
+97.04 169.15 l
+97.50 168.93 l
+97.96 168.06 l
+98.42 170.89 l
+98.88 166.53 l
+99.34 161.51 l
+99.81 160.86 l
+100.27 158.46 l
+100.73 163.04 l
+101.19 161.95 l
+101.65 162.17 l
+102.11 161.30 l
+102.57 163.91 l
+103.03 162.82 l
+103.49 161.73 l
+103.96 160.64 l
+104.42 161.51 l
+104.88 162.39 l
+105.34 160.21 l
+105.80 160.42 l
+106.26 160.21 l
+106.72 160.21 l
+107.18 160.64 l
+107.65 161.73 l
+108.11 164.79 l
+108.57 166.53 l
+109.03 167.84 l
+109.49 168.93 l
+109.95 170.02 l
+110.41 166.53 l
+110.87 167.84 l
+111.33 170.67 l
+111.80 170.67 l
+112.26 169.15 l
+112.72 169.80 l
+113.18 170.46 l
+113.64 169.37 l
+114.10 169.37 l
+114.56 172.20 l
+115.02 169.80 l
+115.49 170.24 l
+115.95 167.84 l
+116.41 167.18 l
+116.87 166.09 l
+117.33 166.97 l
+117.79 170.67 l
+118.25 172.20 l
+118.71 171.33 l
+119.17 173.29 l
+119.64 172.85 l
+120.10 171.98 l
+120.56 172.64 l
+121.02 177.65 l
+121.48 176.13 l
+121.94 176.78 l
+122.40 178.52 l
+122.86 176.34 l
+123.32 177.65 l
+123.79 177.87 l
+124.25 178.09 l
+124.71 176.13 l
+125.17 177.43 l
+125.63 181.36 l
+126.09 177.65 l
+126.55 178.74 l
+127.01 179.40 l
+127.48 180.05 l
+127.94 181.58 l
+128.40 181.58 l
+128.86 186.37 l
+129.32 184.85 l
+129.78 184.41 l
+130.24 187.03 l
+130.70 189.65 l
+131.16 190.30 l
+131.63 188.12 l
+132.09 187.03 l
+132.55 186.59 l
+133.01 186.81 l
+133.47 187.25 l
+133.93 188.77 l
+134.39 190.08 l
+134.85 189.43 l
+135.32 189.43 l
+135.78 191.61 l
+136.24 189.21 l
+136.70 188.99 l
+137.16 193.13 l
+137.62 197.71 l
+138.08 199.24 l
+138.54 200.55 l
+139.00 199.46 l
+139.47 199.89 l
+139.93 196.84 l
+140.39 196.19 l
+140.85 195.53 l
+141.31 196.62 l
+141.77 199.89 l
+142.23 198.37 l
+142.69 199.68 l
+143.16 197.71 l
+143.62 199.02 l
+144.08 198.15 l
+144.54 200.11 l
+145.00 199.68 l
+145.46 195.53 l
+145.92 197.93 l
+146.38 198.80 l
+146.84 199.89 l
+147.31 204.26 l
+147.77 204.69 l
+148.23 206.44 l
+148.69 207.96 l
+149.15 208.62 l
+149.61 207.53 l
+150.07 204.91 l
+150.53 201.42 l
+151.00 203.82 l
+151.46 205.13 l
+151.92 200.99 l
+152.38 199.02 l
+152.84 199.46 l
+153.30 203.82 l
+153.76 204.04 l
+154.22 205.35 l
+154.68 206.00 l
+155.15 202.95 l
+155.61 203.17 l
+156.07 205.56 l
+156.53 208.84 l
+156.99 209.71 l
+157.45 208.84 l
+157.91 210.36 l
+158.37 209.05 l
+158.84 207.09 l
+159.30 208.40 l
+159.76 208.84 l
+160.22 208.84 l
+160.68 213.63 l
+161.14 211.45 l
+161.60 212.54 l
+162.06 209.71 l
+162.52 209.71 l
+162.99 210.36 l
+163.45 215.38 l
+163.91 219.30 l
+164.37 221.05 l
+164.83 218.21 l
+165.29 218.87 l
+165.75 220.18 l
+166.21 220.39 l
+166.67 222.57 l
+167.14 222.79 l
+167.60 225.41 l
+168.06 225.19 l
+168.52 227.81 l
+168.98 225.41 l
+169.44 227.15 l
+169.90 230.21 l
+170.36 227.81 l
+170.83 230.64 l
+171.29 225.63 l
+171.75 221.27 l
+172.21 220.83 l
+172.67 223.23 l
+173.13 223.45 l
+173.59 222.79 l
+174.05 221.48 l
+174.51 221.48 l
+174.98 217.34 l
+175.44 214.94 l
+175.90 218.65 l
+176.36 221.27 l
+176.82 222.79 l
+177.28 226.28 l
+177.74 226.50 l
+178.20 222.57 l
+178.67 222.14 l
+179.13 221.27 l
+179.59 222.79 l
+180.05 222.57 l
+180.51 222.79 l
+180.97 222.79 l
+181.43 224.54 l
+181.89 227.81 l
+182.35 225.63 l
+182.82 226.94 l
+183.28 229.12 l
+183.74 230.42 l
+184.20 229.77 l
+184.66 229.55 l
+185.12 232.82 l
+185.58 232.39 l
+186.04 233.70 l
+186.51 231.95 l
+186.97 229.99 l
+187.43 231.51 l
+187.89 233.48 l
+188.35 233.48 l
+188.81 233.04 l
+189.27 234.57 l
+189.73 233.91 l
+190.19 232.61 l
+190.66 231.08 l
+191.12 230.42 l
+191.58 232.82 l
+192.04 232.82 l
+192.50 228.24 l
+192.96 229.12 l
+193.42 226.50 l
+193.88 227.37 l
+194.35 228.46 l
+194.81 223.88 l
+195.27 226.28 l
+195.73 227.37 l
+196.19 224.75 l
+196.65 218.43 l
+197.11 219.08 l
+197.57 219.52 l
+198.03 220.83 l
+198.50 218.21 l
+198.96 216.90 l
+199.42 221.70 l
+199.88 220.83 l
+200.34 221.48 l
+200.80 221.92 l
+201.26 222.57 l
+201.72 223.88 l
+202.19 222.57 l
+202.65 224.32 l
+203.11 224.97 l
+203.57 222.57 l
+204.03 222.57 l
+204.49 224.10 l
+204.95 222.36 l
+205.41 221.70 l
+205.87 222.57 l
+206.34 216.03 l
+206.80 215.38 l
+207.26 214.94 l
+207.72 214.29 l
+208.18 213.20 l
+208.64 213.85 l
+209.10 214.51 l
+209.56 215.60 l
+210.03 215.81 l
+210.49 213.20 l
+210.95 213.85 l
+211.41 213.63 l
+211.87 216.47 l
+212.33 213.42 l
+212.79 209.93 l
+213.25 212.98 l
+213.71 217.99 l
+214.18 218.21 l
+214.64 220.61 l
+215.10 218.87 l
+215.56 213.42 l
+216.02 211.67 l
+216.48 212.32 l
+216.94 213.85 l
+217.40 215.81 l
+217.86 215.16 l
+218.33 214.51 l
+218.79 216.90 l
+219.25 214.51 l
+219.71 214.94 l
+220.17 214.07 l
+220.63 217.34 l
+221.09 219.08 l
+221.55 216.47 l
+222.02 217.34 l
+222.48 215.81 l
+222.94 216.03 l
+223.40 216.69 l
+223.86 213.63 l
+224.32 214.07 l
+224.78 216.25 l
+225.24 215.81 l
+225.70 219.30 l
+226.17 224.10 l
+226.63 224.32 l
+227.09 222.79 l
+227.55 222.36 l
+228.01 225.41 l
+228.47 225.41 l
+228.93 228.46 l
+229.39 228.90 l
+229.86 230.64 l
+230.32 233.04 l
+230.78 226.94 l
+231.24 227.59 l
+231.70 227.37 l
+232.16 233.48 l
+232.62 234.13 l
+233.08 231.51 l
+233.54 236.09 l
+234.01 236.31 l
+234.47 237.84 l
+234.93 241.76 l
+235.39 242.20 l
+235.85 241.11 l
+236.31 241.11 l
+236.77 241.76 l
+237.23 241.11 l
+237.70 240.46 l
+238.16 239.58 l
+238.62 237.62 l
+239.08 239.15 l
+239.54 236.75 l
+240.00 233.26 l
+240.46 234.79 l
+240.92 235.88 l
+241.38 235.44 l
+241.85 233.04 l
+242.31 234.13 l
+242.77 232.39 l
+243.23 236.09 l
+243.69 235.88 l
+244.15 230.86 l
+244.61 239.80 l
+245.07 237.62 l
+245.54 241.98 l
+246.00 246.56 l
+246.46 248.52 l
+246.92 248.74 l
+247.38 249.61 l
+247.84 252.23 l
+248.30 250.27 l
+248.76 251.80 l
+249.22 247.87 l
+249.69 248.52 l
+250.15 250.27 l
+250.61 250.27 l
+251.07 244.38 l
+251.53 245.04 l
+251.99 241.55 l
+252.45 239.58 l
+252.91 241.76 l
+253.38 242.64 l
+253.84 241.76 l
+254.30 242.20 l
+254.76 242.85 l
+255.22 241.11 l
+255.68 245.47 l
+256.14 249.83 l
+256.60 246.13 l
+257.06 244.38 l
+257.53 243.29 l
+257.99 238.71 l
+258.45 240.02 l
+258.91 239.58 l
+259.37 236.31 l
+259.83 234.57 l
+260.29 238.06 l
+260.75 243.51 l
+261.22 243.07 l
+261.68 240.02 l
+262.14 241.33 l
+262.60 241.98 l
+263.06 240.46 l
+263.52 240.46 l
+263.98 237.84 l
+264.44 235.44 l
+264.90 236.97 l
+265.37 236.53 l
+265.83 241.98 l
+266.29 243.73 l
+266.75 243.94 l
+267.21 241.55 l
+267.67 240.24 l
+268.13 241.11 l
+268.59 239.15 l
+269.05 236.53 l
+269.52 235.44 l
+269.98 240.02 l
+270.44 241.76 l
+270.90 244.60 l
+271.36 243.51 l
+271.82 244.38 l
+272.28 245.91 l
+272.74 247.87 l
+273.21 242.85 l
+273.67 245.91 l
+274.13 246.78 l
+274.59 245.91 l
+275.05 241.33 l
+275.51 242.64 l
+275.97 243.94 l
+276.43 245.91 l
+276.89 246.34 l
+277.36 250.49 l
+277.82 251.80 l
+278.28 252.01 l
+278.74 250.05 l
+279.20 247.65 l
+279.66 248.31 l
+280.12 248.74 l
+280.58 250.92 l
+281.05 248.52 l
+281.51 248.31 l
+281.97 253.32 l
+282.43 253.54 l
+282.89 251.14 l
+283.35 251.36 l
+283.81 246.34 l
+284.27 247.87 l
+284.73 246.34 l
+285.20 244.82 l
+285.66 251.14 l
+286.12 250.70 l
+286.58 251.36 l
+287.04 253.32 l
+287.50 253.54 l
+287.96 244.38 l
+288.42 252.23 l
+288.89 255.72 l
+289.35 258.12 l
+289.81 257.68 l
+290.27 254.63 l
+290.73 260.74 l
+291.19 257.68 l
+291.65 258.77 l
+292.11 260.52 l
+292.57 263.13 l
+293.04 261.61 l
+293.50 260.30 l
+293.96 254.41 l
+294.42 251.36 l
+294.88 253.32 l
+295.34 254.85 l
+295.80 257.46 l
+296.26 256.16 l
+296.73 255.07 l
+297.19 259.43 l
+297.65 259.21 l
+298.11 260.95 l
+298.57 261.39 l
+299.03 262.48 l
+299.49 261.83 l
+299.95 259.43 l
+300.41 257.25 l
+300.88 257.25 l
+301.34 258.12 l
+301.80 255.72 l
+302.26 258.56 l
+302.72 253.98 l
+303.18 257.03 l
+303.64 257.68 l
+304.10 270.33 l
+304.57 257.25 l
+305.03 257.46 l
+305.49 262.04 l
+305.95 265.97 l
+306.41 261.17 l
+306.87 253.32 l
+307.33 255.94 l
+307.79 255.72 l
+308.25 258.77 l
+308.72 261.39 l
+309.18 270.11 l
+309.64 267.06 l
+310.10 258.34 l
+310.56 258.99 l
+311.02 260.08 l
+311.48 254.19 l
+311.94 259.21 l
+312.40 258.77 l
+312.87 261.83 l
+313.33 261.39 l
+313.79 257.25 l
+314.25 257.90 l
+314.71 257.25 l
+315.17 258.77 l
+315.63 259.86 l
+316.09 257.03 l
+316.56 257.03 l
+317.02 255.94 l
+317.48 256.16 l
+317.94 258.12 l
+318.40 262.48 l
+318.86 266.19 l
+319.32 265.97 l
+319.78 265.32 l
+320.24 260.95 l
+320.71 263.35 l
+321.17 261.39 l
+321.63 263.57 l
+322.09 264.88 l
+322.55 261.61 l
+323.01 259.43 l
+323.47 258.12 l
+323.93 260.30 l
+324.40 260.08 l
+324.86 261.61 l
+325.32 267.71 l
+325.78 266.19 l
+326.24 264.66 l
+326.70 265.53 l
+327.16 266.62 l
+327.62 269.89 l
+328.08 270.77 l
+328.55 275.35 l
+329.01 271.20 l
+329.47 271.64 l
+329.93 274.91 l
+330.39 276.87 l
+330.85 282.11 l
+331.31 278.40 l
+331.77 275.78 l
+332.24 276.44 l
+332.70 272.73 l
+333.16 275.13 l
+333.62 277.31 l
+334.08 276.65 l
+334.54 276.44 l
+335.00 275.35 l
+335.46 275.35 l
+335.92 276.65 l
+336.39 278.18 l
+336.85 281.02 l
+337.31 278.18 l
+337.77 277.96 l
+338.23 281.67 l
+338.69 277.31 l
+339.15 281.67 l
+339.61 282.54 l
+340.08 289.96 l
+340.54 293.01 l
+341.00 295.84 l
+341.46 296.28 l
+341.92 293.88 l
+342.38 291.05 l
+342.84 282.32 l
+343.30 283.42 l
+343.76 284.94 l
+344.23 291.27 l
+344.69 296.28 l
+345.15 299.77 l
+345.61 295.84 l
+346.07 298.03 l
+346.53 298.24 l
+346.99 298.90 l
+347.45 301.95 l
+347.92 303.70 l
+348.38 301.51 l
+348.84 300.64 l
+349.30 306.31 l
+349.76 309.80 l
+350.22 305.44 l
+350.68 307.62 l
+351.14 307.62 l
+351.60 296.72 l
+352.07 305.44 l
+352.53 304.35 l
+352.99 303.26 l
+353.45 303.26 l
+353.91 304.57 l
+354.37 313.07 l
+354.83 310.46 l
+355.29 307.40 l
+355.76 309.58 l
+356.22 310.67 l
+356.68 310.24 l
+357.14 314.38 l
+357.60 312.85 l
+358.06 308.71 l
+358.52 305.22 l
+358.98 314.82 l
+359.44 315.47 l
+359.91 310.24 l
+360.37 310.89 l
+360.83 310.67 l
+361.29 308.06 l
+361.75 303.48 l
+362.21 310.24 l
+362.67 311.55 l
+363.13 307.84 l
+363.59 307.18 l
+364.06 312.42 l
+364.52 313.51 l
+364.98 316.13 l
+365.44 318.52 l
+365.90 320.05 l
+366.36 314.82 l
+366.82 323.10 l
+367.28 318.74 l
+367.75 323.98 l
+368.21 322.67 l
+368.67 319.61 l
+369.13 323.32 l
+369.59 320.49 l
+370.05 323.54 l
+370.51 325.72 l
+370.97 231.30 l
+371.43 247.00 l
+371.90 232.17 l
+372.36 231.95 l
+372.82 267.50 l
+373.28 322.01 l
+373.74 323.54 l
+374.20 326.16 l
+374.66 333.35 l
+375.12 336.84 l
+375.59 336.19 l
+376.05 335.97 l
+376.51 338.15 l
+376.97 334.44 l
+377.43 339.24 l
+377.89 338.37 l
+378.35 340.55 l
+378.81 342.73 l
+379.27 335.53 l
+379.74 338.15 l
+380.20 338.59 l
+380.66 339.46 l
+381.12 336.41 l
+381.58 338.37 l
+382.04 337.50 l
+382.50 336.19 l
+382.96 336.84 l
+383.43 332.92 l
+383.89 334.01 l
+384.35 335.10 l
+384.81 335.10 l
+385.27 340.11 l
+385.73 337.28 l
+386.19 331.61 l
+386.65 333.35 l
+387.11 334.01 l
+387.58 332.70 l
+388.04 337.06 l
+388.50 338.59 l
+388.96 335.32 l
+389.42 334.66 l
+389.88 332.04 l
+390.34 330.08 l
+390.80 327.90 l
+391.27 327.46 l
+391.73 327.03 l
+392.19 325.07 l
+392.65 325.07 l
+393.11 323.54 l
+393.57 324.41 l
+394.03 325.07 l
+394.49 325.28 l
+394.95 334.88 l
+395.42 336.84 l
+395.88 341.86 l
+396.34 341.42 l
+396.80 344.04 l
+397.26 340.99 l
+397.72 349.93 l
+398.18 351.45 l
+398.64 349.27 l
+399.11 351.89 l
+399.57 352.11 l
+400.03 357.99 l
+400.49 356.03 l
+400.95 358.87 l
+401.41 362.57 l
+401.87 356.25 l
+402.33 357.56 l
+402.79 357.78 l
+403.26 354.51 l
+403.72 354.07 l
+404.18 362.79 l
+404.64 365.41 l
+405.10 363.01 l
+405.56 359.74 l
+406.02 350.14 l
+406.48 350.14 l
+406.94 349.93 l
+407.41 355.38 l
+407.87 352.76 l
+408.33 347.53 l
+408.79 351.67 l
+409.25 350.36 l
+409.71 355.60 l
+410.17 355.81 l
+410.63 363.88 l
+411.10 361.05 l
+411.56 357.78 l
+412.02 355.38 l
+412.48 352.32 l
+412.94 354.51 l
+413.40 352.98 l
+413.86 355.16 l
+414.32 358.43 l
+414.78 355.16 l
+415.25 352.54 l
+415.71 356.47 l
+416.17 357.12 l
+416.63 360.61 l
+417.09 361.70 l
+417.55 358.21 l
+418.01 356.90 l
+418.47 356.47 l
+418.94 354.94 l
+419.40 351.02 l
+419.86 354.51 l
+420.32 357.12 l
+420.78 357.56 l
+421.24 354.29 l
+421.70 352.11 l
+422.16 356.03 l
+422.62 349.93 l
+423.09 348.40 l
+423.55 354.94 l
+424.01 357.78 l
+424.47 349.93 l
+424.93 352.98 l
+425.39 355.38 l
+425.85 350.14 l
+426.31 347.31 l
+426.78 352.76 l
+427.24 346.00 l
+427.70 344.91 l
+428.16 347.75 l
+428.62 346.00 l
+429.08 344.26 l
+429.54 344.47 l
+430.00 351.67 l
+430.46 347.96 l
+430.93 351.45 l
+431.39 351.02 l
+431.85 344.47 l
+432.31 346.65 l
+432.77 347.96 l
+433.23 349.05 l
+433.69 345.56 l
+434.15 351.02 l
+434.62 353.20 l
+435.08 348.84 l
+435.54 344.47 l
+436.00 337.28 l
+436.46 342.51 l
+436.92 345.78 l
+437.38 339.89 l
+437.84 337.93 l
+438.30 335.97 l
+438.77 337.50 l
+439.23 340.99 l
+439.69 336.62 l
+440.15 343.82 l
+440.61 341.20 l
+441.07 337.71 l
+441.53 342.73 l
+441.99 337.06 l
+442.46 336.19 l
+442.92 338.80 l
+443.38 341.64 l
+443.84 336.62 l
+444.30 337.28 l
+444.76 337.71 l
+445.22 341.42 l
+445.68 338.37 l
+446.14 339.24 l
+446.61 339.46 l
+447.07 341.20 l
+447.53 344.69 l
+447.99 344.26 l
+448.45 333.79 l
+448.91 336.84 l
+449.37 337.93 l
+449.83 335.32 l
+450.30 335.97 l
+450.76 333.57 l
+451.22 333.57 l
+451.68 337.71 l
+452.14 336.84 l
+452.60 336.62 l
+453.06 342.51 l
+453.52 342.29 l
+453.98 345.56 l
+454.45 339.24 l
+454.91 342.29 l
+455.37 337.50 l
+455.83 333.13 l
+456.29 334.23 l
+456.75 335.75 l
+457.21 336.62 l
+457.67 307.84 l
+458.13 310.67 l
+458.60 314.82 l
+459.06 321.58 l
+459.52 324.41 l
+459.98 326.81 l
+460.44 328.56 l
+460.90 328.56 l
+461.36 328.99 l
+461.82 330.95 l
+462.29 328.34 l
+462.75 327.25 l
+463.21 325.28 l
+463.67 318.31 l
+464.13 322.89 l
+464.59 321.36 l
+465.05 321.80 l
+465.51 322.67 l
+465.97 328.56 l
+466.44 326.59 l
+466.90 330.30 l
+467.36 325.94 l
+467.82 332.26 l
+468.28 336.41 l
+468.74 336.62 l
+469.20 340.77 l
+469.66 335.97 l
+470.13 336.41 l
+470.59 333.35 l
+471.05 328.12 l
+471.51 328.77 l
+471.97 330.30 l
+472.43 336.62 l
+472.89 333.79 l
+473.35 335.53 l
+473.81 342.08 l
+474.28 340.33 l
+474.74 337.93 l
+475.20 342.51 l
+475.66 343.60 l
+476.12 339.68 l
+476.58 342.95 l
+477.04 338.59 l
+477.50 338.80 l
+477.97 336.41 l
+478.43 339.46 l
+478.89 337.71 l
+479.35 334.01 l
+479.81 337.28 l
+480.27 339.24 l
+480.73 337.50 l
+481.19 339.02 l
+481.65 342.29 l
+482.12 345.35 l
+482.58 340.77 l
+483.04 342.08 l
+483.50 338.15 l
+483.96 340.77 l
+484.42 340.55 l
+484.88 341.86 l
+485.34 343.38 l
+485.81 335.97 l
+486.27 335.75 l
+486.73 338.80 l
+487.19 337.71 l
+487.65 329.86 l
+488.11 332.48 l
+488.57 331.61 l
+489.03 330.74 l
+489.49 333.35 l
+489.96 321.58 l
+490.42 325.28 l
+490.88 328.34 l
+491.34 329.65 l
+491.80 330.95 l
+492.26 324.63 l
+492.72 326.16 l
+493.18 323.98 l
+493.65 324.19 l
+494.11 324.63 l
+494.57 324.41 l
+495.03 326.81 l
+495.49 326.81 l
+495.95 329.43 l
+496.41 329.65 l
+496.87 329.86 l
+497.33 329.86 l
+497.80 330.74 l
+498.26 331.61 l
+498.72 330.30 l
+499.18 329.86 l
+499.64 327.46 l
+500.10 324.63 l
+500.56 320.70 l
+501.02 318.96 l
+501.49 322.67 l
+501.95 325.07 l
+502.41 322.01 l
+502.87 323.98 l
+503.33 324.19 l
+503.79 324.85 l
+504.25 319.40 l
+504.71 320.92 l
+505.17 319.18 l
+505.64 322.01 l
+506.10 321.14 l
+506.56 321.80 l
+507.02 321.80 l
+507.48 324.63 l
+507.94 327.68 l
+508.40 326.81 l
+508.86 326.81 l
+509.32 325.50 l
+509.79 330.95 l
+510.25 328.99 l
+510.71 323.98 l
+511.17 328.99 l
+511.63 326.16 l
+512.09 331.83 l
+512.55 329.43 l
+513.01 332.26 l
+513.48 331.61 l
+513.94 331.61 l
+514.40 332.70 l
+514.86 329.21 l
+515.32 324.63 l
+515.78 323.10 l
+516.24 324.19 l
+516.70 316.13 l
+517.16 324.85 l
+517.63 323.76 l
+518.09 319.61 l
+518.55 320.49 l
+519.01 320.70 l
+519.47 325.07 l
+519.93 322.89 l
+520.39 320.70 l
+520.85 323.32 l
+521.32 321.80 l
+521.78 319.61 l
+522.24 315.69 l
+522.70 321.36 l
+523.16 320.49 l
+523.62 320.92 l
+524.08 319.83 l
+524.54 313.07 l
+525.00 318.52 l
+525.47 314.16 l
+525.93 310.89 l
+526.39 317.43 l
+526.85 320.70 l
+527.31 317.65 l
+527.77 315.04 l
+528.23 314.38 l
+528.69 311.98 l
+529.16 313.94 l
+529.62 313.94 l
+530.08 315.04 l
+530.54 318.74 l
+531.00 313.29 l
+531.46 314.16 l
+531.92 314.60 l
+532.38 308.49 l
+532.84 306.31 l
+S
+533.77 317.87 m
+534.23 309.37 l
+534.69 305.00 l
+535.15 304.35 l
+535.61 300.42 l
+536.07 302.61 l
+536.53 307.40 l
+537.00 306.75 l
+537.46 306.75 l
+537.92 304.79 l
+538.38 304.35 l
+538.84 306.09 l
+539.30 299.55 l
+539.76 295.84 l
+540.22 301.95 l
+540.68 303.04 l
+541.15 299.77 l
+541.61 295.19 l
+542.07 302.61 l
+542.53 303.04 l
+542.99 309.58 l
+543.45 311.11 l
+543.91 305.00 l
+544.37 305.66 l
+544.84 303.70 l
+545.30 303.70 l
+545.76 300.64 l
+546.22 304.13 l
+546.68 305.00 l
+547.14 306.97 l
+547.60 304.35 l
+548.06 303.04 l
+548.52 303.04 l
+548.99 308.06 l
+549.45 306.75 l
+549.91 308.06 l
+550.37 309.37 l
+550.83 311.33 l
+551.29 309.37 l
+551.75 309.37 l
+552.21 310.67 l
+552.67 314.60 l
+553.14 312.42 l
+553.60 305.22 l
+554.06 306.31 l
+554.52 304.79 l
+554.98 310.46 l
+555.44 303.04 l
+555.90 305.00 l
+556.36 308.93 l
+556.83 304.35 l
+557.29 307.18 l
+557.75 305.00 l
+558.21 302.39 l
+558.67 306.97 l
+559.13 307.18 l
+559.59 308.27 l
+560.05 303.70 l
+560.51 302.17 l
+560.98 295.63 l
+561.44 289.08 l
+561.90 291.05 l
+562.36 293.88 l
+562.82 297.59 l
+563.28 301.95 l
+563.74 301.95 l
+564.20 297.81 l
+564.67 298.03 l
+565.13 302.39 l
+565.59 306.09 l
+566.05 307.62 l
+566.51 303.48 l
+566.97 303.48 l
+567.43 306.09 l
+567.89 299.55 l
+568.35 303.26 l
+568.82 308.49 l
+569.28 304.13 l
+569.74 301.95 l
+570.20 298.46 l
+570.66 298.90 l
+571.12 298.24 l
+571.58 300.86 l
+572.04 303.91 l
+572.51 301.30 l
+572.97 297.59 l
+573.43 300.21 l
+573.89 299.99 l
+574.35 302.61 l
+574.81 309.80 l
+575.27 314.38 l
+575.73 311.76 l
+576.19 307.40 l
+576.66 306.31 l
+577.12 309.37 l
+577.58 307.84 l
+578.04 308.71 l
+578.50 308.06 l
+578.96 309.15 l
+579.42 305.22 l
+579.88 308.06 l
+580.35 304.35 l
+580.81 309.15 l
+581.27 309.15 l
+581.73 311.11 l
+582.19 310.02 l
+582.65 313.73 l
+583.11 315.47 l
+583.57 307.62 l
+584.03 307.84 l
+584.50 314.82 l
+584.96 318.09 l
+585.42 316.34 l
+585.88 315.25 l
+586.34 310.67 l
+586.80 311.76 l
+587.26 308.93 l
+587.72 311.76 l
+588.19 318.09 l
+588.65 319.40 l
+589.11 313.94 l
+589.57 312.42 l
+590.03 312.85 l
+590.49 317.00 l
+590.95 318.52 l
+591.41 317.43 l
+S
+0.000 0.000 1.000 RG
+76.75 112.89 m
+77.21 112.67 l
+77.67 112.23 l
+78.13 113.10 l
+78.59 113.54 l
+79.05 114.19 l
+79.51 112.01 l
+79.97 116.37 l
+80.44 117.25 l
+80.90 118.12 l
+81.36 117.90 l
+81.82 118.12 l
+82.28 119.65 l
+82.74 120.08 l
+83.20 119.21 l
+83.66 118.99 l
+84.13 120.30 l
+84.59 120.52 l
+85.05 119.65 l
+85.51 121.39 l
+85.97 121.17 l
+86.43 120.30 l
+86.89 120.95 l
+87.35 121.17 l
+87.81 120.30 l
+88.28 119.86 l
+88.74 120.08 l
+89.20 119.86 l
+89.66 118.99 l
+90.12 118.12 l
+90.58 118.12 l
+91.04 118.12 l
+91.50 118.77 l
+91.97 120.08 l
+92.43 117.90 l
+92.89 118.77 l
+93.35 119.43 l
+93.81 118.99 l
+94.27 119.21 l
+94.73 119.65 l
+95.19 121.39 l
+95.65 121.61 l
+96.12 121.83 l
+96.58 122.26 l
+97.04 122.26 l
+97.50 122.04 l
+97.96 121.17 l
+98.42 122.48 l
+98.88 111.36 l
+99.34 99.15 l
+99.81 98.93 l
+100.27 98.49 l
+100.73 100.67 l
+101.19 102.42 l
+101.65 101.11 l
+102.11 99.80 l
+102.57 100.89 l
+103.03 100.24 l
+103.49 100.67 l
+103.96 101.33 l
+104.42 101.33 l
+104.88 100.67 l
+105.34 99.58 l
+105.80 100.02 l
+106.26 100.67 l
+106.72 101.11 l
+107.18 101.76 l
+107.65 101.33 l
+108.11 102.20 l
+108.57 103.94 l
+109.03 103.73 l
+109.49 103.94 l
+109.95 103.73 l
+110.41 102.85 l
+110.87 103.29 l
+111.33 104.60 l
+111.80 104.60 l
+112.26 103.94 l
+112.72 103.29 l
+113.18 103.07 l
+113.64 103.07 l
+114.10 103.51 l
+114.56 103.73 l
+115.02 103.07 l
+115.49 103.07 l
+115.95 101.55 l
+116.41 101.55 l
+116.87 102.42 l
+117.33 103.94 l
+117.79 104.38 l
+118.25 105.25 l
+118.71 106.34 l
+119.17 105.25 l
+119.64 104.82 l
+120.10 105.04 l
+120.56 106.78 l
+121.02 108.52 l
+121.48 106.78 l
+121.94 107.22 l
+122.40 108.31 l
+122.86 106.13 l
+123.32 106.78 l
+123.79 107.22 l
+124.25 108.09 l
+124.71 108.09 l
+125.17 108.09 l
+125.63 109.40 l
+126.09 108.31 l
+126.55 108.52 l
+127.01 108.31 l
+127.48 107.87 l
+127.94 109.18 l
+128.40 109.40 l
+128.86 109.83 l
+129.32 110.27 l
+129.78 111.14 l
+130.24 112.01 l
+130.70 113.76 l
+131.16 114.41 l
+131.63 112.89 l
+132.09 112.45 l
+132.55 113.32 l
+133.01 114.41 l
+133.47 113.54 l
+133.93 113.10 l
+134.39 111.80 l
+134.85 111.36 l
+135.32 113.10 l
+135.78 108.96 l
+136.24 108.52 l
+136.70 107.43 l
+137.16 109.61 l
+137.62 111.14 l
+138.08 111.80 l
+138.54 112.01 l
+139.00 110.92 l
+139.47 111.58 l
+139.93 111.80 l
+140.39 111.80 l
+140.85 111.58 l
+141.31 112.23 l
+141.77 114.19 l
+142.23 115.07 l
+142.69 113.76 l
+143.16 114.19 l
+143.62 114.19 l
+144.08 114.85 l
+144.54 114.63 l
+145.00 114.85 l
+145.46 111.80 l
+145.92 110.05 l
+146.38 112.67 l
+146.84 112.89 l
+147.31 114.41 l
+147.77 114.63 l
+148.23 117.03 l
+148.69 116.59 l
+149.15 116.59 l
+149.61 115.07 l
+150.07 114.85 l
+150.53 112.89 l
+151.00 114.85 l
+151.46 114.63 l
+151.92 114.85 l
+152.38 113.98 l
+152.84 113.76 l
+153.30 115.07 l
+153.76 115.28 l
+154.22 116.16 l
+154.68 116.59 l
+155.15 113.54 l
+155.61 115.94 l
+156.07 115.28 l
+156.53 117.25 l
+156.99 118.12 l
+157.45 117.68 l
+157.91 117.46 l
+158.37 117.46 l
+158.84 115.07 l
+159.30 117.90 l
+159.76 117.68 l
+160.22 115.94 l
+160.68 116.81 l
+161.14 117.46 l
+161.60 116.81 l
+162.06 114.85 l
+162.52 116.37 l
+162.99 118.56 l
+163.45 119.21 l
+163.91 117.90 l
+164.37 120.08 l
+164.83 120.30 l
+165.29 123.57 l
+165.75 124.44 l
+166.21 123.13 l
+166.67 121.83 l
+167.14 118.99 l
+167.60 120.95 l
+168.06 121.83 l
+168.52 123.57 l
+168.98 123.13 l
+169.44 122.26 l
+169.90 124.23 l
+170.36 121.39 l
+170.83 122.26 l
+171.29 121.83 l
+171.75 120.52 l
+172.21 122.26 l
+172.67 123.57 l
+173.13 121.61 l
+173.59 120.74 l
+174.05 121.17 l
+174.51 121.61 l
+174.98 117.68 l
+175.44 118.12 l
+175.90 118.77 l
+176.36 118.56 l
+176.82 117.90 l
+177.28 120.08 l
+177.74 122.26 l
+178.20 121.39 l
+178.67 120.74 l
+179.13 120.95 l
+179.59 122.26 l
+180.05 120.52 l
+180.51 118.99 l
+180.97 120.52 l
+181.43 121.39 l
+181.89 122.92 l
+182.35 122.26 l
+182.82 122.04 l
+183.28 121.17 l
+183.74 122.48 l
+184.20 123.57 l
+184.66 122.92 l
+185.12 125.75 l
+185.58 126.19 l
+186.04 125.75 l
+186.51 124.44 l
+186.97 123.13 l
+187.43 123.35 l
+187.89 123.79 l
+188.35 122.70 l
+188.81 123.13 l
+189.27 124.01 l
+189.73 122.26 l
+190.19 123.13 l
+190.66 125.53 l
+191.12 124.66 l
+191.58 124.88 l
+192.04 124.23 l
+192.50 122.70 l
+192.96 123.35 l
+193.42 120.74 l
+193.88 119.65 l
+194.35 121.61 l
+194.81 121.83 l
+195.27 121.83 l
+195.73 121.83 l
+196.19 120.52 l
+196.65 117.68 l
+197.11 116.59 l
+197.57 117.46 l
+198.03 119.43 l
+198.50 118.34 l
+198.96 117.25 l
+199.42 118.77 l
+199.88 118.99 l
+200.34 119.86 l
+200.80 119.43 l
+201.26 120.95 l
+201.72 121.61 l
+202.19 119.65 l
+202.65 120.74 l
+203.11 120.08 l
+203.57 119.65 l
+204.03 119.43 l
+204.49 120.74 l
+204.95 121.17 l
+205.41 120.08 l
+205.87 119.43 l
+206.34 117.46 l
+206.80 116.59 l
+207.26 117.46 l
+207.72 117.03 l
+208.18 116.59 l
+208.64 116.59 l
+209.10 117.90 l
+209.56 117.90 l
+210.03 118.56 l
+210.49 117.03 l
+210.95 116.81 l
+211.41 116.81 l
+211.87 117.90 l
+212.33 116.37 l
+212.79 115.72 l
+213.25 117.90 l
+213.71 118.56 l
+214.18 118.77 l
+214.64 120.08 l
+215.10 120.52 l
+215.56 118.99 l
+216.02 116.59 l
+216.48 115.50 l
+216.94 116.37 l
+217.40 118.77 l
+217.86 118.77 l
+218.33 117.68 l
+218.79 118.77 l
+219.25 115.50 l
+219.71 114.85 l
+220.17 114.19 l
+220.63 117.46 l
+221.09 118.56 l
+221.55 117.90 l
+222.02 120.08 l
+222.48 117.90 l
+222.94 117.68 l
+223.40 118.77 l
+223.86 117.90 l
+224.32 118.99 l
+224.78 118.56 l
+225.24 117.68 l
+225.70 119.21 l
+226.17 120.95 l
+226.63 121.61 l
+227.09 122.26 l
+227.55 120.74 l
+228.01 121.39 l
+228.47 120.74 l
+228.93 121.61 l
+229.39 119.43 l
+229.86 122.26 l
+230.32 124.44 l
+230.78 120.95 l
+231.24 120.95 l
+231.70 120.95 l
+232.16 124.01 l
+232.62 124.66 l
+233.08 125.32 l
+233.54 128.15 l
+234.01 123.79 l
+234.47 122.48 l
+234.93 129.89 l
+235.39 129.24 l
+235.85 129.02 l
+236.31 128.59 l
+236.77 129.24 l
+237.23 127.28 l
+237.70 127.06 l
+238.16 122.70 l
+238.62 113.76 l
+239.08 115.94 l
+239.54 118.12 l
+240.00 124.88 l
+240.46 126.84 l
+240.92 125.32 l
+241.38 118.77 l
+241.85 115.07 l
+242.31 119.65 l
+242.77 122.26 l
+243.23 126.19 l
+243.69 125.10 l
+244.15 122.04 l
+244.61 124.23 l
+245.07 115.50 l
+245.54 122.04 l
+246.00 129.68 l
+246.46 130.55 l
+246.92 130.99 l
+247.38 129.24 l
+247.84 130.55 l
+248.30 128.15 l
+248.76 129.24 l
+249.22 130.33 l
+249.69 132.29 l
+250.15 132.73 l
+250.61 130.55 l
+251.07 127.93 l
+251.53 128.37 l
+251.99 126.84 l
+252.45 126.41 l
+252.91 127.06 l
+253.38 128.15 l
+253.84 127.71 l
+254.30 128.80 l
+254.76 127.93 l
+255.22 127.06 l
+255.68 128.15 l
+256.14 130.33 l
+256.60 129.89 l
+257.06 130.33 l
+257.53 128.59 l
+257.99 126.84 l
+258.45 127.71 l
+258.91 127.28 l
+259.37 126.84 l
+259.83 126.19 l
+260.29 126.84 l
+260.75 128.59 l
+261.22 127.93 l
+261.68 127.50 l
+262.14 128.59 l
+262.60 128.37 l
+263.06 128.15 l
+263.52 128.37 l
+263.98 126.19 l
+264.44 125.75 l
+264.90 126.84 l
+265.37 125.10 l
+265.83 127.06 l
+266.29 128.80 l
+266.75 128.80 l
+267.21 126.62 l
+267.67 127.06 l
+268.13 125.53 l
+268.59 127.93 l
+269.05 126.19 l
+269.52 124.88 l
+269.98 123.35 l
+270.44 124.01 l
+270.90 119.43 l
+271.36 124.23 l
+271.82 128.37 l
+272.28 128.15 l
+272.74 129.02 l
+273.21 127.93 l
+273.67 128.37 l
+274.13 129.02 l
+274.59 122.48 l
+275.05 125.32 l
+275.51 122.04 l
+275.97 116.59 l
+276.43 119.43 l
+276.89 119.65 l
+277.36 124.66 l
+277.82 118.99 l
+278.28 118.12 l
+278.74 120.74 l
+279.20 117.25 l
+279.66 120.08 l
+280.12 116.37 l
+280.58 127.28 l
+281.05 119.43 l
+281.51 129.02 l
+281.97 131.64 l
+282.43 122.70 l
+282.89 117.03 l
+283.35 117.25 l
+283.81 113.10 l
+284.27 128.15 l
+284.73 129.24 l
+285.20 129.24 l
+285.66 129.89 l
+286.12 130.55 l
+286.58 125.53 l
+287.04 128.15 l
+287.50 131.64 l
+287.96 128.80 l
+288.42 132.95 l
+288.89 134.04 l
+289.35 133.60 l
+289.81 133.82 l
+290.27 133.38 l
+290.73 134.47 l
+291.19 132.73 l
+291.65 135.56 l
+292.11 133.60 l
+292.57 136.22 l
+293.04 135.35 l
+293.50 129.68 l
+293.96 125.10 l
+294.42 127.93 l
+294.88 116.59 l
+295.34 115.50 l
+295.80 118.77 l
+296.26 128.15 l
+296.73 127.50 l
+297.19 123.35 l
+297.65 129.02 l
+298.11 129.68 l
+298.57 125.53 l
+299.03 128.15 l
+299.49 120.95 l
+299.95 131.20 l
+300.41 128.80 l
+300.88 129.02 l
+301.34 131.64 l
+301.80 127.71 l
+302.26 127.93 l
+302.72 129.68 l
+303.18 124.66 l
+303.64 126.62 l
+304.10 132.08 l
+304.57 129.02 l
+305.03 126.62 l
+305.49 120.95 l
+305.95 116.81 l
+306.41 114.19 l
+306.87 115.94 l
+307.33 119.21 l
+307.79 112.23 l
+308.25 113.32 l
+308.72 121.83 l
+309.18 131.64 l
+309.64 123.35 l
+310.10 125.97 l
+310.56 117.90 l
+311.02 110.49 l
+311.48 108.74 l
+311.94 120.95 l
+312.40 128.80 l
+312.87 126.62 l
+313.33 126.19 l
+313.79 122.70 l
+314.25 121.39 l
+314.71 122.48 l
+315.17 124.44 l
+315.63 127.28 l
+316.09 127.06 l
+316.56 117.90 l
+317.02 114.85 l
+317.48 115.50 l
+317.94 116.16 l
+318.40 119.86 l
+318.86 123.13 l
+319.32 114.63 l
+319.78 126.19 l
+320.24 120.30 l
+320.71 119.21 l
+321.17 113.98 l
+321.63 114.41 l
+322.09 114.85 l
+322.55 113.54 l
+323.01 112.23 l
+323.47 113.54 l
+323.93 113.10 l
+324.40 112.67 l
+324.86 111.14 l
+325.32 113.76 l
+325.78 122.04 l
+326.24 120.52 l
+326.70 129.24 l
+327.16 131.86 l
+327.62 126.19 l
+328.08 131.64 l
+328.55 136.65 l
+329.01 135.35 l
+329.47 136.00 l
+329.93 135.78 l
+330.39 130.33 l
+330.85 116.81 l
+331.31 117.25 l
+331.77 116.81 l
+332.24 117.90 l
+332.70 117.25 l
+333.16 118.77 l
+333.62 117.68 l
+334.08 118.12 l
+334.54 117.68 l
+335.00 117.03 l
+335.46 117.90 l
+335.92 118.77 l
+336.39 119.86 l
+336.85 119.65 l
+337.31 130.33 l
+337.77 147.56 l
+338.23 144.51 l
+338.69 139.71 l
+339.15 156.28 l
+339.61 164.57 l
+340.08 162.61 l
+340.54 147.99 l
+341.00 149.08 l
+341.46 172.20 l
+341.92 186.81 l
+342.38 172.85 l
+342.84 139.71 l
+343.30 142.54 l
+343.76 141.89 l
+344.23 146.47 l
+344.69 157.37 l
+345.15 168.49 l
+345.61 150.61 l
+346.07 173.94 l
+346.53 165.44 l
+346.99 149.08 l
+347.45 163.70 l
+347.92 169.37 l
+348.38 184.63 l
+348.84 141.23 l
+349.30 137.96 l
+349.76 130.55 l
+350.22 133.38 l
+350.68 141.67 l
+351.14 134.26 l
+351.60 129.46 l
+352.07 134.91 l
+352.53 144.29 l
+352.99 143.85 l
+353.45 131.20 l
+353.91 133.38 l
+354.37 141.02 l
+354.83 144.07 l
+355.29 143.85 l
+355.76 135.78 l
+356.22 134.04 l
+356.68 129.89 l
+357.14 130.77 l
+357.60 130.99 l
+358.06 136.44 l
+358.52 128.80 l
+358.98 133.82 l
+359.44 142.54 l
+359.91 139.71 l
+360.37 127.93 l
+360.83 127.71 l
+361.29 125.97 l
+361.75 124.66 l
+362.21 125.75 l
+362.67 126.19 l
+363.13 128.37 l
+363.59 129.24 l
+364.06 131.20 l
+364.52 136.65 l
+364.98 147.12 l
+365.44 131.20 l
+365.90 150.39 l
+366.36 143.85 l
+366.82 149.30 l
+367.28 145.38 l
+367.75 128.80 l
+368.21 128.59 l
+368.67 127.06 l
+369.13 147.34 l
+369.59 136.22 l
+370.05 145.81 l
+370.51 146.47 l
+370.97 111.58 l
+371.43 113.76 l
+371.90 114.41 l
+372.36 112.01 l
+372.82 113.54 l
+373.28 114.41 l
+373.74 114.19 l
+374.20 113.76 l
+374.66 118.34 l
+375.12 134.47 l
+375.59 130.33 l
+376.05 136.44 l
+376.51 136.87 l
+376.97 135.35 l
+377.43 132.08 l
+377.89 132.08 l
+378.35 122.70 l
+378.81 125.53 l
+379.27 134.26 l
+379.74 133.82 l
+380.20 135.56 l
+380.66 134.69 l
+381.12 134.04 l
+381.58 155.41 l
+382.04 140.58 l
+382.50 132.95 l
+382.96 136.22 l
+383.43 135.56 l
+383.89 140.14 l
+384.35 137.31 l
+384.81 148.43 l
+385.27 138.40 l
+385.73 128.37 l
+386.19 124.44 l
+386.65 125.53 l
+387.11 139.49 l
+387.58 129.89 l
+388.04 134.26 l
+388.50 142.11 l
+388.96 141.02 l
+389.42 134.69 l
+389.88 130.33 l
+390.34 122.48 l
+390.80 121.39 l
+391.27 118.56 l
+391.73 127.06 l
+392.19 125.75 l
+392.65 122.26 l
+393.11 139.49 l
+393.57 133.17 l
+394.03 131.20 l
+394.49 140.80 l
+394.95 142.76 l
+395.42 127.71 l
+395.88 127.50 l
+396.34 144.94 l
+396.80 148.43 l
+397.26 146.25 l
+397.72 147.78 l
+398.18 145.38 l
+398.64 140.36 l
+399.11 145.38 l
+399.57 149.30 l
+400.03 186.59 l
+400.49 184.19 l
+400.95 188.99 l
+401.41 192.70 l
+401.87 190.30 l
+402.33 187.90 l
+402.79 189.65 l
+403.26 190.95 l
+403.72 191.39 l
+404.18 193.79 l
+404.64 192.48 l
+405.10 182.01 l
+405.56 168.71 l
+406.02 170.02 l
+406.48 183.98 l
+406.94 183.98 l
+407.41 187.46 l
+407.87 184.85 l
+408.33 184.41 l
+408.79 192.92 l
+409.25 185.94 l
+409.71 192.26 l
+410.17 191.17 l
+410.63 192.70 l
+411.10 190.08 l
+411.56 188.56 l
+412.02 185.07 l
+412.48 187.25 l
+412.94 192.70 l
+413.40 194.44 l
+413.86 192.70 l
+414.32 191.83 l
+414.78 190.52 l
+415.25 191.83 l
+415.71 189.86 l
+416.17 190.52 l
+416.63 192.48 l
+417.09 189.21 l
+417.55 188.77 l
+418.01 192.70 l
+418.47 192.26 l
+418.94 194.01 l
+419.40 194.88 l
+419.86 197.06 l
+420.32 215.16 l
+420.78 212.32 l
+421.24 211.45 l
+421.70 208.84 l
+422.16 214.07 l
+422.62 196.62 l
+423.09 201.20 l
+423.55 212.32 l
+424.01 214.29 l
+424.47 203.17 l
+424.93 196.84 l
+425.39 217.78 l
+425.85 214.51 l
+426.31 214.29 l
+426.78 215.16 l
+427.24 214.94 l
+427.70 216.25 l
+428.16 215.16 l
+428.62 213.42 l
+429.08 204.47 l
+429.54 202.95 l
+430.00 211.02 l
+430.46 203.17 l
+430.93 213.42 l
+431.39 212.98 l
+431.85 195.10 l
+432.31 192.70 l
+432.77 209.49 l
+433.23 210.58 l
+433.69 208.18 l
+434.15 210.14 l
+434.62 210.14 l
+435.08 208.62 l
+435.54 206.22 l
+436.00 202.29 l
+436.46 206.44 l
+436.92 204.91 l
+437.38 203.60 l
+437.84 203.82 l
+438.30 202.29 l
+438.77 203.17 l
+439.23 207.75 l
+439.69 207.53 l
+440.15 210.14 l
+440.61 192.92 l
+441.07 203.17 l
+441.53 203.17 l
+441.99 200.99 l
+442.46 203.38 l
+442.92 201.64 l
+443.38 203.38 l
+443.84 200.99 l
+444.30 201.86 l
+444.76 203.38 l
+445.22 207.31 l
+445.68 204.47 l
+446.14 204.26 l
+446.61 194.88 l
+447.07 203.60 l
+447.53 205.13 l
+447.99 161.73 l
+448.45 157.59 l
+448.91 156.94 l
+449.37 157.59 l
+449.83 156.72 l
+450.30 156.94 l
+450.76 156.94 l
+451.22 154.97 l
+451.68 157.81 l
+452.14 156.72 l
+452.60 157.37 l
+453.06 158.68 l
+453.52 158.68 l
+453.98 158.90 l
+454.45 159.33 l
+454.91 158.68 l
+455.37 158.03 l
+455.83 155.63 l
+456.29 155.41 l
+456.75 156.94 l
+457.21 155.63 l
+457.67 145.16 l
+458.13 146.03 l
+458.60 144.72 l
+459.06 154.75 l
+459.52 193.57 l
+459.98 177.65 l
+460.44 153.01 l
+460.90 153.01 l
+461.36 152.14 l
+461.82 151.70 l
+462.29 151.05 l
+462.75 151.05 l
+463.21 154.10 l
+463.67 176.56 l
+464.13 192.04 l
+464.59 181.58 l
+465.05 193.35 l
+465.51 198.59 l
+465.97 203.38 l
+466.44 201.42 l
+466.90 201.64 l
+467.36 198.59 l
+467.82 177.65 l
+468.28 156.50 l
+468.74 155.63 l
+469.20 156.06 l
+469.66 154.75 l
+470.13 156.06 l
+470.59 154.97 l
+471.05 153.88 l
+471.51 153.66 l
+471.97 156.50 l
+472.43 158.46 l
+472.89 157.81 l
+473.35 158.24 l
+473.81 160.21 l
+474.28 158.24 l
+474.74 169.15 l
+475.20 158.24 l
+475.66 158.68 l
+476.12 156.06 l
+476.58 156.06 l
+477.04 155.84 l
+477.50 153.66 l
+477.97 154.54 l
+478.43 153.23 l
+478.89 155.19 l
+479.35 149.74 l
+479.81 152.79 l
+480.27 154.32 l
+480.73 154.54 l
+481.19 154.54 l
+481.65 153.01 l
+482.12 154.54 l
+482.58 155.63 l
+483.04 156.06 l
+483.50 154.75 l
+483.96 154.54 l
+484.42 150.83 l
+484.88 151.92 l
+485.34 151.70 l
+485.81 149.74 l
+486.27 150.39 l
+486.73 153.88 l
+487.19 150.83 l
+487.65 150.61 l
+488.11 146.90 l
+488.57 147.12 l
+489.03 151.05 l
+489.49 151.27 l
+489.96 150.61 l
+490.42 151.27 l
+490.88 151.92 l
+491.34 150.18 l
+491.80 150.18 l
+492.26 149.96 l
+492.72 149.30 l
+493.18 148.21 l
+493.65 143.85 l
+494.11 144.94 l
+494.57 147.12 l
+495.03 146.47 l
+495.49 129.46 l
+495.95 147.99 l
+496.41 147.56 l
+496.87 147.12 l
+497.33 147.78 l
+497.80 139.71 l
+498.26 146.47 l
+498.72 142.32 l
+499.18 149.08 l
+499.64 149.96 l
+500.10 150.83 l
+500.56 147.56 l
+501.02 145.16 l
+501.49 149.30 l
+501.95 150.39 l
+502.41 146.90 l
+502.87 149.74 l
+503.33 151.48 l
+503.79 152.57 l
+504.25 152.36 l
+504.71 151.70 l
+505.17 150.39 l
+505.64 152.14 l
+506.10 150.61 l
+506.56 151.92 l
+507.02 151.27 l
+507.48 151.48 l
+507.94 152.14 l
+508.40 151.92 l
+508.86 160.86 l
+509.32 200.11 l
+509.79 173.51 l
+510.25 144.07 l
+510.71 148.87 l
+511.17 146.03 l
+511.63 134.47 l
+512.09 143.20 l
+512.55 137.53 l
+513.01 122.48 l
+513.48 125.75 l
+513.94 140.36 l
+514.40 141.45 l
+514.86 150.39 l
+515.32 147.78 l
+515.78 150.83 l
+516.24 150.39 l
+516.70 149.52 l
+517.16 152.14 l
+517.63 151.05 l
+518.09 149.52 l
+518.55 149.52 l
+519.01 150.18 l
+519.47 144.94 l
+519.93 130.55 l
+520.39 134.91 l
+520.85 143.20 l
+521.32 141.02 l
+521.78 149.08 l
+522.24 149.52 l
+522.70 148.21 l
+523.16 147.34 l
+523.62 149.08 l
+524.08 132.73 l
+524.54 126.84 l
+525.00 140.36 l
+525.47 151.70 l
+525.93 149.96 l
+526.39 150.83 l
+526.85 152.14 l
+527.31 151.92 l
+527.77 150.83 l
+528.23 148.87 l
+528.69 147.56 l
+529.16 146.03 l
+529.62 144.94 l
+530.08 145.81 l
+530.54 145.60 l
+531.00 145.38 l
+531.46 145.81 l
+531.92 146.25 l
+532.38 144.51 l
+532.84 142.76 l
+S
+533.77 144.72 m
+534.23 140.36 l
+534.69 141.23 l
+535.15 140.80 l
+535.61 139.71 l
+536.07 135.35 l
+536.53 138.62 l
+537.00 140.58 l
+537.46 136.65 l
+537.92 142.98 l
+538.38 125.97 l
+538.84 120.30 l
+539.30 134.47 l
+539.76 135.13 l
+540.22 137.53 l
+540.68 135.56 l
+541.15 130.77 l
+541.61 122.70 l
+542.07 141.67 l
+542.53 130.55 l
+542.99 137.96 l
+543.45 139.49 l
+543.91 136.65 l
+544.37 135.56 l
+544.84 128.37 l
+545.30 113.54 l
+545.76 114.41 l
+546.22 121.83 l
+546.68 132.73 l
+547.14 117.90 l
+547.60 111.58 l
+548.06 113.32 l
+548.52 120.95 l
+548.99 129.89 l
+549.45 133.60 l
+549.91 140.36 l
+550.37 123.57 l
+550.83 115.50 l
+551.29 115.28 l
+551.75 114.85 l
+552.21 114.63 l
+552.67 115.50 l
+553.14 124.88 l
+553.60 114.85 l
+554.06 129.89 l
+554.52 116.59 l
+554.98 118.12 l
+555.44 116.37 l
+555.90 130.77 l
+556.36 128.37 l
+556.83 117.03 l
+557.29 130.55 l
+557.75 141.45 l
+558.21 140.80 l
+558.67 130.11 l
+559.13 121.17 l
+559.59 128.37 l
+560.05 141.23 l
+560.51 123.57 l
+560.98 131.86 l
+561.44 124.23 l
+561.90 146.90 l
+562.36 148.87 l
+562.82 139.93 l
+563.28 136.22 l
+563.74 136.44 l
+564.20 139.93 l
+564.67 140.80 l
+565.13 142.76 l
+565.59 144.51 l
+566.05 131.20 l
+566.51 130.11 l
+566.97 131.20 l
+567.43 136.87 l
+567.89 120.95 l
+568.35 114.85 l
+568.82 125.10 l
+569.28 138.62 l
+569.74 124.66 l
+570.20 122.92 l
+570.66 125.10 l
+571.12 129.46 l
+571.58 120.95 l
+572.04 114.85 l
+572.51 112.67 l
+572.97 113.32 l
+573.43 118.99 l
+573.89 133.38 l
+574.35 132.95 l
+574.81 140.80 l
+575.27 142.11 l
+575.73 114.85 l
+576.19 113.32 l
+576.66 115.50 l
+577.12 132.73 l
+577.58 133.38 l
+578.04 133.82 l
+578.50 135.13 l
+578.96 135.56 l
+579.42 124.66 l
+579.88 118.12 l
+580.35 117.90 l
+580.81 118.34 l
+581.27 118.77 l
+581.73 120.08 l
+582.19 119.65 l
+582.65 134.26 l
+583.11 137.53 l
+583.57 134.47 l
+584.03 133.38 l
+584.50 132.73 l
+584.96 131.20 l
+585.42 130.11 l
+585.88 130.11 l
+586.34 128.59 l
+586.80 127.06 l
+587.26 126.19 l
+587.72 126.41 l
+588.19 126.19 l
+588.65 124.88 l
+589.11 124.44 l
+589.57 123.79 l
+590.03 124.01 l
+590.49 123.13 l
+590.95 122.92 l
+591.41 123.79 l
+S
+0.627 0.125 0.941 RG
+76.75 112.89 m
+77.21 112.67 l
+77.67 112.45 l
+78.13 113.32 l
+78.59 113.76 l
+79.05 114.41 l
+79.51 112.23 l
+79.97 116.37 l
+80.44 117.46 l
+80.90 118.56 l
+81.36 118.34 l
+81.82 118.56 l
+82.28 120.08 l
+82.74 120.52 l
+83.20 119.65 l
+83.66 119.43 l
+84.13 120.74 l
+84.59 120.74 l
+85.05 120.08 l
+85.51 121.61 l
+85.97 121.39 l
+86.43 120.95 l
+86.89 121.61 l
+87.35 121.83 l
+87.81 120.74 l
+88.28 120.74 l
+88.74 120.95 l
+89.20 120.52 l
+89.66 119.86 l
+90.12 118.99 l
+90.58 118.77 l
+91.04 118.77 l
+91.50 119.43 l
+91.97 120.74 l
+92.43 118.77 l
+92.89 119.65 l
+93.35 119.86 l
+93.81 119.43 l
+94.27 119.65 l
+94.73 120.30 l
+95.19 121.83 l
+95.65 122.04 l
+96.12 122.48 l
+96.58 122.70 l
+97.04 122.70 l
+97.50 122.48 l
+97.96 121.61 l
+98.42 122.92 l
+98.88 122.92 l
+99.34 123.79 l
+99.81 123.35 l
+100.27 121.61 l
+100.73 123.79 l
+101.19 123.57 l
+101.65 124.01 l
+102.11 123.79 l
+102.57 125.32 l
+103.03 124.88 l
+103.49 123.79 l
+103.96 123.13 l
+104.42 123.57 l
+104.88 124.44 l
+105.34 122.92 l
+105.80 123.35 l
+106.26 122.92 l
+106.72 123.13 l
+107.18 123.35 l
+107.65 124.01 l
+108.11 125.53 l
+108.57 126.84 l
+109.03 127.50 l
+109.49 128.15 l
+109.95 128.80 l
+110.41 126.84 l
+110.87 127.50 l
+111.33 129.02 l
+111.80 129.24 l
+112.26 128.15 l
+112.72 128.59 l
+113.18 128.80 l
+113.64 128.15 l
+114.10 128.15 l
+114.56 129.68 l
+115.02 128.37 l
+115.49 128.59 l
+115.95 127.28 l
+116.41 127.06 l
+116.87 126.41 l
+117.33 126.84 l
+117.79 128.80 l
+118.25 129.68 l
+118.71 129.02 l
+119.17 130.11 l
+119.64 129.89 l
+120.10 129.46 l
+120.56 129.68 l
+121.02 132.73 l
+121.48 131.86 l
+121.94 132.08 l
+122.40 133.17 l
+122.86 131.64 l
+123.32 132.51 l
+123.79 132.73 l
+124.25 132.95 l
+124.71 131.64 l
+125.17 132.51 l
+125.63 134.69 l
+126.09 132.51 l
+126.55 133.38 l
+127.01 133.60 l
+127.48 133.82 l
+127.94 134.69 l
+128.40 134.69 l
+128.86 137.09 l
+129.32 136.44 l
+129.78 136.44 l
+130.24 137.96 l
+130.70 139.49 l
+131.16 139.93 l
+131.63 138.40 l
+132.09 137.75 l
+132.55 137.53 l
+133.01 137.75 l
+133.47 137.75 l
+133.93 138.84 l
+134.39 139.71 l
+134.85 139.27 l
+135.32 139.05 l
+135.78 137.75 l
+136.24 137.75 l
+136.70 137.31 l
+137.16 139.05 l
+137.62 141.67 l
+138.08 142.76 l
+138.54 143.42 l
+139.00 142.98 l
+139.47 142.76 l
+139.93 141.02 l
+140.39 141.23 l
+140.85 141.23 l
+141.31 142.11 l
+141.77 144.72 l
+142.23 143.85 l
+142.69 144.07 l
+143.16 143.63 l
+143.62 143.85 l
+144.08 143.20 l
+144.54 144.07 l
+145.00 144.07 l
+145.46 141.45 l
+145.92 142.98 l
+146.38 143.85 l
+146.84 144.29 l
+147.31 146.47 l
+147.77 146.90 l
+148.23 148.21 l
+148.69 148.87 l
+149.15 149.52 l
+149.61 148.43 l
+150.07 146.47 l
+150.53 144.72 l
+151.00 146.25 l
+151.46 146.69 l
+151.92 144.51 l
+152.38 143.20 l
+152.84 144.07 l
+153.30 146.25 l
+153.76 146.47 l
+154.22 147.56 l
+154.68 147.78 l
+155.15 146.25 l
+155.61 146.03 l
+156.07 147.56 l
+156.53 149.74 l
+156.99 149.96 l
+157.45 149.08 l
+157.91 150.18 l
+158.37 149.08 l
+158.84 147.99 l
+159.30 148.87 l
+159.76 148.87 l
+160.22 148.87 l
+160.68 151.92 l
+161.14 150.39 l
+161.60 151.05 l
+162.06 149.30 l
+162.52 149.52 l
+162.99 149.96 l
+163.45 152.79 l
+163.91 155.41 l
+164.37 156.06 l
+164.83 154.97 l
+165.29 155.63 l
+165.75 156.28 l
+166.21 155.84 l
+166.67 156.94 l
+167.14 157.37 l
+167.60 158.90 l
+168.06 158.68 l
+168.52 160.42 l
+168.98 159.55 l
+169.44 159.77 l
+169.90 161.73 l
+170.36 160.42 l
+170.83 162.39 l
+171.29 159.33 l
+171.75 156.72 l
+172.21 156.50 l
+172.67 157.37 l
+173.13 157.81 l
+173.59 157.59 l
+174.05 156.72 l
+174.51 157.15 l
+174.98 154.10 l
+175.44 153.88 l
+175.90 154.97 l
+176.36 156.06 l
+176.82 156.72 l
+177.28 159.12 l
+177.74 159.12 l
+178.20 157.15 l
+178.67 157.15 l
+179.13 156.72 l
+179.59 157.81 l
+180.05 157.59 l
+180.51 157.59 l
+180.97 157.81 l
+181.43 158.68 l
+181.89 160.86 l
+182.35 159.33 l
+182.82 159.99 l
+183.28 161.08 l
+183.74 161.73 l
+184.20 161.73 l
+184.66 161.51 l
+185.12 163.26 l
+185.58 162.82 l
+186.04 163.70 l
+186.51 162.82 l
+186.97 161.51 l
+187.43 162.61 l
+187.89 163.48 l
+188.35 163.48 l
+188.81 163.26 l
+189.27 164.35 l
+189.73 163.91 l
+190.19 163.26 l
+190.66 162.61 l
+191.12 162.39 l
+191.58 163.26 l
+192.04 163.70 l
+192.50 161.30 l
+192.96 161.73 l
+193.42 159.77 l
+193.88 160.21 l
+194.35 160.64 l
+194.81 158.68 l
+195.27 159.77 l
+195.73 160.42 l
+196.19 158.68 l
+196.65 154.75 l
+197.11 155.19 l
+197.57 155.63 l
+198.03 156.28 l
+198.50 155.19 l
+198.96 154.32 l
+199.42 156.94 l
+199.88 156.50 l
+200.34 156.50 l
+200.80 156.94 l
+201.26 157.81 l
+201.72 158.46 l
+202.19 157.59 l
+202.65 158.68 l
+203.11 158.68 l
+203.57 157.59 l
+204.03 157.15 l
+204.49 158.46 l
+204.95 157.59 l
+205.41 157.15 l
+205.87 157.37 l
+206.34 153.88 l
+206.80 153.45 l
+207.26 153.01 l
+207.72 152.79 l
+208.18 152.36 l
+208.64 152.57 l
+209.10 153.01 l
+209.56 153.66 l
+210.03 153.66 l
+210.49 152.57 l
+210.95 152.79 l
+211.41 152.36 l
+211.87 153.88 l
+212.33 151.92 l
+212.79 150.39 l
+213.25 152.14 l
+213.71 155.19 l
+214.18 155.41 l
+214.64 156.72 l
+215.10 155.63 l
+215.56 152.14 l
+216.02 151.27 l
+216.48 151.70 l
+216.94 152.79 l
+217.40 153.88 l
+217.86 153.66 l
+218.33 152.79 l
+218.79 154.32 l
+219.25 152.79 l
+219.71 152.79 l
+220.17 152.79 l
+220.63 154.32 l
+221.09 154.54 l
+221.55 153.23 l
+222.02 154.75 l
+222.48 153.88 l
+222.94 153.66 l
+223.40 154.75 l
+223.86 152.57 l
+224.32 153.23 l
+224.78 154.54 l
+225.24 153.88 l
+225.70 155.84 l
+226.17 158.68 l
+226.63 158.24 l
+227.09 158.46 l
+227.55 156.94 l
+228.01 158.90 l
+228.47 158.90 l
+228.93 160.86 l
+229.39 161.08 l
+229.86 161.95 l
+230.32 163.48 l
+230.78 160.21 l
+231.24 160.42 l
+231.70 160.21 l
+232.16 163.70 l
+232.62 164.13 l
+233.08 162.82 l
+233.54 165.00 l
+234.01 165.22 l
+234.47 165.88 l
+234.93 168.27 l
+235.39 169.15 l
+235.85 168.27 l
+236.31 167.84 l
+236.77 168.49 l
+237.23 167.84 l
+237.70 167.84 l
+238.16 167.18 l
+238.62 165.88 l
+239.08 166.53 l
+239.54 165.44 l
+240.00 163.70 l
+240.46 164.57 l
+240.92 164.79 l
+241.38 164.57 l
+241.85 162.61 l
+242.31 163.48 l
+242.77 162.61 l
+243.23 165.00 l
+243.69 164.35 l
+244.15 161.51 l
+244.61 166.97 l
+245.07 165.66 l
+245.54 168.27 l
+246.00 171.55 l
+246.46 172.64 l
+246.92 172.85 l
+247.38 173.29 l
+247.84 174.82 l
+248.30 172.85 l
+248.76 174.16 l
+249.22 171.98 l
+249.69 172.20 l
+250.15 173.07 l
+250.61 173.07 l
+251.07 169.58 l
+251.53 170.46 l
+251.99 168.49 l
+252.45 167.84 l
+252.91 168.06 l
+253.38 168.93 l
+253.84 168.49 l
+254.30 168.93 l
+254.76 169.37 l
+255.22 168.27 l
+255.68 170.89 l
+256.14 173.29 l
+256.60 171.11 l
+257.06 170.24 l
+257.53 171.11 l
+257.99 168.27 l
+258.45 168.71 l
+258.91 169.58 l
+259.37 168.06 l
+259.83 165.44 l
+260.29 166.53 l
+260.75 169.15 l
+261.22 168.71 l
+261.68 168.93 l
+262.14 169.80 l
+262.60 170.46 l
+263.06 167.62 l
+263.52 168.71 l
+263.98 167.18 l
+264.44 166.53 l
+264.90 167.62 l
+265.37 167.40 l
+265.83 170.89 l
+266.29 169.58 l
+266.75 170.02 l
+267.21 167.84 l
+267.67 168.93 l
+268.13 168.71 l
+268.59 169.15 l
+269.05 167.62 l
+269.52 165.88 l
+269.98 167.40 l
+270.44 168.06 l
+270.90 170.67 l
+271.36 170.46 l
+271.82 171.33 l
+272.28 171.98 l
+272.74 171.55 l
+273.21 169.58 l
+273.67 170.67 l
+274.13 172.42 l
+274.59 171.11 l
+275.05 170.24 l
+275.51 171.55 l
+275.97 171.11 l
+276.43 171.33 l
+276.89 171.11 l
+277.36 173.94 l
+277.82 174.82 l
+278.28 177.22 l
+278.74 176.34 l
+279.20 173.51 l
+279.66 173.07 l
+280.12 173.07 l
+280.58 175.47 l
+281.05 174.16 l
+281.51 174.38 l
+281.97 177.00 l
+282.43 174.38 l
+282.89 173.07 l
+283.35 172.64 l
+283.81 169.58 l
+284.27 170.46 l
+284.73 169.58 l
+285.20 169.15 l
+285.66 172.42 l
+286.12 171.76 l
+286.58 172.64 l
+287.04 173.94 l
+287.50 173.51 l
+287.96 169.15 l
+288.42 173.73 l
+288.89 175.04 l
+289.35 175.47 l
+289.81 175.25 l
+290.27 174.38 l
+290.73 176.78 l
+291.19 175.69 l
+291.65 177.22 l
+292.11 176.78 l
+292.57 178.09 l
+293.04 177.65 l
+293.50 176.56 l
+293.96 174.16 l
+294.42 172.64 l
+294.88 173.29 l
+295.34 175.25 l
+295.80 175.69 l
+296.26 174.60 l
+296.73 174.38 l
+297.19 175.91 l
+297.65 176.13 l
+298.11 178.31 l
+298.57 178.09 l
+299.03 178.52 l
+299.49 177.00 l
+299.95 177.00 l
+300.41 174.82 l
+300.88 175.25 l
+301.34 174.16 l
+301.80 174.82 l
+302.26 175.25 l
+302.72 173.07 l
+303.18 175.04 l
+303.64 174.38 l
+304.10 181.80 l
+304.57 175.25 l
+305.03 175.47 l
+305.49 177.22 l
+305.95 178.96 l
+306.41 175.91 l
+306.87 172.85 l
+307.33 174.38 l
+307.79 173.29 l
+308.25 175.47 l
+308.72 176.34 l
+309.18 181.36 l
+309.64 178.74 l
+310.10 174.38 l
+310.56 174.82 l
+311.02 175.04 l
+311.48 171.33 l
+311.94 174.16 l
+312.40 173.73 l
+312.87 175.47 l
+313.33 175.25 l
+313.79 172.85 l
+314.25 174.16 l
+314.71 173.94 l
+315.17 173.94 l
+315.63 175.47 l
+316.09 173.94 l
+316.56 173.29 l
+317.02 173.29 l
+317.48 173.94 l
+317.94 173.29 l
+318.40 176.34 l
+318.86 177.87 l
+319.32 177.65 l
+319.78 177.22 l
+320.24 175.25 l
+320.71 176.78 l
+321.17 176.34 l
+321.63 177.22 l
+322.09 177.43 l
+322.55 175.04 l
+323.01 174.38 l
+323.47 173.51 l
+323.93 175.04 l
+324.40 175.47 l
+324.86 175.69 l
+325.32 178.74 l
+325.78 178.52 l
+326.24 177.87 l
+326.70 178.96 l
+327.16 178.96 l
+327.62 180.05 l
+328.08 180.92 l
+328.55 183.10 l
+329.01 180.49 l
+329.47 180.27 l
+329.93 182.45 l
+330.39 183.54 l
+330.85 185.94 l
+331.31 183.98 l
+331.77 183.76 l
+332.24 183.54 l
+332.70 182.89 l
+333.16 184.19 l
+333.62 184.41 l
+334.08 184.63 l
+334.54 185.07 l
+335.00 184.19 l
+335.46 184.19 l
+335.92 185.28 l
+336.39 186.16 l
+336.85 188.12 l
+337.31 234.13 l
+337.77 298.24 l
+338.23 301.73 l
+338.69 297.59 l
+339.15 302.61 l
+339.61 306.97 l
+340.08 317.65 l
+340.54 317.22 l
+341.00 319.83 l
+341.46 319.40 l
+341.92 317.43 l
+342.38 314.60 l
+342.84 306.53 l
+343.30 307.18 l
+343.76 308.27 l
+344.23 315.04 l
+344.69 319.18 l
+345.15 322.67 l
+345.61 319.83 l
+346.07 321.80 l
+346.53 321.80 l
+346.99 323.10 l
+347.45 323.76 l
+347.92 325.28 l
+348.38 312.85 l
+348.84 198.37 l
+349.30 201.64 l
+349.76 204.47 l
+350.22 201.64 l
+350.68 200.77 l
+351.14 200.99 l
+351.60 195.53 l
+352.07 200.99 l
+352.53 200.33 l
+352.99 199.89 l
+353.45 200.55 l
+353.91 200.55 l
+354.37 204.04 l
+354.83 203.38 l
+355.29 201.64 l
+355.76 203.17 l
+356.22 204.04 l
+356.68 203.17 l
+357.14 204.91 l
+357.60 204.04 l
+358.06 201.20 l
+358.52 198.80 l
+358.98 204.47 l
+359.44 205.13 l
+359.91 202.29 l
+360.37 202.95 l
+360.83 202.29 l
+361.29 201.20 l
+361.75 198.80 l
+362.21 202.73 l
+362.67 203.17 l
+363.13 201.64 l
+363.59 202.51 l
+364.06 204.04 l
+364.52 203.60 l
+364.98 206.00 l
+365.44 206.87 l
+365.90 208.40 l
+366.36 205.35 l
+366.82 209.71 l
+367.28 206.87 l
+367.75 208.84 l
+368.21 208.18 l
+368.67 206.87 l
+369.13 209.71 l
+369.59 208.18 l
+370.05 208.84 l
+370.51 209.93 l
+370.97 160.86 l
+371.43 170.24 l
+371.90 163.04 l
+372.36 162.39 l
+372.82 180.70 l
+373.28 206.87 l
+373.74 208.18 l
+374.20 209.93 l
+374.66 213.85 l
+375.12 216.25 l
+375.59 215.60 l
+376.05 216.47 l
+376.51 216.90 l
+376.97 215.16 l
+377.43 217.78 l
+377.89 217.34 l
+378.35 219.74 l
+378.81 220.61 l
+379.27 216.69 l
+379.74 218.65 l
+380.20 217.78 l
+380.66 217.56 l
+381.12 216.47 l
+381.58 262.70 l
+382.04 262.48 l
+382.50 260.95 l
+382.96 260.95 l
+383.43 256.37 l
+383.89 269.24 l
+384.35 273.17 l
+384.81 274.91 l
+385.27 271.86 l
+385.73 181.36 l
+386.19 181.58 l
+386.65 183.32 l
+387.11 183.76 l
+387.58 182.89 l
+388.04 183.98 l
+388.50 186.16 l
+388.96 183.76 l
+389.42 184.63 l
+389.88 183.10 l
+390.34 179.61 l
+390.80 179.18 l
+391.27 179.83 l
+391.73 181.14 l
+392.19 176.56 l
+392.65 175.69 l
+393.11 176.34 l
+393.57 178.09 l
+394.03 178.74 l
+394.49 179.40 l
+394.95 184.85 l
+395.42 183.32 l
+395.88 183.10 l
+396.34 188.56 l
+396.80 192.92 l
+397.26 188.56 l
+397.72 194.88 l
+398.18 195.75 l
+398.64 186.37 l
+399.11 193.13 l
+399.57 194.88 l
+400.03 226.72 l
+400.49 226.28 l
+400.95 226.28 l
+401.41 229.12 l
+401.87 225.19 l
+402.33 222.57 l
+402.79 223.66 l
+403.26 222.36 l
+403.72 220.18 l
+404.18 227.15 l
+404.64 226.06 l
+405.10 220.39 l
+405.56 218.43 l
+406.02 200.77 l
+406.48 197.93 l
+406.94 197.50 l
+407.41 203.38 l
+407.87 201.86 l
+408.33 200.77 l
+408.79 208.18 l
+409.25 200.33 l
+409.71 201.42 l
+410.17 201.64 l
+410.63 204.69 l
+411.10 204.91 l
+411.56 204.47 l
+412.02 205.13 l
+412.48 201.20 l
+412.94 201.86 l
+413.40 198.80 l
+413.86 201.86 l
+414.32 203.82 l
+414.78 204.47 l
+415.25 205.78 l
+415.71 207.96 l
+416.17 207.75 l
+416.63 228.24 l
+417.09 214.29 l
+417.55 209.71 l
+418.01 210.14 l
+418.47 208.18 l
+418.94 208.18 l
+419.40 205.78 l
+419.86 209.27 l
+420.32 228.90 l
+420.78 227.59 l
+421.24 226.50 l
+421.70 224.54 l
+422.16 225.41 l
+422.62 204.04 l
+423.09 212.54 l
+423.55 230.64 l
+424.01 231.73 l
+424.47 214.94 l
+424.93 208.84 l
+425.39 229.12 l
+425.85 226.28 l
+426.31 225.19 l
+426.78 225.84 l
+427.24 223.23 l
+427.70 224.10 l
+428.16 224.97 l
+428.62 226.28 l
+429.08 214.94 l
+429.54 213.85 l
+430.00 227.37 l
+430.46 214.07 l
+430.93 227.59 l
+431.39 228.46 l
+431.85 205.35 l
+432.31 200.77 l
+432.77 225.41 l
+433.23 226.28 l
+433.69 214.07 l
+434.15 216.90 l
+434.62 217.56 l
+435.08 214.51 l
+435.54 212.11 l
+436.00 208.40 l
+436.46 211.45 l
+436.92 212.32 l
+437.38 209.49 l
+437.84 208.62 l
+438.30 206.44 l
+438.77 208.18 l
+439.23 211.89 l
+439.69 210.58 l
+440.15 213.85 l
+440.61 203.17 l
+441.07 211.67 l
+441.53 213.42 l
+441.99 209.71 l
+442.46 208.40 l
+442.92 210.58 l
+443.38 211.45 l
+443.84 209.71 l
+444.30 209.27 l
+444.76 210.58 l
+445.22 210.58 l
+445.68 208.40 l
+446.14 211.02 l
+446.61 204.69 l
+447.07 213.85 l
+447.53 216.69 l
+447.99 210.58 l
+448.45 182.01 l
+448.91 180.05 l
+449.37 180.49 l
+449.83 179.61 l
+450.30 178.31 l
+450.76 177.65 l
+451.22 179.40 l
+451.68 179.83 l
+452.14 177.65 l
+452.60 177.43 l
+453.06 178.31 l
+453.52 205.35 l
+453.98 195.32 l
+454.45 176.13 l
+454.91 176.34 l
+455.37 175.69 l
+455.83 172.85 l
+456.29 172.42 l
+456.75 173.51 l
+457.21 186.81 l
+457.67 183.76 l
+458.13 184.63 l
+458.60 175.91 l
+459.06 172.42 l
+459.52 205.78 l
+459.98 187.25 l
+460.44 168.49 l
+460.90 165.22 l
+461.36 162.82 l
+461.82 163.91 l
+462.29 161.95 l
+462.75 159.55 l
+463.21 165.22 l
+463.67 182.89 l
+464.13 197.06 l
+464.59 187.46 l
+465.05 199.68 l
+465.51 203.60 l
+465.97 205.56 l
+466.44 205.56 l
+466.90 206.22 l
+467.36 204.04 l
+467.82 185.94 l
+468.28 161.08 l
+468.74 157.15 l
+469.20 163.04 l
+469.66 165.44 l
+470.13 168.27 l
+470.59 167.62 l
+471.05 168.49 l
+471.51 161.95 l
+471.97 165.88 l
+472.43 165.66 l
+472.89 163.70 l
+473.35 162.17 l
+473.81 172.20 l
+474.28 165.66 l
+474.74 179.18 l
+475.20 169.58 l
+475.66 165.44 l
+476.12 163.91 l
+476.58 164.13 l
+477.04 165.44 l
+477.50 191.83 l
+477.97 205.56 l
+478.43 158.24 l
+478.89 157.59 l
+479.35 155.84 l
+479.81 156.06 l
+480.27 156.28 l
+480.73 160.64 l
+481.19 166.53 l
+481.65 175.91 l
+482.12 164.35 l
+482.58 164.57 l
+483.04 165.66 l
+483.50 164.35 l
+483.96 160.42 l
+484.42 196.19 l
+484.88 216.25 l
+485.34 216.47 l
+485.81 214.51 l
+486.27 214.94 l
+486.73 215.38 l
+487.19 215.81 l
+487.65 210.14 l
+488.11 210.58 l
+488.57 210.80 l
+489.03 209.71 l
+489.49 211.02 l
+489.96 205.35 l
+490.42 207.31 l
+490.88 208.18 l
+491.34 208.62 l
+491.80 209.05 l
+492.26 205.13 l
+492.72 206.44 l
+493.18 206.65 l
+493.65 205.78 l
+494.11 207.09 l
+494.57 208.18 l
+495.03 208.62 l
+495.49 207.96 l
+495.95 177.65 l
+496.41 164.13 l
+496.87 164.13 l
+497.33 163.04 l
+497.80 161.30 l
+498.26 161.73 l
+498.72 164.13 l
+499.18 166.09 l
+499.64 182.23 l
+500.10 207.31 l
+500.56 202.08 l
+501.02 163.26 l
+501.49 202.95 l
+501.95 180.27 l
+502.41 161.51 l
+502.87 164.13 l
+503.33 163.48 l
+503.79 164.35 l
+504.25 161.08 l
+504.71 161.51 l
+505.17 188.56 l
+505.64 200.99 l
+506.10 162.39 l
+506.56 161.73 l
+507.02 162.17 l
+507.48 163.70 l
+507.94 163.91 l
+508.40 163.48 l
+508.86 170.46 l
+509.32 205.13 l
+509.79 184.85 l
+510.25 171.33 l
+510.71 164.57 l
+511.17 167.40 l
+511.63 190.74 l
+512.09 191.39 l
+512.55 165.44 l
+513.01 165.66 l
+513.48 164.79 l
+513.94 166.09 l
+514.40 167.62 l
+514.86 166.31 l
+515.32 164.35 l
+515.78 163.70 l
+516.24 162.61 l
+516.70 163.48 l
+517.16 165.66 l
+517.63 166.53 l
+518.09 163.70 l
+518.55 163.91 l
+519.01 163.48 l
+519.47 164.57 l
+519.93 162.61 l
+520.39 161.30 l
+520.85 161.95 l
+521.32 160.86 l
+521.78 160.64 l
+522.24 159.55 l
+522.70 159.33 l
+523.16 160.64 l
+523.62 164.13 l
+524.08 168.06 l
+524.54 167.18 l
+525.00 180.05 l
+525.47 161.51 l
+525.93 167.18 l
+526.39 163.48 l
+526.85 162.39 l
+527.31 165.00 l
+527.77 190.08 l
+528.23 201.64 l
+528.69 201.64 l
+529.16 202.08 l
+529.62 201.20 l
+530.08 202.73 l
+530.54 202.95 l
+531.00 201.42 l
+531.46 201.20 l
+531.92 201.42 l
+532.38 199.02 l
+532.84 198.80 l
+S
+533.77 204.47 m
+534.23 198.15 l
+534.69 191.17 l
+535.15 189.65 l
+535.61 187.25 l
+536.07 187.46 l
+536.53 192.04 l
+537.00 191.83 l
+537.46 190.74 l
+537.92 189.86 l
+538.38 189.43 l
+538.84 189.86 l
+539.30 187.46 l
+539.76 185.28 l
+540.22 188.12 l
+540.68 188.99 l
+541.15 186.59 l
+541.61 183.98 l
+542.07 192.92 l
+542.53 186.59 l
+542.99 189.21 l
+543.45 188.56 l
+543.91 184.85 l
+544.37 185.94 l
+544.84 185.50 l
+545.30 184.85 l
+545.76 183.32 l
+546.22 185.07 l
+546.68 186.16 l
+547.14 186.16 l
+547.60 183.98 l
+548.06 184.41 l
+548.52 182.89 l
+548.99 184.19 l
+549.45 183.98 l
+549.91 183.76 l
+550.37 184.41 l
+550.83 185.07 l
+551.29 183.98 l
+551.75 183.76 l
+552.21 183.32 l
+552.67 185.50 l
+553.14 183.98 l
+553.60 181.14 l
+554.06 182.67 l
+554.52 182.23 l
+554.98 183.76 l
+555.44 181.58 l
+555.90 179.83 l
+556.36 183.32 l
+556.83 179.18 l
+557.29 180.92 l
+557.75 178.74 l
+558.21 180.27 l
+558.67 184.41 l
+559.13 192.48 l
+559.59 192.48 l
+560.05 190.52 l
+560.51 189.65 l
+560.98 186.37 l
+561.44 184.63 l
+561.90 188.77 l
+562.36 189.21 l
+562.82 186.59 l
+563.28 189.21 l
+563.74 187.90 l
+564.20 188.77 l
+564.67 192.92 l
+565.13 194.66 l
+565.59 196.84 l
+566.05 198.15 l
+566.51 196.84 l
+566.97 196.19 l
+567.43 196.62 l
+567.89 193.35 l
+568.35 195.10 l
+568.82 197.71 l
+569.28 195.75 l
+569.74 196.84 l
+570.20 196.62 l
+570.66 211.02 l
+571.12 222.36 l
+571.58 209.49 l
+572.04 197.71 l
+572.51 197.28 l
+572.97 195.75 l
+573.43 196.62 l
+573.89 196.84 l
+574.35 198.59 l
+574.81 202.29 l
+575.27 204.69 l
+575.73 203.60 l
+576.19 202.73 l
+576.66 207.96 l
+577.12 239.58 l
+577.58 239.15 l
+578.04 239.80 l
+578.50 241.11 l
+578.96 240.46 l
+579.42 219.08 l
+579.88 206.00 l
+580.35 204.47 l
+580.81 206.65 l
+581.27 207.31 l
+581.73 208.84 l
+582.19 209.71 l
+582.65 243.73 l
+583.11 253.54 l
+583.57 247.00 l
+584.03 247.22 l
+584.50 250.27 l
+584.96 250.49 l
+585.42 247.65 l
+585.88 243.29 l
+586.34 238.49 l
+586.80 234.79 l
+587.26 233.70 l
+587.72 233.26 l
+588.19 236.53 l
+588.65 234.13 l
+589.11 230.86 l
+589.57 228.24 l
+590.03 227.37 l
+590.49 224.97 l
+590.95 225.84 l
+591.41 226.72 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.60 w
+[] 0 d
+1 J
+1 j
+10.00 M
+227.55 59.04 m 564.67 59.04 l S
+227.55 59.04 m 227.55 51.84 l S
+395.88 59.04 m 395.88 51.84 l S
+564.67 59.04 m 564.67 51.84 l S
+86.43 59.04 m 578.96 59.04 l S
+86.43 59.04 m 86.43 57.60 l S
+100.73 59.04 m 100.73 57.60 l S
+114.56 59.04 m 114.56 57.60 l S
+128.86 59.04 m 128.86 57.60 l S
+142.69 59.04 m 142.69 57.60 l S
+156.99 59.04 m 156.99 57.60 l S
+171.29 59.04 m 171.29 57.60 l S
+185.12 59.04 m 185.12 57.60 l S
+199.42 59.04 m 199.42 57.60 l S
+213.25 59.04 m 213.25 57.60 l S
+227.55 59.04 m 227.55 57.60 l S
+241.85 59.04 m 241.85 57.60 l S
+254.76 59.04 m 254.76 57.60 l S
+269.05 59.04 m 269.05 57.60 l S
+282.89 59.04 m 282.89 57.60 l S
+297.19 59.04 m 297.19 57.60 l S
+311.02 59.04 m 311.02 57.60 l S
+325.32 59.04 m 325.32 57.60 l S
+339.61 59.04 m 339.61 57.60 l S
+353.45 59.04 m 353.45 57.60 l S
+367.75 59.04 m 367.75 57.60 l S
+381.58 59.04 m 381.58 57.60 l S
+395.88 59.04 m 395.88 57.60 l S
+410.17 59.04 m 410.17 57.60 l S
+423.55 59.04 m 423.55 57.60 l S
+437.84 59.04 m 437.84 57.60 l S
+451.68 59.04 m 451.68 57.60 l S
+465.97 59.04 m 465.97 57.60 l S
+479.81 59.04 m 479.81 57.60 l S
+494.11 59.04 m 494.11 57.60 l S
+508.40 59.04 m 508.40 57.60 l S
+522.24 59.04 m 522.24 57.60 l S
+536.53 59.04 m 536.53 57.60 l S
+550.37 59.04 m 550.37 57.60 l S
+564.67 59.04 m 564.67 57.60 l S
+578.96 59.04 m 578.96 57.60 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 6.00 0.00 -0.00 6.00 90.85 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 105.64 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 118.98 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 134.28 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 148.11 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 161.91 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 176.20 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 189.71 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 204.17 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 218.00 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 232.97 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 246.93 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 259.18 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 273.97 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 287.31 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 302.60 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 316.44 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 330.23 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 344.53 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 358.03 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 372.50 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 386.33 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 401.29 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 415.26 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 427.97 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 442.76 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 456.10 48.96 Tm (M) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 471.39 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 485.23 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 499.02 48.96 Tm (A) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 513.32 48.96 Tm (S) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 526.82 48.96 Tm (O) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 541.29 48.96 Tm (N) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 555.12 48.96 Tm (D) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 570.08 48.96 Tm (J) Tj
+ET
+BT
+/F2 1 Tf 6.00 0.00 -0.00 6.00 584.05 48.96 Tm (F) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 129.81 33.12 Tm (2006) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 298.14 33.12 Tm (2007) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 466.47 33.12 Tm (2008) Tj
+ET
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+76.75 59.04 m
+591.41 59.04 l
+S
+Q q
+0.000 0.000 0.000 RG
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+56.16 72.11 m 56.16 399.21 l S
+56.16 72.11 m 48.96 72.11 l S
+56.16 181.14 m 48.96 181.14 l S
+56.16 290.18 m 48.96 290.18 l S
+56.16 399.21 m 48.96 399.21 l S
+BT
+0.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 35.09 67.80 Tm (0) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 21.74 176.83 Tm (500) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 15.07 285.87 Tm (1000) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 15.07 394.90 Tm (1500) Tj
+ET
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 612.00 333.62 Tm (Total) Tj
+ET
+BT
+0.000 0.392 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 612.00 184.03 Tm (Exit) Tj
+ET
+BT
+1.000 0.000 0.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 612.00 313.13 Tm (Fast) Tj
+ET
+BT
+0.000 0.000 1.000 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 612.00 119.48 Tm (Guard) Tj
+ET
+BT
+0.627 0.125 0.941 rg
+/F2 1 Tf 12.00 0.00 -0.00 12.00 612.00 222.41 Tm (Stable) Tj
+ET
+Q
+endstream
+endobj
+7 0 obj
+94071
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+5 0 R
+]
+/Count 1
+/MediaBox [0 0 648 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font <</F2 9 0 R /F3 10 0 R >>
+/ExtGState << >>
+>>
+endobj
+8 0 obj
+<<
+/Type /Encoding
+/BaseEncoding /WinAnsiEncoding
+/Differences [ 45/minus 96/quoteleft
+144/dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
+/dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron /space]
+>>
+endobj
+9 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 8 0 R
+>> endobj
+10 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F3
+/BaseFont /Helvetica-Bold
+/Encoding 8 0 R
+>> endobj
+xref
+0 11
+0000000000 65535 f
+0000000021 00000 n
+0000000163 00000 n
+0000094437 00000 n
+0000094520 00000 n
+0000000212 00000 n
+0000000292 00000 n
+0000094416 00000 n
+0000094612 00000 n
+0000094869 00000 n
+0000094965 00000 n
+trailer
+<<
+/Size 11
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+95067
+%%EOF
1
0