Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • liangb30/cas-741-boliang
  • pignierb/cas741
  • jimoha1/cas741
  • huoy8/cas741
  • grandhia/cas741
  • chenq84/cas741
  • yex33/cas741
  • xuey45/cas741
  • garcilau/cas-741-uriel-garcilazo-msa
  • schankuc2/cas741
  • ahmady3/cas741
  • saadh/cas741
  • singhk56/cas741
  • lin523/cas741
  • fangz58/cas741
  • tranp30/cas741
  • ceranich/cas741
  • norouf1/cas741
  • mirzam48/cas741
  • djavahet/cas741
  • hossaa27/cas741
  • yiding_el/cas-741-upate-name
  • sayadia/cas741
  • elmasn2/cas741
  • cheemf8/cas741
  • cheny997/cas741
  • ma209/cas741
  • mousas26/cas741
  • liuy363/cas741
  • wongk124/cas741
  • dua11/cas741
  • zhoug28/cas741
  • courses/cas-741-tst
  • liy443/cas-741-fork-csv
  • sochania/cas741
  • liy443/cas-741-update-csv-old
  • mahdipoa/cas741
  • wangz892/cas741
  • wangn14/cas741
  • defourej/cas741
  • zhaox183/cas741
  • smiths/cas741
42 results
Show changes
Showing
with 25227 additions and 0 deletions
File added
Source diff could not be displayed: it is too large. Options to address this: view the blob.
\documentclass[12pt,titlepage]{article}
\include{Preamble}
\author{Wen Yu}
\begin{document}
\begin{titlepage}
% Fonts for the title page
\newcommand{\texttl}{\textsf} %font for the title (Emil's version is \textsf)
\newcommand{\textau}{\textsf} %font for the authors, date, etc. (Emils version is \textsc)
\begin{center}
\HRule \\[0.4cm]
{ \huge \bfseries \texttl{Module Interface Specification for a Parallel Mesh Generation Toolbox}}\\[0.4cm]
\HRule \\[2cm]
\textau{\LARGE Wen Yu}\\[2cm]
\textau{\LARGE {September 2008}}
\vfill
% Bottom of the page
%\includegraphics[width=0.27\textwidth]{logo.pdf}
\hfill
\textau{\LARGE
\raisebox{2pt}{\begin{tabular}[b]{r}
\raisebox{8pt}{Computing and Software} \\
McMaster University \end{tabular}}
}
\end{center}
\end{titlepage}
\tableofcontents
\newpage
\section{Introduction \label{AmisSecIntro}}
One of the advantages of decomposing the system into modules is that each module can be developed independently. However, the secret and services of each module does not provide enough information for parallel coding. A document specifying the interface of each module, called the Module Interface Specification (MIS), is needed. An MIS of a particular module is not only used as a guide by the programmers that are responsible for coding this module, but also by programmers that will use this module. An MIS is abstract because it describes \emph{what} the module will do, but not \emph{how} to do it.
This MIS describes the services of the corresponding modules specified in the document ``Module Guide for a Mesh Generator.'' A state machine MIS is used. Note that some of the modules have multiple projections. In this case, variables listed in section \emph{state variables} give the format of all states for all of the created objects. The idea of multiple projection is also used in \citet{Bauer1995}. By using projections, the change of state variables is applicable to the particular object associated with this module. In this system, this particular kind of modules includes the module Vertex, Edge, Cell, and Mesh.
The rest of the document is organized as follows. Section \ref{AmisSecTemplate} describes the MIS template used in this document. Section \ref{AmisSecMD} copies the module hierarchy from \emph{Module Guide} document for convenience. Section \ref{AmisSecV}, Section \ref{AmisSecE}, Section \ref{AmisSecC}, Section \ref{AmisSecM}, Section \ref{AmisSecSer}, Section \ref{AmisSecRef}, Section \ref{AmisSecCoa} give the MISs for the Vertex Module, Edge Module, Cell Module, Mesh Module, Service Module, Refining Module, and Coarsening Module, respectively.
\section{Template \label{AmisSecTemplate}}
This section gives the template used in this document. This template is modified version of the MIS template presented in \citet{Ghezzi2003} and \citet{Hoffman1999}. According to this template, each module is modeled as a finite state machine. It has a set of state variables, inputs, outputs, and transitions. In the case that an exception conditions become true, an exception is raised by the associated access program. If an access program has an output, then \emph{Output} is specified. If an access program changes states variables, a \emph{Transition} is specified. The inputs of the access program are listed as arguments.
The discrete mathematics notation used here follows that introduced by \citet{Gries1993}. This notation is explained in the SRS. A dot notation is used in two cases. One is for referring to a field in a tuple, and the other is for referencing the access program of a module.
The whole template is composed of four parts. First, the name of the module is given. Second, constants, data types, and access programs that are used by this module, but defined outside of this module, are listed. Third, the syntax of the interface is specified. Finally, the semantics of the interface is described. The template is described in the rest of this section.
\subsection{Module Name}
If ``{\bf (MP)}'' is appended to the name of the module, it means that this module has multiple projections.
\subsection{Uses}
This section lists constants, data types, and access programs that are defined outside of this module. The format of each imported item is specified after each header.
\subsubsection{Imported Constants}
{\bf Uses} $\langle$ \emph{module name} $\rangle$ {\bf Imports} $\langle$ \emph{resource constants list} $\rangle$
\subsubsection{Imported Data Types}
{\bf Uses} $\langle$ \emph{module name} $\rangle$ {\bf Imports} $\langle$ \emph{resource data type list}$\rangle$
\subsubsection{Imported Access Programs}
{\bf Uses} $\langle$ \emph{module name} $\rangle$ {\bf Imports} $\langle$ \emph{resource access program list}$\rangle$
\subsection{Interface Syntax}
This section defines the syntax of the module interface. The interface indicates the services that the module provides. Other modules can only access this module through this interface. Other information inside the module is the secret that it hides from other modules. Changing the internal design of a module will not affect the way that other modules use this module. The format of each exported items is specified after each header.
\subsubsection{Exported Constants}
\emph{constant name : type of the constant}
\subsubsection{Exported Data Types}
\emph{data type name := structure of the data type}
\subsubsection{Exported Access Programs}
The exported access programs are listed in the tabular format shown below. In this software, exceptions are handled inside the access routine by displaying error messages and terminating the program.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
\end{tabular}
\end{table}
\subsection{Interface Semantics}
The semantics of the interface is introduced in this section. The components of this section include state variables, state invariants, access program semantics, \emph{etc}.
\subsubsection{State Variables}
This section lists the state variables in the format of \emph{variable name}: \emph{type}
\subsubsection{Assumption}
Any assumption about this module are specified here.
\subsubsection{Invariant}
Predicates that should always hold before and after each access routine in the module.
\subsubsection{Access Program Semantics} This section includes possible exceptions, possible outputs, and possible transitions. The contents of this section should be as formal as possible. When necessary and appropriate, an English explanation is included to help readers understand the meaning of some the mathematical notations.
\subsubsection{Local Functions} Functions used to facilitate the expression of the interface semantics.
\subsubsection{Local Data Types} Data types used to facilitate the expression of the interface semantics.
\subsubsection{Local Constants} Constants used to facilitate the expression of interface semantics.
\subsubsection{Considerations} Other issues related to the MIS of this module, but not covered in the other parts of the document.
\section{Module Decomposition \label{AmisSecMD}}
\begin{table}[ht]
\centering
\begin{tabular}{p{0.15\textwidth}|p{0.25\textwidth}|p{0.25\textwidth}|p{0.2\textwidth}}
\hline
\textbf{Level 1} & \textbf{Level 2} & \textbf{Level 3} & \textbf{Level 4} \\ \hline
\multirow{4}{0.15\textwidth}{Hardware-Hiding Module}
& \multirow{2}{0.25\textwidth}{Extended Computer Module} & Virtual Memory Module& \\ \cline{3-3}
& & File Read/Write Module & \\ \cline{2-3}
& \multirow{2}{0.25\textwidth}{Device Interface Module} & Keyboard Input Module & \\\cline{3-3}
& & Screen Display Module & \\\hline
\multirow{3}{0.15\textwidth}{Behavior-Hiding Module} & Input Format Module & &\\ \cline{2-2}
& Output Format Module & &\\ \cline{2-2}
& Service Module & &\\\hline
\multirow{5}{0.15\textwidth}{Software Decision Module}
& \multirow{4}{0.25\textwidth}{Mesh Data Module} &
\multirow{3}{0.25\textwidth}{Entity Module} & Vertex Module \\ \cline{4-4}
& & & Edge Module \\ \cline{4-4}
& & & Cell Module \\ \cline{3-4}
& & Mesh Module & \\ \cline{2-4}
& \multirow {2}{0.25\textwidth}{Algorithm Module} & Refining Module & \\ \cline{3-3}
& & Coarsening Module & \\ \hline
\end{tabular}
\caption{Module Hierarchy}
\label{AmisMH}
\end{table}
PMGT is decomposited into the modules listed in Table \ref{AmisMH}. Note that only the leaf modules are implemented. The \emph{Virtual Memory Module}, \emph{File Read/Write Module}, \emph{Keyboard Input Module}, and \emph{Screen Display Module} are implemented by the operating system and programming language libraries. More information on the modular decomposition of the PMGT can be found in the MG document.
\section{MIS of Vertex Module \label{AmisSecV}}
\subsection{Module Name: Vertex (MP)}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types} None
\subsubsection{Imported Access Programs}None
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types}
{\tt VertexT} := tuple of ($x: \mathbb{R},\ y: \mathbb{R}$)
\subsubsection{Exported Access Programs}
The exported access programs for the vertex module are listed in Table \ref{AmisVEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
initVertex & $\mathbb{R}$, $\mathbb{R}$ & & \\
\hline
getVertex & & {\tt VertexT} & \\
\hline
\end{tabular}
\caption{Exported Access Programs of the Vertex Module}
\label{AmisVEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}
$x: \mathbb{R}$\\
$y: \mathbb{R}$
\subsubsection{Invariant} None
\subsubsection{Assumptions}initVertex() is called before any other access routine.
\subsubsection{Access Program Semantics}
\paragraph{initVertex($x1: \mathbb{R}, \ y1: \mathbb{R}$)}
\begin{itemize}
\item \textbf{Transition}\\
$x := x1$ \\
$y := y1$
\end{itemize}
\paragraph{getVertex()}
\begin{itemize}
\item \textbf{Output}\\ $( x, y)$
\end{itemize}
\subsubsection{Local Functions} None
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations} None
\section{MIS of Edge Module \label{AmisSecE}}
\subsection{Module Name: Edge (MP)}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types}
{\bf Uses} \emph{Vertex Module} {\bf Imports} \texttt{VertexT}
\subsubsection{Imported Access Programs}None
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types}
{\tt EdgeT} := set of {\tt VertexT}
\subsubsection{Exported Access Programs}
The exported access programs for the Edge module are listed in Table \ref{AmisEEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
initEdge & {\tt VertexT, VertexT}& & EqualVertices\\
\hline
getEdge & & {\tt EdgeT} & \\
\hline
\end{tabular}
\caption{Exported Access Programs of the Edge Module}
\label{AmisEEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}
$e$: set of {\tt VertexT}
\subsubsection{Invariant} $\# e = 2$
\subsubsection{Assumptions}initEdge() is called before any other access routine.
\subsubsection{Access Program Semantics} None
\paragraph{initEdge({\it start}: {\tt VertexT}, {\it end}: {\tt VertexT})}
\begin{itemize}
\item \textbf{Exception}\\ {\it start = end} $\Longrightarrow$ EqualVertices
\item \textbf{Transition}\\ {\it e: = \{start, end\}}
\end{itemize}
\paragraph{getEdge()}
\begin{itemize}
\item \textbf{Output}\\ $e$
\end{itemize}
\subsubsection{Local Functions} None
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations} None
\section{MIS of Cell Module \label{AmisSecC}}
\subsection{Module Name: Cell (MP)}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types}
{\bf Uses} \emph{Vertex Module} {\bf Imports} \texttt{VertexT}
\subsubsection{Imported Access Programs}None
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types}
{\tt CellT} := set of {\tt VertexT}
\subsubsection{Exported Access Programs}
The exported access programs for the cell module are listed in Table \ref{AmisCEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
initCell & {\tt VertexT, VertexT, VertexT} & & EqualVertices\\
\hline
getCell & & {\tt CellT} & \\
\hline
\end{tabular}
\caption{Exported Access Programs of the Cell Module}
\label{AmisCEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}
$c$: set of {\tt VertexT}
\subsubsection{Invariant} $\# c = 3$
\subsubsection{Assumptions}initCell() is called before any other access routine.
\subsubsection{Access Program Semantics}None
\paragraph{initCell($v1$: {\tt VertexT}, $v2$: {\tt VertexT}, $v3$: {\tt VertexT})}
\begin{itemize}
\item \textbf{Exception}\\ $v1=v2 \vee v2=v3 \vee v3=v1 \Longrightarrow$ EqualVertices
\item \textbf{Transition}\\
$c := \{v1, v2, v3\}$
\end{itemize}
\paragraph{getCell()}
\begin{itemize}
\item \textbf{Output}\\ $c$
\end{itemize}
\subsubsection{Local Functions} None
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations} None
\section{MIS of Mesh Module \label{AmisSecM}}
\subsection{Module Name: Mesh (MP)}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types}
{\bf Uses} \emph{Vertex Module} {\bf Imports} \texttt{VertexT} \\
{\bf Uses} \emph{Edge Module} {\bf Imports} \texttt{EdgeT} \\
{\bf Uses} \emph{Cell Module} {\bf Imports} \texttt{CellT}
\subsubsection{Imported Access Programs}None
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types}
{\tt MeshT} := set of {\tt CellT}
\subsubsection{Exported Access Programs}
The exported access programs for the mesh module are listed in Table \ref{AmisMEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
initMesh & & & \\
\hline
getMesh & & {\tt MeshT} & \\
\hline
numOfCells & & $\mathbb{N}$ & \\
\hline
addCell & {\tt CellT} & & CellExist\\
\hline
deleteCell & {\tt CellT} & & CellNotExist\\
\hline
onEdge & {\tt VertexT, EdgeT}& $\mathbb{B}$ & \\
\hline
belongToCell &{\tt EdgeT , CellT}&$ \mathbb{B}$&\\
\hline
inside &{\tt VertexT , CellT}&$ \mathbb{B}$&\\
\hline
vertices & & set of {\tt VertexT}&\\
\hline
edges & & set of {\tt EdgeT}&\\
\hline
boundaryEdges & & set of {\tt EdgeT}&\\
\hline
boundaryVertices & &set of {\tt VertexT}&\\
\hline
\end{tabular}
\caption{Exported Access Programs of the Mesh Module}
\label{AmisMEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}
$m$: set of {\tt CellT}
\subsubsection{Invariant}
$\# m\geq 0$
\subsubsection{Assumptions}initCell() is called before any other access routine.
\subsubsection{Access Program Semantics}
\paragraph{initMesh()}
\begin{itemize}
\item \textbf{Transition}\\
$ m := \emptyset$
\end{itemize}
\paragraph{getMesh()}
\begin{itemize}
\item \textbf{Output}\\ $m$
\end{itemize}
\paragraph{numOfCells()}
\begin{itemize}
\item \textbf{Output} \\
$\# m$
\end{itemize}
\paragraph{addCell($c$: {\tt CellT})}
\begin{itemize}
\item \textbf{Exception}\\
$c \in m \Longrightarrow$ CellExist
\item \textbf{Transition} \\
$m := m \cup \{c\}$
\end{itemize}
\paragraph{deleteCell($c$: {\tt CellT})}
\begin{itemize}
\item \textbf{Exception}\\
$c \notin m \Longrightarrow$ CellNotExist
\item \textbf{Transition} \\
$m := m \backslash \{c\}$
\end{itemize}
\paragraph{onEdge($v$: {\tt VertexT}, $e$: {\tt EdgeT})}
\begin{itemize}
\item \textbf{Description}\\
Returns true if a vertex $v$ is on the line segment between two vertices (exclusive) of the edge $e$.
\item \textbf{Output} \\
$ \exists v1,v2$: {\tt VertexT} $|\\
v1\in e \wedge v2\in e \wedge v1\neq v2 \wedge v\neq v1 \wedge v\neq v2:\\
(v1.x < v.x\leq v2.x \wedge \\(v.y-v1.y)/(v.x-v1.x)=(v2.y-v1.y)/(v2.x-v1.x))$
\end{itemize}
\paragraph{belongToCell($e$: {\tt EdgeT}, $c$: {\tt CellT})}
\begin{itemize}
\item \textbf{Description}\\
Returns true if an edge $e$ belongs to a cell $c$.
\item \textbf{Output} \\
$\forall v$: {\tt VertexT} $|\ v\in e: v\in c$
\end{itemize}
\paragraph{inside($v$: {\tt VertexT}, $c$: {\tt CellT})}
\begin{itemize}
\item \textbf{Description}\\
Returns true if a vertex $v$ is inside a cell $c$. (The algorithm is adopt from \citet{Franklin2006}.)
\item \textbf{Output} \\
$\exists v1, v2, v3$: {\tt VertexT} $|\\
v1\in c \wedge v2\in c \wedge v3\in c \wedge v1\neq v2 \wedge v2\neq v3 \wedge v3 \neq v1:\\
((v.y-v1.y)*(v2.x-v1.x)-(v.x-v1.x)*(v2.y-v1.y))*\\
((v.y-v2.y)*(v3.x-v2.x)-(v.x-v2.x)*(v3.y-v2.y)) > 0 \wedge \\
((v.y-v2.y)*(v3.x-v2.x)-(v.x-v2.x)*(v3.y-v2.y))*\\
((v.y-v3.y)*(v1.x-v3.x)-(v.x-v3.x)*(v1.y-v3.y)) > 0$
\end{itemize}
\paragraph{vertices()}
\begin{itemize}
\item \textbf{Description}\\
Returns the set of all the vertices of the mesh.
\item \textbf{Output} \\
$\{v$: {\tt VertexT} $|\ (\forall c$: {\tt CellT} $|\ c\in m:v\in c):v\}$
\end{itemize}
\paragraph{edges()}
\begin{itemize}
\item \textbf{Description}\\
Returns the set of all the edges of the mesh
\item \textbf{Output} \\
$\{v1,v2$: {\tt VertexT} $|\ (\forall c$: {\tt CellT} $|\ c\in m:v1\in c \wedge v2\in c \wedge v1 \neq v2):\{v1, v2\}\}$
\end{itemize}
\paragraph{boundaryEdges()}
\begin{itemize}
\item \textbf{Description}\\
Returns a set of boundary edges of the mesh
\item \textbf{Output} \\
$ \{ b$: {\tt EdgeT} $|\ b\in$ Edges() $\wedge\\ (\# \{c$: {\tt CellT} $|\ c\in m\ \wedge$ belongToCell{\it (b, c): c\}=1):b\}}
\end{itemize}
\paragraph{boundaryVertices()}
\begin{itemize}
\item \textbf{Description}\\
Returns a set of boundary vertices of the mesh.
\item \textbf{Output} \\
$ \{v$: {\tt VertexT} $|\ v\in$ boundaryEdges{\it(): v\}}
\end{itemize}
\subsubsection{Local Functions}
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations} None
\section{MIS of Service Module \label{AmisSecSer}}
\subsection{Module Name: Service}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types}
{\bf Uses} \emph{Vertex Module} {\bf Imports} \texttt{VertexT} \\
{\bf Uses} \emph{Edge Module} {\bf Imports} \texttt{EdgeT} \\
{\bf Uses} \emph{Cell Module} {\bf Imports} \texttt{CellT} \\
{\bf Uses} \emph{Mesh Module} {\bf Imports} \texttt{MeshT}
\subsubsection{Imported Access Programs}
{\bf Uses} \emph{Mesh Module} {\bf Imports}
\emph{onEdge(), inside(), \\vertices(), edges(), boundaryEdges(), boundaryVertices()}
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types}
{\tt InstructionT} := \{{\tt REFINE, COARSEN, NOCHANGE}\}\\
{\tt CellInstructionT}:= tuple of ({\it cell}: {\tt CellT}, {\it instr}: {\tt InstructionT})\\
{\tt RCinstructionT} := tuple of \\({\it rORc}: {\tt InstructionT}, {\it cInstru}: set of {\tt CellInstructionT})
\subsubsection{Exported Access Programs}
The exported access programs for the services module are listed in Table \ref{AmisSerEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
isValidMesh & {\tt MeshT} & $\mathbb{B}$ & \\
\hline
coveringUp & {\tt MeshT} $\times$ {\tt MeshT}& $\mathbb{B}$ & \\
\hline
\end{tabular}
\caption{Exported Access Programs of the Services Module}
\label{AmisSerEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}None
\subsubsection{Invariant} None
\subsubsection{Assumptions} None
\subsubsection{Access Program Semantics}
\paragraph{isValidMesh($m$: {\tt MeshT})}
\begin{itemize}
\item \textbf{Description}\\
Returns true if cells of the mesh are bounded, conformal, and non overlapping.
\item \textbf{Output}\\ Bounded$(m)\ \wedge$ Conformal$(m)\ \wedge$ NoInteriorIntersect$(m)$
\end{itemize}
\paragraph{coveringUp($m1$:{\tt MeshT}, $m2$: {\tt MeshT})}
\begin{itemize}
\item \textbf{Description} \\
Returns false if any boundary vertex of one mesh is not on a boundary edge of another mesh.
Otherwise, return true.
\item \textbf{Output} \\
$\forall v1, v2$: {\tt VertexT} $| \\
v1\in$ boundaryVertice($m1)\ \wedge\ v2\in$ boundaryVertices$(m2): \\
(\exists\ b1, b2$: {\tt EdgeT} $|\ b1 \in$ boundaryEdges$(m1)\ \wedge\ b2 \in$ boundaryEdges$(m2)$:
(onEdge$(v1,b2)\ \vee\ v1\in b2)\ \wedge$ (onEdge$(v2, b1)\ \vee\ v2\in b1))$
\end{itemize}
\subsubsection{Local Functions}
\begin{itemize}
\item ValidEdge: {\tt EdgeT} $\rightarrow \mathbb{B}$\\
ValidEdge($e$: {\tt EdgeT}) $\equiv \# e = 2$
\item Area: {\tt CellT} $\rightarrow \mathbb{R}$\\
Area($c$: {\tt CellT}) $\equiv \Sigma v1,v2,v3$: {\tt VertexT} $|\ v1\in c \wedge v2\in c \wedge v3\in c \\
\wedge v1\neq v2 \wedge v2\neq v3 \wedge v3\neq v1:\\
\frac{1}{12}* |v1.x*v2.y - v2.x*v1.y +\\
v2.x*v3.y - v3.x*v2.y +\\
v1.x*v3.y - v3.x*v1.y |$
\item ValidCell: {\tt CellT} $\rightarrow \mathbb{B}$\\
ValidCell($c$: {\tt CellT}) $\equiv \# c = 3\ \wedge$ Area$(c) \geq 0$
\item Bounded: {\tt MeshT} $\rightarrow \mathbb{B}$\\
Bounded($m$: {\tt MeshT}) $\equiv \forall v$: {\tt VertexT} $|\ v\in$ boundaryVertices($m$): \\
$(\# \{e$: {\tt EdgeT} $|\ e\in$ boundaryEdge($m$) $\wedge v\in e: e\}=2)$
\item Conformal: {\tt MeshT} $\rightarrow \mathbb{B}$\\
Conformal($m$: {\tt MeshT}) $\equiv \forall c1, c2$: {\tt CellT} $|\ c1\in m \wedge c2\in m \wedge c1\neq c2 : \\
(\exists e$: {\tt EdgeT} $|\ e\in$ edges($m):(\exists v:$ {\tt VertexT} $|\ v\in$ vertices($m):\\
(c1\cap c2 = e \vee c1\cap c2 = v \vee c1\cap c2 = \emptyset) \wedge (\neg$ onEdge($v,\ e)) ))$
\item NoInteriorIntersect: {\tt MeshT} $\rightarrow \mathbb{B}$\\
NoInteriorIntersect($m$: {\tt MeshT}) $\equiv \forall c1, c2$: {\tt CellT} $|\\ c1\in m \wedge c2\in m \wedge c1 \neq c2:
(\forall v$: {\tt VertexT} $|$ inside($v,\ c1): \neg$ inside($v,\ c2))$
\end{itemize}
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations} None
\section{MIS of Input Format Module \label{AmisSecInput}}
\subsection{Module Name: Input Format}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types}
{\bf Uses} \emph{Embedding Application} {\bf Imports} \texttt{InputFormatT}
\subsubsection{Imported Access Programs}
None
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types}None
\subsubsection{Exported Access Programs}
The exported access programs for the input format module are listed in Table \ref{AmisInputEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
convertInput & {\tt InputFormatT} &{\tt MeshT} & \\
\hline
\end{tabular}
\caption{Exported Access Programs of the Input Format Module}
\label{AmisInputEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}None
\subsubsection{Invariant} None
\subsubsection{Assumptions} None
\subsubsection{Access Program Semantics}
\paragraph{convertInput($m$: {\tt InputFormatT})}
\begin{itemize}
\item \textbf{Output}\\
$m'$ such that\\
$m'$ is of type {\tt MeshT} and $m$ and $m'$ are equivalent.
\end{itemize}
\subsubsection{Local Functions}
None
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations}
\begin{itemize}
\item Semantics of access programs in this module heavily depend on the format of the input mesh. At this stage, this information is missing. Unknown data types {\tt InputFormatT} is used to represent the data structures of input mesh. English is used to describe the semantics.
\end{itemize}
\section{MIS of Output Format Module \label{AmisSecOutput}}
\subsection{Module Name: Output Format}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types}
{\bf Uses} \emph{Embedding Application} {\bf Imports} \texttt{OutputFormatT}
\subsubsection{Imported Access Programs}None
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types} None
\subsubsection{Exported Access Programs}
The exported access programs for the output format module are listed in Table \ref{AmisOutputEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
convertOutput & {\tt MeshT} & {\tt OutputFormatT} & \\
\hline
\end{tabular}
\caption{Exported Access Programs of the Output Format Module}
\label{AmisOutputEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}None
\subsubsection{Invariant} None
\subsubsection{Assumptions} None
\subsubsection{Access Program Semantics}
\paragraph{convertOutput($m$: {\tt MeshT})}
\begin{itemize}
\item \textbf{Output}\\
$m'$ such that\\
$m'$ is of type {\tt OutputFormatT} and $m$ and $m'$ are equivalent.
\end{itemize}
\subsubsection{Local Functions}
None
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations}
\begin{itemize}
\item Semantics of access programs in this module heavily depend on the format of the requirements of the output. At this stage, this information is missing. Unknown data type {\tt OutputFormatT} are used to represent the data structures of input and output. English is used to describe the semantics.
\end{itemize}
\section{MIS of Refining Module \label{AmisSecRef}}
\subsection{Module Name: Refining}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types}
{\bf Uses} \emph{Mesh Module} {\bf Imports} \texttt{MeshT} \\
{\bf Uses} \emph{Service Module} {\bf Imports} \\
\texttt{InstructionT, CellInstructionT, RCinstructionT}
\subsubsection{Imported Access Programs}
{\bf Uses} \emph{Service Module} {\bf Imports} \emph{isValidMesh(), coveringUp()}
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types} None
\subsubsection{Exported Access Programs}
The exported access programs for the refining module are listed in Table \ref{AmisRefEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
refining & {\tt MeshT, RCinstructionT} &{\tt MeshT} & \\
\hline
\end{tabular}
\caption{Exported Access Programs of the Refining Module}
\label{AmisRefEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}None
\subsubsection{Invariant} None
\subsubsection{Assumptions} isValidMesh$(m)$ and {\it i.rORc} = {\tt REFINE} \\for input $m$: {\tt MeshT} and $i$: {\tt RCinstructionT}
\subsubsection{Access Program Semantics}
\paragraph{refining($m$: {\tt MeshT}, $i$: {\tt RCinstructionT})}
\begin{itemize}
\item \textbf{Output}\\
$m'$ \\such that\\
ValidMesh$(m)\ \wedge$ ValidMesh$(m')\ \wedge$ CoveringUp$(m', m)\ \wedge \# m' \geq \#m$
\end{itemize}
\subsubsection{Local Functions} None
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations} None
\section{MIS of Coarsening Module \label{AmisSecCoa}}
\subsection{Module Name: Coarsening}
\subsection{Uses}
\subsubsection{Imported Constants} None
\subsubsection{Imported Data Types}
{\bf Uses} \emph{Mesh Module} {\bf Imports} \texttt{MeshT} \\
{\bf Uses} \emph{Service Module} {\bf Imports} \\
\texttt{InstructionT, CellInstructionT, RCinstructionT}
\subsubsection{Imported Access Programs}
{\bf Uses} \emph{Service Module} {\bf Imports} \emph{isValidMesh(), coveringUp()}
\subsection{Interface Syntax}
\subsubsection{Exported constants} None
\subsubsection{Exported Data Types} None
\subsubsection{Exported Access Programs}
The exported access programs for the coarsening module are listed in Table \ref{AmisCoaEAP}.
\begin{table}[htbp]
\centering
\begin{tabular}{|c|c|c|c|}
\hline
Routine Name & Input & Output & Exceptions \\
\hline
coarsening & {\tt MeshT, RCinstructionT} &{\tt MeshT} & \\
\hline
\end{tabular}
\caption{Exported Access Programs of the Coarsening Module}
\label{AmisCoaEAP}
\end{table}
\subsection{Interface Semantics}
\subsubsection{State Variables}None
\subsubsection{Invariant} None
\subsubsection{Assumptions} isValidMesh$(m)$ and {\it i.rORc} = {\tt COARSEN} \\for input $m$: {\tt MeshT} and $i$: {\tt RCinstructionT}
\subsubsection{Access Program Semantics}
\paragraph{coarsening($m$: {\tt MeshT})}
\begin{itemize}
\item \textbf{Output}\\
$m'$ \\such that\\
ValidMesh$(m)\ \wedge$ ValidMesh$(m')\ \wedge$ CoveringUp$(m',\ m)\ \wedge \# m' \leq \# m$
\end{itemize}
\subsubsection{Local Functions} None
\subsubsection{Local Data Types} None
\subsubsection{Local Constants} None
\subsubsection{Considerations} None
\newpage
\bibliography{WenRef}
\bibliographystyle{plainnat}
\end{document}
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output011.eps
%%CreationDate: 10/11/2006 00:23:05
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
0 383 -127 -255 127 -128 899 3649 4 MP stroke
0 -383 127 255 -127 128 1281 3266 4 MP stroke
-383 -383 383 0 0 383 1281 3266 4 MP stroke
383 383 -383 0 0 -383 1664 3649 4 MP stroke
-382 -383 382 0 0 383 1664 3266 4 MP stroke
382 383 -382 0 0 -383 2046 3649 4 MP stroke
-383 -383 383 0 0 383 2046 3266 4 MP stroke
383 383 -383 0 0 -383 2429 3649 4 MP stroke
-382 -383 382 0 0 383 2429 3266 4 MP stroke
382 383 -382 0 0 -383 2811 3649 4 MP stroke
-383 -383 383 0 0 383 2811 3266 4 MP stroke
383 383 -383 0 0 -383 3194 3649 4 MP stroke
-383 -383 383 0 0 383 3194 3266 4 MP stroke
383 383 -383 0 0 -383 3577 3649 4 MP stroke
-382 -383 382 0 0 383 3577 3266 4 MP stroke
382 383 -382 0 0 -383 3959 3649 4 MP stroke
-383 -383 383 0 0 383 3959 3266 4 MP stroke
383 383 -383 0 0 -383 4342 3649 4 MP stroke
-382 -383 382 0 0 383 4342 3266 4 MP stroke
382 383 -382 0 0 -383 4724 3649 4 MP stroke
-383 -383 383 0 0 383 4724 3266 4 MP stroke
383 383 -383 0 0 -383 5107 3649 4 MP stroke
-382 -383 382 0 0 383 5107 3266 4 MP stroke
382 383 -382 0 0 -383 5489 3649 4 MP stroke
-383 -383 383 0 0 383 5489 3266 4 MP stroke
383 383 -383 0 0 -383 5872 3649 4 MP stroke
-383 -383 383 0 0 383 5872 3266 4 MP stroke
383 383 -383 0 0 -383 6255 3649 4 MP stroke
0 382 -127 -255 127 -127 899 3266 4 MP stroke
0 -382 127 255 -127 127 1281 2884 4 MP stroke
-383 -382 383 0 0 382 1281 2884 4 MP stroke
383 382 -383 0 0 -382 1664 3266 4 MP stroke
-382 -382 382 0 0 382 1664 2884 4 MP stroke
382 382 -382 0 0 -382 2046 3266 4 MP stroke
-383 -382 383 0 0 382 2046 2884 4 MP stroke
383 382 -383 0 0 -382 2429 3266 4 MP stroke
-382 -382 382 0 0 382 2429 2884 4 MP stroke
382 382 -382 0 0 -382 2811 3266 4 MP stroke
-383 -382 383 0 0 382 2811 2884 4 MP stroke
383 382 -383 0 0 -382 3194 3266 4 MP stroke
-383 -382 383 0 0 382 3194 2884 4 MP stroke
383 382 -383 0 0 -382 3577 3266 4 MP stroke
-382 -382 382 0 0 382 3577 2884 4 MP stroke
382 382 -382 0 0 -382 3959 3266 4 MP stroke
-383 -382 383 0 0 382 3959 2884 4 MP stroke
383 382 -383 0 0 -382 4342 3266 4 MP stroke
-382 -382 382 0 0 382 4342 2884 4 MP stroke
382 382 -382 0 0 -382 4724 3266 4 MP stroke
-383 -382 383 0 0 382 4724 2884 4 MP stroke
383 382 -383 0 0 -382 5107 3266 4 MP stroke
-382 -382 382 0 0 382 5107 2884 4 MP stroke
382 382 -382 0 0 -382 5489 3266 4 MP stroke
-383 -382 383 0 0 382 5489 2884 4 MP stroke
383 382 -383 0 0 -382 5872 3266 4 MP stroke
-383 -382 383 0 0 382 5872 2884 4 MP stroke
383 382 -383 0 0 -382 6255 3266 4 MP stroke
0 383 -127 -255 127 -128 899 2884 4 MP stroke
0 -383 127 255 -127 128 1281 2501 4 MP stroke
-383 -383 383 0 0 383 1281 2501 4 MP stroke
383 383 -383 0 0 -383 1664 2884 4 MP stroke
-382 -383 382 0 0 383 1664 2501 4 MP stroke
382 383 -382 0 0 -383 2046 2884 4 MP stroke
-383 -383 383 0 0 383 2046 2501 4 MP stroke
383 383 -383 0 0 -383 2429 2884 4 MP stroke
-382 -383 382 0 0 383 2429 2501 4 MP stroke
382 383 -382 0 0 -383 2811 2884 4 MP stroke
-383 -383 383 0 0 383 2811 2501 4 MP stroke
383 383 -383 0 0 -383 3194 2884 4 MP stroke
-383 -383 383 0 0 383 3194 2501 4 MP stroke
383 383 -383 0 0 -383 3577 2884 4 MP stroke
-382 -383 382 0 0 383 3577 2501 4 MP stroke
382 383 -382 0 0 -383 3959 2884 4 MP stroke
-383 -383 383 0 0 383 3959 2501 4 MP stroke
383 383 -383 0 0 -383 4342 2884 4 MP stroke
-382 -383 382 0 0 383 4342 2501 4 MP stroke
382 383 -382 0 0 -383 4724 2884 4 MP stroke
-383 -383 383 0 0 383 4724 2501 4 MP stroke
383 383 -383 0 0 -383 5107 2884 4 MP stroke
-382 -383 382 0 0 383 5107 2501 4 MP stroke
382 383 -382 0 0 -383 5489 2884 4 MP stroke
-383 -383 383 0 0 383 5489 2501 4 MP stroke
383 383 -383 0 0 -383 5872 2884 4 MP stroke
-383 -383 383 0 0 383 5872 2501 4 MP stroke
383 383 -383 0 0 -383 6255 2884 4 MP stroke
0 383 -127 -255 127 -128 899 2501 4 MP stroke
0 -383 127 255 -127 128 1281 2118 4 MP stroke
-383 -383 383 0 0 383 1281 2118 4 MP stroke
383 383 -383 0 0 -383 1664 2501 4 MP stroke
-382 -383 382 0 0 383 1664 2118 4 MP stroke
382 383 -382 0 0 -383 2046 2501 4 MP stroke
-383 -383 383 0 0 383 2046 2118 4 MP stroke
383 383 -383 0 0 -383 2429 2501 4 MP stroke
-382 -383 382 0 0 383 2429 2118 4 MP stroke
382 383 -382 0 0 -383 2811 2501 4 MP stroke
-383 -383 383 0 0 383 2811 2118 4 MP stroke
383 383 -383 0 0 -383 3194 2501 4 MP stroke
-383 -383 383 0 0 383 3194 2118 4 MP stroke
383 383 -383 0 0 -383 3577 2501 4 MP stroke
-382 -383 382 0 0 383 3577 2118 4 MP stroke
382 383 -382 0 0 -383 3959 2501 4 MP stroke
-383 -383 383 0 0 383 3959 2118 4 MP stroke
383 383 -383 0 0 -383 4342 2501 4 MP stroke
-382 -383 382 0 0 383 4342 2118 4 MP stroke
382 383 -382 0 0 -383 4724 2501 4 MP stroke
-383 -383 383 0 0 383 4724 2118 4 MP stroke
383 383 -383 0 0 -383 5107 2501 4 MP stroke
-382 -383 382 0 0 383 5107 2118 4 MP stroke
382 383 -382 0 0 -383 5489 2501 4 MP stroke
-383 -383 383 0 0 383 5489 2118 4 MP stroke
383 383 -383 0 0 -383 5872 2501 4 MP stroke
-383 -383 383 0 0 383 5872 2118 4 MP stroke
383 383 -383 0 0 -383 6255 2501 4 MP stroke
0 382 -127 -255 127 -127 899 2118 4 MP stroke
0 -382 127 255 -127 127 1281 1736 4 MP stroke
-383 -382 383 0 0 382 1281 1736 4 MP stroke
383 382 -383 0 0 -382 1664 2118 4 MP stroke
-382 -382 382 0 0 382 1664 1736 4 MP stroke
382 382 -382 0 0 -382 2046 2118 4 MP stroke
-383 -382 383 0 0 382 2046 1736 4 MP stroke
383 382 -383 0 0 -382 2429 2118 4 MP stroke
-382 -382 382 0 0 382 2429 1736 4 MP stroke
382 382 -382 0 0 -382 2811 2118 4 MP stroke
-383 -382 383 0 0 382 2811 1736 4 MP stroke
383 382 -383 0 0 -382 3194 2118 4 MP stroke
-383 -382 383 0 0 382 3194 1736 4 MP stroke
383 382 -383 0 0 -382 3577 2118 4 MP stroke
-382 -382 382 0 0 382 3577 1736 4 MP stroke
382 382 -382 0 0 -382 3959 2118 4 MP stroke
-383 -382 383 0 0 382 3959 1736 4 MP stroke
383 382 -383 0 0 -382 4342 2118 4 MP stroke
-382 -382 382 0 0 382 4342 1736 4 MP stroke
382 382 -382 0 0 -382 4724 2118 4 MP stroke
-383 -382 383 0 0 382 4724 1736 4 MP stroke
383 382 -383 0 0 -382 5107 2118 4 MP stroke
-382 -382 382 0 0 382 5107 1736 4 MP stroke
382 382 -382 0 0 -382 5489 2118 4 MP stroke
-383 -382 383 0 0 382 5489 1736 4 MP stroke
383 382 -383 0 0 -382 5872 2118 4 MP stroke
-383 -382 383 0 0 382 5872 1736 4 MP stroke
383 382 -383 0 0 -382 6255 2118 4 MP stroke
0 383 -127 -255 127 -128 899 1736 4 MP stroke
0 -383 127 255 -127 128 1281 1353 4 MP stroke
-383 -383 383 0 0 383 1281 1353 4 MP stroke
383 383 -383 0 0 -383 1664 1736 4 MP stroke
-382 -383 382 0 0 383 1664 1353 4 MP stroke
382 383 -382 0 0 -383 2046 1736 4 MP stroke
-383 -383 383 0 0 383 2046 1353 4 MP stroke
383 383 -383 0 0 -383 2429 1736 4 MP stroke
-382 -383 382 0 0 383 2429 1353 4 MP stroke
382 383 -382 0 0 -383 2811 1736 4 MP stroke
-383 -383 383 0 0 383 2811 1353 4 MP stroke
383 383 -383 0 0 -383 3194 1736 4 MP stroke
-383 -383 383 0 0 383 3194 1353 4 MP stroke
383 383 -383 0 0 -383 3577 1736 4 MP stroke
-382 -383 382 0 0 383 3577 1353 4 MP stroke
382 383 -382 0 0 -383 3959 1736 4 MP stroke
-383 -383 383 0 0 383 3959 1353 4 MP stroke
383 383 -383 0 0 -383 4342 1736 4 MP stroke
-382 -383 382 0 0 383 4342 1353 4 MP stroke
382 383 -382 0 0 -383 4724 1736 4 MP stroke
-383 -383 383 0 0 383 4724 1353 4 MP stroke
383 383 -383 0 0 -383 5107 1736 4 MP stroke
-382 -383 382 0 0 383 5107 1353 4 MP stroke
382 383 -382 0 0 -383 5489 1736 4 MP stroke
-383 -383 383 0 0 383 5489 1353 4 MP stroke
383 383 -383 0 0 -383 5872 1736 4 MP stroke
-383 -383 383 0 0 383 5872 1353 4 MP stroke
383 383 -383 0 0 -383 6255 1736 4 MP stroke
382 0 -127 128 -255 -128 1281 3649 4 MP stroke
-382 -383 255 128 127 255 899 3266 4 MP stroke
-382 0 127 -128 255 128 899 3266 4 MP stroke
382 383 -255 -128 -127 -255 1281 3649 4 MP stroke
382 0 -127 127 -255 -127 1281 3266 4 MP stroke
-382 -382 255 127 127 255 899 2884 4 MP stroke
-382 0 127 -127 255 127 899 2884 4 MP stroke
382 382 -255 -127 -127 -255 1281 3266 4 MP stroke
382 0 -127 128 -255 -128 1281 2884 4 MP stroke
-382 -383 255 128 127 255 899 2501 4 MP stroke
-382 0 127 -128 255 128 899 2501 4 MP stroke
382 383 -255 -128 -127 -255 1281 2884 4 MP stroke
382 0 -127 128 -255 -128 1281 2501 4 MP stroke
-382 -383 255 128 127 255 899 2118 4 MP stroke
-382 0 127 -128 255 128 899 2118 4 MP stroke
382 383 -255 -128 -127 -255 1281 2501 4 MP stroke
382 0 -127 127 -255 -127 1281 2118 4 MP stroke
-382 -382 255 127 127 255 899 1736 4 MP stroke
-382 0 127 -127 255 127 899 1736 4 MP stroke
382 382 -255 -127 -127 -255 1281 2118 4 MP stroke
382 0 -127 128 -255 -128 1281 1736 4 MP stroke
-382 -383 255 128 127 255 899 1353 4 MP stroke
-382 0 127 -128 255 128 899 1353 4 MP stroke
382 383 -255 -128 -127 -255 1281 1736 4 MP stroke
gr
2283 294 mt
(Mesh for "newVertices1.dat" and "newCells1.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output012.eps
%%CreationDate: 10/11/2006 00:23:40
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
0 383 -382 -383 382 0 899 3649 4 MP stroke
0 -383 382 383 -382 0 1281 3266 4 MP stroke
0 383 -383 -383 383 0 1281 3649 4 MP stroke
0 -383 383 383 -383 0 1664 3266 4 MP stroke
0 383 -382 -383 382 0 1664 3649 4 MP stroke
0 -383 382 383 -382 0 2046 3266 4 MP stroke
0 383 -383 -383 383 0 2046 3649 4 MP stroke
0 -383 383 383 -383 0 2429 3266 4 MP stroke
0 383 -382 -383 382 0 2429 3649 4 MP stroke
0 -383 382 383 -382 0 2811 3266 4 MP stroke
0 383 -383 -383 383 0 2811 3649 4 MP stroke
0 -383 383 383 -383 0 3194 3266 4 MP stroke
0 383 -383 -383 383 0 3194 3649 4 MP stroke
0 -383 383 383 -383 0 3577 3266 4 MP stroke
0 383 -127 -255 127 -128 3577 3649 4 MP stroke
0 -383 127 255 -127 128 3959 3266 4 MP stroke
-383 -383 383 0 0 383 3959 3266 4 MP stroke
383 383 -383 0 0 -383 4342 3649 4 MP stroke
-382 -383 382 0 0 383 4342 3266 4 MP stroke
382 383 -382 0 0 -383 4724 3649 4 MP stroke
-383 -383 383 0 0 383 4724 3266 4 MP stroke
383 383 -383 0 0 -383 5107 3649 4 MP stroke
-382 -383 382 0 0 383 5107 3266 4 MP stroke
382 383 -382 0 0 -383 5489 3649 4 MP stroke
-383 -383 383 0 0 383 5489 3266 4 MP stroke
383 383 -383 0 0 -383 5872 3649 4 MP stroke
-383 -383 383 0 0 383 5872 3266 4 MP stroke
383 383 -383 0 0 -383 6255 3649 4 MP stroke
0 382 -382 -382 382 0 899 3266 4 MP stroke
0 -382 382 382 -382 0 1281 2884 4 MP stroke
0 382 -383 -382 383 0 1281 3266 4 MP stroke
0 -382 383 382 -383 0 1664 2884 4 MP stroke
0 382 -382 -382 382 0 1664 3266 4 MP stroke
0 -382 382 382 -382 0 2046 2884 4 MP stroke
0 382 -383 -382 383 0 2046 3266 4 MP stroke
0 -382 383 382 -383 0 2429 2884 4 MP stroke
0 382 -382 -382 382 0 2429 3266 4 MP stroke
0 -382 382 382 -382 0 2811 2884 4 MP stroke
0 382 -383 -382 383 0 2811 3266 4 MP stroke
0 -382 383 382 -383 0 3194 2884 4 MP stroke
0 382 -383 -382 383 0 3194 3266 4 MP stroke
0 -382 383 382 -383 0 3577 2884 4 MP stroke
0 382 -127 -255 127 -127 3577 3266 4 MP stroke
0 -382 127 255 -127 127 3959 2884 4 MP stroke
-383 -382 383 0 0 382 3959 2884 4 MP stroke
383 382 -383 0 0 -382 4342 3266 4 MP stroke
-382 -382 382 0 0 382 4342 2884 4 MP stroke
382 382 -382 0 0 -382 4724 3266 4 MP stroke
-383 -382 383 0 0 382 4724 2884 4 MP stroke
383 382 -383 0 0 -382 5107 3266 4 MP stroke
-382 -382 382 0 0 382 5107 2884 4 MP stroke
382 382 -382 0 0 -382 5489 3266 4 MP stroke
-383 -382 383 0 0 382 5489 2884 4 MP stroke
383 382 -383 0 0 -382 5872 3266 4 MP stroke
-383 -382 383 0 0 382 5872 2884 4 MP stroke
383 382 -383 0 0 -382 6255 3266 4 MP stroke
0 383 -382 -383 382 0 899 2884 4 MP stroke
0 -383 382 383 -382 0 1281 2501 4 MP stroke
0 383 -383 -383 383 0 1281 2884 4 MP stroke
0 -383 383 383 -383 0 1664 2501 4 MP stroke
0 383 -382 -383 382 0 1664 2884 4 MP stroke
0 -383 382 383 -382 0 2046 2501 4 MP stroke
0 383 -383 -383 383 0 2046 2884 4 MP stroke
0 -383 383 383 -383 0 2429 2501 4 MP stroke
0 383 -382 -383 382 0 2429 2884 4 MP stroke
0 -383 382 383 -382 0 2811 2501 4 MP stroke
0 383 -383 -383 383 0 2811 2884 4 MP stroke
0 -383 383 383 -383 0 3194 2501 4 MP stroke
0 383 -383 -383 383 0 3194 2884 4 MP stroke
0 -383 383 383 -383 0 3577 2501 4 MP stroke
0 383 -127 -255 127 -128 3577 2884 4 MP stroke
0 -383 127 255 -127 128 3959 2501 4 MP stroke
-383 -383 383 0 0 383 3959 2501 4 MP stroke
383 383 -383 0 0 -383 4342 2884 4 MP stroke
-382 -383 382 0 0 383 4342 2501 4 MP stroke
382 383 -382 0 0 -383 4724 2884 4 MP stroke
-383 -383 383 0 0 383 4724 2501 4 MP stroke
383 383 -383 0 0 -383 5107 2884 4 MP stroke
-382 -383 382 0 0 383 5107 2501 4 MP stroke
382 383 -382 0 0 -383 5489 2884 4 MP stroke
-383 -383 383 0 0 383 5489 2501 4 MP stroke
383 383 -383 0 0 -383 5872 2884 4 MP stroke
-383 -383 383 0 0 383 5872 2501 4 MP stroke
383 383 -383 0 0 -383 6255 2884 4 MP stroke
0 383 -382 -383 382 0 899 2501 4 MP stroke
0 -383 382 383 -382 0 1281 2118 4 MP stroke
0 383 -383 -383 383 0 1281 2501 4 MP stroke
0 -383 383 383 -383 0 1664 2118 4 MP stroke
0 383 -382 -383 382 0 1664 2501 4 MP stroke
0 -383 382 383 -382 0 2046 2118 4 MP stroke
0 383 -383 -383 383 0 2046 2501 4 MP stroke
0 -383 383 383 -383 0 2429 2118 4 MP stroke
0 383 -382 -383 382 0 2429 2501 4 MP stroke
0 -383 382 383 -382 0 2811 2118 4 MP stroke
0 383 -383 -383 383 0 2811 2501 4 MP stroke
0 -383 383 383 -383 0 3194 2118 4 MP stroke
0 383 -383 -383 383 0 3194 2501 4 MP stroke
0 -383 383 383 -383 0 3577 2118 4 MP stroke
0 383 -127 -255 127 -128 3577 2501 4 MP stroke
0 -383 127 255 -127 128 3959 2118 4 MP stroke
-383 -383 383 0 0 383 3959 2118 4 MP stroke
383 383 -383 0 0 -383 4342 2501 4 MP stroke
-382 -383 382 0 0 383 4342 2118 4 MP stroke
382 383 -382 0 0 -383 4724 2501 4 MP stroke
-383 -383 383 0 0 383 4724 2118 4 MP stroke
383 383 -383 0 0 -383 5107 2501 4 MP stroke
-382 -383 382 0 0 383 5107 2118 4 MP stroke
382 383 -382 0 0 -383 5489 2501 4 MP stroke
-383 -383 383 0 0 383 5489 2118 4 MP stroke
383 383 -383 0 0 -383 5872 2501 4 MP stroke
-383 -383 383 0 0 383 5872 2118 4 MP stroke
383 383 -383 0 0 -383 6255 2501 4 MP stroke
0 382 -382 -382 382 0 899 2118 4 MP stroke
0 -382 382 382 -382 0 1281 1736 4 MP stroke
0 382 -383 -382 383 0 1281 2118 4 MP stroke
0 -382 383 382 -383 0 1664 1736 4 MP stroke
0 382 -382 -382 382 0 1664 2118 4 MP stroke
0 -382 382 382 -382 0 2046 1736 4 MP stroke
0 382 -383 -382 383 0 2046 2118 4 MP stroke
0 -382 383 382 -383 0 2429 1736 4 MP stroke
0 382 -382 -382 382 0 2429 2118 4 MP stroke
0 -382 382 382 -382 0 2811 1736 4 MP stroke
0 382 -383 -382 383 0 2811 2118 4 MP stroke
0 -382 383 382 -383 0 3194 1736 4 MP stroke
0 382 -383 -382 383 0 3194 2118 4 MP stroke
0 -382 383 382 -383 0 3577 1736 4 MP stroke
0 382 -127 -255 127 -127 3577 2118 4 MP stroke
0 -382 127 255 -127 127 3959 1736 4 MP stroke
-383 -382 383 0 0 382 3959 1736 4 MP stroke
383 382 -383 0 0 -382 4342 2118 4 MP stroke
-382 -382 382 0 0 382 4342 1736 4 MP stroke
382 382 -382 0 0 -382 4724 2118 4 MP stroke
-383 -382 383 0 0 382 4724 1736 4 MP stroke
383 382 -383 0 0 -382 5107 2118 4 MP stroke
-382 -382 382 0 0 382 5107 1736 4 MP stroke
382 382 -382 0 0 -382 5489 2118 4 MP stroke
-383 -382 383 0 0 382 5489 1736 4 MP stroke
383 382 -383 0 0 -382 5872 2118 4 MP stroke
-383 -382 383 0 0 382 5872 1736 4 MP stroke
383 382 -383 0 0 -382 6255 2118 4 MP stroke
0 383 -382 -383 382 0 899 1736 4 MP stroke
0 -383 382 383 -382 0 1281 1353 4 MP stroke
0 383 -383 -383 383 0 1281 1736 4 MP stroke
0 -383 383 383 -383 0 1664 1353 4 MP stroke
0 383 -382 -383 382 0 1664 1736 4 MP stroke
0 -383 382 383 -382 0 2046 1353 4 MP stroke
0 383 -383 -383 383 0 2046 1736 4 MP stroke
0 -383 383 383 -383 0 2429 1353 4 MP stroke
0 383 -382 -383 382 0 2429 1736 4 MP stroke
0 -383 382 383 -382 0 2811 1353 4 MP stroke
0 383 -383 -383 383 0 2811 1736 4 MP stroke
0 -383 383 383 -383 0 3194 1353 4 MP stroke
0 383 -383 -383 383 0 3194 1736 4 MP stroke
0 -383 383 383 -383 0 3577 1353 4 MP stroke
0 383 -127 -255 127 -128 3577 1736 4 MP stroke
0 -383 127 255 -127 128 3959 1353 4 MP stroke
-383 -383 383 0 0 383 3959 1353 4 MP stroke
383 383 -383 0 0 -383 4342 1736 4 MP stroke
-382 -383 382 0 0 383 4342 1353 4 MP stroke
382 383 -382 0 0 -383 4724 1736 4 MP stroke
-383 -383 383 0 0 383 4724 1353 4 MP stroke
383 383 -383 0 0 -383 5107 1736 4 MP stroke
-382 -383 382 0 0 383 5107 1353 4 MP stroke
382 383 -382 0 0 -383 5489 1736 4 MP stroke
-383 -383 383 0 0 383 5489 1353 4 MP stroke
383 383 -383 0 0 -383 5872 1736 4 MP stroke
-383 -383 383 0 0 383 5872 1353 4 MP stroke
383 383 -383 0 0 -383 6255 1736 4 MP stroke
382 0 -127 128 -255 -128 3959 3649 4 MP stroke
-382 -383 255 128 127 255 3577 3266 4 MP stroke
-382 0 127 -128 255 128 3577 3266 4 MP stroke
382 383 -255 -128 -127 -255 3959 3649 4 MP stroke
382 0 -127 127 -255 -127 3959 3266 4 MP stroke
-382 -382 255 127 127 255 3577 2884 4 MP stroke
-382 0 127 -127 255 127 3577 2884 4 MP stroke
382 382 -255 -127 -127 -255 3959 3266 4 MP stroke
382 0 -127 128 -255 -128 3959 2884 4 MP stroke
-382 -383 255 128 127 255 3577 2501 4 MP stroke
-382 0 127 -128 255 128 3577 2501 4 MP stroke
382 383 -255 -128 -127 -255 3959 2884 4 MP stroke
382 0 -127 128 -255 -128 3959 2501 4 MP stroke
-382 -383 255 128 127 255 3577 2118 4 MP stroke
-382 0 127 -128 255 128 3577 2118 4 MP stroke
382 383 -255 -128 -127 -255 3959 2501 4 MP stroke
382 0 -127 127 -255 -127 3959 2118 4 MP stroke
-382 -382 255 127 127 255 3577 1736 4 MP stroke
-382 0 127 -127 255 127 3577 1736 4 MP stroke
382 382 -255 -127 -127 -255 3959 2118 4 MP stroke
382 0 -127 128 -255 -128 3959 1736 4 MP stroke
-382 -383 255 128 127 255 3577 1353 4 MP stroke
-382 0 127 -128 255 128 3577 1353 4 MP stroke
382 383 -255 -128 -127 -255 3959 1736 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices15.dat" and "newCells15.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output013.eps
%%CreationDate: 10/11/2006 00:24:09
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
0 383 -382 -383 382 0 899 3649 4 MP stroke
0 -383 382 383 -382 0 1281 3266 4 MP stroke
0 383 -383 -383 383 0 1281 3649 4 MP stroke
0 -383 383 383 -383 0 1664 3266 4 MP stroke
0 383 -382 -383 382 0 1664 3649 4 MP stroke
0 -383 382 383 -382 0 2046 3266 4 MP stroke
0 383 -383 -383 383 0 2046 3649 4 MP stroke
0 -383 383 383 -383 0 2429 3266 4 MP stroke
0 383 -382 -383 382 0 2429 3649 4 MP stroke
0 -383 382 383 -382 0 2811 3266 4 MP stroke
0 383 -383 -383 383 0 2811 3649 4 MP stroke
0 -383 383 383 -383 0 3194 3266 4 MP stroke
0 383 -383 -383 383 0 3194 3649 4 MP stroke
0 -383 383 383 -383 0 3577 3266 4 MP stroke
0 383 -382 -383 382 0 3577 3649 4 MP stroke
0 -383 382 383 -382 0 3959 3266 4 MP stroke
0 383 -383 -383 383 0 3959 3649 4 MP stroke
0 -383 383 383 -383 0 4342 3266 4 MP stroke
0 383 -382 -383 382 0 4342 3649 4 MP stroke
0 -383 382 383 -382 0 4724 3266 4 MP stroke
0 383 -383 -383 383 0 4724 3649 4 MP stroke
0 -383 383 383 -383 0 5107 3266 4 MP stroke
0 383 -382 -383 382 0 5107 3649 4 MP stroke
0 -383 382 383 -382 0 5489 3266 4 MP stroke
0 383 -383 -383 383 0 5489 3649 4 MP stroke
0 -383 383 383 -383 0 5872 3266 4 MP stroke
0 383 -383 -383 383 0 5872 3649 4 MP stroke
0 -383 383 383 -383 0 6255 3266 4 MP stroke
0 382 -382 -382 382 0 899 3266 4 MP stroke
0 -382 382 382 -382 0 1281 2884 4 MP stroke
0 382 -383 -382 383 0 1281 3266 4 MP stroke
0 -382 383 382 -383 0 1664 2884 4 MP stroke
0 382 -382 -382 382 0 1664 3266 4 MP stroke
0 -382 382 382 -382 0 2046 2884 4 MP stroke
0 382 -383 -382 383 0 2046 3266 4 MP stroke
0 -382 383 382 -383 0 2429 2884 4 MP stroke
0 382 -382 -382 382 0 2429 3266 4 MP stroke
0 -382 382 382 -382 0 2811 2884 4 MP stroke
0 382 -383 -382 383 0 2811 3266 4 MP stroke
0 -382 383 382 -383 0 3194 2884 4 MP stroke
0 382 -383 -382 383 0 3194 3266 4 MP stroke
0 -382 383 382 -383 0 3577 2884 4 MP stroke
0 382 -382 -382 382 0 3577 3266 4 MP stroke
0 -382 382 382 -382 0 3959 2884 4 MP stroke
0 382 -383 -382 383 0 3959 3266 4 MP stroke
0 -382 383 382 -383 0 4342 2884 4 MP stroke
0 382 -382 -382 382 0 4342 3266 4 MP stroke
0 -382 382 382 -382 0 4724 2884 4 MP stroke
0 382 -383 -382 383 0 4724 3266 4 MP stroke
0 -382 383 382 -383 0 5107 2884 4 MP stroke
0 382 -382 -382 382 0 5107 3266 4 MP stroke
0 -382 382 382 -382 0 5489 2884 4 MP stroke
0 382 -383 -382 383 0 5489 3266 4 MP stroke
0 -382 383 382 -383 0 5872 2884 4 MP stroke
0 382 -383 -382 383 0 5872 3266 4 MP stroke
0 -382 383 382 -383 0 6255 2884 4 MP stroke
0 383 -382 -383 382 0 899 2884 4 MP stroke
0 -383 382 383 -382 0 1281 2501 4 MP stroke
0 383 -383 -383 383 0 1281 2884 4 MP stroke
0 -383 383 383 -383 0 1664 2501 4 MP stroke
0 383 -382 -383 382 0 1664 2884 4 MP stroke
0 -383 382 383 -382 0 2046 2501 4 MP stroke
0 383 -383 -383 383 0 2046 2884 4 MP stroke
0 -383 383 383 -383 0 2429 2501 4 MP stroke
0 383 -382 -383 382 0 2429 2884 4 MP stroke
0 -383 382 383 -382 0 2811 2501 4 MP stroke
0 383 -383 -383 383 0 2811 2884 4 MP stroke
0 -383 383 383 -383 0 3194 2501 4 MP stroke
0 383 -383 -383 383 0 3194 2884 4 MP stroke
0 -383 383 383 -383 0 3577 2501 4 MP stroke
0 383 -382 -383 382 0 3577 2884 4 MP stroke
0 -383 382 383 -382 0 3959 2501 4 MP stroke
0 383 -383 -383 383 0 3959 2884 4 MP stroke
0 -383 383 383 -383 0 4342 2501 4 MP stroke
0 383 -382 -383 382 0 4342 2884 4 MP stroke
0 -383 382 383 -382 0 4724 2501 4 MP stroke
0 383 -383 -383 383 0 4724 2884 4 MP stroke
0 -383 383 383 -383 0 5107 2501 4 MP stroke
0 383 -382 -383 382 0 5107 2884 4 MP stroke
0 -383 382 383 -382 0 5489 2501 4 MP stroke
0 383 -383 -383 383 0 5489 2884 4 MP stroke
0 -383 383 383 -383 0 5872 2501 4 MP stroke
0 383 -383 -383 383 0 5872 2884 4 MP stroke
0 -383 383 383 -383 0 6255 2501 4 MP stroke
0 383 -382 -383 382 0 899 2501 4 MP stroke
0 -383 382 383 -382 0 1281 2118 4 MP stroke
0 383 -383 -383 383 0 1281 2501 4 MP stroke
0 -383 383 383 -383 0 1664 2118 4 MP stroke
0 383 -382 -383 382 0 1664 2501 4 MP stroke
0 -383 382 383 -382 0 2046 2118 4 MP stroke
0 383 -383 -383 383 0 2046 2501 4 MP stroke
0 -383 383 383 -383 0 2429 2118 4 MP stroke
0 383 -382 -383 382 0 2429 2501 4 MP stroke
0 -383 382 383 -382 0 2811 2118 4 MP stroke
0 383 -383 -383 383 0 2811 2501 4 MP stroke
0 -383 383 383 -383 0 3194 2118 4 MP stroke
0 383 -383 -383 383 0 3194 2501 4 MP stroke
0 -383 383 383 -383 0 3577 2118 4 MP stroke
0 383 -382 -383 382 0 3577 2501 4 MP stroke
0 -383 382 383 -382 0 3959 2118 4 MP stroke
0 383 -383 -383 383 0 3959 2501 4 MP stroke
0 -383 383 383 -383 0 4342 2118 4 MP stroke
0 383 -382 -383 382 0 4342 2501 4 MP stroke
0 -383 382 383 -382 0 4724 2118 4 MP stroke
0 383 -383 -383 383 0 4724 2501 4 MP stroke
0 -383 383 383 -383 0 5107 2118 4 MP stroke
0 383 -382 -383 382 0 5107 2501 4 MP stroke
0 -383 382 383 -382 0 5489 2118 4 MP stroke
0 383 -383 -383 383 0 5489 2501 4 MP stroke
0 -383 383 383 -383 0 5872 2118 4 MP stroke
0 383 -383 -383 383 0 5872 2501 4 MP stroke
0 -383 383 383 -383 0 6255 2118 4 MP stroke
0 382 -382 -382 382 0 899 2118 4 MP stroke
0 -382 382 382 -382 0 1281 1736 4 MP stroke
0 382 -383 -382 383 0 1281 2118 4 MP stroke
0 -382 383 382 -383 0 1664 1736 4 MP stroke
0 382 -382 -382 382 0 1664 2118 4 MP stroke
0 -382 382 382 -382 0 2046 1736 4 MP stroke
0 382 -383 -382 383 0 2046 2118 4 MP stroke
0 -382 383 382 -383 0 2429 1736 4 MP stroke
0 382 -382 -382 382 0 2429 2118 4 MP stroke
0 -382 382 382 -382 0 2811 1736 4 MP stroke
0 382 -383 -382 383 0 2811 2118 4 MP stroke
0 -382 383 382 -383 0 3194 1736 4 MP stroke
0 382 -383 -382 383 0 3194 2118 4 MP stroke
0 -382 383 382 -383 0 3577 1736 4 MP stroke
0 382 -382 -382 382 0 3577 2118 4 MP stroke
0 -382 382 382 -382 0 3959 1736 4 MP stroke
0 382 -383 -382 383 0 3959 2118 4 MP stroke
0 -382 383 382 -383 0 4342 1736 4 MP stroke
0 382 -382 -382 382 0 4342 2118 4 MP stroke
0 -382 382 382 -382 0 4724 1736 4 MP stroke
0 382 -383 -382 383 0 4724 2118 4 MP stroke
0 -382 383 382 -383 0 5107 1736 4 MP stroke
0 382 -382 -382 382 0 5107 2118 4 MP stroke
0 -382 382 382 -382 0 5489 1736 4 MP stroke
0 382 -383 -382 383 0 5489 2118 4 MP stroke
0 -382 383 382 -383 0 5872 1736 4 MP stroke
0 382 -383 -382 383 0 5872 2118 4 MP stroke
0 -382 383 382 -383 0 6255 1736 4 MP stroke
0 383 -382 -383 382 0 899 1736 4 MP stroke
0 -383 382 383 -382 0 1281 1353 4 MP stroke
0 383 -383 -383 383 0 1281 1736 4 MP stroke
0 -383 383 383 -383 0 1664 1353 4 MP stroke
0 383 -382 -383 382 0 1664 1736 4 MP stroke
0 -383 382 383 -382 0 2046 1353 4 MP stroke
0 383 -383 -383 383 0 2046 1736 4 MP stroke
0 -383 383 383 -383 0 2429 1353 4 MP stroke
0 383 -382 -383 382 0 2429 1736 4 MP stroke
0 -383 382 383 -382 0 2811 1353 4 MP stroke
0 383 -383 -383 383 0 2811 1736 4 MP stroke
0 -383 383 383 -383 0 3194 1353 4 MP stroke
0 383 -383 -383 383 0 3194 1736 4 MP stroke
0 -383 383 383 -383 0 3577 1353 4 MP stroke
0 383 -382 -383 382 0 3577 1736 4 MP stroke
0 -383 382 383 -382 0 3959 1353 4 MP stroke
0 383 -383 -383 383 0 3959 1736 4 MP stroke
0 -383 383 383 -383 0 4342 1353 4 MP stroke
0 383 -382 -383 382 0 4342 1736 4 MP stroke
0 -383 382 383 -382 0 4724 1353 4 MP stroke
0 383 -383 -383 383 0 4724 1736 4 MP stroke
0 -383 383 383 -383 0 5107 1353 4 MP stroke
0 383 -382 -383 382 0 5107 1736 4 MP stroke
0 -383 382 383 -382 0 5489 1353 4 MP stroke
0 383 -383 -383 383 0 5489 1736 4 MP stroke
0 -383 383 383 -383 0 5872 1353 4 MP stroke
0 383 -383 -383 383 0 5872 1736 4 MP stroke
0 -383 383 383 -383 0 6255 1353 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices28.dat" and "newCells28.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output11.eps
%%CreationDate: 10/10/2006 23:27:08
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
0 383 -191 -191 191 -192 899 3649 4 MP stroke
0 -383 191 192 -191 191 1281 3266 4 MP stroke
-383 -383 383 0 0 383 1281 3266 4 MP stroke
383 383 -383 0 0 -383 1664 3649 4 MP stroke
-382 -383 382 0 0 383 1664 3266 4 MP stroke
382 383 -382 0 0 -383 2046 3649 4 MP stroke
-383 -383 383 0 0 383 2046 3266 4 MP stroke
383 383 -383 0 0 -383 2429 3649 4 MP stroke
-382 -383 382 0 0 383 2429 3266 4 MP stroke
382 383 -382 0 0 -383 2811 3649 4 MP stroke
-383 -383 383 0 0 383 2811 3266 4 MP stroke
383 383 -383 0 0 -383 3194 3649 4 MP stroke
-383 -383 383 0 0 383 3194 3266 4 MP stroke
383 383 -383 0 0 -383 3577 3649 4 MP stroke
-382 -383 382 0 0 383 3577 3266 4 MP stroke
382 383 -382 0 0 -383 3959 3649 4 MP stroke
-383 -383 383 0 0 383 3959 3266 4 MP stroke
383 383 -383 0 0 -383 4342 3649 4 MP stroke
-382 -383 382 0 0 383 4342 3266 4 MP stroke
382 383 -382 0 0 -383 4724 3649 4 MP stroke
-383 -383 383 0 0 383 4724 3266 4 MP stroke
383 383 -383 0 0 -383 5107 3649 4 MP stroke
-382 -383 382 0 0 383 5107 3266 4 MP stroke
382 383 -382 0 0 -383 5489 3649 4 MP stroke
-383 -383 383 0 0 383 5489 3266 4 MP stroke
383 383 -383 0 0 -383 5872 3649 4 MP stroke
-383 -383 383 0 0 383 5872 3266 4 MP stroke
383 383 -383 0 0 -383 6255 3649 4 MP stroke
0 382 -191 -191 191 -191 899 3266 4 MP stroke
0 -382 191 191 -191 191 1281 2884 4 MP stroke
-383 -382 383 0 0 382 1281 2884 4 MP stroke
383 382 -383 0 0 -382 1664 3266 4 MP stroke
-382 -382 382 0 0 382 1664 2884 4 MP stroke
382 382 -382 0 0 -382 2046 3266 4 MP stroke
-383 -382 383 0 0 382 2046 2884 4 MP stroke
383 382 -383 0 0 -382 2429 3266 4 MP stroke
-382 -382 382 0 0 382 2429 2884 4 MP stroke
382 382 -382 0 0 -382 2811 3266 4 MP stroke
-383 -382 383 0 0 382 2811 2884 4 MP stroke
383 382 -383 0 0 -382 3194 3266 4 MP stroke
-383 -382 383 0 0 382 3194 2884 4 MP stroke
383 382 -383 0 0 -382 3577 3266 4 MP stroke
-382 -382 382 0 0 382 3577 2884 4 MP stroke
382 382 -382 0 0 -382 3959 3266 4 MP stroke
-383 -382 383 0 0 382 3959 2884 4 MP stroke
383 382 -383 0 0 -382 4342 3266 4 MP stroke
-382 -382 382 0 0 382 4342 2884 4 MP stroke
382 382 -382 0 0 -382 4724 3266 4 MP stroke
-383 -382 383 0 0 382 4724 2884 4 MP stroke
383 382 -383 0 0 -382 5107 3266 4 MP stroke
-382 -382 382 0 0 382 5107 2884 4 MP stroke
382 382 -382 0 0 -382 5489 3266 4 MP stroke
-383 -382 383 0 0 382 5489 2884 4 MP stroke
383 382 -383 0 0 -382 5872 3266 4 MP stroke
-383 -382 383 0 0 382 5872 2884 4 MP stroke
383 382 -383 0 0 -382 6255 3266 4 MP stroke
0 383 -191 -191 191 -192 899 2884 4 MP stroke
0 -383 191 192 -191 191 1281 2501 4 MP stroke
-383 -383 383 0 0 383 1281 2501 4 MP stroke
383 383 -383 0 0 -383 1664 2884 4 MP stroke
-382 -383 382 0 0 383 1664 2501 4 MP stroke
382 383 -382 0 0 -383 2046 2884 4 MP stroke
-383 -383 383 0 0 383 2046 2501 4 MP stroke
383 383 -383 0 0 -383 2429 2884 4 MP stroke
-382 -383 382 0 0 383 2429 2501 4 MP stroke
382 383 -382 0 0 -383 2811 2884 4 MP stroke
-383 -383 383 0 0 383 2811 2501 4 MP stroke
383 383 -383 0 0 -383 3194 2884 4 MP stroke
-383 -383 383 0 0 383 3194 2501 4 MP stroke
383 383 -383 0 0 -383 3577 2884 4 MP stroke
-382 -383 382 0 0 383 3577 2501 4 MP stroke
382 383 -382 0 0 -383 3959 2884 4 MP stroke
-383 -383 383 0 0 383 3959 2501 4 MP stroke
383 383 -383 0 0 -383 4342 2884 4 MP stroke
-382 -383 382 0 0 383 4342 2501 4 MP stroke
382 383 -382 0 0 -383 4724 2884 4 MP stroke
-383 -383 383 0 0 383 4724 2501 4 MP stroke
383 383 -383 0 0 -383 5107 2884 4 MP stroke
-382 -383 382 0 0 383 5107 2501 4 MP stroke
382 383 -382 0 0 -383 5489 2884 4 MP stroke
-383 -383 383 0 0 383 5489 2501 4 MP stroke
383 383 -383 0 0 -383 5872 2884 4 MP stroke
-383 -383 383 0 0 383 5872 2501 4 MP stroke
383 383 -383 0 0 -383 6255 2884 4 MP stroke
0 383 -191 -192 191 -191 899 2501 4 MP stroke
0 -383 191 191 -191 192 1281 2118 4 MP stroke
-383 -383 383 0 0 383 1281 2118 4 MP stroke
383 383 -383 0 0 -383 1664 2501 4 MP stroke
-382 -383 382 0 0 383 1664 2118 4 MP stroke
382 383 -382 0 0 -383 2046 2501 4 MP stroke
-383 -383 383 0 0 383 2046 2118 4 MP stroke
383 383 -383 0 0 -383 2429 2501 4 MP stroke
-382 -383 382 0 0 383 2429 2118 4 MP stroke
382 383 -382 0 0 -383 2811 2501 4 MP stroke
-383 -383 383 0 0 383 2811 2118 4 MP stroke
383 383 -383 0 0 -383 3194 2501 4 MP stroke
-383 -383 383 0 0 383 3194 2118 4 MP stroke
383 383 -383 0 0 -383 3577 2501 4 MP stroke
-382 -383 382 0 0 383 3577 2118 4 MP stroke
382 383 -382 0 0 -383 3959 2501 4 MP stroke
-383 -383 383 0 0 383 3959 2118 4 MP stroke
383 383 -383 0 0 -383 4342 2501 4 MP stroke
-382 -383 382 0 0 383 4342 2118 4 MP stroke
382 383 -382 0 0 -383 4724 2501 4 MP stroke
-383 -383 383 0 0 383 4724 2118 4 MP stroke
383 383 -383 0 0 -383 5107 2501 4 MP stroke
-382 -383 382 0 0 383 5107 2118 4 MP stroke
382 383 -382 0 0 -383 5489 2501 4 MP stroke
-383 -383 383 0 0 383 5489 2118 4 MP stroke
383 383 -383 0 0 -383 5872 2501 4 MP stroke
-383 -383 383 0 0 383 5872 2118 4 MP stroke
383 383 -383 0 0 -383 6255 2501 4 MP stroke
0 382 -191 -191 191 -191 899 2118 4 MP stroke
0 -382 191 191 -191 191 1281 1736 4 MP stroke
-383 -382 383 0 0 382 1281 1736 4 MP stroke
383 382 -383 0 0 -382 1664 2118 4 MP stroke
-382 -382 382 0 0 382 1664 1736 4 MP stroke
382 382 -382 0 0 -382 2046 2118 4 MP stroke
-383 -382 383 0 0 382 2046 1736 4 MP stroke
383 382 -383 0 0 -382 2429 2118 4 MP stroke
-382 -382 382 0 0 382 2429 1736 4 MP stroke
382 382 -382 0 0 -382 2811 2118 4 MP stroke
-383 -382 383 0 0 382 2811 1736 4 MP stroke
383 382 -383 0 0 -382 3194 2118 4 MP stroke
-383 -382 383 0 0 382 3194 1736 4 MP stroke
383 382 -383 0 0 -382 3577 2118 4 MP stroke
-382 -382 382 0 0 382 3577 1736 4 MP stroke
382 382 -382 0 0 -382 3959 2118 4 MP stroke
-383 -382 383 0 0 382 3959 1736 4 MP stroke
383 382 -383 0 0 -382 4342 2118 4 MP stroke
-382 -382 382 0 0 382 4342 1736 4 MP stroke
382 382 -382 0 0 -382 4724 2118 4 MP stroke
-383 -382 383 0 0 382 4724 1736 4 MP stroke
383 382 -383 0 0 -382 5107 2118 4 MP stroke
-382 -382 382 0 0 382 5107 1736 4 MP stroke
382 382 -382 0 0 -382 5489 2118 4 MP stroke
-383 -382 383 0 0 382 5489 1736 4 MP stroke
383 382 -383 0 0 -382 5872 2118 4 MP stroke
-383 -382 383 0 0 382 5872 1736 4 MP stroke
383 382 -383 0 0 -382 6255 2118 4 MP stroke
0 383 -191 -192 191 -191 899 1736 4 MP stroke
0 -383 191 191 -191 192 1281 1353 4 MP stroke
-383 -383 383 0 0 383 1281 1353 4 MP stroke
383 383 -383 0 0 -383 1664 1736 4 MP stroke
-382 -383 382 0 0 383 1664 1353 4 MP stroke
382 383 -382 0 0 -383 2046 1736 4 MP stroke
-383 -383 383 0 0 383 2046 1353 4 MP stroke
383 383 -383 0 0 -383 2429 1736 4 MP stroke
-382 -383 382 0 0 383 2429 1353 4 MP stroke
382 383 -382 0 0 -383 2811 1736 4 MP stroke
-383 -383 383 0 0 383 2811 1353 4 MP stroke
383 383 -383 0 0 -383 3194 1736 4 MP stroke
-383 -383 383 0 0 383 3194 1353 4 MP stroke
383 383 -383 0 0 -383 3577 1736 4 MP stroke
-382 -383 382 0 0 383 3577 1353 4 MP stroke
382 383 -382 0 0 -383 3959 1736 4 MP stroke
-383 -383 383 0 0 383 3959 1353 4 MP stroke
383 383 -383 0 0 -383 4342 1736 4 MP stroke
-382 -383 382 0 0 383 4342 1353 4 MP stroke
382 383 -382 0 0 -383 4724 1736 4 MP stroke
-383 -383 383 0 0 383 4724 1353 4 MP stroke
383 383 -383 0 0 -383 5107 1736 4 MP stroke
-382 -383 382 0 0 383 5107 1353 4 MP stroke
382 383 -382 0 0 -383 5489 1736 4 MP stroke
-383 -383 383 0 0 383 5489 1353 4 MP stroke
383 383 -383 0 0 -383 5872 1736 4 MP stroke
-383 -383 383 0 0 383 5872 1353 4 MP stroke
383 383 -383 0 0 -383 6255 1736 4 MP stroke
382 0 -191 192 -191 -192 1281 3649 4 MP stroke
-382 0 191 -191 191 191 899 3266 4 MP stroke
382 0 -191 191 -191 -191 1281 3266 4 MP stroke
-382 0 191 -191 191 191 899 2884 4 MP stroke
382 0 -191 192 -191 -192 1281 2884 4 MP stroke
-382 0 191 -191 191 191 899 2501 4 MP stroke
382 0 -191 191 -191 -191 1281 2501 4 MP stroke
-382 0 191 -192 191 192 899 2118 4 MP stroke
382 0 -191 191 -191 -191 1281 2118 4 MP stroke
-382 0 191 -191 191 191 899 1736 4 MP stroke
382 0 -191 191 -191 -191 1281 1736 4 MP stroke
-382 0 191 -192 191 192 899 1353 4 MP stroke
gr
2283 294 mt
(Mesh for "newVertices1.dat" and "newCells1.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: C:\Documents and Settings\wen yu\Desktop\serial\output12.eps
%%CreationDate: 10/10/2006 23:27:38
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
-382 0 382 -382 0 382 899 1736 4 MP stroke
0 -383 382 0 -382 383 1281 3266 4 MP stroke
-383 0 383 -382 0 382 1281 1736 4 MP stroke
0 -383 383 0 -383 383 1664 3266 4 MP stroke
-382 0 382 -382 0 382 1664 1736 4 MP stroke
0 -383 382 0 -382 383 2046 3266 4 MP stroke
-383 0 383 -382 0 382 2046 1736 4 MP stroke
0 -383 383 0 -383 383 2429 3266 4 MP stroke
-382 0 382 -382 0 382 2429 1736 4 MP stroke
0 -383 382 0 -382 383 2811 3266 4 MP stroke
0 383 -192 -191 192 -192 2811 3649 4 MP stroke
0 -383 191 192 -191 191 3194 3266 4 MP stroke
-383 -383 383 0 0 383 3194 3266 4 MP stroke
383 383 -383 0 0 -383 3577 3649 4 MP stroke
-382 -383 382 0 0 383 3577 3266 4 MP stroke
382 383 -382 0 0 -383 3959 3649 4 MP stroke
-383 -383 383 0 0 383 3959 3266 4 MP stroke
383 383 -383 0 0 -383 4342 3649 4 MP stroke
-382 -383 382 0 0 383 4342 3266 4 MP stroke
382 383 -382 0 0 -383 4724 3649 4 MP stroke
-383 -383 383 0 0 383 4724 3266 4 MP stroke
383 383 -383 0 0 -383 5107 3649 4 MP stroke
-382 -383 382 0 0 383 5107 3266 4 MP stroke
382 383 -382 0 0 -383 5489 3649 4 MP stroke
-383 -383 383 0 0 383 5489 3266 4 MP stroke
383 383 -383 0 0 -383 5872 3649 4 MP stroke
-383 -383 383 0 0 383 5872 3266 4 MP stroke
383 383 -383 0 0 -383 6255 3649 4 MP stroke
-382 0 382 -383 0 383 899 3266 4 MP stroke
0 -382 382 0 -382 382 1281 2884 4 MP stroke
-383 0 383 -383 0 383 1281 3266 4 MP stroke
0 -382 383 0 -383 382 1664 2884 4 MP stroke
-382 0 382 -383 0 383 1664 3266 4 MP stroke
0 -382 382 0 -382 382 2046 2884 4 MP stroke
-383 0 383 -383 0 383 2046 3266 4 MP stroke
0 -382 383 0 -383 382 2429 2884 4 MP stroke
-382 0 382 -383 0 383 2429 3266 4 MP stroke
0 -382 382 0 -382 382 2811 2884 4 MP stroke
0 382 -192 -191 192 -191 2811 3266 4 MP stroke
0 -382 191 191 -191 191 3194 2884 4 MP stroke
-383 -382 383 0 0 382 3194 2884 4 MP stroke
383 382 -383 0 0 -382 3577 3266 4 MP stroke
-382 -382 382 0 0 382 3577 2884 4 MP stroke
382 382 -382 0 0 -382 3959 3266 4 MP stroke
-383 -382 383 0 0 382 3959 2884 4 MP stroke
383 382 -383 0 0 -382 4342 3266 4 MP stroke
-382 -382 382 0 0 382 4342 2884 4 MP stroke
382 382 -382 0 0 -382 4724 3266 4 MP stroke
-383 -382 383 0 0 382 4724 2884 4 MP stroke
383 382 -383 0 0 -382 5107 3266 4 MP stroke
-382 -382 382 0 0 382 5107 2884 4 MP stroke
382 382 -382 0 0 -382 5489 3266 4 MP stroke
-383 -382 383 0 0 382 5489 2884 4 MP stroke
383 382 -383 0 0 -382 5872 3266 4 MP stroke
-383 -382 383 0 0 382 5872 2884 4 MP stroke
383 382 -383 0 0 -382 6255 3266 4 MP stroke
-382 0 382 -383 0 383 899 2118 4 MP stroke
0 -383 382 0 -382 383 1281 2501 4 MP stroke
-383 0 383 -383 0 383 1281 2118 4 MP stroke
0 -383 383 0 -383 383 1664 2501 4 MP stroke
-382 0 382 -383 0 383 1664 2118 4 MP stroke
0 -383 382 0 -382 383 2046 2501 4 MP stroke
-383 0 383 -383 0 383 2046 2118 4 MP stroke
0 -383 383 0 -383 383 2429 2501 4 MP stroke
-382 0 382 -383 0 383 2429 2118 4 MP stroke
0 -383 382 0 -382 383 2811 2501 4 MP stroke
0 383 -192 -191 192 -192 2811 2884 4 MP stroke
0 -383 191 192 -191 191 3194 2501 4 MP stroke
-383 -383 383 0 0 383 3194 2501 4 MP stroke
383 383 -383 0 0 -383 3577 2884 4 MP stroke
-382 -383 382 0 0 383 3577 2501 4 MP stroke
382 383 -382 0 0 -383 3959 2884 4 MP stroke
-383 -383 383 0 0 383 3959 2501 4 MP stroke
383 383 -383 0 0 -383 4342 2884 4 MP stroke
-382 -383 382 0 0 383 4342 2501 4 MP stroke
382 383 -382 0 0 -383 4724 2884 4 MP stroke
-383 -383 383 0 0 383 4724 2501 4 MP stroke
383 383 -383 0 0 -383 5107 2884 4 MP stroke
-382 -383 382 0 0 383 5107 2501 4 MP stroke
382 383 -382 0 0 -383 5489 2884 4 MP stroke
-383 -383 383 0 0 383 5489 2501 4 MP stroke
383 383 -383 0 0 -383 5872 2884 4 MP stroke
-383 -383 383 0 0 383 5872 2501 4 MP stroke
383 383 -383 0 0 -383 6255 2884 4 MP stroke
-382 0 382 -382 0 382 899 2884 4 MP stroke
0 -383 382 0 -382 383 1281 2118 4 MP stroke
-383 0 383 -382 0 382 1281 2884 4 MP stroke
0 -383 383 0 -383 383 1664 2118 4 MP stroke
-382 0 382 -382 0 382 1664 2884 4 MP stroke
0 -383 382 0 -382 383 2046 2118 4 MP stroke
-383 0 383 -382 0 382 2046 2884 4 MP stroke
0 -383 383 0 -383 383 2429 2118 4 MP stroke
-382 0 382 -382 0 382 2429 2884 4 MP stroke
0 -383 382 0 -382 383 2811 2118 4 MP stroke
0 383 -192 -192 192 -191 2811 2501 4 MP stroke
0 -383 191 191 -191 192 3194 2118 4 MP stroke
-383 -383 383 0 0 383 3194 2118 4 MP stroke
383 383 -383 0 0 -383 3577 2501 4 MP stroke
-382 -383 382 0 0 383 3577 2118 4 MP stroke
382 383 -382 0 0 -383 3959 2501 4 MP stroke
-383 -383 383 0 0 383 3959 2118 4 MP stroke
383 383 -383 0 0 -383 4342 2501 4 MP stroke
-382 -383 382 0 0 383 4342 2118 4 MP stroke
382 383 -382 0 0 -383 4724 2501 4 MP stroke
-383 -383 383 0 0 383 4724 2118 4 MP stroke
383 383 -383 0 0 -383 5107 2501 4 MP stroke
-382 -383 382 0 0 383 5107 2118 4 MP stroke
382 383 -382 0 0 -383 5489 2501 4 MP stroke
-383 -383 383 0 0 383 5489 2118 4 MP stroke
383 383 -383 0 0 -383 5872 2501 4 MP stroke
-383 -383 383 0 0 383 5872 2118 4 MP stroke
383 383 -383 0 0 -383 6255 2501 4 MP stroke
-382 0 382 -383 0 383 899 1353 4 MP stroke
0 -382 382 0 -382 382 1281 1736 4 MP stroke
-383 0 383 -383 0 383 1281 1353 4 MP stroke
0 -382 383 0 -383 382 1664 1736 4 MP stroke
-382 0 382 -383 0 383 1664 1353 4 MP stroke
0 -382 382 0 -382 382 2046 1736 4 MP stroke
-383 0 383 -383 0 383 2046 1353 4 MP stroke
0 -382 383 0 -383 382 2429 1736 4 MP stroke
-382 0 382 -383 0 383 2429 1353 4 MP stroke
0 -382 382 0 -382 382 2811 1736 4 MP stroke
0 382 -192 -191 192 -191 2811 2118 4 MP stroke
0 -382 191 191 -191 191 3194 1736 4 MP stroke
-383 -382 383 0 0 382 3194 1736 4 MP stroke
383 382 -383 0 0 -382 3577 2118 4 MP stroke
-382 -382 382 0 0 382 3577 1736 4 MP stroke
382 382 -382 0 0 -382 3959 2118 4 MP stroke
-383 -382 383 0 0 382 3959 1736 4 MP stroke
383 382 -383 0 0 -382 4342 2118 4 MP stroke
-382 -382 382 0 0 382 4342 1736 4 MP stroke
382 382 -382 0 0 -382 4724 2118 4 MP stroke
-383 -382 383 0 0 382 4724 1736 4 MP stroke
383 382 -383 0 0 -382 5107 2118 4 MP stroke
-382 -382 382 0 0 382 5107 1736 4 MP stroke
382 382 -382 0 0 -382 5489 2118 4 MP stroke
-383 -382 383 0 0 382 5489 1736 4 MP stroke
383 382 -383 0 0 -382 5872 2118 4 MP stroke
-383 -382 383 0 0 382 5872 1736 4 MP stroke
383 382 -383 0 0 -382 6255 2118 4 MP stroke
-382 0 382 -383 0 383 899 2501 4 MP stroke
0 -383 382 0 -382 383 1281 1353 4 MP stroke
-383 0 383 -383 0 383 1281 2501 4 MP stroke
0 -383 383 0 -383 383 1664 1353 4 MP stroke
-382 0 382 -383 0 383 1664 2501 4 MP stroke
0 -383 382 0 -382 383 2046 1353 4 MP stroke
-383 0 383 -383 0 383 2046 2501 4 MP stroke
0 -383 383 0 -383 383 2429 1353 4 MP stroke
-382 0 382 -383 0 383 2429 2501 4 MP stroke
0 -383 382 0 -382 383 2811 1353 4 MP stroke
0 383 -192 -192 192 -191 2811 1736 4 MP stroke
0 -383 191 191 -191 192 3194 1353 4 MP stroke
-383 -383 383 0 0 383 3194 1353 4 MP stroke
383 383 -383 0 0 -383 3577 1736 4 MP stroke
-382 -383 382 0 0 383 3577 1353 4 MP stroke
382 383 -382 0 0 -383 3959 1736 4 MP stroke
-383 -383 383 0 0 383 3959 1353 4 MP stroke
383 383 -383 0 0 -383 4342 1736 4 MP stroke
-382 -383 382 0 0 383 4342 1353 4 MP stroke
382 383 -382 0 0 -383 4724 1736 4 MP stroke
-383 -383 383 0 0 383 4724 1353 4 MP stroke
383 383 -383 0 0 -383 5107 1736 4 MP stroke
-382 -383 382 0 0 383 5107 1353 4 MP stroke
382 383 -382 0 0 -383 5489 1736 4 MP stroke
-383 -383 383 0 0 383 5489 1353 4 MP stroke
383 383 -383 0 0 -383 5872 1736 4 MP stroke
-383 -383 383 0 0 383 5872 1353 4 MP stroke
383 383 -383 0 0 -383 6255 1736 4 MP stroke
383 0 -192 192 -191 -192 3194 3649 4 MP stroke
-383 0 191 -191 192 191 2811 3266 4 MP stroke
383 0 -192 191 -191 -191 3194 3266 4 MP stroke
-383 0 191 -191 192 191 2811 2884 4 MP stroke
383 0 -192 192 -191 -192 3194 2884 4 MP stroke
-383 0 191 -191 192 191 2811 2501 4 MP stroke
383 0 -192 191 -191 -191 3194 2501 4 MP stroke
-383 0 191 -192 192 192 2811 2118 4 MP stroke
383 0 -192 191 -191 -191 3194 2118 4 MP stroke
-383 0 191 -191 192 191 2811 1736 4 MP stroke
383 0 -192 191 -191 -191 3194 1736 4 MP stroke
-383 0 191 -192 192 192 2811 1353 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices11.dat" and "newCells11.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output13.eps
%%CreationDate: 10/10/2006 23:28:29
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
-382 0 382 -382 0 382 899 1736 4 MP stroke
0 -383 382 0 -382 383 1281 3266 4 MP stroke
-383 0 383 -382 0 382 1281 1736 4 MP stroke
0 -383 383 0 -383 383 1664 3266 4 MP stroke
-382 0 382 -382 0 382 1664 1736 4 MP stroke
0 -383 382 0 -382 383 2046 3266 4 MP stroke
-383 0 383 -382 0 382 2046 1736 4 MP stroke
0 -383 383 0 -383 383 2429 3266 4 MP stroke
-382 0 382 -382 0 382 2429 1736 4 MP stroke
0 -383 382 0 -382 383 2811 3266 4 MP stroke
-383 0 383 -382 0 382 2811 1736 4 MP stroke
0 -383 383 0 -383 383 3194 3266 4 MP stroke
-383 0 383 -382 0 382 3194 1736 4 MP stroke
0 -383 383 0 -383 383 3577 3266 4 MP stroke
-382 0 382 -382 0 382 3577 1736 4 MP stroke
0 -383 382 0 -382 383 3959 3266 4 MP stroke
-383 0 383 -382 0 382 3959 1736 4 MP stroke
0 -383 383 0 -383 383 4342 3266 4 MP stroke
-382 0 382 -382 0 382 4342 1736 4 MP stroke
0 -383 382 0 -382 383 4724 3266 4 MP stroke
-383 0 383 -382 0 382 4724 1736 4 MP stroke
0 -383 383 0 -383 383 5107 3266 4 MP stroke
-382 0 382 -382 0 382 5107 1736 4 MP stroke
0 -383 382 0 -382 383 5489 3266 4 MP stroke
-383 0 383 -382 0 382 5489 1736 4 MP stroke
0 -383 383 0 -383 383 5872 3266 4 MP stroke
-383 0 383 -382 0 382 5872 1736 4 MP stroke
0 -383 383 0 -383 383 6255 3266 4 MP stroke
-382 0 382 -383 0 383 899 3266 4 MP stroke
0 -382 382 0 -382 382 1281 2884 4 MP stroke
-383 0 383 -383 0 383 1281 3266 4 MP stroke
0 -382 383 0 -383 382 1664 2884 4 MP stroke
-382 0 382 -383 0 383 1664 3266 4 MP stroke
0 -382 382 0 -382 382 2046 2884 4 MP stroke
-383 0 383 -383 0 383 2046 3266 4 MP stroke
0 -382 383 0 -383 382 2429 2884 4 MP stroke
-382 0 382 -383 0 383 2429 3266 4 MP stroke
0 -382 382 0 -382 382 2811 2884 4 MP stroke
-383 0 383 -383 0 383 2811 3266 4 MP stroke
0 -382 383 0 -383 382 3194 2884 4 MP stroke
-383 0 383 -383 0 383 3194 3266 4 MP stroke
0 -382 383 0 -383 382 3577 2884 4 MP stroke
-382 0 382 -383 0 383 3577 3266 4 MP stroke
0 -382 382 0 -382 382 3959 2884 4 MP stroke
-383 0 383 -383 0 383 3959 3266 4 MP stroke
0 -382 383 0 -383 382 4342 2884 4 MP stroke
-382 0 382 -383 0 383 4342 3266 4 MP stroke
0 -382 382 0 -382 382 4724 2884 4 MP stroke
-383 0 383 -383 0 383 4724 3266 4 MP stroke
0 -382 383 0 -383 382 5107 2884 4 MP stroke
-382 0 382 -383 0 383 5107 3266 4 MP stroke
0 -382 382 0 -382 382 5489 2884 4 MP stroke
-383 0 383 -383 0 383 5489 3266 4 MP stroke
0 -382 383 0 -383 382 5872 2884 4 MP stroke
-383 0 383 -383 0 383 5872 3266 4 MP stroke
0 -382 383 0 -383 382 6255 2884 4 MP stroke
-382 0 382 -383 0 383 899 2118 4 MP stroke
0 -383 382 0 -382 383 1281 2501 4 MP stroke
-383 0 383 -383 0 383 1281 2118 4 MP stroke
0 -383 383 0 -383 383 1664 2501 4 MP stroke
-382 0 382 -383 0 383 1664 2118 4 MP stroke
0 -383 382 0 -382 383 2046 2501 4 MP stroke
-383 0 383 -383 0 383 2046 2118 4 MP stroke
0 -383 383 0 -383 383 2429 2501 4 MP stroke
-382 0 382 -383 0 383 2429 2118 4 MP stroke
0 -383 382 0 -382 383 2811 2501 4 MP stroke
-383 0 383 -383 0 383 2811 2118 4 MP stroke
0 -383 383 0 -383 383 3194 2501 4 MP stroke
-383 0 383 -383 0 383 3194 2118 4 MP stroke
0 -383 383 0 -383 383 3577 2501 4 MP stroke
-382 0 382 -383 0 383 3577 2118 4 MP stroke
0 -383 382 0 -382 383 3959 2501 4 MP stroke
-383 0 383 -383 0 383 3959 2118 4 MP stroke
0 -383 383 0 -383 383 4342 2501 4 MP stroke
-382 0 382 -383 0 383 4342 2118 4 MP stroke
0 -383 382 0 -382 383 4724 2501 4 MP stroke
-383 0 383 -383 0 383 4724 2118 4 MP stroke
0 -383 383 0 -383 383 5107 2501 4 MP stroke
-382 0 382 -383 0 383 5107 2118 4 MP stroke
0 -383 382 0 -382 383 5489 2501 4 MP stroke
-383 0 383 -383 0 383 5489 2118 4 MP stroke
0 -383 383 0 -383 383 5872 2501 4 MP stroke
-383 0 383 -383 0 383 5872 2118 4 MP stroke
0 -383 383 0 -383 383 6255 2501 4 MP stroke
-382 0 382 -382 0 382 899 2884 4 MP stroke
0 -383 382 0 -382 383 1281 2118 4 MP stroke
-383 0 383 -382 0 382 1281 2884 4 MP stroke
0 -383 383 0 -383 383 1664 2118 4 MP stroke
-382 0 382 -382 0 382 1664 2884 4 MP stroke
0 -383 382 0 -382 383 2046 2118 4 MP stroke
-383 0 383 -382 0 382 2046 2884 4 MP stroke
0 -383 383 0 -383 383 2429 2118 4 MP stroke
-382 0 382 -382 0 382 2429 2884 4 MP stroke
0 -383 382 0 -382 383 2811 2118 4 MP stroke
-383 0 383 -382 0 382 2811 2884 4 MP stroke
0 -383 383 0 -383 383 3194 2118 4 MP stroke
-383 0 383 -382 0 382 3194 2884 4 MP stroke
0 -383 383 0 -383 383 3577 2118 4 MP stroke
-382 0 382 -382 0 382 3577 2884 4 MP stroke
0 -383 382 0 -382 383 3959 2118 4 MP stroke
-383 0 383 -382 0 382 3959 2884 4 MP stroke
0 -383 383 0 -383 383 4342 2118 4 MP stroke
-382 0 382 -382 0 382 4342 2884 4 MP stroke
0 -383 382 0 -382 383 4724 2118 4 MP stroke
-383 0 383 -382 0 382 4724 2884 4 MP stroke
0 -383 383 0 -383 383 5107 2118 4 MP stroke
-382 0 382 -382 0 382 5107 2884 4 MP stroke
0 -383 382 0 -382 383 5489 2118 4 MP stroke
-383 0 383 -382 0 382 5489 2884 4 MP stroke
0 -383 383 0 -383 383 5872 2118 4 MP stroke
-383 0 383 -382 0 382 5872 2884 4 MP stroke
0 -383 383 0 -383 383 6255 2118 4 MP stroke
-382 0 382 -383 0 383 899 1353 4 MP stroke
0 -382 382 0 -382 382 1281 1736 4 MP stroke
-383 0 383 -383 0 383 1281 1353 4 MP stroke
0 -382 383 0 -383 382 1664 1736 4 MP stroke
-382 0 382 -383 0 383 1664 1353 4 MP stroke
0 -382 382 0 -382 382 2046 1736 4 MP stroke
-383 0 383 -383 0 383 2046 1353 4 MP stroke
0 -382 383 0 -383 382 2429 1736 4 MP stroke
-382 0 382 -383 0 383 2429 1353 4 MP stroke
0 -382 382 0 -382 382 2811 1736 4 MP stroke
-383 0 383 -383 0 383 2811 1353 4 MP stroke
0 -382 383 0 -383 382 3194 1736 4 MP stroke
-383 0 383 -383 0 383 3194 1353 4 MP stroke
0 -382 383 0 -383 382 3577 1736 4 MP stroke
-382 0 382 -383 0 383 3577 1353 4 MP stroke
0 -382 382 0 -382 382 3959 1736 4 MP stroke
-383 0 383 -383 0 383 3959 1353 4 MP stroke
0 -382 383 0 -383 382 4342 1736 4 MP stroke
-382 0 382 -383 0 383 4342 1353 4 MP stroke
0 -382 382 0 -382 382 4724 1736 4 MP stroke
-383 0 383 -383 0 383 4724 1353 4 MP stroke
0 -382 383 0 -383 382 5107 1736 4 MP stroke
-382 0 382 -383 0 383 5107 1353 4 MP stroke
0 -382 382 0 -382 382 5489 1736 4 MP stroke
-383 0 383 -383 0 383 5489 1353 4 MP stroke
0 -382 383 0 -383 382 5872 1736 4 MP stroke
-383 0 383 -383 0 383 5872 1353 4 MP stroke
0 -382 383 0 -383 382 6255 1736 4 MP stroke
-382 0 382 -383 0 383 899 2501 4 MP stroke
0 -383 382 0 -382 383 1281 1353 4 MP stroke
-383 0 383 -383 0 383 1281 2501 4 MP stroke
0 -383 383 0 -383 383 1664 1353 4 MP stroke
-382 0 382 -383 0 383 1664 2501 4 MP stroke
0 -383 382 0 -382 383 2046 1353 4 MP stroke
-383 0 383 -383 0 383 2046 2501 4 MP stroke
0 -383 383 0 -383 383 2429 1353 4 MP stroke
-382 0 382 -383 0 383 2429 2501 4 MP stroke
0 -383 382 0 -382 383 2811 1353 4 MP stroke
-383 0 383 -383 0 383 2811 2501 4 MP stroke
0 -383 383 0 -383 383 3194 1353 4 MP stroke
-383 0 383 -383 0 383 3194 2501 4 MP stroke
0 -383 383 0 -383 383 3577 1353 4 MP stroke
-382 0 382 -383 0 383 3577 2501 4 MP stroke
0 -383 382 0 -382 383 3959 1353 4 MP stroke
-383 0 383 -383 0 383 3959 2501 4 MP stroke
0 -383 383 0 -383 383 4342 1353 4 MP stroke
-382 0 382 -383 0 383 4342 2501 4 MP stroke
0 -383 382 0 -382 383 4724 1353 4 MP stroke
-383 0 383 -383 0 383 4724 2501 4 MP stroke
0 -383 383 0 -383 383 5107 1353 4 MP stroke
-382 0 382 -383 0 383 5107 2501 4 MP stroke
0 -383 382 0 -382 383 5489 1353 4 MP stroke
-383 0 383 -383 0 383 5489 2501 4 MP stroke
0 -383 383 0 -383 383 5872 1353 4 MP stroke
-383 0 383 -383 0 383 5872 2501 4 MP stroke
0 -383 383 0 -383 383 6255 1353 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices28.dat" and "newCells28.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output21.eps
%%CreationDate: 10/10/2006 23:35:14
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
191 -574 382 0 -573 574 1472 3075 4 MP stroke
-573 191 573 -574 0 383 899 3266 4 MP stroke
191 -574 383 0 -574 574 1855 3075 4 MP stroke
-191 574 -383 0 574 -574 1281 3649 4 MP stroke
192 -574 382 0 -574 574 2238 3075 4 MP stroke
-191 574 -383 0 574 -574 1664 3649 4 MP stroke
0 -383 383 0 -383 383 2429 3266 4 MP stroke
-192 574 -191 -191 383 -383 2046 3649 4 MP stroke
382 0 -191 192 -191 -192 2811 3649 4 MP stroke
-382 0 191 -191 191 191 2429 3266 4 MP stroke
-383 383 0 -383 383 0 2811 3649 4 MP stroke
383 -383 0 383 -383 0 3194 3266 4 MP stroke
-383 383 0 -383 383 0 3194 3649 4 MP stroke
383 -383 0 383 -383 0 3577 3266 4 MP stroke
-382 383 0 -383 382 0 3577 3649 4 MP stroke
382 -383 0 383 -382 0 3959 3266 4 MP stroke
-383 383 0 -383 383 0 3959 3649 4 MP stroke
383 -383 0 383 -383 0 4342 3266 4 MP stroke
-382 383 0 -383 382 0 4342 3649 4 MP stroke
382 -383 0 383 -382 0 4724 3266 4 MP stroke
-383 383 0 -383 383 0 4724 3649 4 MP stroke
383 -383 0 383 -383 0 5107 3266 4 MP stroke
-382 383 0 -383 382 0 5107 3649 4 MP stroke
382 -383 0 383 -382 0 5489 3266 4 MP stroke
-383 383 0 -383 383 0 5489 3649 4 MP stroke
383 -383 0 383 -383 0 5872 3266 4 MP stroke
-383 383 0 -383 383 0 5872 3649 4 MP stroke
383 -383 0 383 -383 0 6255 3266 4 MP stroke
573 -191 -573 574 0 -383 1472 2310 4 MP stroke
-573 192 573 -574 0 382 899 2884 4 MP stroke
383 0 -383 383 0 -383 1855 2310 4 MP stroke
0 383 -383 0 383 -383 1472 3075 4 MP stroke
383 0 -383 383 0 -383 2238 2310 4 MP stroke
0 383 -383 0 383 -383 1855 3075 4 MP stroke
0 -383 191 191 -191 192 2429 2118 4 MP stroke
0 383 -191 -192 191 -191 2238 3075 4 MP stroke
382 0 -191 191 -191 -191 2811 3266 4 MP stroke
-382 0 191 -191 191 191 2429 2884 4 MP stroke
-383 382 0 -382 383 0 2811 3266 4 MP stroke
383 -382 0 382 -383 0 3194 2884 4 MP stroke
-383 382 0 -382 383 0 3194 3266 4 MP stroke
383 -382 0 382 -383 0 3577 2884 4 MP stroke
-382 382 0 -382 382 0 3577 3266 4 MP stroke
382 -382 0 382 -382 0 3959 2884 4 MP stroke
-383 382 0 -382 383 0 3959 3266 4 MP stroke
383 -382 0 382 -383 0 4342 2884 4 MP stroke
-382 382 0 -382 382 0 4342 3266 4 MP stroke
382 -382 0 382 -382 0 4724 2884 4 MP stroke
-383 382 0 -382 383 0 4724 3266 4 MP stroke
383 -382 0 382 -383 0 5107 2884 4 MP stroke
-382 382 0 -382 382 0 5107 3266 4 MP stroke
382 -382 0 382 -382 0 5489 2884 4 MP stroke
-383 382 0 -382 383 0 5489 3266 4 MP stroke
383 -382 0 382 -383 0 5872 2884 4 MP stroke
-383 382 0 -382 383 0 5872 3266 4 MP stroke
383 -382 0 382 -383 0 6255 2884 4 MP stroke
573 -191 -573 574 0 -383 1472 3075 4 MP stroke
-573 191 573 -574 0 383 899 2501 4 MP stroke
383 0 -383 383 0 -383 1855 3075 4 MP stroke
0 382 -383 0 383 -382 1472 2692 4 MP stroke
383 0 -383 383 0 -383 2238 3075 4 MP stroke
0 382 -383 0 383 -382 1855 2692 4 MP stroke
0 -382 191 191 -191 191 2429 2884 4 MP stroke
0 382 -191 -191 191 -191 2238 2692 4 MP stroke
382 0 -191 192 -191 -192 2811 2884 4 MP stroke
-382 0 191 -191 191 191 2429 2501 4 MP stroke
-383 383 0 -383 383 0 2811 2884 4 MP stroke
383 -383 0 383 -383 0 3194 2501 4 MP stroke
-383 383 0 -383 383 0 3194 2884 4 MP stroke
383 -383 0 383 -383 0 3577 2501 4 MP stroke
-382 383 0 -383 382 0 3577 2884 4 MP stroke
382 -383 0 383 -382 0 3959 2501 4 MP stroke
-383 383 0 -383 383 0 3959 2884 4 MP stroke
383 -383 0 383 -383 0 4342 2501 4 MP stroke
-382 383 0 -383 382 0 4342 2884 4 MP stroke
382 -383 0 383 -382 0 4724 2501 4 MP stroke
-383 383 0 -383 383 0 4724 2884 4 MP stroke
383 -383 0 383 -383 0 5107 2501 4 MP stroke
-382 383 0 -383 382 0 5107 2884 4 MP stroke
382 -383 0 383 -382 0 5489 2501 4 MP stroke
-383 383 0 -383 383 0 5489 2884 4 MP stroke
383 -383 0 383 -383 0 5872 2501 4 MP stroke
-383 383 0 -383 383 0 5872 2884 4 MP stroke
383 -383 0 383 -383 0 6255 2501 4 MP stroke
573 -191 -382 383 -191 -192 1472 1545 4 MP stroke
-573 191 573 -574 0 383 899 2118 4 MP stroke
383 0 -192 192 -191 -192 1855 1545 4 MP stroke
0 383 -383 0 383 -383 1472 2310 4 MP stroke
383 0 -191 192 -192 -192 2238 1545 4 MP stroke
0 383 -383 0 383 -383 1855 2310 4 MP stroke
0 -383 191 191 -191 192 2429 1353 4 MP stroke
0 383 -191 -191 191 -192 2238 2310 4 MP stroke
382 0 -191 191 -191 -191 2811 2501 4 MP stroke
-382 0 191 -192 191 192 2429 2118 4 MP stroke
-383 383 0 -383 383 0 2811 2501 4 MP stroke
383 -383 0 383 -383 0 3194 2118 4 MP stroke
-383 383 0 -383 383 0 3194 2501 4 MP stroke
383 -383 0 383 -383 0 3577 2118 4 MP stroke
-382 383 0 -383 382 0 3577 2501 4 MP stroke
382 -383 0 383 -382 0 3959 2118 4 MP stroke
-383 383 0 -383 383 0 3959 2501 4 MP stroke
383 -383 0 383 -383 0 4342 2118 4 MP stroke
-382 383 0 -383 382 0 4342 2501 4 MP stroke
382 -383 0 383 -382 0 4724 2118 4 MP stroke
-383 383 0 -383 383 0 4724 2501 4 MP stroke
383 -383 0 383 -383 0 5107 2118 4 MP stroke
-382 383 0 -383 382 0 5107 2501 4 MP stroke
382 -383 0 383 -382 0 5489 2118 4 MP stroke
-383 383 0 -383 383 0 5489 2501 4 MP stroke
383 -383 0 383 -383 0 5872 2118 4 MP stroke
-383 383 0 -383 383 0 5872 2501 4 MP stroke
383 -383 0 383 -383 0 6255 2118 4 MP stroke
573 -192 -573 574 0 -382 1472 2692 4 MP stroke
-573 191 573 -573 0 382 899 1736 4 MP stroke
383 0 -383 382 0 -382 1855 2692 4 MP stroke
0 382 -383 0 383 -382 1472 1927 4 MP stroke
383 0 -383 382 0 -382 2238 2692 4 MP stroke
0 382 -383 0 383 -382 1855 1927 4 MP stroke
0 -383 191 192 -191 191 2429 2501 4 MP stroke
0 382 -191 -191 191 -191 2238 1927 4 MP stroke
382 0 -191 191 -191 -191 2811 2118 4 MP stroke
-382 0 191 -191 191 191 2429 1736 4 MP stroke
-383 382 0 -382 383 0 2811 2118 4 MP stroke
383 -382 0 382 -383 0 3194 1736 4 MP stroke
-383 382 0 -382 383 0 3194 2118 4 MP stroke
383 -382 0 382 -383 0 3577 1736 4 MP stroke
-382 382 0 -382 382 0 3577 2118 4 MP stroke
382 -382 0 382 -382 0 3959 1736 4 MP stroke
-383 382 0 -382 383 0 3959 2118 4 MP stroke
383 -382 0 382 -383 0 4342 1736 4 MP stroke
-382 382 0 -382 382 0 4342 2118 4 MP stroke
382 -382 0 382 -382 0 4724 1736 4 MP stroke
-383 382 0 -382 383 0 4724 2118 4 MP stroke
383 -382 0 382 -383 0 5107 1736 4 MP stroke
-382 382 0 -382 382 0 5107 2118 4 MP stroke
382 -382 0 382 -382 0 5489 1736 4 MP stroke
-383 382 0 -382 383 0 5489 2118 4 MP stroke
383 -382 0 382 -383 0 5872 1736 4 MP stroke
-383 382 0 -382 383 0 5872 2118 4 MP stroke
383 -382 0 382 -383 0 6255 1736 4 MP stroke
573 -191 -573 573 0 -382 1472 1927 4 MP stroke
-382 0 382 -383 0 383 899 1353 4 MP stroke
383 0 -383 382 0 -382 1855 1927 4 MP stroke
-383 0 192 -192 191 192 1281 1353 4 MP stroke
383 0 -383 382 0 -382 2238 1927 4 MP stroke
-382 0 191 -192 191 192 1664 1353 4 MP stroke
0 -382 191 191 -191 191 2429 1736 4 MP stroke
-383 0 191 -192 192 192 2046 1353 4 MP stroke
382 0 -191 191 -191 -191 2811 1736 4 MP stroke
-382 0 191 -192 191 192 2429 1353 4 MP stroke
-383 383 0 -383 383 0 2811 1736 4 MP stroke
383 -383 0 383 -383 0 3194 1353 4 MP stroke
-383 383 0 -383 383 0 3194 1736 4 MP stroke
383 -383 0 383 -383 0 3577 1353 4 MP stroke
-382 383 0 -383 382 0 3577 1736 4 MP stroke
382 -383 0 383 -382 0 3959 1353 4 MP stroke
-383 383 0 -383 383 0 3959 1736 4 MP stroke
383 -383 0 383 -383 0 4342 1353 4 MP stroke
-382 383 0 -383 382 0 4342 1736 4 MP stroke
382 -383 0 383 -382 0 4724 1353 4 MP stroke
-383 383 0 -383 383 0 4724 1736 4 MP stroke
383 -383 0 383 -383 0 5107 1353 4 MP stroke
-382 383 0 -383 382 0 5107 1736 4 MP stroke
382 -383 0 383 -382 0 5489 1353 4 MP stroke
-383 383 0 -383 383 0 5489 1736 4 MP stroke
383 -383 0 383 -383 0 5872 1353 4 MP stroke
-383 383 0 -383 383 0 5872 1736 4 MP stroke
383 -383 0 383 -383 0 6255 1353 4 MP stroke
0 -383 191 192 -191 191 2811 3266 4 MP stroke
0 383 -191 -191 191 -192 2429 3649 4 MP stroke
0 -382 191 191 -191 191 2811 2884 4 MP stroke
0 382 -191 -191 191 -191 2429 3266 4 MP stroke
0 -383 191 192 -191 191 2811 2501 4 MP stroke
0 383 -191 -191 191 -192 2429 2884 4 MP stroke
0 -383 191 191 -191 192 2811 2118 4 MP stroke
0 383 -191 -192 191 -191 2429 2501 4 MP stroke
0 -382 191 191 -191 191 2811 1736 4 MP stroke
0 382 -191 -191 191 -191 2429 2118 4 MP stroke
0 -383 191 191 -191 192 2811 1353 4 MP stroke
0 383 -191 -192 191 -191 2429 1736 4 MP stroke
gr
2283 294 mt
(Mesh for "newVertices9.dat" and "newCells9.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output22.eps
%%CreationDate: 10/10/2006 23:35:48
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
191 -574 382 0 -573 574 1472 3075 4 MP stroke
-573 191 573 -574 0 383 899 3266 4 MP stroke
191 -574 383 0 -574 574 1855 3075 4 MP stroke
-191 574 -383 0 574 -574 1281 3649 4 MP stroke
192 -574 382 0 -574 574 2238 3075 4 MP stroke
-191 574 -383 0 574 -574 1664 3649 4 MP stroke
191 -574 383 0 -574 574 2620 3075 4 MP stroke
-192 574 -382 0 574 -574 2046 3649 4 MP stroke
192 -574 382 0 -574 574 3003 3075 4 MP stroke
-191 574 -383 0 574 -574 2429 3649 4 MP stroke
191 -574 383 0 -574 574 3385 3075 4 MP stroke
-192 574 -382 0 574 -574 2811 3649 4 MP stroke
191 -574 383 0 -574 574 3768 3075 4 MP stroke
-191 574 -383 0 574 -574 3194 3649 4 MP stroke
191 -574 382 0 -573 574 4150 3075 4 MP stroke
-191 574 -382 0 573 -574 3577 3649 4 MP stroke
191 -574 383 0 -574 574 4533 3075 4 MP stroke
-191 574 -383 0 574 -574 3959 3649 4 MP stroke
0 -383 382 0 -382 383 4724 3266 4 MP stroke
-191 574 -191 -191 382 -383 4342 3649 4 MP stroke
-383 383 0 -383 383 0 4724 3649 4 MP stroke
383 -383 0 383 -383 0 5107 3266 4 MP stroke
-382 383 0 -383 382 0 5107 3649 4 MP stroke
382 -383 0 383 -382 0 5489 3266 4 MP stroke
-383 383 0 -383 383 0 5489 3649 4 MP stroke
383 -383 0 383 -383 0 5872 3266 4 MP stroke
-383 383 0 -383 383 0 5872 3649 4 MP stroke
383 -383 0 383 -383 0 6255 3266 4 MP stroke
573 -191 -573 574 0 -383 1472 2310 4 MP stroke
-573 192 573 -574 0 382 899 2884 4 MP stroke
383 0 -383 383 0 -383 1855 2310 4 MP stroke
0 383 -383 0 383 -383 1472 3075 4 MP stroke
383 0 -383 383 0 -383 2238 2310 4 MP stroke
0 383 -383 0 383 -383 1855 3075 4 MP stroke
382 0 -382 383 0 -383 2620 2310 4 MP stroke
0 383 -382 0 382 -383 2238 3075 4 MP stroke
383 0 -383 383 0 -383 3003 2310 4 MP stroke
0 383 -383 0 383 -383 2620 3075 4 MP stroke
382 0 -382 383 0 -383 3385 2310 4 MP stroke
0 383 -382 0 382 -383 3003 3075 4 MP stroke
383 0 -383 383 0 -383 3768 2310 4 MP stroke
0 383 -383 0 383 -383 3385 3075 4 MP stroke
382 0 -382 383 0 -383 4150 2310 4 MP stroke
0 383 -382 0 382 -383 3768 3075 4 MP stroke
383 0 -383 383 0 -383 4533 2310 4 MP stroke
0 383 -383 0 383 -383 4150 3075 4 MP stroke
0 -383 191 191 -191 192 4724 2118 4 MP stroke
0 383 -191 -192 191 -191 4533 3075 4 MP stroke
-383 382 0 -382 383 0 4724 3266 4 MP stroke
383 -382 0 382 -383 0 5107 2884 4 MP stroke
-382 382 0 -382 382 0 5107 3266 4 MP stroke
382 -382 0 382 -382 0 5489 2884 4 MP stroke
-383 382 0 -382 383 0 5489 3266 4 MP stroke
383 -382 0 382 -383 0 5872 2884 4 MP stroke
-383 382 0 -382 383 0 5872 3266 4 MP stroke
383 -382 0 382 -383 0 6255 2884 4 MP stroke
573 -191 -573 574 0 -383 1472 3075 4 MP stroke
-573 191 573 -574 0 383 899 2501 4 MP stroke
383 0 -383 383 0 -383 1855 3075 4 MP stroke
0 382 -383 0 383 -382 1472 2692 4 MP stroke
383 0 -383 383 0 -383 2238 3075 4 MP stroke
0 382 -383 0 383 -382 1855 2692 4 MP stroke
382 0 -382 383 0 -383 2620 3075 4 MP stroke
0 382 -382 0 382 -382 2238 2692 4 MP stroke
383 0 -383 383 0 -383 3003 3075 4 MP stroke
0 382 -383 0 383 -382 2620 2692 4 MP stroke
382 0 -382 383 0 -383 3385 3075 4 MP stroke
0 382 -382 0 382 -382 3003 2692 4 MP stroke
383 0 -383 383 0 -383 3768 3075 4 MP stroke
0 382 -383 0 383 -382 3385 2692 4 MP stroke
382 0 -382 383 0 -383 4150 3075 4 MP stroke
0 382 -382 0 382 -382 3768 2692 4 MP stroke
383 0 -383 383 0 -383 4533 3075 4 MP stroke
0 382 -383 0 383 -382 4150 2692 4 MP stroke
0 -382 191 191 -191 191 4724 2884 4 MP stroke
0 382 -191 -191 191 -191 4533 2692 4 MP stroke
-383 383 0 -383 383 0 4724 2884 4 MP stroke
383 -383 0 383 -383 0 5107 2501 4 MP stroke
-382 383 0 -383 382 0 5107 2884 4 MP stroke
382 -383 0 383 -382 0 5489 2501 4 MP stroke
-383 383 0 -383 383 0 5489 2884 4 MP stroke
383 -383 0 383 -383 0 5872 2501 4 MP stroke
-383 383 0 -383 383 0 5872 2884 4 MP stroke
383 -383 0 383 -383 0 6255 2501 4 MP stroke
573 -191 -382 383 -191 -192 1472 1545 4 MP stroke
-573 191 573 -574 0 383 899 2118 4 MP stroke
383 0 -192 192 -191 -192 1855 1545 4 MP stroke
0 383 -383 0 383 -383 1472 2310 4 MP stroke
383 0 -191 192 -192 -192 2238 1545 4 MP stroke
0 383 -383 0 383 -383 1855 2310 4 MP stroke
382 0 -191 192 -191 -192 2620 1545 4 MP stroke
0 383 -382 0 382 -383 2238 2310 4 MP stroke
383 0 -191 192 -192 -192 3003 1545 4 MP stroke
0 383 -383 0 383 -383 2620 2310 4 MP stroke
382 0 -191 192 -191 -192 3385 1545 4 MP stroke
0 383 -382 0 382 -383 3003 2310 4 MP stroke
383 0 -192 192 -191 -192 3768 1545 4 MP stroke
0 383 -383 0 383 -383 3385 2310 4 MP stroke
382 0 -191 192 -191 -192 4150 1545 4 MP stroke
0 383 -382 0 382 -383 3768 2310 4 MP stroke
383 0 -192 192 -191 -192 4533 1545 4 MP stroke
0 383 -383 0 383 -383 4150 2310 4 MP stroke
0 -383 191 191 -191 192 4724 1353 4 MP stroke
0 383 -191 -191 191 -192 4533 2310 4 MP stroke
-383 383 0 -383 383 0 4724 2501 4 MP stroke
383 -383 0 383 -383 0 5107 2118 4 MP stroke
-382 383 0 -383 382 0 5107 2501 4 MP stroke
382 -383 0 383 -382 0 5489 2118 4 MP stroke
-383 383 0 -383 383 0 5489 2501 4 MP stroke
383 -383 0 383 -383 0 5872 2118 4 MP stroke
-383 383 0 -383 383 0 5872 2501 4 MP stroke
383 -383 0 383 -383 0 6255 2118 4 MP stroke
573 -192 -573 574 0 -382 1472 2692 4 MP stroke
-573 191 573 -573 0 382 899 1736 4 MP stroke
383 0 -383 382 0 -382 1855 2692 4 MP stroke
0 382 -383 0 383 -382 1472 1927 4 MP stroke
383 0 -383 382 0 -382 2238 2692 4 MP stroke
0 382 -383 0 383 -382 1855 1927 4 MP stroke
382 0 -382 382 0 -382 2620 2692 4 MP stroke
0 382 -382 0 382 -382 2238 1927 4 MP stroke
383 0 -383 382 0 -382 3003 2692 4 MP stroke
0 382 -383 0 383 -382 2620 1927 4 MP stroke
382 0 -382 382 0 -382 3385 2692 4 MP stroke
0 382 -382 0 382 -382 3003 1927 4 MP stroke
383 0 -383 382 0 -382 3768 2692 4 MP stroke
0 382 -383 0 383 -382 3385 1927 4 MP stroke
382 0 -382 382 0 -382 4150 2692 4 MP stroke
0 382 -382 0 382 -382 3768 1927 4 MP stroke
383 0 -383 382 0 -382 4533 2692 4 MP stroke
0 382 -383 0 383 -382 4150 1927 4 MP stroke
0 -383 191 192 -191 191 4724 2501 4 MP stroke
0 382 -191 -191 191 -191 4533 1927 4 MP stroke
-383 382 0 -382 383 0 4724 2118 4 MP stroke
383 -382 0 382 -383 0 5107 1736 4 MP stroke
-382 382 0 -382 382 0 5107 2118 4 MP stroke
382 -382 0 382 -382 0 5489 1736 4 MP stroke
-383 382 0 -382 383 0 5489 2118 4 MP stroke
383 -382 0 382 -383 0 5872 1736 4 MP stroke
-383 382 0 -382 383 0 5872 2118 4 MP stroke
383 -382 0 382 -383 0 6255 1736 4 MP stroke
573 -191 -573 573 0 -382 1472 1927 4 MP stroke
-382 0 382 -383 0 383 899 1353 4 MP stroke
383 0 -383 382 0 -382 1855 1927 4 MP stroke
-383 0 192 -192 191 192 1281 1353 4 MP stroke
383 0 -383 382 0 -382 2238 1927 4 MP stroke
-382 0 191 -192 191 192 1664 1353 4 MP stroke
382 0 -382 382 0 -382 2620 1927 4 MP stroke
-383 0 191 -192 192 192 2046 1353 4 MP stroke
383 0 -383 382 0 -382 3003 1927 4 MP stroke
-382 0 191 -192 191 192 2429 1353 4 MP stroke
382 0 -382 382 0 -382 3385 1927 4 MP stroke
-383 0 191 -192 192 192 2811 1353 4 MP stroke
383 0 -383 382 0 -382 3768 1927 4 MP stroke
-383 0 192 -192 191 192 3194 1353 4 MP stroke
382 0 -382 382 0 -382 4150 1927 4 MP stroke
-382 0 191 -192 191 192 3577 1353 4 MP stroke
383 0 -383 382 0 -382 4533 1927 4 MP stroke
-383 0 192 -192 191 192 3959 1353 4 MP stroke
0 -382 191 191 -191 191 4724 1736 4 MP stroke
-382 0 191 -192 191 192 4342 1353 4 MP stroke
-383 383 0 -383 383 0 4724 1736 4 MP stroke
383 -383 0 383 -383 0 5107 1353 4 MP stroke
-382 383 0 -383 382 0 5107 1736 4 MP stroke
382 -383 0 383 -382 0 5489 1353 4 MP stroke
-383 383 0 -383 383 0 5489 1736 4 MP stroke
383 -383 0 383 -383 0 5872 1353 4 MP stroke
-383 383 0 -383 383 0 5872 1736 4 MP stroke
383 -383 0 383 -383 0 6255 1353 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices20.dat" and "newCells20.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output23.eps
%%CreationDate: 10/10/2006 23:36:24
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 547 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 547 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5643 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
899 4613 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1664 4613 mt 1664 4560 L
1664 389 mt 1664 442 L
1631 4759 mt
(2) s
2429 4613 mt 2429 4560 L
2429 389 mt 2429 442 L
2396 4759 mt
(4) s
3194 4613 mt 3194 4560 L
3194 389 mt 3194 442 L
3161 4759 mt
(6) s
3959 4613 mt 3959 4560 L
3959 389 mt 3959 442 L
3926 4759 mt
(8) s
4724 4613 mt 4724 4560 L
4724 389 mt 4724 442 L
4658 4759 mt
(10) s
5489 4613 mt 5489 4560 L
5489 389 mt 5489 442 L
5423 4759 mt
(12) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6189 4759 mt
(14) s
899 4414 mt 952 4414 L
6255 4414 mt 6201 4414 L
728 4458 mt
(-2) s
899 4031 mt 952 4031 L
6255 4031 mt 6201 4031 L
728 4075 mt
(-1) s
899 3649 mt 952 3649 L
6255 3649 mt 6201 3649 L
798 3693 mt
(0) s
899 3266 mt 952 3266 L
6255 3266 mt 6201 3266 L
798 3310 mt
(1) s
899 2884 mt 952 2884 L
6255 2884 mt 6201 2884 L
798 2928 mt
(2) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(3) s
899 2118 mt 952 2118 L
6255 2118 mt 6201 2118 L
798 2162 mt
(4) s
899 1736 mt 952 1736 L
6255 1736 mt 6201 1736 L
798 1780 mt
(5) s
899 1353 mt 952 1353 L
6255 1353 mt 6201 1353 L
798 1397 mt
(6) s
899 971 mt 952 971 L
6255 971 mt 6201 971 L
798 1015 mt
(7) s
899 588 mt 952 588 L
6255 588 mt 6201 588 L
798 632 mt
(8) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
191 -574 382 0 -573 574 1472 3075 4 MP stroke
-573 191 573 -574 0 383 899 3266 4 MP stroke
191 -574 383 0 -574 574 1855 3075 4 MP stroke
-191 574 -383 0 574 -574 1281 3649 4 MP stroke
192 -574 382 0 -574 574 2238 3075 4 MP stroke
-191 574 -383 0 574 -574 1664 3649 4 MP stroke
191 -574 383 0 -574 574 2620 3075 4 MP stroke
-192 574 -382 0 574 -574 2046 3649 4 MP stroke
192 -574 382 0 -574 574 3003 3075 4 MP stroke
-191 574 -383 0 574 -574 2429 3649 4 MP stroke
191 -574 383 0 -574 574 3385 3075 4 MP stroke
-192 574 -382 0 574 -574 2811 3649 4 MP stroke
191 -574 383 0 -574 574 3768 3075 4 MP stroke
-191 574 -383 0 574 -574 3194 3649 4 MP stroke
191 -574 382 0 -573 574 4150 3075 4 MP stroke
-191 574 -382 0 573 -574 3577 3649 4 MP stroke
191 -574 383 0 -574 574 4533 3075 4 MP stroke
-191 574 -383 0 574 -574 3959 3649 4 MP stroke
192 -574 382 0 -574 574 4916 3075 4 MP stroke
-191 574 -383 0 574 -574 4342 3649 4 MP stroke
191 -574 383 0 -574 574 5298 3075 4 MP stroke
-192 574 -382 0 574 -574 4724 3649 4 MP stroke
192 -574 382 0 -574 574 5681 3075 4 MP stroke
-191 574 -383 0 574 -574 5107 3649 4 MP stroke
191 -574 383 0 -574 574 6063 3075 4 MP stroke
-192 574 -382 0 574 -574 5489 3649 4 MP stroke
0 -383 383 0 -383 383 6255 3266 4 MP stroke
-191 574 -192 -191 383 -383 5872 3649 4 MP stroke
573 -191 -573 574 0 -383 1472 2310 4 MP stroke
-573 192 573 -574 0 382 899 2884 4 MP stroke
383 0 -383 383 0 -383 1855 2310 4 MP stroke
0 383 -383 0 383 -383 1472 3075 4 MP stroke
383 0 -383 383 0 -383 2238 2310 4 MP stroke
0 383 -383 0 383 -383 1855 3075 4 MP stroke
382 0 -382 383 0 -383 2620 2310 4 MP stroke
0 383 -382 0 382 -383 2238 3075 4 MP stroke
383 0 -383 383 0 -383 3003 2310 4 MP stroke
0 383 -383 0 383 -383 2620 3075 4 MP stroke
382 0 -382 383 0 -383 3385 2310 4 MP stroke
0 383 -382 0 382 -383 3003 3075 4 MP stroke
383 0 -383 383 0 -383 3768 2310 4 MP stroke
0 383 -383 0 383 -383 3385 3075 4 MP stroke
382 0 -382 383 0 -383 4150 2310 4 MP stroke
0 383 -382 0 382 -383 3768 3075 4 MP stroke
383 0 -383 383 0 -383 4533 2310 4 MP stroke
0 383 -383 0 383 -383 4150 3075 4 MP stroke
383 0 -383 383 0 -383 4916 2310 4 MP stroke
0 383 -383 0 383 -383 4533 3075 4 MP stroke
382 0 -382 383 0 -383 5298 2310 4 MP stroke
0 383 -382 0 382 -383 4916 3075 4 MP stroke
383 0 -383 383 0 -383 5681 2310 4 MP stroke
0 383 -383 0 383 -383 5298 3075 4 MP stroke
382 0 -382 383 0 -383 6063 2310 4 MP stroke
0 383 -382 0 382 -383 5681 3075 4 MP stroke
0 -383 192 191 -192 192 6255 2118 4 MP stroke
0 383 -192 -192 192 -191 6063 3075 4 MP stroke
573 -191 -573 574 0 -383 1472 3075 4 MP stroke
-573 191 573 -574 0 383 899 2501 4 MP stroke
383 0 -383 383 0 -383 1855 3075 4 MP stroke
0 382 -383 0 383 -382 1472 2692 4 MP stroke
383 0 -383 383 0 -383 2238 3075 4 MP stroke
0 382 -383 0 383 -382 1855 2692 4 MP stroke
382 0 -382 383 0 -383 2620 3075 4 MP stroke
0 382 -382 0 382 -382 2238 2692 4 MP stroke
383 0 -383 383 0 -383 3003 3075 4 MP stroke
0 382 -383 0 383 -382 2620 2692 4 MP stroke
382 0 -382 383 0 -383 3385 3075 4 MP stroke
0 382 -382 0 382 -382 3003 2692 4 MP stroke
383 0 -383 383 0 -383 3768 3075 4 MP stroke
0 382 -383 0 383 -382 3385 2692 4 MP stroke
382 0 -382 383 0 -383 4150 3075 4 MP stroke
0 382 -382 0 382 -382 3768 2692 4 MP stroke
383 0 -383 383 0 -383 4533 3075 4 MP stroke
0 382 -383 0 383 -382 4150 2692 4 MP stroke
383 0 -383 383 0 -383 4916 3075 4 MP stroke
0 382 -383 0 383 -382 4533 2692 4 MP stroke
382 0 -382 383 0 -383 5298 3075 4 MP stroke
0 382 -382 0 382 -382 4916 2692 4 MP stroke
383 0 -383 383 0 -383 5681 3075 4 MP stroke
0 382 -383 0 383 -382 5298 2692 4 MP stroke
382 0 -382 383 0 -383 6063 3075 4 MP stroke
0 382 -382 0 382 -382 5681 2692 4 MP stroke
0 -382 192 191 -192 191 6255 2884 4 MP stroke
0 382 -192 -191 192 -191 6063 2692 4 MP stroke
573 -191 -382 383 -191 -192 1472 1545 4 MP stroke
-573 191 573 -574 0 383 899 2118 4 MP stroke
383 0 -192 192 -191 -192 1855 1545 4 MP stroke
0 383 -383 0 383 -383 1472 2310 4 MP stroke
383 0 -191 192 -192 -192 2238 1545 4 MP stroke
0 383 -383 0 383 -383 1855 2310 4 MP stroke
382 0 -191 192 -191 -192 2620 1545 4 MP stroke
0 383 -382 0 382 -383 2238 2310 4 MP stroke
383 0 -191 192 -192 -192 3003 1545 4 MP stroke
0 383 -383 0 383 -383 2620 2310 4 MP stroke
382 0 -191 192 -191 -192 3385 1545 4 MP stroke
0 383 -382 0 382 -383 3003 2310 4 MP stroke
383 0 -192 192 -191 -192 3768 1545 4 MP stroke
0 383 -383 0 383 -383 3385 2310 4 MP stroke
382 0 -191 192 -191 -192 4150 1545 4 MP stroke
0 383 -382 0 382 -383 3768 2310 4 MP stroke
383 0 -192 192 -191 -192 4533 1545 4 MP stroke
0 383 -383 0 383 -383 4150 2310 4 MP stroke
383 0 -191 192 -192 -192 4916 1545 4 MP stroke
0 383 -383 0 383 -383 4533 2310 4 MP stroke
382 0 -191 192 -191 -192 5298 1545 4 MP stroke
0 383 -382 0 382 -383 4916 2310 4 MP stroke
383 0 -191 192 -192 -192 5681 1545 4 MP stroke
0 383 -383 0 383 -383 5298 2310 4 MP stroke
382 0 -191 192 -191 -192 6063 1545 4 MP stroke
0 383 -382 0 382 -383 5681 2310 4 MP stroke
0 -383 192 191 -192 192 6255 1353 4 MP stroke
0 383 -192 -191 192 -192 6063 2310 4 MP stroke
573 -192 -573 574 0 -382 1472 2692 4 MP stroke
-573 191 573 -573 0 382 899 1736 4 MP stroke
383 0 -383 382 0 -382 1855 2692 4 MP stroke
0 382 -383 0 383 -382 1472 1927 4 MP stroke
383 0 -383 382 0 -382 2238 2692 4 MP stroke
0 382 -383 0 383 -382 1855 1927 4 MP stroke
382 0 -382 382 0 -382 2620 2692 4 MP stroke
0 382 -382 0 382 -382 2238 1927 4 MP stroke
383 0 -383 382 0 -382 3003 2692 4 MP stroke
0 382 -383 0 383 -382 2620 1927 4 MP stroke
382 0 -382 382 0 -382 3385 2692 4 MP stroke
0 382 -382 0 382 -382 3003 1927 4 MP stroke
383 0 -383 382 0 -382 3768 2692 4 MP stroke
0 382 -383 0 383 -382 3385 1927 4 MP stroke
382 0 -382 382 0 -382 4150 2692 4 MP stroke
0 382 -382 0 382 -382 3768 1927 4 MP stroke
383 0 -383 382 0 -382 4533 2692 4 MP stroke
0 382 -383 0 383 -382 4150 1927 4 MP stroke
383 0 -383 382 0 -382 4916 2692 4 MP stroke
0 382 -383 0 383 -382 4533 1927 4 MP stroke
382 0 -382 382 0 -382 5298 2692 4 MP stroke
0 382 -382 0 382 -382 4916 1927 4 MP stroke
383 0 -383 382 0 -382 5681 2692 4 MP stroke
0 382 -383 0 383 -382 5298 1927 4 MP stroke
382 0 -382 382 0 -382 6063 2692 4 MP stroke
0 382 -382 0 382 -382 5681 1927 4 MP stroke
0 -383 192 192 -192 191 6255 2501 4 MP stroke
0 382 -192 -191 192 -191 6063 1927 4 MP stroke
573 -191 -573 573 0 -382 1472 1927 4 MP stroke
-382 0 382 -383 0 383 899 1353 4 MP stroke
383 0 -383 382 0 -382 1855 1927 4 MP stroke
-383 0 192 -192 191 192 1281 1353 4 MP stroke
383 0 -383 382 0 -382 2238 1927 4 MP stroke
-382 0 191 -192 191 192 1664 1353 4 MP stroke
382 0 -382 382 0 -382 2620 1927 4 MP stroke
-383 0 191 -192 192 192 2046 1353 4 MP stroke
383 0 -383 382 0 -382 3003 1927 4 MP stroke
-382 0 191 -192 191 192 2429 1353 4 MP stroke
382 0 -382 382 0 -382 3385 1927 4 MP stroke
-383 0 191 -192 192 192 2811 1353 4 MP stroke
383 0 -383 382 0 -382 3768 1927 4 MP stroke
-383 0 192 -192 191 192 3194 1353 4 MP stroke
382 0 -382 382 0 -382 4150 1927 4 MP stroke
-382 0 191 -192 191 192 3577 1353 4 MP stroke
383 0 -383 382 0 -382 4533 1927 4 MP stroke
-383 0 192 -192 191 192 3959 1353 4 MP stroke
383 0 -383 382 0 -382 4916 1927 4 MP stroke
-382 0 191 -192 191 192 4342 1353 4 MP stroke
382 0 -382 382 0 -382 5298 1927 4 MP stroke
-383 0 191 -192 192 192 4724 1353 4 MP stroke
383 0 -383 382 0 -382 5681 1927 4 MP stroke
-382 0 191 -192 191 192 5107 1353 4 MP stroke
382 0 -382 382 0 -382 6063 1927 4 MP stroke
-383 0 191 -192 192 192 5489 1353 4 MP stroke
0 -382 192 191 -192 191 6255 1736 4 MP stroke
-383 0 192 -192 191 192 5872 1353 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices28.dat" and "newCells28.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\output41.eps
%%CreationDate: 12/04/2006 22:49:41
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 545 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 545 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5609 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5357 0 0 -4224 898 4613 4 MP
PP
-5357 0 0 4224 5357 0 0 -4224 898 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
898 389 mt 6255 389 L
898 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
898 4613 mt 898 389 L
898 4613 mt 6255 4613 L
898 4613 mt 898 389 L
898 4613 mt 898 4560 L
898 389 mt 898 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
865 4759 mt
(0) s
1494 4613 mt 1494 4560 L
1494 389 mt 1494 442 L
1461 4759 mt
(1) s
2089 4613 mt 2089 4560 L
2089 389 mt 2089 442 L
2056 4759 mt
(2) s
2684 4613 mt 2684 4560 L
2684 389 mt 2684 442 L
2651 4759 mt
(3) s
3279 4613 mt 3279 4560 L
3279 389 mt 3279 442 L
3246 4759 mt
(4) s
3874 4613 mt 3874 4560 L
3874 389 mt 3874 442 L
3841 4759 mt
(5) s
4469 4613 mt 4469 4560 L
4469 389 mt 4469 442 L
4436 4759 mt
(6) s
5064 4613 mt 5064 4560 L
5064 389 mt 5064 442 L
5031 4759 mt
(7) s
5659 4613 mt 5659 4560 L
5659 389 mt 5659 442 L
5626 4759 mt
(8) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6222 4759 mt
(9) s
898 4286 mt 952 4286 L
6255 4286 mt 6201 4286 L
728 4330 mt
(-1) s
898 3691 mt 952 3691 L
6255 3691 mt 6201 3691 L
798 3735 mt
(0) s
898 3096 mt 952 3096 L
6255 3096 mt 6201 3096 L
798 3140 mt
(1) s
898 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(2) s
898 1906 mt 952 1906 L
6255 1906 mt 6201 1906 L
798 1950 mt
(3) s
898 1311 mt 952 1311 L
6255 1311 mt 6201 1311 L
798 1355 mt
(4) s
898 716 mt 952 716 L
6255 716 mt 6201 716 L
798 760 mt
(5) s
898 389 mt 6255 389 L
898 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
898 4613 mt 898 389 L
gs 898 389 5358 4225 MR c np
0 595 -298 -298 298 -297 898 3691 4 MP stroke
298 0 -149 149 -149 -149 1494 3394 4 MP stroke
297 -297 0 297 -297 0 1791 3394 4 MP stroke
298 0 -149 149 -149 -149 2089 3394 4 MP stroke
297 -297 0 297 -297 0 2386 3394 4 MP stroke
0 -595 298 297 -298 298 2684 3096 4 MP stroke
-595 -595 595 0 0 595 2684 3096 4 MP stroke
595 595 -595 0 0 -595 3279 3691 4 MP stroke
-595 -595 595 0 0 595 3279 3096 4 MP stroke
595 595 -595 0 0 -595 3874 3691 4 MP stroke
-595 -595 595 0 0 595 3874 3096 4 MP stroke
595 595 -595 0 0 -595 4469 3691 4 MP stroke
-595 -595 595 0 0 595 4469 3096 4 MP stroke
595 595 -595 0 0 -595 5064 3691 4 MP stroke
-595 -595 595 0 0 595 5064 3096 4 MP stroke
595 595 -595 0 0 -595 5659 3691 4 MP stroke
-596 -595 596 0 0 595 5659 3096 4 MP stroke
596 595 -596 0 0 -595 6255 3691 4 MP stroke
0 595 -298 -298 298 -297 898 3096 4 MP stroke
298 0 -149 149 -149 -149 1494 2799 4 MP stroke
297 -297 0 297 -297 0 1791 2799 4 MP stroke
298 0 -149 149 -149 -149 2089 2799 4 MP stroke
297 -297 0 297 -297 0 2386 2799 4 MP stroke
0 -595 298 297 -298 298 2684 2501 4 MP stroke
-595 -595 595 0 0 595 2684 2501 4 MP stroke
595 595 -595 0 0 -595 3279 3096 4 MP stroke
-595 -595 595 0 0 595 3279 2501 4 MP stroke
595 595 -595 0 0 -595 3874 3096 4 MP stroke
-595 -595 595 0 0 595 3874 2501 4 MP stroke
595 595 -595 0 0 -595 4469 3096 4 MP stroke
-595 -595 595 0 0 595 4469 2501 4 MP stroke
595 595 -595 0 0 -595 5064 3096 4 MP stroke
-595 -595 595 0 0 595 5064 2501 4 MP stroke
595 595 -595 0 0 -595 5659 3096 4 MP stroke
-596 -595 596 0 0 595 5659 2501 4 MP stroke
596 595 -596 0 0 -595 6255 3096 4 MP stroke
0 595 -298 -297 298 -298 898 2501 4 MP stroke
298 0 -149 148 -149 -148 1494 2203 4 MP stroke
297 -298 0 298 -297 0 1791 2203 4 MP stroke
298 0 -149 148 -149 -148 2089 2203 4 MP stroke
297 -298 0 298 -297 0 2386 2203 4 MP stroke
0 -595 298 298 -298 297 2684 1906 4 MP stroke
-595 -595 595 0 0 595 2684 1906 4 MP stroke
595 595 -595 0 0 -595 3279 2501 4 MP stroke
-595 -595 595 0 0 595 3279 1906 4 MP stroke
595 595 -595 0 0 -595 3874 2501 4 MP stroke
-595 -595 595 0 0 595 3874 1906 4 MP stroke
595 595 -595 0 0 -595 4469 2501 4 MP stroke
-595 -595 595 0 0 595 4469 1906 4 MP stroke
595 595 -595 0 0 -595 5064 2501 4 MP stroke
-595 -595 595 0 0 595 5064 1906 4 MP stroke
595 595 -595 0 0 -595 5659 2501 4 MP stroke
-596 -595 596 0 0 595 5659 1906 4 MP stroke
596 595 -596 0 0 -595 6255 2501 4 MP stroke
0 595 -298 -297 298 -298 898 1906 4 MP stroke
298 0 -149 148 -149 -148 1494 1608 4 MP stroke
297 -298 0 298 -297 0 1791 1608 4 MP stroke
298 0 -149 148 -149 -148 2089 1608 4 MP stroke
297 -298 0 298 -297 0 2386 1608 4 MP stroke
0 -595 298 298 -298 297 2684 1311 4 MP stroke
-595 -595 595 0 0 595 2684 1311 4 MP stroke
595 595 -595 0 0 -595 3279 1906 4 MP stroke
-595 -595 595 0 0 595 3279 1311 4 MP stroke
595 595 -595 0 0 -595 3874 1906 4 MP stroke
-595 -595 595 0 0 595 3874 1311 4 MP stroke
595 595 -595 0 0 -595 4469 1906 4 MP stroke
-595 -595 595 0 0 595 4469 1311 4 MP stroke
595 595 -595 0 0 -595 5064 1906 4 MP stroke
-595 -595 595 0 0 595 5064 1311 4 MP stroke
595 595 -595 0 0 -595 5659 1906 4 MP stroke
-596 -595 596 0 0 595 5659 1311 4 MP stroke
596 595 -596 0 0 -595 6255 1906 4 MP stroke
0 297 -149 -148 149 -149 1196 3691 4 MP stroke
298 298 -298 0 0 -298 1196 3394 4 MP stroke
0 297 -149 -148 149 -149 1196 3096 4 MP stroke
298 298 -298 0 0 -298 1196 2799 4 MP stroke
0 298 -149 -149 149 -149 1196 2501 4 MP stroke
298 297 -298 0 0 -297 1196 2203 4 MP stroke
0 298 -149 -149 149 -149 1196 1906 4 MP stroke
298 297 -298 0 0 -297 1196 1608 4 MP stroke
0 297 -149 -148 149 -149 1791 3691 4 MP stroke
297 298 -297 0 0 -298 1791 3394 4 MP stroke
0 -297 149 149 -149 148 1494 3394 4 MP stroke
-297 -298 297 0 0 298 1494 3096 4 MP stroke
0 297 -149 -148 149 -149 1791 3096 4 MP stroke
297 298 -297 0 0 -298 1791 2799 4 MP stroke
0 -297 149 149 -149 148 1494 2799 4 MP stroke
-297 -298 297 0 0 298 1494 2501 4 MP stroke
0 298 -149 -149 149 -149 1791 2501 4 MP stroke
297 297 -297 0 0 -297 1791 2203 4 MP stroke
0 -298 149 149 -149 149 1494 2203 4 MP stroke
-297 -297 297 0 0 297 1494 1906 4 MP stroke
0 298 -149 -149 149 -149 1791 1906 4 MP stroke
297 297 -297 0 0 -297 1791 1608 4 MP stroke
0 -298 149 149 -149 149 1494 1608 4 MP stroke
-297 -297 297 0 0 297 1494 1311 4 MP stroke
-298 297 0 -297 298 0 898 3691 4 MP stroke
-298 0 149 -149 149 149 1196 3096 4 MP stroke
-298 297 0 -297 298 0 898 3096 4 MP stroke
-298 0 149 -149 149 149 1196 2501 4 MP stroke
-298 298 0 -298 298 0 898 2501 4 MP stroke
-298 0 149 -149 149 149 1196 1906 4 MP stroke
-298 298 0 -298 298 0 898 1906 4 MP stroke
-298 0 149 -149 149 149 1196 1311 4 MP stroke
0 -298 149 149 -149 149 1494 3096 4 MP stroke
0 298 -149 -149 149 -149 1196 3394 4 MP stroke
0 -298 149 149 -149 149 1494 2501 4 MP stroke
0 298 -149 -149 149 -149 1196 2799 4 MP stroke
0 -297 149 148 -149 149 1494 1906 4 MP stroke
0 297 -149 -149 149 -148 1196 2203 4 MP stroke
0 -297 149 148 -149 149 1494 1311 4 MP stroke
0 297 -149 -149 149 -148 1196 1608 4 MP stroke
298 0 -149 149 -149 -149 1494 3691 4 MP stroke
-298 0 149 -148 149 148 1196 3394 4 MP stroke
298 0 -149 149 -149 -149 1494 3096 4 MP stroke
-298 0 149 -148 149 148 1196 2799 4 MP stroke
298 0 -149 149 -149 -149 1494 2501 4 MP stroke
-298 0 149 -149 149 149 1196 2203 4 MP stroke
298 0 -149 149 -149 -149 1494 1906 4 MP stroke
-298 0 149 -149 149 149 1196 1608 4 MP stroke
595 0 -297 297 -298 -297 2684 3691 4 MP stroke
-595 0 298 -298 297 298 2089 3096 4 MP stroke
0 -297 149 149 -149 148 2089 3394 4 MP stroke
-297 -298 297 0 0 298 2089 3096 4 MP stroke
595 0 -297 297 -298 -297 2684 3096 4 MP stroke
-595 0 298 -298 297 298 2089 2501 4 MP stroke
0 -297 149 149 -149 148 2089 2799 4 MP stroke
-297 -298 297 0 0 298 2089 2501 4 MP stroke
595 0 -297 298 -298 -298 2684 2501 4 MP stroke
-595 0 298 -297 297 297 2089 1906 4 MP stroke
0 -298 149 149 -149 149 2089 2203 4 MP stroke
-297 -297 297 0 0 297 2089 1906 4 MP stroke
595 0 -297 298 -298 -298 2684 1906 4 MP stroke
-595 0 298 -297 297 297 2089 1311 4 MP stroke
0 -298 149 149 -149 149 2089 1608 4 MP stroke
-297 -297 297 0 0 297 2089 1311 4 MP stroke
-297 297 0 -297 297 0 1494 3691 4 MP stroke
-298 0 149 -149 149 149 1791 3096 4 MP stroke
-297 297 0 -297 297 0 1494 3096 4 MP stroke
-298 0 149 -149 149 149 1791 2501 4 MP stroke
-297 298 0 -298 297 0 1494 2501 4 MP stroke
-298 0 149 -149 149 149 1791 1906 4 MP stroke
-297 298 0 -298 297 0 1494 1906 4 MP stroke
-298 0 149 -149 149 149 1791 1311 4 MP stroke
0 -298 149 149 -149 149 2089 3096 4 MP stroke
0 298 -149 -149 149 -149 1791 3394 4 MP stroke
0 -298 149 149 -149 149 2089 2501 4 MP stroke
0 298 -149 -149 149 -149 1791 2799 4 MP stroke
0 -297 149 148 -149 149 2089 1906 4 MP stroke
0 297 -149 -149 149 -148 1791 2203 4 MP stroke
0 -297 149 148 -149 149 2089 1311 4 MP stroke
0 297 -149 -149 149 -148 1791 1608 4 MP stroke
298 0 -149 149 -149 -149 2089 3691 4 MP stroke
-298 0 149 -148 149 148 1791 3394 4 MP stroke
298 0 -149 149 -149 -149 2089 3096 4 MP stroke
-298 0 149 -148 149 148 1791 2799 4 MP stroke
298 0 -149 149 -149 -149 2089 2501 4 MP stroke
-298 0 149 -149 149 149 1791 2203 4 MP stroke
298 0 -149 149 -149 -149 2089 1906 4 MP stroke
-298 0 149 -149 149 149 1791 1608 4 MP stroke
gr
2283 294 mt
(Mesh for "newVertices2.dat" and "newCells2.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\output42.eps
%%CreationDate: 12/04/2006 22:50:21
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 545 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 545 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5609 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5357 0 0 -4224 898 4613 4 MP
PP
-5357 0 0 4224 5357 0 0 -4224 898 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
898 389 mt 6255 389 L
898 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
898 4613 mt 898 389 L
898 4613 mt 6255 4613 L
898 4613 mt 898 389 L
898 4613 mt 898 4560 L
898 389 mt 898 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
865 4759 mt
(0) s
1494 4613 mt 1494 4560 L
1494 389 mt 1494 442 L
1461 4759 mt
(1) s
2089 4613 mt 2089 4560 L
2089 389 mt 2089 442 L
2056 4759 mt
(2) s
2684 4613 mt 2684 4560 L
2684 389 mt 2684 442 L
2651 4759 mt
(3) s
3279 4613 mt 3279 4560 L
3279 389 mt 3279 442 L
3246 4759 mt
(4) s
3874 4613 mt 3874 4560 L
3874 389 mt 3874 442 L
3841 4759 mt
(5) s
4469 4613 mt 4469 4560 L
4469 389 mt 4469 442 L
4436 4759 mt
(6) s
5064 4613 mt 5064 4560 L
5064 389 mt 5064 442 L
5031 4759 mt
(7) s
5659 4613 mt 5659 4560 L
5659 389 mt 5659 442 L
5626 4759 mt
(8) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6222 4759 mt
(9) s
898 4286 mt 952 4286 L
6255 4286 mt 6201 4286 L
728 4330 mt
(-1) s
898 3691 mt 952 3691 L
6255 3691 mt 6201 3691 L
798 3735 mt
(0) s
898 3096 mt 952 3096 L
6255 3096 mt 6201 3096 L
798 3140 mt
(1) s
898 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(2) s
898 1906 mt 952 1906 L
6255 1906 mt 6201 1906 L
798 1950 mt
(3) s
898 1311 mt 952 1311 L
6255 1311 mt 6201 1311 L
798 1355 mt
(4) s
898 716 mt 952 716 L
6255 716 mt 6201 716 L
798 760 mt
(5) s
898 389 mt 6255 389 L
898 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
898 4613 mt 898 389 L
gs 898 389 5358 4225 MR c np
0 595 -298 -298 298 -297 898 3691 4 MP stroke
297 0 298 297 -595 -297 2386 3691 4 MP stroke
298 893 -595 -298 297 -595 2089 2501 4 MP stroke
-595 0 148 -149 447 149 2386 2501 4 MP stroke
0 -298 148 149 -148 149 2981 2501 4 MP stroke
-298 -298 298 0 0 298 2981 1608 4 MP stroke
-595 0 0 -297 595 297 2386 3394 4 MP stroke
0 -595 298 297 -298 298 3279 3096 4 MP stroke
0 595 -298 -298 298 -297 3279 3691 4 MP stroke
297 0 -148 149 -149 -149 3874 3394 4 MP stroke
298 -297 0 297 -298 0 4172 3394 4 MP stroke
297 0 -148 149 -149 -149 4469 3394 4 MP stroke
298 -297 0 297 -298 0 4767 3394 4 MP stroke
0 -595 297 297 -297 298 5064 3096 4 MP stroke
-595 -595 595 0 0 595 5064 3096 4 MP stroke
595 595 -595 0 0 -595 5659 3691 4 MP stroke
-596 -595 596 0 0 595 5659 3096 4 MP stroke
596 595 -596 0 0 -595 6255 3691 4 MP stroke
0 595 -298 -298 298 -297 898 3096 4 MP stroke
-298 -297 298 0 0 297 1791 3394 4 MP stroke
595 298 -447 -149 -148 -149 2981 2799 4 MP stroke
-298 297 -297 0 595 -297 1791 1608 4 MP stroke
595 -595 -298 595 -297 0 2981 1311 4 MP stroke
-297 297 0 -297 297 0 1494 3691 4 MP stroke
-595 -298 148 -148 447 446 2386 2501 4 MP stroke
0 -595 298 297 -298 298 3279 2501 4 MP stroke
0 595 -298 -298 298 -297 3279 3096 4 MP stroke
297 0 -148 149 -149 -149 3874 2799 4 MP stroke
298 -297 0 297 -298 0 4172 2799 4 MP stroke
297 0 -148 149 -149 -149 4469 2799 4 MP stroke
298 -297 0 297 -298 0 4767 2799 4 MP stroke
0 -595 297 297 -297 298 5064 2501 4 MP stroke
-595 -595 595 0 0 595 5064 2501 4 MP stroke
595 595 -595 0 0 -595 5659 3096 4 MP stroke
-596 -595 596 0 0 595 5659 2501 4 MP stroke
596 595 -596 0 0 -595 6255 3096 4 MP stroke
0 595 -298 -297 298 -298 898 2501 4 MP stroke
-595 0 148 -149 447 149 2386 1906 4 MP stroke
0 -297 148 148 -148 149 2981 1906 4 MP stroke
595 297 -447 -149 -148 -148 2981 2203 4 MP stroke
-595 0 148 -149 447 149 2386 3096 4 MP stroke
298 -298 0 298 -298 0 3279 3096 4 MP stroke
-595 -297 148 -149 447 446 2386 1906 4 MP stroke
0 -595 298 298 -298 297 3279 1906 4 MP stroke
0 595 -298 -297 298 -298 3279 2501 4 MP stroke
297 0 -148 148 -149 -148 3874 2203 4 MP stroke
298 -298 0 298 -298 0 4172 2203 4 MP stroke
297 0 -148 148 -149 -148 4469 2203 4 MP stroke
298 -298 0 298 -298 0 4767 2203 4 MP stroke
0 -595 297 298 -297 297 5064 1906 4 MP stroke
-595 -595 595 0 0 595 5064 1906 4 MP stroke
595 595 -595 0 0 -595 5659 2501 4 MP stroke
-596 -595 596 0 0 595 5659 1906 4 MP stroke
596 595 -596 0 0 -595 6255 2501 4 MP stroke
0 595 -298 0 298 -595 898 1906 4 MP stroke
-298 0 298 -298 0 298 1791 2501 4 MP stroke
-298 -297 298 0 0 297 2386 3394 4 MP stroke
595 0 -447 149 -148 -149 2981 3096 4 MP stroke
0 -297 595 297 -595 0 2386 3394 4 MP stroke
298 -298 0 298 -298 0 3279 2501 4 MP stroke
-595 298 148 -149 447 -149 2386 1906 4 MP stroke
0 -595 298 298 -298 297 3279 1311 4 MP stroke
0 595 -298 -297 298 -298 3279 1906 4 MP stroke
297 0 -148 148 -149 -148 3874 1608 4 MP stroke
298 -298 0 298 -298 0 4172 1608 4 MP stroke
297 0 -148 148 -149 -148 4469 1608 4 MP stroke
298 -298 0 298 -298 0 4767 1608 4 MP stroke
0 -595 297 298 -297 297 5064 1311 4 MP stroke
-595 -595 595 0 0 595 5064 1311 4 MP stroke
595 595 -595 0 0 -595 5659 1906 4 MP stroke
-596 -595 596 0 0 595 5659 1311 4 MP stroke
596 595 -596 0 0 -595 6255 1906 4 MP stroke
595 0 -447 149 -148 -149 2981 2501 4 MP stroke
298 -297 0 297 -298 0 3279 1906 4 MP stroke
447 -149 -298 297 -149 -148 1345 2947 4 MP stroke
0 -595 595 297 -595 298 2386 2501 4 MP stroke
447 -149 -298 298 -149 -149 1345 2352 4 MP stroke
595 0 -447 149 -148 -149 2981 1906 4 MP stroke
447 -149 -298 595 -149 -446 1345 1757 4 MP stroke
447 -149 0 298 -447 -149 2833 3245 4 MP stroke
298 -297 0 297 -298 0 3279 1311 4 MP stroke
-595 -297 297 0 298 297 2386 3394 4 MP stroke
-595 297 297 -297 298 0 1196 3691 4 MP stroke
0 -595 297 0 -297 595 2386 1906 4 MP stroke
595 -298 -595 595 0 -297 2981 1608 4 MP stroke
-447 -446 447 -149 0 595 2386 2501 4 MP stroke
-446 148 -595 -297 1041 149 1345 2947 4 MP stroke
0 -297 148 149 -148 148 2981 2799 4 MP stroke
-298 298 -297 0 595 -298 1791 2799 4 MP stroke
595 0 -595 298 0 -298 2386 3394 4 MP stroke
-744 -149 298 0 446 149 1345 2352 4 MP stroke
-447 -446 447 -149 0 595 2386 1906 4 MP stroke
-298 -893 298 595 0 298 1791 1608 4 MP stroke
297 297 -297 0 0 -297 1791 1608 4 MP stroke
-446 149 0 -298 446 149 1345 1757 4 MP stroke
0 -298 148 149 -148 149 2981 2203 4 MP stroke
-298 297 0 -297 298 0 898 3691 4 MP stroke
-1488 0 595 -298 893 298 898 3096 4 MP stroke
595 0 -447 149 -148 -149 2981 3394 4 MP stroke
-893 0 0 -298 893 298 898 2501 4 MP stroke
-298 -298 298 0 0 298 2981 2203 4 MP stroke
-893 0 -298 -595 1191 595 898 1906 4 MP stroke
298 -595 0 595 -298 0 2684 1311 4 MP stroke
-298 0 -297 -297 595 297 1196 1311 4 MP stroke
595 298 -595 297 0 -595 2386 1906 4 MP stroke
-893 -298 595 0 298 298 898 3096 4 MP stroke
0 -298 148 149 -148 149 2981 1608 4 MP stroke
-893 -298 595 0 298 298 898 2501 4 MP stroke
-298 -297 298 0 0 297 2981 3394 4 MP stroke
-1191 -595 893 298 298 297 898 1906 4 MP stroke
0 -298 148 149 -148 149 2981 3096 4 MP stroke
-298 0 298 -297 0 297 1791 1311 4 MP stroke
-298 -297 298 0 0 297 2981 2799 4 MP stroke
-595 0 595 -297 0 297 1196 3394 4 MP stroke
1488 0 -447 149 -1041 -149 2386 3096 4 MP stroke
-595 0 446 -148 149 148 1196 2799 4 MP stroke
893 0 -447 149 -446 -149 1791 2501 4 MP stroke
-893 -298 744 149 149 149 1196 2203 4 MP stroke
893 0 -447 149 -446 -149 1791 1906 4 MP stroke
-595 -297 446 -149 149 446 1196 1311 4 MP stroke
0 297 -148 -148 148 -149 3577 3691 4 MP stroke
298 298 -298 0 0 -298 3577 3394 4 MP stroke
0 297 -148 -148 148 -149 3577 3096 4 MP stroke
298 298 -298 0 0 -298 3577 2799 4 MP stroke
0 298 -148 -149 148 -149 3577 2501 4 MP stroke
298 297 -298 0 0 -297 3577 2203 4 MP stroke
0 298 -148 -149 148 -149 3577 1906 4 MP stroke
298 297 -298 0 0 -297 3577 1608 4 MP stroke
0 297 -148 -148 148 -149 4172 3691 4 MP stroke
298 298 -298 0 0 -298 4172 3394 4 MP stroke
0 -297 149 149 -149 148 3874 3394 4 MP stroke
-298 -298 298 0 0 298 3874 3096 4 MP stroke
0 297 -148 -148 148 -149 4172 3096 4 MP stroke
298 298 -298 0 0 -298 4172 2799 4 MP stroke
0 -297 149 149 -149 148 3874 2799 4 MP stroke
-298 -298 298 0 0 298 3874 2501 4 MP stroke
0 298 -148 -149 148 -149 4172 2501 4 MP stroke
298 297 -298 0 0 -297 4172 2203 4 MP stroke
0 -298 149 149 -149 149 3874 2203 4 MP stroke
-298 -297 298 0 0 297 3874 1906 4 MP stroke
0 298 -148 -149 148 -149 4172 1906 4 MP stroke
298 297 -298 0 0 -297 4172 1608 4 MP stroke
0 -298 149 149 -149 149 3874 1608 4 MP stroke
-298 -297 298 0 0 297 3874 1311 4 MP stroke
-298 297 0 -297 298 0 3279 3691 4 MP stroke
-297 0 149 -149 148 149 3577 3096 4 MP stroke
-298 297 0 -297 298 0 3279 3096 4 MP stroke
-297 0 149 -149 148 149 3577 2501 4 MP stroke
-298 298 0 -298 298 0 3279 2501 4 MP stroke
-297 0 149 -149 148 149 3577 1906 4 MP stroke
-298 298 0 -298 298 0 3279 1906 4 MP stroke
-297 0 149 -149 148 149 3577 1311 4 MP stroke
0 -298 149 149 -149 149 3874 3096 4 MP stroke
0 298 -148 -149 148 -149 3577 3394 4 MP stroke
0 -298 149 149 -149 149 3874 2501 4 MP stroke
0 298 -148 -149 148 -149 3577 2799 4 MP stroke
0 -297 149 148 -149 149 3874 1906 4 MP stroke
0 297 -148 -149 148 -148 3577 2203 4 MP stroke
0 -297 149 148 -149 149 3874 1311 4 MP stroke
0 297 -148 -149 148 -148 3577 1608 4 MP stroke
297 0 -148 149 -149 -149 3874 3691 4 MP stroke
-297 0 149 -148 148 148 3577 3394 4 MP stroke
297 0 -148 149 -149 -149 3874 3096 4 MP stroke
-297 0 149 -148 148 148 3577 2799 4 MP stroke
297 0 -148 149 -149 -149 3874 2501 4 MP stroke
-297 0 149 -149 148 149 3577 2203 4 MP stroke
297 0 -148 149 -149 -149 3874 1906 4 MP stroke
-297 0 149 -149 148 149 3577 1608 4 MP stroke
595 0 -298 297 -297 -297 5064 3691 4 MP stroke
-595 0 297 -298 298 298 4469 3096 4 MP stroke
0 -297 149 149 -149 148 4469 3394 4 MP stroke
-298 -298 298 0 0 298 4469 3096 4 MP stroke
595 0 -298 297 -297 -297 5064 3096 4 MP stroke
-595 0 297 -298 298 298 4469 2501 4 MP stroke
0 -297 149 149 -149 148 4469 2799 4 MP stroke
-298 -298 298 0 0 298 4469 2501 4 MP stroke
595 0 -298 298 -297 -298 5064 2501 4 MP stroke
-595 0 297 -297 298 297 4469 1906 4 MP stroke
0 -298 149 149 -149 149 4469 2203 4 MP stroke
-298 -297 298 0 0 297 4469 1906 4 MP stroke
595 0 -298 298 -297 -298 5064 1906 4 MP stroke
-595 0 297 -297 298 297 4469 1311 4 MP stroke
0 -298 149 149 -149 149 4469 1608 4 MP stroke
-298 -297 298 0 0 297 4469 1311 4 MP stroke
-298 297 0 -297 298 0 3874 3691 4 MP stroke
-297 0 149 -149 148 149 4172 3096 4 MP stroke
-298 297 0 -297 298 0 3874 3096 4 MP stroke
-297 0 149 -149 148 149 4172 2501 4 MP stroke
-298 298 0 -298 298 0 3874 2501 4 MP stroke
-297 0 149 -149 148 149 4172 1906 4 MP stroke
-298 298 0 -298 298 0 3874 1906 4 MP stroke
-297 0 149 -149 148 149 4172 1311 4 MP stroke
0 -298 149 149 -149 149 4469 3096 4 MP stroke
0 298 -148 -149 148 -149 4172 3394 4 MP stroke
0 -298 149 149 -149 149 4469 2501 4 MP stroke
0 298 -148 -149 148 -149 4172 2799 4 MP stroke
0 -297 149 148 -149 149 4469 1906 4 MP stroke
0 297 -148 -149 148 -148 4172 2203 4 MP stroke
0 -297 149 148 -149 149 4469 1311 4 MP stroke
0 297 -148 -149 148 -148 4172 1608 4 MP stroke
297 0 -148 149 -149 -149 4469 3691 4 MP stroke
-297 0 149 -148 148 148 4172 3394 4 MP stroke
297 0 -148 149 -149 -149 4469 3096 4 MP stroke
-297 0 149 -148 148 148 4172 2799 4 MP stroke
297 0 -148 149 -149 -149 4469 2501 4 MP stroke
-297 0 149 -149 148 149 4172 2203 4 MP stroke
297 0 -148 149 -149 -149 4469 1906 4 MP stroke
-297 0 149 -149 148 149 4172 1608 4 MP stroke
gr
2283 294 mt
(Mesh for "newVertices8.dat" and "newCells8.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\output43.eps
%%CreationDate: 12/04/2006 22:51:00
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 545 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 545 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5609 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5357 0 0 -4224 898 4613 4 MP
PP
-5357 0 0 4224 5357 0 0 -4224 898 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
898 389 mt 6255 389 L
898 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
898 4613 mt 898 389 L
898 4613 mt 6255 4613 L
898 4613 mt 898 389 L
898 4613 mt 898 4560 L
898 389 mt 898 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
865 4759 mt
(0) s
1494 4613 mt 1494 4560 L
1494 389 mt 1494 442 L
1461 4759 mt
(1) s
2089 4613 mt 2089 4560 L
2089 389 mt 2089 442 L
2056 4759 mt
(2) s
2684 4613 mt 2684 4560 L
2684 389 mt 2684 442 L
2651 4759 mt
(3) s
3279 4613 mt 3279 4560 L
3279 389 mt 3279 442 L
3246 4759 mt
(4) s
3874 4613 mt 3874 4560 L
3874 389 mt 3874 442 L
3841 4759 mt
(5) s
4469 4613 mt 4469 4560 L
4469 389 mt 4469 442 L
4436 4759 mt
(6) s
5064 4613 mt 5064 4560 L
5064 389 mt 5064 442 L
5031 4759 mt
(7) s
5659 4613 mt 5659 4560 L
5659 389 mt 5659 442 L
5626 4759 mt
(8) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6222 4759 mt
(9) s
898 4286 mt 952 4286 L
6255 4286 mt 6201 4286 L
728 4330 mt
(-1) s
898 3691 mt 952 3691 L
6255 3691 mt 6201 3691 L
798 3735 mt
(0) s
898 3096 mt 952 3096 L
6255 3096 mt 6201 3096 L
798 3140 mt
(1) s
898 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(2) s
898 1906 mt 952 1906 L
6255 1906 mt 6201 1906 L
798 1950 mt
(3) s
898 1311 mt 952 1311 L
6255 1311 mt 6201 1311 L
798 1355 mt
(4) s
898 716 mt 952 716 L
6255 716 mt 6201 716 L
798 760 mt
(5) s
898 389 mt 6255 389 L
898 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
898 4613 mt 898 389 L
gs 898 389 5358 4225 MR c np
0 595 -298 -298 298 -297 898 3691 4 MP stroke
297 0 298 297 -595 -297 2386 3691 4 MP stroke
298 893 -595 -298 297 -595 2089 2501 4 MP stroke
-893 0 446 -149 447 149 2386 2501 4 MP stroke
-446 149 298 -298 148 149 2833 2650 4 MP stroke
446 -148 0 297 -446 -149 5213 2055 4 MP stroke
-595 0 0 -297 595 297 2386 3394 4 MP stroke
298 -595 298 297 -596 298 3577 3096 4 MP stroke
-298 595 0 -298 298 -297 3279 3691 4 MP stroke
893 0 -446 149 -447 -149 4172 2501 4 MP stroke
-298 0 149 -149 149 149 5064 1311 4 MP stroke
-595 -298 447 149 148 149 3577 2203 4 MP stroke
446 149 -297 0 -149 -149 5213 1460 4 MP stroke
-595 596 0 -298 595 -298 4172 2799 4 MP stroke
-595 297 149 -148 446 -149 4767 3691 4 MP stroke
297 0 -149 149 -148 -149 5659 3394 4 MP stroke
298 -297 0 297 -298 0 5957 3394 4 MP stroke
298 0 -149 149 -149 -149 6255 3394 4 MP stroke
0 595 -298 -298 298 -297 898 3096 4 MP stroke
-298 -297 298 0 0 297 1791 3394 4 MP stroke
595 298 -447 -149 -148 -149 2981 2799 4 MP stroke
-298 297 -297 0 595 -297 1791 1608 4 MP stroke
595 -595 -298 595 -297 0 2981 1311 4 MP stroke
-297 297 0 -297 297 0 1494 3691 4 MP stroke
-595 -298 148 -148 447 446 2386 2501 4 MP stroke
-298 -595 596 297 -298 298 3279 2501 4 MP stroke
298 595 -298 -298 0 -297 3577 3096 4 MP stroke
595 297 -446 -149 -149 -148 5362 1608 4 MP stroke
-595 0 149 -149 446 149 4767 1906 4 MP stroke
298 0 -149 149 -149 -149 5362 3691 4 MP stroke
-595 595 0 -297 595 -298 4172 2501 4 MP stroke
-297 0 148 -149 149 149 5362 3096 4 MP stroke
-595 0 149 -148 446 148 4767 2799 4 MP stroke
297 0 -149 149 -148 -149 5659 2799 4 MP stroke
298 -297 0 297 -298 0 5957 2799 4 MP stroke
298 0 -149 149 -149 -149 6255 2799 4 MP stroke
0 595 -298 -297 298 -298 898 2501 4 MP stroke
-595 0 148 -149 447 149 2386 1906 4 MP stroke
0 -297 148 148 -148 149 2981 1906 4 MP stroke
595 297 -447 -149 -148 -148 2981 2203 4 MP stroke
-1191 0 744 -149 447 149 2386 3096 4 MP stroke
0 297 -297 0 297 -297 4172 1608 4 MP stroke
-595 -297 148 -149 447 446 2386 1906 4 MP stroke
-298 -595 298 298 0 297 2981 1906 4 MP stroke
298 595 -596 -297 298 -298 3279 2501 4 MP stroke
595 0 -446 149 -149 -149 5362 3096 4 MP stroke
595 -596 0 298 -595 298 4767 2203 4 MP stroke
-297 0 148 -149 149 149 5362 2501 4 MP stroke
0 298 -149 -149 149 -149 5362 1906 4 MP stroke
595 0 -446 149 -149 -149 5362 2501 4 MP stroke
-595 0 149 -149 446 149 4767 2203 4 MP stroke
297 0 -149 148 -148 -148 5659 2203 4 MP stroke
298 -298 0 298 -298 0 5957 2203 4 MP stroke
298 0 -149 148 -149 -148 6255 2203 4 MP stroke
0 595 -298 0 298 -595 898 1906 4 MP stroke
-298 0 298 -298 0 298 1791 2501 4 MP stroke
-298 -297 298 0 0 297 2386 3394 4 MP stroke
1191 0 -447 149 -744 -149 3577 3096 4 MP stroke
0 -297 595 297 -595 0 2386 3394 4 MP stroke
-595 -297 595 -298 0 595 3577 1311 4 MP stroke
-595 298 148 -149 447 -149 2386 1906 4 MP stroke
298 -595 0 298 -298 297 3279 1311 4 MP stroke
-298 595 -298 0 596 -595 2981 1906 4 MP stroke
-297 0 148 -149 149 149 5362 1906 4 MP stroke
-297 297 -298 -595 595 298 4172 1608 4 MP stroke
298 0 297 297 -595 -297 4767 3691 4 MP stroke
595 0 -446 149 -149 -149 5362 1906 4 MP stroke
0 -297 149 148 -149 149 5362 1311 4 MP stroke
-595 -297 149 -149 446 446 4767 1311 4 MP stroke
0 -298 148 149 -148 149 5659 1608 4 MP stroke
298 -298 0 298 -298 0 5957 1608 4 MP stroke
298 0 -149 148 -149 -148 6255 1608 4 MP stroke
893 0 -447 149 -446 -149 3279 2501 4 MP stroke
-297 0 148 -149 149 149 5362 1311 4 MP stroke
447 -149 -298 297 -149 -148 1345 2947 4 MP stroke
0 -595 595 297 -595 298 2386 2501 4 MP stroke
447 -149 -298 298 -149 -149 1345 2352 4 MP stroke
595 0 -447 149 -148 -149 2981 1906 4 MP stroke
447 -149 -298 595 -149 -446 1345 1757 4 MP stroke
447 -149 0 298 -447 -149 2833 3245 4 MP stroke
298 -297 0 297 -298 0 3279 1311 4 MP stroke
-595 -297 297 0 298 297 2386 3394 4 MP stroke
-595 297 297 -297 298 0 1196 3691 4 MP stroke
0 -595 297 0 -297 595 2386 1906 4 MP stroke
595 -298 -595 595 0 -297 2981 1608 4 MP stroke
-447 -446 447 -149 0 595 2386 2501 4 MP stroke
-446 148 -595 -297 1041 149 1345 2947 4 MP stroke
744 149 -148 148 -596 -297 3577 3096 4 MP stroke
-298 298 -297 0 595 -298 1791 2799 4 MP stroke
595 0 -595 298 0 -298 2386 3394 4 MP stroke
-744 -149 298 0 446 149 1345 2352 4 MP stroke
-447 -446 447 -149 0 595 2386 1906 4 MP stroke
-298 -893 298 595 0 298 1791 1608 4 MP stroke
297 297 -297 0 0 -297 1791 1608 4 MP stroke
-446 149 0 -298 446 149 1345 1757 4 MP stroke
446 149 -148 149 -298 -298 3279 2501 4 MP stroke
-298 297 0 -297 298 0 898 3691 4 MP stroke
-1488 0 595 -298 893 298 898 3096 4 MP stroke
595 0 -447 149 -148 -149 2981 3394 4 MP stroke
-893 0 0 -298 893 298 898 2501 4 MP stroke
-446 149 149 -149 297 0 4767 3691 4 MP stroke
-893 0 -298 -595 1191 595 898 1906 4 MP stroke
298 -595 0 595 -298 0 2684 1311 4 MP stroke
-298 0 -297 -297 595 297 1196 1311 4 MP stroke
595 298 -595 297 0 -595 2386 1906 4 MP stroke
-893 -298 595 0 298 298 898 3096 4 MP stroke
0 -298 148 149 -148 149 2981 1608 4 MP stroke
-893 -298 595 0 298 298 898 2501 4 MP stroke
-298 -297 298 0 0 297 2981 3394 4 MP stroke
-1191 -595 893 298 298 297 898 1906 4 MP stroke
-744 149 596 -298 148 149 2833 3245 4 MP stroke
-298 0 298 -297 0 297 1791 1311 4 MP stroke
0 -297 149 149 -149 148 5362 3394 4 MP stroke
-595 0 595 -297 0 297 1196 3394 4 MP stroke
1488 0 -447 149 -1041 -149 2386 3096 4 MP stroke
-595 0 446 -148 149 148 1196 2799 4 MP stroke
893 0 -447 149 -446 -149 1791 2501 4 MP stroke
-893 -298 744 149 149 149 1196 2203 4 MP stroke
893 0 -447 149 -446 -149 1791 1906 4 MP stroke
-595 -297 446 -149 149 446 1196 1311 4 MP stroke
0 -297 595 297 -595 0 4767 2799 4 MP stroke
-446 -148 446 -149 0 297 4767 2799 4 MP stroke
0 -297 149 149 -149 148 5362 2799 4 MP stroke
-446 -149 446 -149 0 298 4767 2203 4 MP stroke
446 -149 -298 298 -148 -149 3725 2352 4 MP stroke
596 297 -596 0 0 -297 3577 2203 4 MP stroke
446 -149 0 298 -446 -149 5213 2650 4 MP stroke
595 0 -446 148 -149 -148 5362 2203 4 MP stroke
0 -298 149 149 -149 149 5362 2203 4 MP stroke
-446 -446 446 -149 0 595 4767 1311 4 MP stroke
-595 297 298 -297 297 0 3577 3691 4 MP stroke
0 -298 149 149 -149 149 5362 1608 4 MP stroke
0 -595 298 595 -298 0 4767 1311 4 MP stroke
595 297 -595 298 0 -595 4767 3691 4 MP stroke
-595 297 0 -297 595 0 3577 3096 4 MP stroke
-595 0 149 -149 446 149 4767 3096 4 MP stroke
595 0 -595 298 0 -298 4767 2799 4 MP stroke
595 -297 -446 446 -149 -149 5362 3394 4 MP stroke
-297 -297 297 0 0 297 4172 3394 4 MP stroke
-298 297 0 -297 298 0 3874 3691 4 MP stroke
-595 0 149 -149 446 149 4767 2501 4 MP stroke
298 297 -298 0 0 -297 4172 1608 4 MP stroke
-595 298 -595 -298 1190 0 3577 1906 4 MP stroke
595 -298 0 298 -595 0 4767 3096 4 MP stroke
-298 297 0 -297 298 0 3279 3691 4 MP stroke
-595 0 0 -298 595 298 3577 3096 4 MP stroke
595 0 0 297 -595 -297 4767 3096 4 MP stroke
-893 0 0 -298 893 298 3279 2501 4 MP stroke
595 0 -446 149 -149 -149 5362 2799 4 MP stroke
-1190 0 595 -595 595 595 3577 1906 4 MP stroke
-596 595 0 -595 596 0 2981 1906 4 MP stroke
-297 0 -298 -297 595 297 3577 1311 4 MP stroke
0 297 -149 -148 149 -149 5362 3691 4 MP stroke
0 298 -595 -298 595 0 3577 3394 4 MP stroke
0 -298 149 149 -149 149 5362 3096 4 MP stroke
-893 -298 595 0 298 298 3279 2501 4 MP stroke
0 297 -149 -148 149 -149 5362 3096 4 MP stroke
0 297 -595 -595 595 298 3577 2203 4 MP stroke
0 -298 149 149 -149 149 5362 2501 4 MP stroke
446 -446 0 595 -446 -149 5213 3245 4 MP stroke
0 298 -149 -149 149 -149 5362 2501 4 MP stroke
-595 0 595 -297 0 297 3577 3394 4 MP stroke
0 -297 149 148 -149 149 5362 1906 4 MP stroke
-595 0 595 -297 0 297 3577 2799 4 MP stroke
0 297 -149 -148 149 -149 5957 3691 4 MP stroke
298 298 -298 0 0 -298 5957 3394 4 MP stroke
0 -297 148 149 -148 148 5659 3394 4 MP stroke
-298 -298 298 0 0 298 5659 3096 4 MP stroke
0 298 -149 -149 149 -149 5362 3394 4 MP stroke
0 -298 148 149 -148 149 5659 3096 4 MP stroke
0 297 -149 -148 149 -149 5957 3096 4 MP stroke
298 298 -298 0 0 -298 5957 2799 4 MP stroke
0 -297 148 149 -148 148 5659 2799 4 MP stroke
-298 -298 298 0 0 298 5659 2501 4 MP stroke
0 298 -149 -149 149 -149 5362 2799 4 MP stroke
0 -298 148 149 -148 149 5659 2501 4 MP stroke
0 298 -149 -149 149 -149 5957 1906 4 MP stroke
298 297 -298 0 0 -297 5957 1608 4 MP stroke
297 0 -149 148 -148 -148 5659 1608 4 MP stroke
-298 -297 298 0 0 297 5659 1311 4 MP stroke
297 0 -149 149 -148 -149 5659 1906 4 MP stroke
-297 0 148 -149 149 149 5362 1608 4 MP stroke
0 298 -149 -149 149 -149 5957 2501 4 MP stroke
298 297 -298 0 0 -297 5957 2203 4 MP stroke
0 -298 148 149 -148 149 5659 2203 4 MP stroke
-298 -297 298 0 0 297 5659 1906 4 MP stroke
0 297 -149 -149 149 -148 5362 2203 4 MP stroke
0 -297 148 148 -148 149 5659 1906 4 MP stroke
0 297 -149 -149 149 -148 5362 1608 4 MP stroke
0 -297 148 148 -148 149 5659 1311 4 MP stroke
297 0 -149 149 -148 -149 5659 3691 4 MP stroke
-297 0 148 -148 149 148 5362 3394 4 MP stroke
297 0 -149 149 -148 -149 5659 3096 4 MP stroke
-297 0 148 -148 149 148 5362 2799 4 MP stroke
297 0 -149 149 -148 -149 5659 2501 4 MP stroke
-297 0 148 -149 149 149 5362 2203 4 MP stroke
0 -297 149 149 -149 148 6255 3394 4 MP stroke
0 -297 149 149 -149 148 6255 2799 4 MP stroke
0 -298 149 149 -149 149 6255 2203 4 MP stroke
0 -298 149 149 -149 149 6255 1608 4 MP stroke
-298 297 0 -297 298 0 5659 3691 4 MP stroke
-298 0 149 -149 149 149 5957 3096 4 MP stroke
-298 297 0 -297 298 0 5659 3096 4 MP stroke
-298 0 149 -149 149 149 5957 2501 4 MP stroke
-298 298 0 -298 298 0 5659 2501 4 MP stroke
-298 298 0 -298 298 0 5659 1906 4 MP stroke
-298 0 149 -149 149 149 5957 1906 4 MP stroke
-298 0 149 -149 149 149 5957 1311 4 MP stroke
0 -298 149 149 -149 149 6255 3096 4 MP stroke
0 298 -149 -149 149 -149 5957 3394 4 MP stroke
0 -298 149 149 -149 149 6255 2501 4 MP stroke
0 298 -149 -149 149 -149 5957 2799 4 MP stroke
0 -297 149 148 -149 149 6255 1906 4 MP stroke
0 297 -149 -149 149 -148 5957 2203 4 MP stroke
0 -297 149 148 -149 149 6255 1311 4 MP stroke
0 297 -149 -149 149 -148 5957 1608 4 MP stroke
298 0 -149 149 -149 -149 6255 3691 4 MP stroke
-298 0 149 -148 149 148 5957 3394 4 MP stroke
298 0 -149 149 -149 -149 6255 3096 4 MP stroke
-298 0 149 -148 149 148 5957 2799 4 MP stroke
298 0 -149 149 -149 -149 6255 1906 4 MP stroke
-298 0 149 -149 149 149 5957 1608 4 MP stroke
298 0 -149 149 -149 -149 6255 2501 4 MP stroke
-298 0 149 -149 149 149 5957 2203 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices14.dat" and "newCells14.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\output44.eps
%%CreationDate: 12/04/2006 22:51:29
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 77 213 545 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 77 213 545 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
728 110 5609 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5357 0 0 -4224 898 4613 4 MP
PP
-5357 0 0 4224 5357 0 0 -4224 898 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
898 389 mt 6255 389 L
898 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
898 4613 mt 898 389 L
898 4613 mt 6255 4613 L
898 4613 mt 898 389 L
898 4613 mt 898 4560 L
898 389 mt 898 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
865 4759 mt
(0) s
1494 4613 mt 1494 4560 L
1494 389 mt 1494 442 L
1461 4759 mt
(1) s
2089 4613 mt 2089 4560 L
2089 389 mt 2089 442 L
2056 4759 mt
(2) s
2684 4613 mt 2684 4560 L
2684 389 mt 2684 442 L
2651 4759 mt
(3) s
3279 4613 mt 3279 4560 L
3279 389 mt 3279 442 L
3246 4759 mt
(4) s
3874 4613 mt 3874 4560 L
3874 389 mt 3874 442 L
3841 4759 mt
(5) s
4469 4613 mt 4469 4560 L
4469 389 mt 4469 442 L
4436 4759 mt
(6) s
5064 4613 mt 5064 4560 L
5064 389 mt 5064 442 L
5031 4759 mt
(7) s
5659 4613 mt 5659 4560 L
5659 389 mt 5659 442 L
5626 4759 mt
(8) s
6255 4613 mt 6255 4560 L
6255 389 mt 6255 442 L
6222 4759 mt
(9) s
898 4286 mt 952 4286 L
6255 4286 mt 6201 4286 L
728 4330 mt
(-1) s
898 3691 mt 952 3691 L
6255 3691 mt 6201 3691 L
798 3735 mt
(0) s
898 3096 mt 952 3096 L
6255 3096 mt 6201 3096 L
798 3140 mt
(1) s
898 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
798 2545 mt
(2) s
898 1906 mt 952 1906 L
6255 1906 mt 6201 1906 L
798 1950 mt
(3) s
898 1311 mt 952 1311 L
6255 1311 mt 6201 1311 L
798 1355 mt
(4) s
898 716 mt 952 716 L
6255 716 mt 6201 716 L
798 760 mt
(5) s
898 389 mt 6255 389 L
898 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
898 4613 mt 898 389 L
gs 898 389 5358 4225 MR c np
0 595 -298 -298 298 -297 898 3691 4 MP stroke
297 0 298 297 -595 -297 2386 3691 4 MP stroke
298 893 -595 -298 297 -595 2089 2501 4 MP stroke
-893 0 446 -149 447 149 2386 2501 4 MP stroke
-446 149 298 -298 148 149 2833 2650 4 MP stroke
446 -148 0 297 -446 -149 5213 2055 4 MP stroke
-595 0 0 -297 595 297 2386 3394 4 MP stroke
298 -595 298 297 -596 298 3577 3096 4 MP stroke
-298 595 0 -298 298 -297 3279 3691 4 MP stroke
893 0 -446 149 -447 -149 4172 2501 4 MP stroke
-893 297 0 -297 893 0 5362 3096 4 MP stroke
-595 -298 447 149 148 149 3577 2203 4 MP stroke
-596 297 298 -297 298 0 5659 3691 4 MP stroke
-595 596 0 -298 595 -298 4172 2799 4 MP stroke
-595 297 298 -297 297 0 4767 3691 4 MP stroke
0 298 -893 -298 893 0 5362 2799 4 MP stroke
0 -297 149 148 -149 149 5362 1906 4 MP stroke
-595 0 595 -297 0 297 3577 2799 4 MP stroke
0 595 -298 -298 298 -297 898 3096 4 MP stroke
-298 -297 298 0 0 297 1791 3394 4 MP stroke
595 298 -447 -149 -148 -149 2981 2799 4 MP stroke
-298 297 -297 0 595 -297 1791 1608 4 MP stroke
595 -595 -298 595 -297 0 2981 1311 4 MP stroke
-297 297 0 -297 297 0 1494 3691 4 MP stroke
-595 -298 148 -148 447 446 2386 2501 4 MP stroke
-298 -595 596 297 -298 298 3279 2501 4 MP stroke
298 595 -298 -298 0 -297 3577 3096 4 MP stroke
595 297 -297 0 -298 -297 5362 1608 4 MP stroke
-595 0 149 -149 446 149 4767 1906 4 MP stroke
596 297 -298 0 -298 -297 6255 1608 4 MP stroke
-595 595 0 -297 595 -298 4172 2501 4 MP stroke
-893 0 0 -298 893 298 5362 3096 4 MP stroke
-595 297 149 -148 446 -149 4767 3096 4 MP stroke
893 0 0 297 -893 -297 6255 1608 4 MP stroke
0 298 -893 -298 893 0 5362 3394 4 MP stroke
0 -298 149 149 -149 149 5362 2501 4 MP stroke
0 595 -298 -297 298 -298 898 2501 4 MP stroke
-595 0 148 -149 447 149 2386 1906 4 MP stroke
0 -297 148 148 -148 149 2981 1906 4 MP stroke
595 297 -447 -149 -148 -148 2981 2203 4 MP stroke
-1191 0 744 -149 447 149 2386 3096 4 MP stroke
0 297 -297 0 297 -297 4172 1608 4 MP stroke
-595 -297 148 -149 447 446 2386 1906 4 MP stroke
-298 -595 298 298 0 297 2981 1906 4 MP stroke
298 595 -596 -297 298 -298 3279 2501 4 MP stroke
595 0 -446 149 -149 -149 5362 3096 4 MP stroke
595 -596 0 298 -595 298 4767 2203 4 MP stroke
-893 0 0 -298 893 298 5362 2501 4 MP stroke
-893 0 893 -298 0 298 5362 1608 4 MP stroke
595 0 -446 149 -149 -149 5362 2501 4 MP stroke
-595 0 149 -149 446 149 4767 2203 4 MP stroke
-893 0 893 -298 0 298 5362 2203 4 MP stroke
-893 297 596 -297 297 0 5362 3691 4 MP stroke
-893 298 0 -298 893 0 5362 2501 4 MP stroke
0 595 -298 0 298 -595 898 1906 4 MP stroke
-298 0 298 -298 0 298 1791 2501 4 MP stroke
-298 -297 298 0 0 297 2386 3394 4 MP stroke
1191 0 -447 149 -744 -149 3577 3096 4 MP stroke
0 -297 595 297 -595 0 2386 3394 4 MP stroke
-595 -297 595 -298 0 595 3577 1311 4 MP stroke
-595 298 148 -149 447 -149 2386 1906 4 MP stroke
298 -595 0 298 -298 297 3279 1311 4 MP stroke
-298 595 -298 0 596 -595 2981 1906 4 MP stroke
-893 0 0 -297 893 297 5362 1906 4 MP stroke
-297 297 -298 -595 595 298 4172 1608 4 MP stroke
298 0 297 297 -595 -297 4767 3691 4 MP stroke
595 0 -446 149 -149 -149 5362 1906 4 MP stroke
0 -297 298 297 -298 0 5362 1311 4 MP stroke
-595 -297 149 -149 446 446 4767 1311 4 MP stroke
-893 298 0 -298 893 0 5362 1906 4 MP stroke
-298 0 0 -297 298 297 5957 1311 4 MP stroke
0 297 -893 -297 893 0 5362 2203 4 MP stroke
893 0 -447 149 -446 -149 3279 2501 4 MP stroke
0 -297 298 0 -298 297 6255 3394 4 MP stroke
447 -149 -298 297 -149 -148 1345 2947 4 MP stroke
0 -595 595 297 -595 298 2386 2501 4 MP stroke
447 -149 -298 298 -149 -149 1345 2352 4 MP stroke
595 0 -447 149 -148 -149 2981 1906 4 MP stroke
447 -149 -298 595 -149 -446 1345 1757 4 MP stroke
447 -149 0 298 -447 -149 2833 3245 4 MP stroke
298 -297 0 297 -298 0 3279 1311 4 MP stroke
-595 -297 297 0 298 297 2386 3394 4 MP stroke
-595 297 297 -297 298 0 1196 3691 4 MP stroke
0 -595 297 0 -297 595 2386 1906 4 MP stroke
595 -298 -595 595 0 -297 2981 1608 4 MP stroke
-447 -446 447 -149 0 595 2386 2501 4 MP stroke
-446 148 -595 -297 1041 149 1345 2947 4 MP stroke
744 149 -148 148 -596 -297 3577 3096 4 MP stroke
-298 298 -297 0 595 -298 1791 2799 4 MP stroke
595 0 -595 298 0 -298 2386 3394 4 MP stroke
-744 -149 298 0 446 149 1345 2352 4 MP stroke
-447 -446 447 -149 0 595 2386 1906 4 MP stroke
-298 -893 298 595 0 298 1791 1608 4 MP stroke
297 297 -297 0 0 -297 1791 1608 4 MP stroke
-446 149 0 -298 446 149 1345 1757 4 MP stroke
446 149 -148 149 -298 -298 3279 2501 4 MP stroke
-298 297 0 -297 298 0 898 3691 4 MP stroke
-1488 0 595 -298 893 298 898 3096 4 MP stroke
595 0 -447 149 -148 -149 2981 3394 4 MP stroke
-893 0 0 -298 893 298 898 2501 4 MP stroke
446 -446 0 595 -446 -149 5213 3245 4 MP stroke
-893 0 -298 -595 1191 595 898 1906 4 MP stroke
298 -595 0 595 -298 0 2684 1311 4 MP stroke
-298 0 -297 -297 595 297 1196 1311 4 MP stroke
595 298 -595 297 0 -595 2386 1906 4 MP stroke
-893 -298 595 0 298 298 898 3096 4 MP stroke
0 -298 148 149 -148 149 2981 1608 4 MP stroke
-893 -298 595 0 298 298 898 2501 4 MP stroke
-298 -297 298 0 0 297 2981 3394 4 MP stroke
-1191 -595 893 298 298 297 898 1906 4 MP stroke
-744 149 596 -298 148 149 2833 3245 4 MP stroke
-298 0 298 -297 0 297 1791 1311 4 MP stroke
0 -297 298 0 -298 297 5362 3394 4 MP stroke
-595 0 595 -297 0 297 1196 3394 4 MP stroke
1488 0 -447 149 -1041 -149 2386 3096 4 MP stroke
-595 0 446 -148 149 148 1196 2799 4 MP stroke
893 0 -447 149 -446 -149 1791 2501 4 MP stroke
-893 -298 744 149 149 149 1196 2203 4 MP stroke
893 0 -447 149 -446 -149 1791 1906 4 MP stroke
-595 -297 446 -149 149 446 1196 1311 4 MP stroke
893 297 -297 0 -596 -297 6255 1608 4 MP stroke
-893 0 893 -297 0 297 5362 2799 4 MP stroke
0 -297 149 149 -149 148 5362 2799 4 MP stroke
-446 -149 446 -149 0 298 4767 2203 4 MP stroke
446 -149 -298 298 -148 -149 3725 2352 4 MP stroke
596 297 -596 0 0 -297 3577 2203 4 MP stroke
446 -446 0 595 -446 -149 5213 2650 4 MP stroke
595 0 -446 148 -149 -148 5362 2203 4 MP stroke
0 -298 149 149 -149 149 5362 2203 4 MP stroke
-446 -446 446 -149 0 595 4767 1311 4 MP stroke
-595 297 298 -297 297 0 3577 3691 4 MP stroke
0 -298 149 149 -149 149 5362 1608 4 MP stroke
0 -595 298 595 -298 0 4767 1311 4 MP stroke
595 297 -595 298 0 -595 4767 3691 4 MP stroke
-595 297 0 -297 595 0 3577 3096 4 MP stroke
-595 0 149 -149 446 149 4767 3096 4 MP stroke
595 297 -595 298 0 -595 4767 3096 4 MP stroke
595 -297 -446 446 -149 -149 5362 3394 4 MP stroke
-297 -297 297 0 0 297 4172 3394 4 MP stroke
-298 297 0 -297 298 0 3874 3691 4 MP stroke
-595 0 149 -149 446 149 4767 2501 4 MP stroke
298 297 -298 0 0 -297 4172 1608 4 MP stroke
-595 298 -595 -298 1190 0 3577 1906 4 MP stroke
595 -298 0 298 -595 0 4767 3096 4 MP stroke
-298 297 0 -297 298 0 3279 3691 4 MP stroke
-595 0 0 -298 595 298 3577 3096 4 MP stroke
595 0 0 297 -595 -297 4767 3096 4 MP stroke
-893 0 0 -298 893 298 3279 2501 4 MP stroke
595 -297 -446 446 -149 -149 5362 2799 4 MP stroke
-1190 0 595 -595 595 595 3577 1906 4 MP stroke
-596 595 0 -595 596 0 2981 1906 4 MP stroke
-297 0 -298 -297 595 297 3577 1311 4 MP stroke
-893 0 893 -297 0 297 5362 3394 4 MP stroke
0 298 -595 -298 595 0 3577 3394 4 MP stroke
0 -298 149 149 -149 149 5362 3096 4 MP stroke
-893 -298 595 0 298 298 3279 2501 4 MP stroke
-595 0 595 -297 0 297 3577 3394 4 MP stroke
0 297 -595 -595 595 298 3577 2203 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices16.dat" and "newCells16.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output51.eps
%%CreationDate: 10/11/2006 00:05:43
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 75 213 542 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 75 213 542 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
698 110 5607 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
1464 4613 mt 1464 4560 L
1464 389 mt 1464 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
1431 4759 mt
(0) s
2309 4613 mt 2309 4560 L
2309 389 mt 2309 442 L
2226 4759 mt
(0.2) s
3154 4613 mt 3154 4560 L
3154 389 mt 3154 442 L
3071 4759 mt
(0.4) s
3999 4613 mt 3999 4560 L
3999 389 mt 3999 442 L
3916 4759 mt
(0.6) s
4844 4613 mt 4844 4560 L
4844 389 mt 4844 442 L
4761 4759 mt
(0.8) s
5689 4613 mt 5689 4560 L
5689 389 mt 5689 442 L
5656 4759 mt
(1) s
899 4613 mt 952 4613 L
6255 4613 mt 6201 4613 L
798 4657 mt
(0) s
899 4191 mt 952 4191 L
6255 4191 mt 6201 4191 L
698 4235 mt
(0.1) s
899 3768 mt 952 3768 L
6255 3768 mt 6201 3768 L
698 3812 mt
(0.2) s
899 3346 mt 952 3346 L
6255 3346 mt 6201 3346 L
698 3390 mt
(0.3) s
899 2923 mt 952 2923 L
6255 2923 mt 6201 2923 L
698 2967 mt
(0.4) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
698 2545 mt
(0.5) s
899 2079 mt 952 2079 L
6255 2079 mt 6201 2079 L
698 2123 mt
(0.6) s
899 1656 mt 952 1656 L
6255 1656 mt 6201 1656 L
698 1700 mt
(0.7) s
899 1234 mt 952 1234 L
6255 1234 mt 6201 1234 L
698 1278 mt
(0.8) s
899 811 mt 952 811 L
6255 811 mt 6201 811 L
698 855 mt
(0.9) s
899 389 mt 952 389 L
6255 389 mt 6201 389 L
798 433 mt
(1) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
4225 0 -2113 2112 -2112 -2112 5689 4613 4 MP stroke
-4225 0 2112 -2112 2113 2112 1464 389 4 MP stroke
0 -4224 2112 2112 -2112 2112 5689 389 4 MP stroke
0 4224 -2113 -2112 2113 -2112 1464 4613 4 MP stroke
gr
2283 294 mt
(Mesh for "newVertices1.dat" and "newCells1.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output52.eps
%%CreationDate: 10/11/2006 00:04:44
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 75 213 542 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 75 213 542 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
698 110 5607 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
1464 4613 mt 1464 4560 L
1464 389 mt 1464 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
1431 4759 mt
(0) s
2309 4613 mt 2309 4560 L
2309 389 mt 2309 442 L
2226 4759 mt
(0.2) s
3154 4613 mt 3154 4560 L
3154 389 mt 3154 442 L
3071 4759 mt
(0.4) s
3999 4613 mt 3999 4560 L
3999 389 mt 3999 442 L
3916 4759 mt
(0.6) s
4844 4613 mt 4844 4560 L
4844 389 mt 4844 442 L
4761 4759 mt
(0.8) s
5689 4613 mt 5689 4560 L
5689 389 mt 5689 442 L
5656 4759 mt
(1) s
899 4613 mt 952 4613 L
6255 4613 mt 6201 4613 L
798 4657 mt
(0) s
899 4191 mt 952 4191 L
6255 4191 mt 6201 4191 L
698 4235 mt
(0.1) s
899 3768 mt 952 3768 L
6255 3768 mt 6201 3768 L
698 3812 mt
(0.2) s
899 3346 mt 952 3346 L
6255 3346 mt 6201 3346 L
698 3390 mt
(0.3) s
899 2923 mt 952 2923 L
6255 2923 mt 6201 2923 L
698 2967 mt
(0.4) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
698 2545 mt
(0.5) s
899 2079 mt 952 2079 L
6255 2079 mt 6201 2079 L
698 2123 mt
(0.6) s
899 1656 mt 952 1656 L
6255 1656 mt 6201 1656 L
698 1700 mt
(0.7) s
899 1234 mt 952 1234 L
6255 1234 mt 6201 1234 L
698 1278 mt
(0.8) s
899 811 mt 952 811 L
6255 811 mt 6201 811 L
698 855 mt
(0.9) s
899 389 mt 952 389 L
6255 389 mt 6201 389 L
798 433 mt
(1) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
-264 264 0 -264 264 0 3841 3821 4 MP stroke
0 -264 133 132 -133 132 3577 2237 4 MP stroke
0 -1056 528 528 -528 528 5689 3557 4 MP stroke
528 528 -528 0 0 -528 1992 3029 4 MP stroke
0 1056 -528 -528 528 -528 2520 4613 4 MP stroke
264 0 -132 132 -132 -132 1992 1709 4 MP stroke
-1056 -1056 1056 0 0 1056 4633 1445 4 MP stroke
264 -264 0 264 -264 0 4897 4349 4 MP stroke
0 -528 264 264 -264 264 4633 3029 4 MP stroke
0 1056 -528 -528 528 -528 1464 3557 4 MP stroke
1057 0 -528 528 -529 -528 3577 3557 4 MP stroke
264 -264 0 264 -264 0 3841 2237 4 MP stroke
264 264 -264 0 0 -264 2784 2237 4 MP stroke
0 -528 264 264 -264 264 2520 917 4 MP stroke
264 264 -264 0 0 -264 3841 3293 4 MP stroke
-529 528 0 -528 529 0 3048 4085 4 MP stroke
528 528 -528 0 0 -528 3048 3029 4 MP stroke
0 528 -264 -264 264 -264 1992 2501 4 MP stroke
-264 -264 264 0 0 264 2256 1181 4 MP stroke
0 528 -264 -264 264 -264 4105 4613 4 MP stroke
0 528 -264 -264 264 -264 3577 4085 4 MP stroke
0 264 -132 -132 132 -132 4369 4085 4 MP stroke
528 -528 0 528 -528 0 1992 1973 4 MP stroke
0 264 -132 -132 132 -132 2256 1973 4 MP stroke
529 0 -264 264 -265 -264 3577 3029 4 MP stroke
0 1056 -528 -528 528 -528 2520 3557 4 MP stroke
-2112 0 1056 -1056 1056 1056 3577 389 4 MP stroke
0 -2112 1056 1056 -1056 1056 5689 389 4 MP stroke
-529 -528 529 0 0 528 3048 917 4 MP stroke
-1056 -1056 1056 0 0 1056 3577 389 4 MP stroke
-264 0 132 -132 132 132 3048 2237 4 MP stroke
0 -264 132 132 -132 132 3048 1709 4 MP stroke
528 -528 0 528 -528 0 5161 3029 4 MP stroke
-528 -528 528 0 0 528 4105 1973 4 MP stroke
-264 0 132 -132 132 132 4105 3293 4 MP stroke
0 -264 132 132 -132 132 4105 2765 4 MP stroke
0 -264 132 132 -132 132 4369 3557 4 MP stroke
528 0 -264 264 -264 -264 4105 3557 4 MP stroke
-1057 0 529 -528 528 528 2520 389 4 MP stroke
-528 0 264 -264 264 264 1464 917 4 MP stroke
-1056 0 528 -528 528 528 1464 389 4 MP stroke
0 -264 132 132 -132 132 2256 1445 4 MP stroke
-264 -264 264 0 0 264 1728 1181 4 MP stroke
-264 0 132 -132 132 132 2520 1709 4 MP stroke
264 264 -264 0 0 -264 2256 2237 4 MP stroke
-264 0 132 -132 132 132 3577 2765 4 MP stroke
529 528 -529 0 0 -528 3577 3557 4 MP stroke
264 264 -264 0 0 -264 3312 2765 4 MP stroke
528 0 -264 264 -264 -264 3048 2501 4 MP stroke
-528 528 0 -528 528 0 3577 4613 4 MP stroke
-528 -528 528 0 0 528 5161 3029 4 MP stroke
528 0 -264 264 -264 -264 5161 4613 4 MP stroke
0 -528 264 264 -264 264 5161 3557 4 MP stroke
264 0 -132 132 -132 -132 4633 4349 4 MP stroke
264 -264 0 264 -264 0 4897 3821 4 MP stroke
264 -264 0 264 -264 0 1728 1709 4 MP stroke
0 -264 132 132 -132 132 1728 1445 4 MP stroke
528 0 -264 264 -264 -264 1992 1973 4 MP stroke
0 528 -264 -264 264 -264 2520 2501 4 MP stroke
264 0 -132 132 -132 -132 3048 2237 4 MP stroke
0 528 -264 -264 264 -264 3577 3557 4 MP stroke
264 0 -132 132 -132 -132 4105 3293 4 MP stroke
0 264 -132 -132 132 -132 4369 4613 4 MP stroke
264 264 -264 0 0 -264 4369 4349 4 MP stroke
0 -264 132 132 -132 132 4633 3821 4 MP stroke
-264 0 132 -132 132 132 4105 3821 4 MP stroke
-264 264 0 -264 264 0 2256 1709 4 MP stroke
-264 0 132 -132 132 132 1992 1709 4 MP stroke
265 0 -132 132 -133 -132 3577 2765 4 MP stroke
0 528 -264 -264 264 -264 3048 3029 4 MP stroke
-1056 0 528 -528 528 528 3577 1445 4 MP stroke
0 -1056 528 528 -528 528 4633 1445 4 MP stroke
-265 -264 265 0 0 264 3312 1709 4 MP stroke
-528 -528 528 0 0 528 3577 1445 4 MP stroke
0 264 -132 -132 132 -132 3312 2501 4 MP stroke
0 -264 132 132 -132 132 3312 1973 4 MP stroke
-1056 0 528 -528 528 528 4633 2501 4 MP stroke
0 -1056 528 528 -528 528 5689 2501 4 MP stroke
-264 -264 264 0 0 264 4369 2765 4 MP stroke
-528 -528 528 0 0 528 4633 2501 4 MP stroke
-264 -264 264 0 0 264 4369 3293 4 MP stroke
0 -264 132 132 -132 132 4369 3029 4 MP stroke
0 -1056 529 528 -529 528 3577 389 4 MP stroke
528 -528 0 528 -528 0 3048 917 4 MP stroke
264 -264 0 264 -264 0 3312 1709 4 MP stroke
-528 528 0 -528 528 0 2520 1445 4 MP stroke
0 264 -132 -132 132 -132 2784 1973 4 MP stroke
-528 0 264 -264 264 264 2520 1445 4 MP stroke
264 -264 0 264 -264 0 4369 2765 4 MP stroke
-264 -264 264 0 0 264 3841 2237 4 MP stroke
0 264 -132 -132 132 -132 3841 3029 4 MP stroke
0 -264 132 132 -132 132 3841 2501 4 MP stroke
264 264 -264 0 0 -264 1992 1973 4 MP stroke
0 264 -132 -132 132 -132 1992 1709 4 MP stroke
-264 0 132 -132 132 132 2784 1973 4 MP stroke
264 0 -132 132 -132 -132 2784 1973 4 MP stroke
-264 0 132 -132 132 132 3841 3029 4 MP stroke
264 0 -132 132 -132 -132 3841 3029 4 MP stroke
264 0 -132 132 -132 -132 4369 4085 4 MP stroke
-264 0 132 -132 132 132 4369 4085 4 MP stroke
1056 -1056 0 1056 -1056 0 2520 3557 4 MP stroke
0 -1056 528 528 -528 528 2520 2501 4 MP stroke
1056 0 -528 528 -528 -528 2520 3557 4 MP stroke
-528 528 0 -528 528 0 1464 2501 4 MP stroke
528 -528 0 528 -528 0 2520 2501 4 MP stroke
0 -528 264 264 -264 264 2520 1973 4 MP stroke
528 0 -264 264 -264 -264 2520 2501 4 MP stroke
264 0 -132 132 -132 -132 2256 1973 4 MP stroke
264 -264 0 264 -264 0 2520 1973 4 MP stroke
0 264 -132 -132 132 -132 3048 2237 4 MP stroke
264 264 -264 0 0 -264 3048 2501 4 MP stroke
0 264 -132 -132 132 -132 4105 3293 4 MP stroke
264 264 -264 0 0 -264 4105 3557 4 MP stroke
264 -264 0 264 -264 0 4633 3557 4 MP stroke
264 0 -132 132 -132 -132 4369 3557 4 MP stroke
-264 -264 264 0 0 264 2520 1445 4 MP stroke
0 -264 132 132 -132 132 2520 1709 4 MP stroke
0 264 -132 -132 132 -132 3577 2765 4 MP stroke
265 264 -265 0 0 -264 3577 3029 4 MP stroke
-265 0 133 -132 132 132 3312 2501 4 MP stroke
264 0 -132 132 -132 -132 3312 2501 4 MP stroke
-528 -528 528 0 0 528 5161 4085 4 MP stroke
-528 0 264 -264 264 264 4633 4085 4 MP stroke
0 -528 264 264 -264 264 5161 4085 4 MP stroke
0 -264 132 132 -132 132 4633 4349 4 MP stroke
-264 -264 264 0 0 264 4633 4085 4 MP stroke
0 264 -132 -132 132 -132 1464 1709 4 MP stroke
-528 -528 528 0 0 528 1464 389 4 MP stroke
0 -528 264 264 -264 264 1992 917 4 MP stroke
0 528 -264 -264 264 -264 1464 1445 4 MP stroke
-264 0 132 -132 132 132 1728 1445 4 MP stroke
-264 264 0 -264 264 0 1464 1445 4 MP stroke
-264 264 0 -264 264 0 4105 4613 4 MP stroke
-1056 1056 0 -1056 1056 0 1464 4613 4 MP stroke
-1057 0 529 -528 528 528 2520 3557 4 MP stroke
1057 0 -528 528 -529 -528 3577 4613 4 MP stroke
528 -528 0 528 -528 0 4105 4085 4 MP stroke
529 528 -529 0 0 -528 3577 4613 4 MP stroke
-528 0 264 -264 264 264 3577 3557 4 MP stroke
528 0 -264 264 -264 -264 4105 4085 4 MP stroke
0 264 -132 -132 132 -132 4105 3821 4 MP stroke
264 264 -264 0 0 -264 4105 4085 4 MP stroke
0 -264 132 132 -132 132 1992 1445 4 MP stroke
0 264 -132 -132 132 -132 1728 1709 4 MP stroke
528 -528 0 528 -528 0 5689 3557 4 MP stroke
-528 528 0 -528 528 0 4633 3557 4 MP stroke
528 0 -264 264 -264 -264 5161 4085 4 MP stroke
-528 0 264 -264 264 264 4633 3557 4 MP stroke
-264 264 0 -264 264 0 4369 3821 4 MP stroke
-264 -264 264 0 0 264 4633 3557 4 MP stroke
264 0 -132 132 -132 -132 4633 4085 4 MP stroke
-264 0 132 -132 132 132 4369 3821 4 MP stroke
264 0 -132 132 -132 -132 2520 1973 4 MP stroke
-264 0 132 -132 132 132 2256 1709 4 MP stroke
0 264 -132 -132 132 -132 3048 2501 4 MP stroke
0 -264 132 132 -132 132 3312 2237 4 MP stroke
0 264 -132 -132 132 -132 4105 3557 4 MP stroke
0 -264 132 132 -132 132 4369 3293 4 MP stroke
-264 0 132 -132 132 132 4105 3557 4 MP stroke
264 0 -132 132 -132 -132 4369 3821 4 MP stroke
0 264 -132 -132 132 -132 2520 1973 4 MP stroke
0 -264 132 132 -132 132 2784 1709 4 MP stroke
0 264 -132 -132 132 -132 3577 3029 4 MP stroke
0 -264 132 132 -132 132 3841 2765 4 MP stroke
0 -264 132 132 -132 132 4633 4085 4 MP stroke
0 264 -132 -132 132 -132 4369 4349 4 MP stroke
-264 0 132 -132 132 132 1464 1445 4 MP stroke
264 0 -132 132 -132 -132 1728 1709 4 MP stroke
0 -264 132 132 -132 132 3048 1973 4 MP stroke
0 264 -132 -132 132 -132 2784 2237 4 MP stroke
0 -264 132 132 -132 132 4105 3029 4 MP stroke
0 264 -132 -132 132 -132 3841 3293 4 MP stroke
264 0 -132 132 -132 -132 4633 4613 4 MP stroke
-264 0 132 -132 132 132 4369 4349 4 MP stroke
0 264 -132 -132 132 -132 4105 4085 4 MP stroke
0 -264 132 132 -132 132 4369 3821 4 MP stroke
0 264 -132 -132 132 -132 1992 1973 4 MP stroke
0 -264 132 132 -132 132 2256 1709 4 MP stroke
0 -264 133 132 -133 132 3577 2501 4 MP stroke
0 264 -132 -132 132 -132 3312 2765 4 MP stroke
-528 0 264 -264 264 264 3577 1973 4 MP stroke
0 -528 264 264 -264 264 4105 1973 4 MP stroke
-265 264 0 -264 265 0 3312 2237 4 MP stroke
-264 -264 264 0 0 264 3577 1973 4 MP stroke
265 0 -132 132 -133 -132 3577 2501 4 MP stroke
-265 0 133 -132 132 132 3312 2237 4 MP stroke
-529 0 265 -264 264 264 3048 1445 4 MP stroke
0 -528 265 264 -265 264 3577 1445 4 MP stroke
-264 264 0 -264 264 0 2784 1709 4 MP stroke
-264 -264 264 0 0 264 3048 1445 4 MP stroke
264 0 -132 132 -132 -132 3048 1973 4 MP stroke
-264 0 132 -132 132 132 2784 1709 4 MP stroke
-528 0 264 -264 264 264 4105 2501 4 MP stroke
0 -528 264 264 -264 264 4633 2501 4 MP stroke
-264 264 0 -264 264 0 3841 2765 4 MP stroke
-264 -264 264 0 0 264 4105 2501 4 MP stroke
264 0 -132 132 -132 -132 4105 3029 4 MP stroke
-264 0 132 -132 132 132 3841 2765 4 MP stroke
-528 528 0 -528 528 0 1992 917 4 MP stroke
-528 -528 528 0 0 528 2520 389 4 MP stroke
0 528 -264 -264 264 -264 1992 1445 4 MP stroke
-528 0 264 -264 264 264 1992 917 4 MP stroke
264 -264 0 264 -264 0 2520 1445 4 MP stroke
-264 264 0 -264 264 0 1992 1445 4 MP stroke
264 0 -132 132 -132 -132 2256 1709 4 MP stroke
-264 0 132 -132 132 132 1992 1445 4 MP stroke
265 -264 0 264 -265 0 3577 1973 4 MP stroke
-264 264 0 -264 264 0 3048 1973 4 MP stroke
264 0 -132 132 -132 -132 3312 2237 4 MP stroke
-264 0 132 -132 132 132 3048 1973 4 MP stroke
264 -264 0 264 -264 0 4633 3029 4 MP stroke
-264 264 0 -264 264 0 4105 3029 4 MP stroke
264 0 -132 132 -132 -132 4369 3293 4 MP stroke
-264 0 132 -132 132 132 4105 3029 4 MP stroke
264 -264 0 264 -264 0 4105 2501 4 MP stroke
-264 264 0 -264 264 0 3577 2501 4 MP stroke
264 0 -132 132 -132 -132 3841 2765 4 MP stroke
-264 0 132 -132 132 132 3577 2501 4 MP stroke
gr
2283 294 mt
(Mesh for "newVertices9.dat" and "newCells9.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: D:\McMaster\thesis\appd\output53.eps
%%CreationDate: 10/11/2006 00:05:21
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 75 213 542 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 75 213 542 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
698 110 5607 4677 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4224 5356 0 0 -4224 899 4613 4 MP
PP
-5356 0 0 4224 5356 0 0 -4224 899 4613 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
899 4613 mt 6255 4613 L
899 4613 mt 899 389 L
1464 4613 mt 1464 4560 L
1464 389 mt 1464 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
1431 4759 mt
(0) s
2309 4613 mt 2309 4560 L
2309 389 mt 2309 442 L
2226 4759 mt
(0.2) s
3154 4613 mt 3154 4560 L
3154 389 mt 3154 442 L
3071 4759 mt
(0.4) s
3999 4613 mt 3999 4560 L
3999 389 mt 3999 442 L
3916 4759 mt
(0.6) s
4844 4613 mt 4844 4560 L
4844 389 mt 4844 442 L
4761 4759 mt
(0.8) s
5689 4613 mt 5689 4560 L
5689 389 mt 5689 442 L
5656 4759 mt
(1) s
899 4613 mt 952 4613 L
6255 4613 mt 6201 4613 L
798 4657 mt
(0) s
899 4191 mt 952 4191 L
6255 4191 mt 6201 4191 L
698 4235 mt
(0.1) s
899 3768 mt 952 3768 L
6255 3768 mt 6201 3768 L
698 3812 mt
(0.2) s
899 3346 mt 952 3346 L
6255 3346 mt 6201 3346 L
698 3390 mt
(0.3) s
899 2923 mt 952 2923 L
6255 2923 mt 6201 2923 L
698 2967 mt
(0.4) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
698 2545 mt
(0.5) s
899 2079 mt 952 2079 L
6255 2079 mt 6201 2079 L
698 2123 mt
(0.6) s
899 1656 mt 952 1656 L
6255 1656 mt 6201 1656 L
698 1700 mt
(0.7) s
899 1234 mt 952 1234 L
6255 1234 mt 6201 1234 L
698 1278 mt
(0.8) s
899 811 mt 952 811 L
6255 811 mt 6201 811 L
698 855 mt
(0.9) s
899 389 mt 952 389 L
6255 389 mt 6201 389 L
798 433 mt
(1) s
899 389 mt 6255 389 L
899 4613 mt 6255 4613 L
6255 4613 mt 6255 389 L
899 4613 mt 899 389 L
gs 899 389 5357 4225 MR c np
-132 132 0 -132 132 0 3973 3689 4 MP stroke
0 -66 34 33 -34 33 3577 2435 4 MP stroke
0 -1056 528 528 -528 528 5689 3557 4 MP stroke
528 528 -528 0 0 -528 1992 3029 4 MP stroke
0 1056 -528 -528 528 -528 2520 4613 4 MP stroke
-66 0 33 -33 33 33 1860 1643 4 MP stroke
-1056 -1056 1056 0 0 1056 4633 1445 4 MP stroke
132 -132 0 132 -132 0 4765 4481 4 MP stroke
0 -264 132 132 -132 132 4633 3293 4 MP stroke
0 1056 -528 -528 528 -528 1464 3557 4 MP stroke
0 528 -264 -264 264 -264 3048 3557 4 MP stroke
66 -66 0 66 -66 0 3643 2435 4 MP stroke
66 66 -66 0 0 -66 2586 2039 4 MP stroke
0 -528 264 264 -264 264 2520 917 4 MP stroke
-132 132 0 -132 132 0 3709 3161 4 MP stroke
-529 528 0 -528 529 0 3048 4085 4 MP stroke
264 264 -264 0 0 -264 2784 2765 4 MP stroke
0 264 -132 -132 132 -132 1992 2237 4 MP stroke
-264 -264 264 0 0 264 2256 1181 4 MP stroke
-132 0 66 -66 66 66 4237 4349 4 MP stroke
0 528 -264 -264 264 -264 3577 4085 4 MP stroke
0 -66 33 33 -33 33 4435 3953 4 MP stroke
264 264 -264 0 0 -264 1728 2237 4 MP stroke
66 66 -66 0 0 -66 2322 1907 4 MP stroke
0 264 -132 -132 132 -132 3312 3029 4 MP stroke
0 528 -264 -264 264 -264 2520 3029 4 MP stroke
-2112 0 1056 -1056 1056 1056 3577 389 4 MP stroke
0 -2112 1056 1056 -1056 1056 5689 389 4 MP stroke
-529 -528 529 0 0 528 3048 917 4 MP stroke
-1056 -1056 1056 0 0 1056 3577 389 4 MP stroke
66 0 -33 33 -33 -33 3180 2303 4 MP stroke
0 -132 66 66 -66 66 3048 1841 4 MP stroke
264 -264 0 264 -264 0 4897 3293 4 MP stroke
-528 -528 528 0 0 528 4105 1973 4 MP stroke
0 -66 33 33 -33 33 4237 3359 4 MP stroke
0 -132 66 66 -66 66 4105 2897 4 MP stroke
33 -33 0 33 -33 0 4336 3656 4 MP stroke
0 264 -132 -132 132 -132 3841 3557 4 MP stroke
-1057 0 529 -528 528 528 2520 389 4 MP stroke
-528 0 264 -264 264 264 1464 917 4 MP stroke
-1056 0 528 -528 528 528 1464 389 4 MP stroke
0 -132 66 66 -66 66 2256 1577 4 MP stroke
-132 -132 132 0 0 132 1860 1313 4 MP stroke
0 -132 66 66 -66 66 2652 1709 4 MP stroke
132 132 -132 0 0 -132 2124 2105 4 MP stroke
-66 66 0 -66 66 0 3643 2831 4 MP stroke
-265 264 0 -264 265 0 3312 3293 4 MP stroke
132 132 -132 0 0 -132 3180 2633 4 MP stroke
0 264 -132 -132 132 -132 2784 2501 4 MP stroke
-264 264 0 -264 264 0 3841 4349 4 MP stroke
-528 -528 528 0 0 528 5161 3029 4 MP stroke
264 0 -132 132 -132 -132 4897 4613 4 MP stroke
0 -528 264 264 -264 264 5161 3557 4 MP stroke
66 -66 0 66 -66 0 4567 4283 4 MP stroke
264 -264 0 264 -264 0 4897 3821 4 MP stroke
66 66 -66 0 0 -66 1530 1775 4 MP stroke
-66 -66 66 0 0 66 1662 1511 4 MP stroke
0 132 -66 -66 66 -66 1728 1841 4 MP stroke
0 132 -66 -66 66 -66 2520 2105 4 MP stroke
0 66 -33 -33 33 -33 2916 2171 4 MP stroke
0 264 -132 -132 132 -132 3577 3293 4 MP stroke
0 66 -33 -33 33 -33 3973 3227 4 MP stroke
33 0 -16 16 -17 -16 4435 4514 4 MP stroke
-33 33 0 -33 33 0 4336 4118 4 MP stroke
0 -264 132 132 -132 132 4633 3821 4 MP stroke
-66 66 0 -66 66 0 4171 3887 4 MP stroke
-66 -66 66 0 0 66 2454 1643 4 MP stroke
66 0 -33 33 -33 -33 2124 1775 4 MP stroke
0 132 -66 -66 66 -66 3444 2765 4 MP stroke
0 264 -132 -132 132 -132 3048 2765 4 MP stroke
-1056 0 528 -528 528 528 3577 1445 4 MP stroke
0 -1056 528 528 -528 528 4633 1445 4 MP stroke
-265 -264 265 0 0 264 3312 1709 4 MP stroke
-528 -528 528 0 0 528 3577 1445 4 MP stroke
-33 33 0 -33 33 0 3345 2402 4 MP stroke
0 -66 33 33 -33 33 3312 2171 4 MP stroke
-1056 0 528 -528 528 528 4633 2501 4 MP stroke
0 -1056 528 528 -528 528 5689 2501 4 MP stroke
-264 -264 264 0 0 264 4369 2765 4 MP stroke
-528 -528 528 0 0 528 4633 2501 4 MP stroke
132 -132 0 132 -132 0 4501 3425 4 MP stroke
0 -264 132 132 -132 132 4369 3029 4 MP stroke
0 -1056 529 528 -529 528 3577 389 4 MP stroke
-528 0 264 -264 264 264 2520 917 4 MP stroke
-264 0 132 -132 132 132 3048 1709 4 MP stroke
-264 -264 264 0 0 264 2784 1181 4 MP stroke
-132 0 66 -66 66 66 2784 1841 4 MP stroke
0 -264 132 132 -132 132 2784 1445 4 MP stroke
132 -132 0 132 -132 0 4237 2897 4 MP stroke
-264 -264 264 0 0 264 3841 2237 4 MP stroke
33 0 -16 16 -17 -16 3907 2930 4 MP stroke
0 -66 33 33 -33 33 3841 2699 4 MP stroke
66 66 -66 0 0 -66 1794 1775 4 MP stroke
-132 0 66 -66 66 66 1992 1577 4 MP stroke
0 33 -17 -16 17 -17 2883 2039 4 MP stroke
0 -33 16 17 -16 16 2685 1907 4 MP stroke
66 0 -33 33 -33 -33 3973 3095 4 MP stroke
0 132 -66 -66 66 -66 3709 3029 4 MP stroke
0 132 -66 -66 66 -66 4237 4085 4 MP stroke
0 -132 66 66 -66 66 4501 4085 4 MP stroke
1056 -1056 0 1056 -1056 0 2520 3557 4 MP stroke
-528 528 0 -528 528 0 1992 3029 4 MP stroke
1056 0 -528 528 -528 -528 2520 3557 4 MP stroke
528 0 -264 264 -264 -264 1992 2501 4 MP stroke
528 -528 0 528 -528 0 2520 2501 4 MP stroke
264 0 -132 132 -132 -132 2520 2237 4 MP stroke
528 0 -264 264 -264 -264 2520 2501 4 MP stroke
0 132 -66 -66 66 -66 2124 1973 4 MP stroke
132 132 -132 0 0 -132 2388 2105 4 MP stroke
33 0 -17 17 -16 -17 3114 2138 4 MP stroke
132 132 -132 0 0 -132 2916 2369 4 MP stroke
0 -66 33 33 -33 33 4171 3161 4 MP stroke
-33 33 0 -33 33 0 4072 3326 4 MP stroke
66 -66 0 66 -66 0 4435 3755 4 MP stroke
33 -33 0 33 -33 0 4270 3524 4 MP stroke
-132 -132 132 0 0 132 2652 1577 4 MP stroke
-33 0 16 -16 17 16 2454 1808 4 MP stroke
-33 33 0 -33 33 0 3610 2666 4 MP stroke
-133 132 0 -132 133 0 3444 2897 4 MP stroke
66 66 -66 0 0 -66 3378 2567 4 MP stroke
0 132 -66 -66 66 -66 3180 2501 4 MP stroke
-528 -528 528 0 0 528 5161 4085 4 MP stroke
0 -264 132 132 -132 132 4897 4085 4 MP stroke
0 -528 264 264 -264 264 5161 4085 4 MP stroke
0 -132 66 66 -66 66 4633 4481 4 MP stroke
132 -132 0 132 -132 0 4765 4217 4 MP stroke
0 -66 33 33 -33 33 1530 1577 4 MP stroke
-528 -528 528 0 0 528 1464 389 4 MP stroke
0 -264 132 132 -132 132 1992 1181 4 MP stroke
-264 0 132 -132 132 132 1464 1181 4 MP stroke
0 -132 66 66 -66 66 1860 1445 4 MP stroke
-132 -132 132 0 0 132 1596 1313 4 MP stroke
-66 66 0 -66 66 0 4303 4415 4 MP stroke
-1056 1056 0 -1056 1056 0 1464 4613 4 MP stroke
528 528 -528 0 0 -528 3048 4085 4 MP stroke
1057 0 -528 528 -529 -528 3577 4613 4 MP stroke
264 264 -264 0 0 -264 3841 4349 4 MP stroke
529 528 -529 0 0 -528 3577 4613 4 MP stroke
264 264 -264 0 0 -264 3841 3821 4 MP stroke
0 264 -132 -132 132 -132 3841 4085 4 MP stroke
0 132 -66 -66 66 -66 4105 3689 4 MP stroke
-132 132 0 -132 132 0 3973 3953 4 MP stroke
-132 132 0 -132 132 0 1860 1577 4 MP stroke
0 -66 33 33 -33 33 1794 1577 4 MP stroke
528 -528 0 528 -528 0 5689 3557 4 MP stroke
528 0 -264 264 -264 -264 5161 3557 4 MP stroke
-264 -264 264 0 0 264 4897 3821 4 MP stroke
-528 0 264 -264 264 264 4633 3557 4 MP stroke
-132 -132 132 0 0 132 4501 3689 4 MP stroke
-264 -264 264 0 0 264 4633 3557 4 MP stroke
-132 -132 132 0 0 132 4501 3953 4 MP stroke
0 -132 66 66 -66 66 4501 3821 4 MP stroke
0 66 -33 -33 33 -33 2388 1907 4 MP stroke
-33 -33 33 0 0 33 2355 1742 4 MP stroke
0 132 -66 -66 66 -66 3048 2369 4 MP stroke
0 66 -33 -33 33 -33 3246 2369 4 MP stroke
-33 33 0 -33 33 0 4138 3458 4 MP stroke
0 -132 66 66 -66 66 4369 3425 4 MP stroke
66 0 -33 33 -33 -33 4237 3623 4 MP stroke
33 33 -33 0 0 -33 4270 3788 4 MP stroke
33 0 -17 17 -16 -17 2586 1874 4 MP stroke
-66 -66 66 0 0 66 2718 1775 4 MP stroke
0 132 -66 -66 66 -66 3577 2897 4 MP stroke
0 66 -33 -33 33 -33 3775 2897 4 MP stroke
0 -132 66 66 -66 66 4633 4217 4 MP stroke
0 -33 17 16 -17 17 4435 4250 4 MP stroke
-132 0 66 -66 66 66 1596 1445 4 MP stroke
0 -33 16 17 -16 16 1629 1643 4 MP stroke
-33 0 16 -16 17 16 2982 2072 4 MP stroke
0 33 -17 -16 17 -17 2784 2006 4 MP stroke
-33 0 17 -17 16 17 4039 3128 4 MP stroke
0 132 -66 -66 66 -66 3841 3161 4 MP stroke
66 -66 0 66 -66 0 4567 4547 4 MP stroke
66 0 -33 33 -33 -33 4501 4415 4 MP stroke
0 132 -66 -66 66 -66 4105 3953 4 MP stroke
0 33 -16 -17 16 -16 4303 3920 4 MP stroke
0 33 -17 -16 17 -17 1992 1742 4 MP stroke
0 66 -33 -33 33 -33 2190 1841 4 MP stroke
0 66 -33 -33 33 -33 3510 2633 4 MP stroke
0 132 -66 -66 66 -66 3312 2633 4 MP stroke
-528 0 264 -264 264 264 3577 1973 4 MP stroke
0 -528 264 264 -264 264 4105 1973 4 MP stroke
-133 -132 133 0 0 132 3444 2105 4 MP stroke
-264 -264 264 0 0 264 3577 1973 4 MP stroke
0 -33 16 17 -16 16 3477 2435 4 MP stroke
0 -66 33 33 -33 33 3444 2303 4 MP stroke
-529 0 265 -264 264 264 3048 1445 4 MP stroke
0 -528 265 264 -265 264 3577 1445 4 MP stroke
-264 264 0 -264 264 0 2784 1709 4 MP stroke
-264 -264 264 0 0 264 3048 1445 4 MP stroke
-66 -66 66 0 0 66 2982 1907 4 MP stroke
-264 0 132 -132 132 132 2784 1709 4 MP stroke
-528 0 264 -264 264 264 4105 2501 4 MP stroke
0 -528 264 264 -264 264 4633 2501 4 MP stroke
-132 -132 132 0 0 132 3973 2633 4 MP stroke
-264 -264 264 0 0 264 4105 2501 4 MP stroke
33 -33 0 33 -33 0 4006 2996 4 MP stroke
0 -132 66 66 -66 66 3973 2765 4 MP stroke
-528 528 0 -528 528 0 1992 917 4 MP stroke
-528 -528 528 0 0 528 2520 389 4 MP stroke
264 -264 0 264 -264 0 2256 1181 4 MP stroke
-528 0 264 -264 264 264 1992 917 4 MP stroke
-264 0 132 -132 132 132 2256 1445 4 MP stroke
-264 264 0 -264 264 0 1992 1445 4 MP stroke
-66 -66 66 0 0 66 2190 1643 4 MP stroke
-264 0 132 -132 132 132 1992 1445 4 MP stroke
-132 0 66 -66 66 66 3312 2105 4 MP stroke
-132 -132 132 0 0 132 3180 1841 4 MP stroke
-66 0 33 -33 33 33 3180 2171 4 MP stroke
0 -132 66 66 -66 66 3180 1973 4 MP stroke
264 -264 0 264 -264 0 4633 3029 4 MP stroke
-132 -132 132 0 0 132 4237 2897 4 MP stroke
-132 -132 132 0 0 132 4237 3161 4 MP stroke
0 -132 66 66 -66 66 4237 3029 4 MP stroke
66 -66 0 66 -66 0 3907 2699 4 MP stroke
-132 -132 132 0 0 132 3709 2369 4 MP stroke
0 -33 17 16 -17 17 3742 2699 4 MP stroke
0 -66 33 33 -33 33 3709 2567 4 MP stroke
0 528 -264 -264 264 -264 1464 2501 4 MP stroke
-264 264 0 -264 264 0 1728 2237 4 MP stroke
264 0 -132 132 -132 -132 1728 1973 4 MP stroke
264 -264 0 264 -264 0 1992 1973 4 MP stroke
132 0 -66 66 -66 -66 1992 1841 4 MP stroke
264 0 -132 132 -132 -132 1992 1973 4 MP stroke
-33 0 16 -16 17 16 1794 1676 4 MP stroke
33 33 -33 0 0 -33 1893 1742 4 MP stroke
33 -33 0 33 -33 0 4402 3920 4 MP stroke
0 33 -16 -17 16 -16 4336 4019 4 MP stroke
33 33 -33 0 0 -33 2289 1808 4 MP stroke
66 66 -66 0 0 -66 2190 1907 4 MP stroke
33 0 -17 17 -16 -17 3246 2270 4 MP stroke
0 33 -17 -16 17 -17 3114 2204 4 MP stroke
66 -66 0 66 -66 0 4303 3359 4 MP stroke
-66 -66 66 0 0 66 4171 3227 4 MP stroke
0 -132 66 66 -66 66 4501 3557 4 MP stroke
0 -264 132 132 -132 132 4633 3557 4 MP stroke
0 -66 33 33 -33 33 4369 3755 4 MP stroke
66 -66 0 66 -66 0 4435 3623 4 MP stroke
33 0 -16 16 -17 -16 3775 2798 4 MP stroke
0 66 -33 -33 33 -33 3643 2765 4 MP stroke
33 -33 0 33 -33 0 4468 4316 4 MP stroke
66 -66 0 66 -66 0 4567 4415 4 MP stroke
-33 -33 33 0 0 33 1695 1610 4 MP stroke
-66 -66 66 0 0 66 1794 1511 4 MP stroke
528 0 -264 264 -264 -264 4105 4613 4 MP stroke
0 528 -264 -264 264 -264 3577 4613 4 MP stroke
0 264 -132 -132 132 -132 4105 4349 4 MP stroke
264 264 -264 0 0 -264 4105 4613 4 MP stroke
0 132 -66 -66 66 -66 4237 4613 4 MP stroke
0 264 -132 -132 132 -132 4105 4613 4 MP stroke
33 33 -33 0 0 -33 4402 4448 4 MP stroke
-66 66 0 -66 66 0 4303 4547 4 MP stroke
-33 33 0 -33 33 0 4270 3854 4 MP stroke
-66 66 0 -66 66 0 4171 3755 4 MP stroke
33 0 -17 17 -16 -17 2190 1742 4 MP stroke
-33 -33 33 0 0 33 2091 1676 4 MP stroke
0 -33 16 17 -16 16 3345 2303 4 MP stroke
66 66 -66 0 0 -66 3246 2435 4 MP stroke
-132 -132 132 0 0 132 2784 1709 4 MP stroke
-33 -33 33 0 0 33 2751 1874 4 MP stroke
0 -33 17 16 -17 17 3874 2831 4 MP stroke
-33 33 0 -33 33 0 3808 2930 4 MP stroke
-132 -132 132 0 0 132 1992 1445 4 MP stroke
-66 66 0 -66 66 0 1926 1643 4 MP stroke
0 -66 33 33 -33 33 2982 1973 4 MP stroke
-33 -33 33 0 0 33 2883 1940 4 MP stroke
264 -264 0 264 -264 0 2784 2237 4 MP stroke
264 264 -264 0 0 -264 2520 2501 4 MP stroke
132 0 -66 66 -66 -66 2784 2105 4 MP stroke
264 0 -132 132 -132 -132 2784 2237 4 MP stroke
0 66 -33 -33 33 -33 2586 1973 4 MP stroke
66 66 -66 0 0 -66 2718 2039 4 MP stroke
0 -66 33 33 -33 33 4039 3029 4 MP stroke
0 33 -16 -17 16 -16 3907 2996 4 MP stroke
132 -132 0 132 -132 0 4633 4085 4 MP stroke
-66 -66 66 0 0 66 4435 4019 4 MP stroke
-66 -66 66 0 0 66 3114 2039 4 MP stroke
66 0 -33 33 -33 -33 3048 2171 4 MP stroke
66 -66 0 66 -66 0 4171 3095 4 MP stroke
0 33 -16 -17 16 -16 4072 3227 4 MP stroke
0 33 -16 -17 16 -16 4171 3524 4 MP stroke
0 -66 33 33 -33 33 4303 3557 4 MP stroke
66 0 -33 33 -33 -33 2520 1907 4 MP stroke
-66 -66 66 0 0 66 2586 1775 4 MP stroke
0 -33 17 16 -17 17 3610 2567 4 MP stroke
66 66 -66 0 0 -66 3510 2699 4 MP stroke
-33 33 0 -33 33 0 3477 2534 4 MP stroke
0 66 -33 -33 33 -33 3378 2501 4 MP stroke
-66 -66 66 0 0 66 1530 1511 4 MP stroke
0 -132 66 66 -66 66 2520 1577 4 MP stroke
-132 0 66 -66 66 66 2256 1577 4 MP stroke
0 -66 33 33 -33 33 2454 1709 4 MP stroke
-66 -66 66 0 0 66 2322 1643 4 MP stroke
-264 264 0 -264 264 0 3577 3557 4 MP stroke
132 132 -132 0 0 -132 3973 3689 4 MP stroke
132 132 -132 0 0 -132 3973 3425 4 MP stroke
0 132 -66 -66 66 -66 3973 3557 4 MP stroke
33 33 -33 0 0 -33 4138 3392 4 MP stroke
-66 66 0 -66 66 0 4039 3491 4 MP stroke
132 132 -132 0 0 -132 4237 4217 4 MP stroke
0 132 -66 -66 66 -66 4237 4349 4 MP stroke
0 -33 17 16 -17 17 4402 4151 4 MP stroke
-33 33 0 -33 33 0 4336 4250 4 MP stroke
0 132 -66 -66 66 -66 1464 1841 4 MP stroke
132 0 -66 66 -66 -66 1728 1841 4 MP stroke
33 -33 0 33 -33 0 1563 1676 4 MP stroke
66 66 -66 0 0 -66 1662 1775 4 MP stroke
33 -33 0 33 -33 0 4468 4580 4 MP stroke
-33 0 16 -16 17 16 1926 1676 4 MP stroke
-132 0 66 -66 66 66 1860 1577 4 MP stroke
-66 0 33 -33 33 33 4369 4019 4 MP stroke
0 -132 66 66 -66 66 4501 3953 4 MP stroke
0 -33 17 16 -17 17 4171 3326 4 MP stroke
-33 0 17 -17 16 17 4171 3392 4 MP stroke
0 -66 33 33 -33 33 4369 3623 4 MP stroke
0 -33 17 16 -17 17 4270 3623 4 MP stroke
33 33 -33 0 0 -33 4402 4580 4 MP stroke
66 0 -33 33 -33 -33 4501 4547 4 MP stroke
132 -132 0 132 -132 0 2124 1841 4 MP stroke
132 132 -132 0 0 -132 1992 1973 4 MP stroke
33 0 -17 17 -16 -17 2058 1742 4 MP stroke
132 0 -66 66 -66 -66 2124 1841 4 MP stroke
0 66 -33 -33 33 -33 3312 2435 4 MP stroke
0 33 -17 -16 17 -17 3411 2435 4 MP stroke
-66 0 33 -33 33 33 2784 1907 4 MP stroke
0 -66 33 33 -33 33 2916 1907 4 MP stroke
0 33 -16 -17 16 -16 3841 2930 4 MP stroke
-33 -33 33 0 0 33 3940 2930 4 MP stroke
-66 0 33 -33 33 33 1992 1643 4 MP stroke
0 -66 33 33 -33 33 2124 1643 4 MP stroke
66 66 -66 0 0 -66 2850 2171 4 MP stroke
132 132 -132 0 0 -132 2784 2237 4 MP stroke
33 0 -17 17 -16 -17 2850 2006 4 MP stroke
0 66 -33 -33 33 -33 2850 2105 4 MP stroke
-33 0 16 -16 17 16 2718 1940 4 MP stroke
0 -66 33 33 -33 33 2718 1841 4 MP stroke
-528 528 0 -528 528 0 2520 3557 4 MP stroke
529 -528 0 528 -529 0 3577 3557 4 MP stroke
264 264 -264 0 0 -264 3312 3293 4 MP stroke
529 0 -264 264 -265 -264 3577 3557 4 MP stroke
264 -264 0 264 -264 0 3841 3293 4 MP stroke
265 264 -265 0 0 -264 3577 3557 4 MP stroke
132 132 -132 0 0 -132 3709 3161 4 MP stroke
264 0 -132 132 -132 -132 3841 3293 4 MP stroke
66 66 -66 0 0 -66 3907 3227 4 MP stroke
132 132 -132 0 0 -132 3841 3293 4 MP stroke
66 66 -66 0 0 -66 3907 3095 4 MP stroke
0 66 -33 -33 33 -33 3907 3161 4 MP stroke
0 -66 33 33 -33 33 4435 4085 4 MP stroke
-66 -66 66 0 0 66 4435 4151 4 MP stroke
33 33 -33 0 0 -33 3081 2204 4 MP stroke
-33 -33 33 0 0 33 3147 2138 4 MP stroke
-66 0 33 -33 33 33 4105 3227 4 MP stroke
0 -132 66 66 -66 66 4237 3161 4 MP stroke
0 -33 16 17 -16 16 2520 1808 4 MP stroke
0 -33 16 17 -16 16 2421 1775 4 MP stroke
0 66 -33 -33 33 -33 3577 2699 4 MP stroke
0 33 -16 -17 16 -16 3676 2699 4 MP stroke
0 -33 16 17 -16 16 1497 1643 4 MP stroke
-33 -33 33 0 0 33 1563 1610 4 MP stroke
0 -33 16 17 -16 16 1761 1643 4 MP stroke
-33 -33 33 0 0 33 1827 1610 4 MP stroke
0 -33 16 17 -16 16 2322 1742 4 MP stroke
33 -33 0 33 -33 0 2355 1808 4 MP stroke
0 33 -17 -16 17 -17 3279 2303 4 MP stroke
0 66 -33 -33 33 -33 3180 2303 4 MP stroke
0 66 -33 -33 33 -33 4105 3491 4 MP stroke
-33 -33 33 0 0 33 4204 3458 4 MP stroke
264 0 -132 132 -132 -132 4105 3821 4 MP stroke
0 264 -132 -132 132 -132 3841 3821 4 MP stroke
66 66 -66 0 0 -66 4171 3755 4 MP stroke
132 132 -132 0 0 -132 4105 3821 4 MP stroke
66 66 -66 0 0 -66 4171 3623 4 MP stroke
0 66 -33 -33 33 -33 4171 3689 4 MP stroke
-33 0 17 -17 16 17 4303 3788 4 MP stroke
33 0 -16 16 -17 -16 4303 3722 4 MP stroke
33 33 -33 0 0 -33 2553 1940 4 MP stroke
0 33 -17 -16 17 -17 2619 1907 4 MP stroke
0 33 -16 -17 16 -16 3808 2831 4 MP stroke
0 66 -33 -33 33 -33 3709 2831 4 MP stroke
33 33 -33 0 0 -33 4402 4316 4 MP stroke
0 -66 33 33 -33 33 4501 4283 4 MP stroke
33 -33 0 33 -33 0 1695 1676 4 MP stroke
0 -66 33 33 -33 33 1662 1577 4 MP stroke
0 -33 16 17 -16 16 3048 2072 4 MP stroke
0 -33 16 17 -16 16 2949 2039 4 MP stroke
0 -66 33 33 -33 33 4105 3095 4 MP stroke
0 -33 17 16 -17 17 4006 3095 4 MP stroke
33 0 -16 16 -17 -16 4435 4382 4 MP stroke
33 -33 0 33 -33 0 4468 4448 4 MP stroke
-33 -33 33 0 0 33 4336 3854 4 MP stroke
0 66 -33 -33 33 -33 4237 3887 4 MP stroke
0 33 -17 -16 17 -17 2223 1775 4 MP stroke
33 33 -33 0 0 -33 2157 1808 4 MP stroke
0 33 -17 -17 17 -16 3543 2567 4 MP stroke
0 66 -33 -33 33 -33 3444 2567 4 MP stroke
-264 0 132 -132 132 132 3577 2237 4 MP stroke
0 -264 132 132 -132 132 3841 2237 4 MP stroke
-67 -66 67 0 0 66 3510 2303 4 MP stroke
-132 -132 132 0 0 132 3577 2237 4 MP stroke
-33 0 16 -16 17 16 3510 2468 4 MP stroke
0 -66 33 33 -33 33 3510 2369 4 MP stroke
-265 0 133 -132 132 132 3312 1973 4 MP stroke
0 -264 133 132 -133 132 3577 1973 4 MP stroke
-132 132 0 -132 132 0 3180 2105 4 MP stroke
-132 -132 132 0 0 132 3312 1973 4 MP stroke
33 -33 0 33 -33 0 3279 2204 4 MP stroke
-132 0 66 -66 66 66 3180 2105 4 MP stroke
-264 0 132 -132 132 132 3841 2501 4 MP stroke
0 -264 132 132 -132 132 4105 2501 4 MP stroke
-66 -66 66 0 0 66 3775 2567 4 MP stroke
-132 -132 132 0 0 132 3841 2501 4 MP stroke
33 -33 0 33 -33 0 3808 2732 4 MP stroke
0 -66 33 33 -33 33 3775 2633 4 MP stroke
-132 132 0 -132 132 0 4105 4085 4 MP stroke
66 66 -66 0 0 -66 4303 4151 4 MP stroke
66 66 -66 0 0 -66 4303 4019 4 MP stroke
0 66 -33 -33 33 -33 4303 4085 4 MP stroke
66 -66 0 66 -66 0 3510 2303 4 MP stroke
-66 -66 66 0 0 66 3378 2171 4 MP stroke
-33 0 16 -16 17 16 3378 2336 4 MP stroke
0 -66 33 33 -33 33 3378 2237 4 MP stroke
132 -132 0 132 -132 0 4105 2765 4 MP stroke
-66 -66 66 0 0 66 3907 2699 4 MP stroke
-66 -66 66 0 0 66 3907 2831 4 MP stroke
0 -66 33 33 -33 33 3907 2765 4 MP stroke
528 -528 0 528 -528 0 3048 3029 4 MP stroke
528 528 -528 0 0 -528 2520 3557 4 MP stroke
-264 264 0 -264 264 0 2784 2765 4 MP stroke
528 0 -264 264 -264 -264 3048 3029 4 MP stroke
-264 264 0 -264 264 0 2520 2501 4 MP stroke
264 -264 0 264 -264 0 3048 2501 4 MP stroke
-132 132 0 -132 132 0 2916 2369 4 MP stroke
264 0 -132 132 -132 -132 3048 2501 4 MP stroke
132 0 -66 66 -66 -66 2916 2237 4 MP stroke
132 -132 0 132 -132 0 3048 2237 4 MP stroke
33 33 -33 0 0 -33 2949 2138 4 MP stroke
132 0 -66 66 -66 -66 3048 2237 4 MP stroke
-66 66 0 -66 66 0 3907 3227 4 MP stroke
66 66 -66 0 0 -66 4039 3359 4 MP stroke
-33 33 0 -33 33 0 4006 3194 4 MP stroke
0 66 -33 -33 33 -33 4039 3293 4 MP stroke
0 264 -132 -132 132 -132 2256 2237 4 MP stroke
-132 132 0 -132 132 0 2388 2105 4 MP stroke
132 0 -66 66 -66 -66 2388 1973 4 MP stroke
132 -132 0 132 -132 0 2520 1973 4 MP stroke
33 33 -33 0 0 -33 2421 1874 4 MP stroke
132 0 -66 66 -66 -66 2520 1973 4 MP stroke
66 -66 0 66 -66 0 3775 2567 4 MP stroke
-66 -66 66 0 0 66 3643 2435 4 MP stroke
-33 0 17 -17 16 17 3643 2600 4 MP stroke
0 -66 33 33 -33 33 3643 2501 4 MP stroke
-66 -66 66 0 0 66 1860 1577 4 MP stroke
-33 33 0 -33 33 0 1827 1676 4 MP stroke
0 33 -16 -17 16 -16 4270 3689 4 MP stroke
33 -33 0 33 -33 0 4336 3722 4 MP stroke
33 -33 0 33 -33 0 4468 4514 4 MP stroke
0 33 -16 -17 16 -16 4402 4481 4 MP stroke
66 66 -66 0 0 -66 2124 1841 4 MP stroke
33 -33 0 33 -33 0 2157 1742 4 MP stroke
0 -33 16 17 -16 16 3411 2369 4 MP stroke
0 33 -17 -16 17 -17 3345 2369 4 MP stroke
-66 0 33 -33 33 33 3907 2897 4 MP stroke
-33 -33 33 0 0 33 3874 2864 4 MP stroke
33 33 -33 0 0 -33 2883 2072 4 MP stroke
-33 0 16 -16 17 16 2916 2006 4 MP stroke
-33 0 16 -16 17 16 2652 1874 4 MP stroke
33 33 -33 0 0 -33 2619 1940 4 MP stroke
-33 33 0 -33 33 0 3940 3128 4 MP stroke
-33 0 17 -17 16 17 3973 3062 4 MP stroke
0 -264 132 132 -132 132 3312 1709 4 MP stroke
132 -132 0 132 -132 0 3180 1841 4 MP stroke
132 -132 0 132 -132 0 3312 1973 4 MP stroke
-132 132 0 -132 132 0 3048 1973 4 MP stroke
-66 0 33 -33 33 33 3048 2039 4 MP stroke
-132 0 66 -66 66 66 3048 1973 4 MP stroke
-66 0 33 -33 33 33 3114 2105 4 MP stroke
-33 -33 33 0 0 33 3081 2072 4 MP stroke
0 33 -17 -16 17 -17 2421 1841 4 MP stroke
33 33 -33 0 0 -33 2487 1874 4 MP stroke
0 -33 17 16 -17 17 3676 2633 4 MP stroke
0 33 -16 -17 16 -16 3610 2633 4 MP stroke
33 0 -17 17 -16 -17 2388 1808 4 MP stroke
-33 -33 33 0 0 33 2421 1742 4 MP stroke
0 -33 17 16 -17 17 4204 3425 4 MP stroke
0 33 -16 -17 16 -16 4138 3425 4 MP stroke
-33 33 0 -33 33 0 4204 3656 4 MP stroke
-33 0 17 -17 16 17 4237 3590 4 MP stroke
132 0 -66 66 -66 -66 4237 3821 4 MP stroke
0 132 -66 -66 66 -66 4105 3821 4 MP stroke
0 66 -33 -33 33 -33 4237 3755 4 MP stroke
66 66 -66 0 0 -66 4237 3821 4 MP stroke
0 -528 264 264 -264 264 3048 917 4 MP stroke
0 528 -264 -264 264 -264 2520 1445 4 MP stroke
264 -264 0 264 -264 0 3048 1445 4 MP stroke
-264 264 0 -264 264 0 2520 1445 4 MP stroke
132 -132 0 132 -132 0 2652 1577 4 MP stroke
-264 0 132 -132 132 132 2520 1445 4 MP stroke
-132 0 66 -66 66 66 2652 1709 4 MP stroke
-132 132 0 -132 132 0 2520 1709 4 MP stroke
-66 0 33 -33 33 33 2520 1775 4 MP stroke
-132 0 66 -66 66 66 2520 1709 4 MP stroke
-66 0 33 -33 33 33 2586 1841 4 MP stroke
-33 -33 33 0 0 33 2553 1808 4 MP stroke
33 -33 0 33 -33 0 4468 4250 4 MP stroke
-33 -33 33 0 0 33 4402 4184 4 MP stroke
-33 -33 33 0 0 33 1629 1610 4 MP stroke
33 0 -17 17 -16 -17 1596 1676 4 MP stroke
0 33 -17 -16 17 -17 2949 2105 4 MP stroke
33 33 -33 0 0 -33 3015 2138 4 MP stroke
0 33 -16 -17 16 -16 4006 3161 4 MP stroke
0 -33 17 16 -17 17 4072 3161 4 MP stroke
-33 33 0 -33 33 0 4270 3920 4 MP stroke
33 33 -33 0 0 -33 4336 3986 4 MP stroke
-33 0 16 -16 17 16 3444 2402 4 MP stroke
-33 33 0 -33 33 0 3411 2468 4 MP stroke
-66 -66 66 0 0 66 3180 2105 4 MP stroke
33 0 -17 17 -16 -17 3180 2204 4 MP stroke
-33 0 17 -17 16 17 3709 2666 4 MP stroke
-33 33 0 -33 33 0 3676 2732 4 MP stroke
132 -132 0 132 -132 0 1860 1841 4 MP stroke
132 132 -132 0 0 -132 1728 1973 4 MP stroke
66 0 -33 33 -33 -33 1860 1775 4 MP stroke
132 0 -66 66 -66 -66 1860 1841 4 MP stroke
66 0 -33 33 -33 -33 1794 1709 4 MP stroke
33 33 -33 0 0 -33 1827 1742 4 MP stroke
33 0 -16 16 -17 -16 4369 4052 4 MP stroke
33 -33 0 33 -33 0 4402 3986 4 MP stroke
-33 0 16 -16 17 16 2256 1742 4 MP stroke
33 33 -33 0 0 -33 2223 1808 4 MP stroke
0 -33 16 17 -16 16 3279 2237 4 MP stroke
0 33 -17 -16 17 -17 3213 2237 4 MP stroke
-33 -33 33 0 0 33 4138 3260 4 MP stroke
33 -33 0 33 -33 0 4204 3326 4 MP stroke
0 -33 17 16 -17 17 3808 2765 4 MP stroke
0 33 -16 -17 16 -16 3742 2765 4 MP stroke
0 33 -16 -17 16 -16 4402 4349 4 MP stroke
33 -33 0 33 -33 0 4468 4382 4 MP stroke
33 0 -17 17 -16 -17 1728 1676 4 MP stroke
-33 -33 33 0 0 33 1761 1610 4 MP stroke
132 132 -132 0 0 -132 4237 4481 4 MP stroke
-132 132 0 -132 132 0 4105 4349 4 MP stroke
132 0 -66 66 -66 -66 4369 4481 4 MP stroke
0 132 -66 -66 66 -66 4237 4481 4 MP stroke
0 66 -33 -33 33 -33 4369 4415 4 MP stroke
66 66 -66 0 0 -66 4369 4481 4 MP stroke
0 -33 17 16 -17 17 4336 3821 4 MP stroke
66 0 -33 33 -33 -33 4303 3821 4 MP stroke
-132 132 0 -132 132 0 2124 1577 4 MP stroke
-132 -132 132 0 0 132 2256 1445 4 MP stroke
-66 0 33 -33 33 33 2124 1643 4 MP stroke
-132 0 66 -66 66 66 2124 1577 4 MP stroke
-66 0 33 -33 33 33 2190 1709 4 MP stroke
-33 -33 33 0 0 33 2157 1676 4 MP stroke
-33 -33 33 0 0 33 2025 1676 4 MP stroke
0 -33 16 17 -16 16 2091 1709 4 MP stroke
-33 -33 33 0 0 33 3345 2270 4 MP stroke
33 0 -17 17 -16 -17 3312 2336 4 MP stroke
-33 33 0 -33 33 0 2751 1940 4 MP stroke
-66 -66 66 0 0 66 2784 1841 4 MP stroke
33 -33 0 33 -33 0 3874 2798 4 MP stroke
33 0 -16 16 -17 -16 3841 2864 4 MP stroke
-33 33 0 -33 33 0 1959 1676 4 MP stroke
-66 -66 66 0 0 66 1992 1577 4 MP stroke
-33 -33 33 0 0 33 2817 1940 4 MP stroke
0 -33 16 17 -16 16 2883 1973 4 MP stroke
-33 33 0 -33 33 0 3874 2996 4 MP stroke
33 33 -33 0 0 -33 3940 3062 4 MP stroke
-33 -33 33 0 0 33 4402 4052 4 MP stroke
66 -66 0 66 -66 0 4501 4085 4 MP stroke
66 66 -66 0 0 -66 3048 2237 4 MP stroke
33 -33 0 33 -33 0 3081 2138 4 MP stroke
33 0 -16 16 -17 -16 4105 3260 4 MP stroke
33 -33 0 33 -33 0 4138 3194 4 MP stroke
-33 33 0 -33 33 0 4138 3524 4 MP stroke
33 33 -33 0 0 -33 4204 3590 4 MP stroke
66 66 -66 0 0 -66 2520 1973 4 MP stroke
33 -33 0 33 -33 0 2553 1874 4 MP stroke
-33 0 17 -17 16 17 3577 2534 4 MP stroke
-34 33 0 -33 34 0 3543 2600 4 MP stroke
0 -33 16 16 -16 17 3543 2501 4 MP stroke
0 33 -17 -16 17 -17 3477 2501 4 MP stroke
132 0 -66 66 -66 -66 4105 3425 4 MP stroke
0 132 -66 -66 66 -66 3973 3425 4 MP stroke
-33 0 17 -17 16 17 4105 3326 4 MP stroke
66 66 -66 0 0 -66 4105 3425 4 MP stroke
0 66 -33 -33 33 -33 4303 4217 4 MP stroke
0 132 -66 -66 66 -66 4237 4217 4 MP stroke
-33 0 17 -17 16 17 4369 4118 4 MP stroke
-33 33 0 -33 33 0 4336 4184 4 MP stroke
132 -132 0 132 -132 0 1596 1841 4 MP stroke
0 -132 66 66 -66 66 1596 1709 4 MP stroke
132 0 -66 66 -66 -66 1596 1841 4 MP stroke
66 0 -33 33 -33 -33 1530 1709 4 MP stroke
66 -66 0 66 -66 0 1596 1709 4 MP stroke
0 33 -16 -17 16 -16 4402 4613 4 MP stroke
0 66 -33 -33 33 -33 1860 1775 4 MP stroke
66 0 -33 33 -33 -33 1992 1775 4 MP stroke
0 33 -17 -16 17 -17 1893 1709 4 MP stroke
33 33 -33 0 0 -33 1959 1742 4 MP stroke
-132 132 0 -132 132 0 4105 4613 4 MP stroke
-132 0 66 -66 66 66 4237 4481 4 MP stroke
132 0 -66 66 -66 -66 4369 4613 4 MP stroke
0 66 -33 -33 33 -33 4369 4547 4 MP stroke
66 66 -66 0 0 -66 4369 4613 4 MP stroke
-264 0 132 -132 132 132 4105 2765 4 MP stroke
0 -264 132 132 -132 132 4369 2765 4 MP stroke
-132 132 0 -132 132 0 3973 2897 4 MP stroke
-132 -132 132 0 0 132 4105 2765 4 MP stroke
-66 -66 66 0 0 66 4039 2963 4 MP stroke
-132 0 66 -66 66 66 3973 2897 4 MP stroke
33 0 -16 16 -17 -16 3973 2996 4 MP stroke
-66 -66 66 0 0 66 3973 2897 4 MP stroke
0 132 -66 -66 66 -66 2652 2105 4 MP stroke
66 0 -33 33 -33 -33 2784 2039 4 MP stroke
66 0 -33 33 -33 -33 2718 1973 4 MP stroke
33 33 -33 0 0 -33 2751 2006 4 MP stroke
-33 -33 33 0 0 33 1497 1610 4 MP stroke
0 132 -66 -66 66 -66 2256 1973 4 MP stroke
-66 66 0 -66 66 0 2322 1907 4 MP stroke
66 0 -33 33 -33 -33 2322 1841 4 MP stroke
66 -66 0 66 -66 0 2388 1841 4 MP stroke
-528 0 264 -264 264 264 4633 3029 4 MP stroke
0 -528 264 264 -264 264 5161 3029 4 MP stroke
-264 264 0 -264 264 0 4369 3293 4 MP stroke
-264 -264 264 0 0 264 4633 3029 4 MP stroke
-132 -132 132 0 0 132 4501 3425 4 MP stroke
-264 0 132 -132 132 132 4369 3293 4 MP stroke
132 0 -66 66 -66 -66 4369 3425 4 MP stroke
-132 -132 132 0 0 132 4369 3293 4 MP stroke
-66 -66 66 0 0 66 4303 3491 4 MP stroke
-132 0 66 -66 66 66 4237 3425 4 MP stroke
33 0 -16 16 -17 -16 4237 3524 4 MP stroke
-66 -66 66 0 0 66 4237 3425 4 MP stroke
-66 0 33 -33 33 33 4303 4217 4 MP stroke
132 0 -66 66 -66 -66 4369 4349 4 MP stroke
-33 0 17 -17 16 17 4369 4250 4 MP stroke
66 66 -66 0 0 -66 4369 4349 4 MP stroke
0 132 -66 -66 66 -66 1596 1841 4 MP stroke
0 -132 66 66 -66 66 1728 1709 4 MP stroke
66 0 -33 33 -33 -33 1662 1709 4 MP stroke
66 -66 0 66 -66 0 1728 1709 4 MP stroke
132 -132 0 132 -132 0 4633 3821 4 MP stroke
132 0 -66 66 -66 -66 4501 3821 4 MP stroke
66 0 -33 33 -33 -33 4435 3953 4 MP stroke
-132 0 66 -66 66 66 4369 3821 4 MP stroke
33 0 -16 16 -17 -16 4369 3920 4 MP stroke
-66 -66 66 0 0 66 4369 3821 4 MP stroke
-33 0 16 -16 17 16 1860 1676 4 MP stroke
-33 33 0 -33 33 0 1893 1676 4 MP stroke
33 33 -33 0 0 -33 4402 4514 4 MP stroke
0 33 -16 -17 16 -16 4402 4547 4 MP stroke
33 0 -17 17 -16 -17 2124 1742 4 MP stroke
33 -33 0 33 -33 0 2091 1742 4 MP stroke
-132 132 0 -132 132 0 3577 3029 4 MP stroke
132 -132 0 132 -132 0 3841 3029 4 MP stroke
66 66 -66 0 0 -66 3775 2963 4 MP stroke
132 0 -66 66 -66 -66 3841 3029 4 MP stroke
33 33 -33 0 0 -33 3874 2996 4 MP stroke
66 66 -66 0 0 -66 3841 3029 4 MP stroke
0 -33 17 16 -17 17 3874 2897 4 MP stroke
0 33 -16 -17 16 -16 3874 2963 4 MP stroke
-33 33 0 -33 33 0 2883 2006 4 MP stroke
-33 0 16 -16 17 16 2850 2006 4 MP stroke
0 33 -17 -16 17 -17 2652 1940 4 MP stroke
33 0 -17 17 -16 -17 2718 1940 4 MP stroke
33 0 -16 16 -17 -16 3973 3062 4 MP stroke
0 66 -33 -33 33 -33 3907 3095 4 MP stroke
0 -33 16 17 -16 16 3081 2105 4 MP stroke
0 33 -17 -16 17 -17 3081 2171 4 MP stroke
-66 66 0 -66 66 0 2454 1775 4 MP stroke
-66 -66 66 0 0 66 2520 1709 4 MP stroke
0 33 -17 -16 17 -17 2487 1841 4 MP stroke
-66 0 33 -33 33 33 2454 1775 4 MP stroke
33 0 -16 16 -17 -16 4237 3590 4 MP stroke
0 66 -33 -33 33 -33 4171 3623 4 MP stroke
0 66 -33 -33 33 -33 4237 3821 4 MP stroke
33 0 -16 16 -17 -16 4303 3788 4 MP stroke
0 -33 16 17 -16 16 2553 1841 4 MP stroke
0 33 -17 -16 17 -17 2553 1907 4 MP stroke
0 -33 17 16 -17 17 4402 4217 4 MP stroke
0 33 -16 -17 16 -16 4402 4283 4 MP stroke
33 -33 0 33 -33 0 1629 1676 4 MP stroke
33 0 -17 17 -16 -17 1662 1676 4 MP stroke
-66 66 0 -66 66 0 2982 2039 4 MP stroke
-66 -66 66 0 0 66 3048 1973 4 MP stroke
0 33 -17 -16 17 -17 3015 2105 4 MP stroke
-66 0 33 -33 33 33 2982 2039 4 MP stroke
132 -132 0 132 -132 0 4369 3029 4 MP stroke
-132 132 0 -132 132 0 4105 3029 4 MP stroke
-66 -66 66 0 0 66 4171 3095 4 MP stroke
-132 0 66 -66 66 66 4105 3029 4 MP stroke
-66 66 0 -66 66 0 4039 3095 4 MP stroke
-66 -66 66 0 0 66 4105 3029 4 MP stroke
-33 -33 33 0 0 33 4072 3128 4 MP stroke
-66 0 33 -33 33 33 4039 3095 4 MP stroke
0 33 -16 -17 16 -16 4336 3953 4 MP stroke
0 -33 17 16 -17 17 4336 3887 4 MP stroke
0 33 -17 -16 17 -17 3444 2468 4 MP stroke
33 0 -17 17 -16 -17 3510 2468 4 MP stroke
-33 0 16 -16 17 16 3180 2204 4 MP stroke
0 -33 16 17 -16 16 3246 2204 4 MP stroke
0 33 -16 -17 16 -16 3709 2732 4 MP stroke
33 0 -16 16 -17 -16 3775 2732 4 MP stroke
0 33 -17 -16 17 -17 1827 1709 4 MP stroke
0 -33 16 17 -16 16 1827 1643 4 MP stroke
33 0 -16 16 -17 -16 4369 3986 4 MP stroke
0 66 -33 -33 33 -33 4303 4019 4 MP stroke
0 66 -33 -33 33 -33 2256 1841 4 MP stroke
33 0 -17 17 -16 -17 2322 1808 4 MP stroke
132 -132 0 132 -132 0 3180 2369 4 MP stroke
132 132 -132 0 0 -132 3048 2501 4 MP stroke
66 66 -66 0 0 -66 3114 2303 4 MP stroke
132 0 -66 66 -66 -66 3180 2369 4 MP stroke
66 -66 0 66 -66 0 3246 2303 4 MP stroke
66 66 -66 0 0 -66 3180 2369 4 MP stroke
33 33 -33 0 0 -33 3213 2270 4 MP stroke
66 0 -33 33 -33 -33 3246 2303 4 MP stroke
-264 264 0 -264 264 0 3048 3029 4 MP stroke
265 -264 0 264 -265 0 3577 3029 4 MP stroke
132 132 -132 0 0 -132 3444 2897 4 MP stroke
265 0 -132 132 -133 -132 3577 3029 4 MP stroke
132 -132 0 132 -132 0 3709 2897 4 MP stroke
133 132 -133 0 0 -132 3577 3029 4 MP stroke
66 66 -66 0 0 -66 3643 2831 4 MP stroke
132 0 -66 66 -66 -66 3709 2897 4 MP stroke
66 -66 0 66 -66 0 3775 2831 4 MP stroke
66 66 -66 0 0 -66 3709 2897 4 MP stroke
33 33 -33 0 0 -33 3742 2798 4 MP stroke
66 0 -33 33 -33 -33 3775 2831 4 MP stroke
0 66 -33 -33 33 -33 4369 4481 4 MP stroke
33 0 -16 16 -17 -16 4435 4448 4 MP stroke
0 -33 16 17 -16 16 2157 1709 4 MP stroke
0 33 -17 -16 17 -17 2157 1775 4 MP stroke
33 -33 0 33 -33 0 3345 2336 4 MP stroke
33 0 -17 17 -16 -17 3378 2336 4 MP stroke
-33 0 17 -17 16 17 3841 2864 4 MP stroke
0 -66 33 33 -33 33 3907 2831 4 MP stroke
0 33 -16 -17 16 -16 3940 3029 4 MP stroke
0 -33 17 16 -17 17 3940 2963 4 MP stroke
33 0 -17 17 -16 -17 3048 2138 4 MP stroke
0 66 -33 -33 33 -33 2982 2171 4 MP stroke
0 -33 17 16 -17 17 4105 3194 4 MP stroke
-33 0 17 -17 16 17 4039 3194 4 MP stroke
0 33 -16 -17 16 -16 4204 3557 4 MP stroke
0 -33 17 16 -17 17 4204 3491 4 MP stroke
33 0 -17 17 -16 -17 2520 1874 4 MP stroke
0 66 -33 -33 33 -33 2454 1907 4 MP stroke
0 33 -16 -17 16 -16 3577 2600 4 MP stroke
33 0 -16 16 -17 -16 3643 2600 4 MP stroke
0 66 -33 -33 33 -33 4105 3425 4 MP stroke
33 0 -16 16 -17 -16 4171 3392 4 MP stroke
-33 0 17 -17 16 17 4369 4184 4 MP stroke
0 -66 33 33 -33 33 4435 4151 4 MP stroke
66 0 -33 33 -33 -33 1596 1709 4 MP stroke
0 -33 16 17 -16 16 1563 1643 4 MP stroke
0 33 -17 -16 17 -17 1959 1709 4 MP stroke
-66 0 33 -33 33 33 1926 1643 4 MP stroke
-33 0 17 -17 16 17 4369 4052 4 MP stroke
0 -66 33 33 -33 33 4435 4019 4 MP stroke
0 -33 17 16 -17 17 4138 3293 4 MP stroke
0 33 -16 -17 16 -16 4138 3359 4 MP stroke
-132 0 66 -66 66 66 4237 3293 4 MP stroke
0 -132 66 66 -66 66 4369 3293 4 MP stroke
66 0 -33 33 -33 -33 4237 3359 4 MP stroke
-66 -66 66 0 0 66 4237 3293 4 MP stroke
-33 -33 33 0 0 33 4204 3392 4 MP stroke
-66 0 33 -33 33 33 4171 3359 4 MP stroke
-33 0 17 -17 16 17 4237 3656 4 MP stroke
0 -33 17 16 -17 17 4303 3656 4 MP stroke
0 66 -33 -33 33 -33 4369 4613 4 MP stroke
33 0 -16 16 -17 -16 4435 4580 4 MP stroke
66 -66 0 66 -66 0 2058 1775 4 MP stroke
66 66 -66 0 0 -66 1992 1841 4 MP stroke
0 -33 16 17 -16 16 2025 1709 4 MP stroke
66 0 -33 33 -33 -33 2058 1775 4 MP stroke
33 0 -17 17 -16 -17 3444 2402 4 MP stroke
0 33 -17 -16 17 -17 3378 2402 4 MP stroke
-33 0 16 -16 17 16 2784 1940 4 MP stroke
0 -66 33 33 -33 33 2850 1907 4 MP stroke
0 -66 33 33 -33 33 3973 2897 4 MP stroke
-33 0 17 -17 16 17 3907 2930 4 MP stroke
-33 0 16 -16 17 16 1992 1676 4 MP stroke
0 -66 33 33 -33 33 2058 1643 4 MP stroke
66 -66 0 66 -66 0 2850 2039 4 MP stroke
66 66 -66 0 0 -66 2784 2105 4 MP stroke
0 -33 16 17 -16 16 2817 1973 4 MP stroke
66 0 -33 33 -33 -33 2850 2039 4 MP stroke
0 33 -17 -16 17 -17 2751 1973 4 MP stroke
0 -33 16 17 -16 16 2751 1907 4 MP stroke
0 -33 17 16 -17 17 4402 4085 4 MP stroke
-33 -33 33 0 0 33 4402 4118 4 MP stroke
0 -66 33 33 -33 33 3180 2105 4 MP stroke
-33 0 16 -16 17 16 3114 2138 4 MP stroke
-33 0 17 -17 16 17 4105 3260 4 MP stroke
0 -66 33 33 -33 33 4171 3227 4 MP stroke
-33 0 16 -16 17 16 2388 1808 4 MP stroke
-33 33 0 -33 33 0 2421 1808 4 MP stroke
33 0 -16 16 -17 -16 3709 2666 4 MP stroke
0 33 -16 -17 16 -16 3643 2666 4 MP stroke
33 -33 0 33 -33 0 1497 1676 4 MP stroke
33 0 -17 17 -16 -17 1530 1676 4 MP stroke
33 -33 0 33 -33 0 1761 1676 4 MP stroke
33 0 -17 17 -16 -17 1794 1676 4 MP stroke
66 0 -33 33 -33 -33 2388 1841 4 MP stroke
0 -33 16 17 -16 16 2355 1775 4 MP stroke
0 -33 16 17 -16 16 3312 2270 4 MP stroke
-33 0 16 -16 17 16 3246 2270 4 MP stroke
0 -66 33 33 -33 33 4237 3425 4 MP stroke
-33 0 17 -17 16 17 4171 3458 4 MP stroke
-132 0 66 -66 66 66 4369 3689 4 MP stroke
0 -132 66 66 -66 66 4501 3689 4 MP stroke
-33 -33 33 0 0 33 4336 3722 4 MP stroke
-66 -66 66 0 0 66 4369 3689 4 MP stroke
-33 -33 33 0 0 33 4336 3788 4 MP stroke
0 -33 17 16 -17 17 4336 3755 4 MP stroke
33 33 -33 0 0 -33 4270 3722 4 MP stroke
0 33 -16 -17 16 -16 4270 3755 4 MP stroke
-33 33 0 -33 33 0 2619 1874 4 MP stroke
-33 0 16 -16 17 16 2586 1874 4 MP stroke
0 -33 17 16 -17 17 3841 2798 4 MP stroke
-33 0 17 -17 16 17 3775 2798 4 MP stroke
0 66 -33 -33 33 -33 4369 4349 4 MP stroke
33 0 -16 16 -17 -16 4435 4316 4 MP stroke
66 0 -33 33 -33 -33 1728 1709 4 MP stroke
0 -33 16 17 -16 16 1695 1643 4 MP stroke
0 33 -17 -16 17 -17 2916 2072 4 MP stroke
33 0 -17 17 -16 -17 2982 2072 4 MP stroke
0 33 -16 -17 16 -16 3973 3128 4 MP stroke
33 0 -16 16 -17 -16 4039 3128 4 MP stroke
33 33 -33 0 0 -33 4402 4382 4 MP stroke
0 33 -16 -17 16 -16 4402 4415 4 MP stroke
0 -66 33 33 -33 33 4369 3821 4 MP stroke
-33 0 17 -17 16 17 4303 3854 4 MP stroke
-33 33 0 -33 33 0 2223 1742 4 MP stroke
-33 0 16 -16 17 16 2190 1742 4 MP stroke
34 0 -17 16 -17 -16 3577 2534 4 MP stroke
0 33 -17 -17 17 -16 3510 2534 4 MP stroke
-132 0 66 -66 66 66 3577 2369 4 MP stroke
0 -132 66 66 -66 66 3709 2369 4 MP stroke
-67 66 0 -66 67 0 3510 2435 4 MP stroke
-66 -66 66 0 0 66 3577 2369 4 MP stroke
-34 -33 34 0 0 33 3543 2468 4 MP stroke
-67 0 34 -33 33 33 3510 2435 4 MP stroke
-133 0 67 -66 66 66 3444 2237 4 MP stroke
0 -132 67 66 -67 66 3577 2237 4 MP stroke
-66 66 0 -66 66 0 3378 2303 4 MP stroke
-66 -66 66 0 0 66 3444 2237 4 MP stroke
-33 -33 33 0 0 33 3411 2336 4 MP stroke
-66 0 33 -33 33 33 3378 2303 4 MP stroke
-132 0 66 -66 66 66 3709 2501 4 MP stroke
0 -132 66 66 -66 66 3841 2501 4 MP stroke
-66 66 0 -66 66 0 3643 2567 4 MP stroke
-66 -66 66 0 0 66 3709 2501 4 MP stroke
-33 -33 33 0 0 33 3676 2600 4 MP stroke
-66 0 33 -33 33 33 3643 2567 4 MP stroke
-132 132 0 -132 132 0 2916 1841 4 MP stroke
-132 -132 132 0 0 132 3048 1709 4 MP stroke
66 -66 0 66 -66 0 2982 1907 4 MP stroke
-132 0 66 -66 66 66 2916 1841 4 MP stroke
66 -66 0 66 -66 0 3048 1973 4 MP stroke
-66 66 0 -66 66 0 2916 1973 4 MP stroke
-33 -33 33 0 0 33 2949 2006 4 MP stroke
-66 0 33 -33 33 33 2916 1973 4 MP stroke
0 -132 66 66 -66 66 2784 1709 4 MP stroke
0 132 -66 -66 66 -66 2652 1841 4 MP stroke
-66 0 33 -33 33 33 2718 1841 4 MP stroke
-66 66 0 -66 66 0 2652 1841 4 MP stroke
-33 -33 33 0 0 33 2685 1874 4 MP stroke
-66 0 33 -33 33 33 2652 1841 4 MP stroke
66 -66 0 66 -66 0 4105 3029 4 MP stroke
-33 -33 33 0 0 33 4006 2996 4 MP stroke
-33 -33 33 0 0 33 4006 3062 4 MP stroke
0 -33 17 16 -17 17 4006 3029 4 MP stroke
66 -66 0 66 -66 0 4369 3557 4 MP stroke
-33 -33 33 0 0 33 4270 3524 4 MP stroke
-33 -33 33 0 0 33 4270 3590 4 MP stroke
0 -33 17 16 -17 17 4270 3557 4 MP stroke
67 -66 0 66 -67 0 3577 2369 4 MP stroke
-66 66 0 -66 66 0 3444 2369 4 MP stroke
-33 -33 33 0 0 33 3477 2402 4 MP stroke
-66 0 33 -33 33 33 3444 2369 4 MP stroke
-33 33 0 -33 33 0 3081 2204 4 MP stroke
33 33 -33 0 0 -33 3147 2270 4 MP stroke
0 -33 16 17 -16 16 3147 2171 4 MP stroke
0 33 -17 -16 17 -17 3147 2237 4 MP stroke
66 -66 0 66 -66 0 3841 2633 4 MP stroke
-66 66 0 -66 66 0 3709 2633 4 MP stroke
-33 -33 33 0 0 33 3742 2666 4 MP stroke
-66 0 33 -33 33 33 3709 2633 4 MP stroke
-66 66 0 -66 66 0 4237 4085 4 MP stroke
33 33 -33 0 0 -33 4336 4118 4 MP stroke
33 33 -33 0 0 -33 4336 4052 4 MP stroke
0 33 -16 -17 16 -16 4336 4085 4 MP stroke
0 -132 66 66 -66 66 2388 1577 4 MP stroke
0 132 -66 -66 66 -66 2256 1709 4 MP stroke
-66 0 33 -33 33 33 2322 1709 4 MP stroke
-66 66 0 -66 66 0 2256 1709 4 MP stroke
0 33 -17 -16 17 -17 2289 1775 4 MP stroke
-66 0 33 -33 33 33 2256 1709 4 MP stroke
264 -264 0 264 -264 0 3312 2765 4 MP stroke
264 264 -264 0 0 -264 3048 3029 4 MP stroke
-132 132 0 -132 132 0 3180 2633 4 MP stroke
264 0 -132 132 -132 -132 3312 2765 4 MP stroke
-132 132 0 -132 132 0 3048 2501 4 MP stroke
132 -132 0 132 -132 0 3312 2501 4 MP stroke
-66 66 0 -66 66 0 3246 2435 4 MP stroke
132 0 -66 66 -66 -66 3312 2501 4 MP stroke
-66 66 0 -66 66 0 3180 2369 4 MP stroke
66 -66 0 66 -66 0 3312 2369 4 MP stroke
33 33 -33 0 0 -33 3279 2336 4 MP stroke
66 0 -33 33 -33 -33 3312 2369 4 MP stroke
-66 66 0 -66 66 0 3709 2897 4 MP stroke
-66 0 33 -33 33 33 3775 2897 4 MP stroke
33 33 -33 0 0 -33 3808 2864 4 MP stroke
66 0 -33 33 -33 -33 3841 2897 4 MP stroke
-66 66 0 -66 66 0 3973 3293 4 MP stroke
33 33 -33 0 0 -33 4072 3326 4 MP stroke
33 33 -33 0 0 -33 4072 3260 4 MP stroke
0 33 -16 -17 16 -16 4072 3293 4 MP stroke
66 -66 0 66 -66 0 3709 2501 4 MP stroke
-66 66 0 -66 66 0 3577 2501 4 MP stroke
-33 -33 33 0 0 33 3610 2534 4 MP stroke
-66 0 33 -33 33 33 3577 2501 4 MP stroke
-264 -264 264 0 0 264 4897 4349 4 MP stroke
-264 0 132 -132 132 132 4633 4349 4 MP stroke
0 -264 132 132 -132 132 4897 4349 4 MP stroke
132 0 -66 66 -66 -66 4633 4481 4 MP stroke
-132 -132 132 0 0 132 4633 4349 4 MP stroke
132 0 -66 66 -66 -66 4633 4613 4 MP stroke
-132 0 66 -66 66 66 4501 4481 4 MP stroke
0 -66 33 33 -33 33 4501 4547 4 MP stroke
-66 -66 66 0 0 66 4501 4481 4 MP stroke
-66 0 33 -33 33 33 4435 4481 4 MP stroke
0 -66 33 33 -33 33 4501 4481 4 MP stroke
0 -33 17 16 -17 17 4435 4514 4 MP stroke
-33 -33 33 0 0 33 4435 4481 4 MP stroke
0 -33 17 16 -17 17 3907 2930 4 MP stroke
-33 -33 33 0 0 33 3907 2897 4 MP stroke
0 132 -66 -66 66 -66 2784 2237 4 MP stroke
-66 66 0 -66 66 0 2850 2171 4 MP stroke
-66 66 0 -66 66 0 2784 2105 4 MP stroke
66 -66 0 66 -66 0 2916 2105 4 MP stroke
-33 33 0 -33 33 0 2883 2072 4 MP stroke
66 0 -33 33 -33 -33 2916 2105 4 MP stroke
33 0 -17 17 -16 -17 2883 2039 4 MP stroke
33 -33 0 33 -33 0 2916 2039 4 MP stroke
-33 0 16 -16 17 16 2685 1907 4 MP stroke
33 0 -17 17 -16 -17 2685 1907 4 MP stroke
0 -33 16 17 -16 16 3114 2138 4 MP stroke
-33 -33 33 0 0 33 3114 2105 4 MP stroke
-33 -33 33 0 0 33 2454 1775 4 MP stroke
0 -33 16 17 -16 16 2454 1808 4 MP stroke
-33 0 17 -17 16 17 4270 3755 4 MP stroke
-33 33 0 -33 33 0 4237 3755 4 MP stroke
0 -33 16 17 -16 16 2586 1874 4 MP stroke
-33 -33 33 0 0 33 2586 1841 4 MP stroke
-264 -264 264 0 0 264 1464 917 4 MP stroke
0 -264 132 132 -132 132 1728 1181 4 MP stroke
0 264 -132 -132 132 -132 1464 1445 4 MP stroke
0 -132 66 66 -66 66 1596 1445 4 MP stroke
-132 132 0 -132 132 0 1464 1445 4 MP stroke
0 -132 66 66 -66 66 1728 1445 4 MP stroke
0 132 -66 -66 66 -66 1596 1577 4 MP stroke
-66 0 33 -33 33 33 1662 1577 4 MP stroke
-66 66 0 -66 66 0 1596 1577 4 MP stroke
0 66 -33 -33 33 -33 1596 1643 4 MP stroke
-66 0 33 -33 33 33 1596 1577 4 MP stroke
-33 0 16 -16 17 16 1629 1643 4 MP stroke
-33 33 0 -33 33 0 1596 1643 4 MP stroke
-33 -33 33 0 0 33 2982 2039 4 MP stroke
0 -33 16 17 -16 16 2982 2072 4 MP stroke
-33 -33 33 0 0 33 4039 3095 4 MP stroke
0 -33 17 16 -17 17 4039 3128 4 MP stroke
-33 0 16 -16 17 16 3477 2435 4 MP stroke
33 0 -17 17 -16 -17 3477 2435 4 MP stroke
-33 0 17 -17 16 17 3742 2699 4 MP stroke
33 0 -16 16 -17 -16 3742 2699 4 MP stroke
0 33 -17 -16 17 -17 1794 1676 4 MP stroke
33 33 -33 0 0 -33 1794 1709 4 MP stroke
-33 33 0 -33 33 0 4303 4019 4 MP stroke
-33 0 17 -17 16 17 4336 4019 4 MP stroke
-33 0 16 -16 17 16 2289 1775 4 MP stroke
33 0 -17 17 -16 -17 2289 1775 4 MP stroke
33 33 -33 0 0 -33 3246 2303 4 MP stroke
0 33 -17 -16 17 -17 3246 2270 4 MP stroke
33 33 -33 0 0 -33 3775 2831 4 MP stroke
0 33 -16 -17 16 -16 3775 2798 4 MP stroke
-33 0 17 -17 16 17 4402 4415 4 MP stroke
-33 33 0 -33 33 0 4369 4415 4 MP stroke
0 -33 16 17 -16 16 2190 1742 4 MP stroke
-33 -33 33 0 0 33 2190 1709 4 MP stroke
0 -132 66 66 -66 66 3444 2105 4 MP stroke
66 -66 0 66 -66 0 3378 2171 4 MP stroke
66 -66 0 66 -66 0 3444 2237 4 MP stroke
-66 66 0 -66 66 0 3312 2237 4 MP stroke
33 -33 0 33 -33 0 3345 2270 4 MP stroke
-66 0 33 -33 33 33 3312 2237 4 MP stroke
-33 0 16 -16 17 16 3345 2303 4 MP stroke
-33 33 0 -33 33 0 3312 2303 4 MP stroke
33 0 -16 16 -17 -16 4072 3227 4 MP stroke
-33 0 17 -17 16 17 4072 3227 4 MP stroke
-33 0 17 -17 16 17 3610 2567 4 MP stroke
33 0 -16 16 -17 -16 3610 2567 4 MP stroke
-33 0 17 -17 16 17 4138 3359 4 MP stroke
33 0 -16 16 -17 -16 4138 3359 4 MP stroke
33 -33 0 33 -33 0 4435 4151 4 MP stroke
33 0 -16 16 -17 -16 4402 4151 4 MP stroke
0 33 -17 -16 17 -17 1530 1676 4 MP stroke
33 33 -33 0 0 -33 1530 1709 4 MP stroke
-33 -33 33 0 0 33 1926 1643 4 MP stroke
0 -33 16 17 -16 16 1926 1676 4 MP stroke
-33 -33 33 0 0 33 4171 3359 4 MP stroke
0 -33 17 16 -17 17 4171 3392 4 MP stroke
33 -33 0 33 -33 0 4303 3623 4 MP stroke
33 0 -16 16 -17 -16 4270 3623 4 MP stroke
-33 0 17 -17 16 17 4402 4547 4 MP stroke
-33 33 0 -33 33 0 4369 4547 4 MP stroke
33 33 -33 0 0 -33 2058 1775 4 MP stroke
0 33 -17 -16 17 -17 2058 1742 4 MP stroke
33 0 -16 16 -17 -16 3940 2963 4 MP stroke
-33 0 17 -17 16 17 3940 2963 4 MP stroke
33 33 -33 0 0 -33 2850 2039 4 MP stroke
0 33 -17 -16 17 -17 2850 2006 4 MP stroke
0 33 -17 -16 17 -17 2718 1940 4 MP stroke
33 33 -33 0 0 -33 2718 1973 4 MP stroke
33 0 -17 17 -16 -17 3147 2171 4 MP stroke
-33 0 16 -16 17 16 3147 2171 4 MP stroke
0 132 -66 -66 66 -66 1464 1577 4 MP stroke
-132 0 66 -66 66 66 1464 1445 4 MP stroke
-66 0 33 -33 33 33 1530 1577 4 MP stroke
-66 66 0 -66 66 0 1464 1577 4 MP stroke
0 66 -33 -33 33 -33 1464 1643 4 MP stroke
-66 0 33 -33 33 33 1464 1577 4 MP stroke
-33 0 16 -16 17 16 1497 1643 4 MP stroke
-33 33 0 -33 33 0 1464 1643 4 MP stroke
-264 264 0 -264 264 0 1728 1181 4 MP stroke
-264 -264 264 0 0 264 1992 917 4 MP stroke
0 264 -132 -132 132 -132 1728 1445 4 MP stroke
-264 0 132 -132 132 132 1728 1181 4 MP stroke
132 -132 0 132 -132 0 1992 1445 4 MP stroke
-132 132 0 -132 132 0 1728 1445 4 MP stroke
0 132 -66 -66 66 -66 1728 1577 4 MP stroke
-132 0 66 -66 66 66 1728 1445 4 MP stroke
-66 0 33 -33 33 33 1794 1577 4 MP stroke
-66 66 0 -66 66 0 1728 1577 4 MP stroke
0 66 -33 -33 33 -33 1728 1643 4 MP stroke
-66 0 33 -33 33 33 1728 1577 4 MP stroke
-33 0 16 -16 17 16 1761 1643 4 MP stroke
-33 33 0 -33 33 0 1728 1643 4 MP stroke
0 33 -17 -16 17 -17 2322 1808 4 MP stroke
33 33 -33 0 0 -33 2322 1841 4 MP stroke
33 0 -17 17 -16 -17 3279 2303 4 MP stroke
-33 0 16 -16 17 16 3279 2303 4 MP stroke
33 0 -16 16 -17 -16 4204 3491 4 MP stroke
-33 0 17 -17 16 17 4204 3491 4 MP stroke
0 33 -16 -17 16 -16 4303 3788 4 MP stroke
33 33 -33 0 0 -33 4303 3821 4 MP stroke
-66 0 33 -33 33 33 4303 3689 4 MP stroke
0 -66 33 33 -33 33 4369 3689 4 MP stroke
0 -33 17 16 -17 17 4303 3722 4 MP stroke
-33 -33 33 0 0 33 4303 3689 4 MP stroke
132 -132 0 132 -132 0 2652 2105 4 MP stroke
132 132 -132 0 0 -132 2520 2237 4 MP stroke
0 -132 66 66 -66 66 2652 1973 4 MP stroke
132 0 -66 66 -66 -66 2652 2105 4 MP stroke
66 0 -33 33 -33 -33 2586 1973 4 MP stroke
66 -66 0 66 -66 0 2652 1973 4 MP stroke
-33 33 0 -33 33 0 2619 1940 4 MP stroke
66 0 -33 33 -33 -33 2652 1973 4 MP stroke
33 0 -17 17 -16 -17 2619 1907 4 MP stroke
33 -33 0 33 -33 0 2652 1907 4 MP stroke
33 0 -16 16 -17 -16 3808 2831 4 MP stroke
-33 0 17 -17 16 17 3808 2831 4 MP stroke
-33 0 17 -17 16 17 4402 4283 4 MP stroke
33 0 -16 16 -17 -16 4402 4283 4 MP stroke
0 33 -17 -16 17 -17 1662 1676 4 MP stroke
33 33 -33 0 0 -33 1662 1709 4 MP stroke
-33 0 16 -16 17 16 2949 2039 4 MP stroke
33 0 -17 17 -16 -17 2949 2039 4 MP stroke
-33 0 17 -17 16 17 4006 3095 4 MP stroke
33 0 -16 16 -17 -16 4006 3095 4 MP stroke
-132 0 66 -66 66 66 4501 4349 4 MP stroke
0 -132 66 66 -66 66 4633 4349 4 MP stroke
0 -66 33 33 -33 33 4501 4415 4 MP stroke
-66 -66 66 0 0 66 4501 4349 4 MP stroke
-66 0 33 -33 33 33 4435 4349 4 MP stroke
0 -66 33 33 -33 33 4501 4349 4 MP stroke
0 -33 17 16 -17 17 4435 4382 4 MP stroke
-33 -33 33 0 0 33 4435 4349 4 MP stroke
33 0 -16 16 -17 -16 4336 3887 4 MP stroke
-33 0 17 -17 16 17 4336 3887 4 MP stroke
264 -264 0 264 -264 0 2256 2237 4 MP stroke
264 264 -264 0 0 -264 1992 2501 4 MP stroke
0 -264 132 132 -132 132 2256 1973 4 MP stroke
264 0 -132 132 -132 -132 2256 2237 4 MP stroke
-132 132 0 -132 132 0 1992 1973 4 MP stroke
132 -132 0 132 -132 0 2256 1973 4 MP stroke
0 -132 66 66 -66 66 2256 1841 4 MP stroke
132 0 -66 66 -66 -66 2256 1973 4 MP stroke
66 0 -33 33 -33 -33 2190 1841 4 MP stroke
66 -66 0 66 -66 0 2256 1841 4 MP stroke
0 -66 33 33 -33 33 2256 1775 4 MP stroke
66 0 -33 33 -33 -33 2256 1841 4 MP stroke
33 0 -17 17 -16 -17 2223 1775 4 MP stroke
33 -33 0 33 -33 0 2256 1775 4 MP stroke
-33 -33 33 0 0 33 3510 2435 4 MP stroke
0 -33 16 17 -16 16 3510 2468 4 MP stroke
-33 -33 33 0 0 33 3378 2303 4 MP stroke
0 -33 16 17 -16 16 3378 2336 4 MP stroke
-33 -33 33 0 0 33 3643 2567 4 MP stroke
0 -33 17 16 -17 17 3643 2600 4 MP stroke
0 -33 16 17 -16 16 1860 1676 4 MP stroke
-33 -33 33 0 0 33 1860 1643 4 MP stroke
33 0 -16 16 -17 -16 4270 3689 4 MP stroke
-33 0 17 -17 16 17 4270 3689 4 MP stroke
-33 33 0 -33 33 0 4369 4481 4 MP stroke
-33 0 17 -17 16 17 4402 4481 4 MP stroke
0 33 -17 -16 17 -17 2124 1742 4 MP stroke
33 33 -33 0 0 -33 2124 1775 4 MP stroke
-33 0 16 -16 17 16 3411 2369 4 MP stroke
33 0 -17 17 -16 -17 3411 2369 4 MP stroke
33 0 -16 16 -17 -16 3874 2897 4 MP stroke
-33 0 17 -17 16 17 3874 2897 4 MP stroke
-33 -33 33 0 0 33 2916 1973 4 MP stroke
0 -33 16 17 -16 16 2916 2006 4 MP stroke
-33 -33 33 0 0 33 2652 1841 4 MP stroke
0 -33 16 17 -16 16 2652 1874 4 MP stroke
0 33 -16 -17 16 -16 3973 3062 4 MP stroke
33 33 -33 0 0 -33 3973 3095 4 MP stroke
66 -66 0 66 -66 0 2454 1907 4 MP stroke
66 66 -66 0 0 -66 2388 1973 4 MP stroke
0 -66 33 33 -33 33 2454 1841 4 MP stroke
66 0 -33 33 -33 -33 2454 1907 4 MP stroke
33 0 -17 17 -16 -17 2421 1841 4 MP stroke
33 -33 0 33 -33 0 2454 1841 4 MP stroke
-33 0 16 -16 17 16 2487 1841 4 MP stroke
33 0 -17 17 -16 -17 2487 1841 4 MP stroke
-33 0 17 -17 16 17 3676 2633 4 MP stroke
33 0 -16 16 -17 -16 3676 2633 4 MP stroke
33 33 -33 0 0 -33 2388 1841 4 MP stroke
0 33 -17 -16 17 -17 2388 1808 4 MP stroke
33 -33 0 33 -33 0 4237 3425 4 MP stroke
33 0 -16 16 -17 -16 4204 3425 4 MP stroke
0 33 -16 -17 16 -16 4237 3590 4 MP stroke
33 33 -33 0 0 -33 4237 3623 4 MP stroke
33 0 -16 16 -17 -16 4402 4217 4 MP stroke
33 -33 0 33 -33 0 4435 4217 4 MP stroke
33 33 -33 0 0 -33 1596 1709 4 MP stroke
0 33 -17 -16 17 -17 1596 1676 4 MP stroke
-33 0 16 -16 17 16 3015 2105 4 MP stroke
33 0 -17 17 -16 -17 3015 2105 4 MP stroke
33 -33 0 33 -33 0 4105 3161 4 MP stroke
33 0 -16 16 -17 -16 4072 3161 4 MP stroke
-33 0 17 -17 16 17 4336 3953 4 MP stroke
-33 33 0 -33 33 0 4303 3953 4 MP stroke
-33 -33 33 0 0 33 3444 2369 4 MP stroke
0 -33 16 17 -16 16 3444 2402 4 MP stroke
0 -33 16 17 -16 16 3180 2204 4 MP stroke
-33 -33 33 0 0 33 3180 2171 4 MP stroke
-33 -33 33 0 0 33 3709 2633 4 MP stroke
0 -33 17 16 -17 17 3709 2666 4 MP stroke
0 -33 17 16 -17 17 4369 4052 4 MP stroke
-33 -33 33 0 0 33 4369 4019 4 MP stroke
-33 -33 33 0 0 33 2256 1709 4 MP stroke
0 -33 16 17 -16 16 2256 1742 4 MP stroke
33 0 -17 17 -16 -17 3213 2237 4 MP stroke
-33 0 16 -16 17 16 3213 2237 4 MP stroke
33 0 -16 16 -17 -16 4138 3293 4 MP stroke
33 -33 0 33 -33 0 4171 3293 4 MP stroke
-33 33 0 -33 33 0 3709 2765 4 MP stroke
-33 0 17 -17 16 17 3742 2765 4 MP stroke
-33 33 0 -33 33 0 4369 4349 4 MP stroke
-33 0 17 -17 16 17 4402 4349 4 MP stroke
33 33 -33 0 0 -33 1728 1709 4 MP stroke
0 33 -17 -16 17 -17 1728 1676 4 MP stroke
33 -33 0 33 -33 0 4369 3821 4 MP stroke
33 0 -16 16 -17 -16 4336 3821 4 MP stroke
33 0 -17 17 -16 -17 2025 1709 4 MP stroke
-33 0 16 -16 17 16 2025 1709 4 MP stroke
-66 66 0 -66 66 0 2058 1643 4 MP stroke
-66 -66 66 0 0 66 2124 1577 4 MP stroke
0 66 -33 -33 33 -33 2058 1709 4 MP stroke
-66 0 33 -33 33 33 2058 1643 4 MP stroke
-33 0 16 -16 17 16 2091 1709 4 MP stroke
-33 33 0 -33 33 0 2058 1709 4 MP stroke
33 33 -33 0 0 -33 3312 2369 4 MP stroke
0 33 -17 -16 17 -17 3312 2336 4 MP stroke
0 -33 16 17 -16 16 2784 1940 4 MP stroke
-33 -33 33 0 0 33 2784 1907 4 MP stroke
33 33 -33 0 0 -33 3841 2897 4 MP stroke
0 33 -16 -17 16 -16 3841 2864 4 MP stroke
0 -33 16 17 -16 16 1992 1676 4 MP stroke
-33 -33 33 0 0 33 1992 1643 4 MP stroke
33 0 -17 17 -16 -17 2817 1973 4 MP stroke
-33 0 16 -16 17 16 2817 1973 4 MP stroke
-33 0 17 -17 16 17 3940 3029 4 MP stroke
-33 33 0 -33 33 0 3907 3029 4 MP stroke
33 0 -16 16 -17 -16 4402 4085 4 MP stroke
33 -33 0 33 -33 0 4435 4085 4 MP stroke
0 33 -17 -16 17 -17 3048 2138 4 MP stroke
33 33 -33 0 0 -33 3048 2171 4 MP stroke
0 -33 17 16 -17 17 4105 3260 4 MP stroke
-33 -33 33 0 0 33 4105 3227 4 MP stroke
-33 0 17 -17 16 17 4204 3557 4 MP stroke
-33 33 0 -33 33 0 4171 3557 4 MP stroke
0 33 -17 -16 17 -17 2520 1874 4 MP stroke
33 33 -33 0 0 -33 2520 1907 4 MP stroke
-33 -33 33 0 0 33 3577 2501 4 MP stroke
0 -33 17 16 -17 17 3577 2534 4 MP stroke
-34 0 17 -17 17 17 3543 2501 4 MP stroke
33 0 -17 17 -16 -17 3543 2501 4 MP stroke
66 0 -33 33 -33 -33 4105 3359 4 MP stroke
0 66 -33 -33 33 -33 4039 3359 4 MP stroke
0 33 -16 -17 16 -16 4105 3326 4 MP stroke
33 33 -33 0 0 -33 4105 3359 4 MP stroke
66 0 -33 33 -33 -33 4369 4151 4 MP stroke
0 66 -33 -33 33 -33 4303 4151 4 MP stroke
0 33 -16 -17 16 -16 4369 4118 4 MP stroke
33 33 -33 0 0 -33 4369 4151 4 MP stroke
-33 33 0 -33 33 0 4369 4613 4 MP stroke
66 -66 0 66 -66 0 1926 1775 4 MP stroke
66 66 -66 0 0 -66 1860 1841 4 MP stroke
0 -66 33 33 -33 33 1926 1709 4 MP stroke
66 0 -33 33 -33 -33 1926 1775 4 MP stroke
33 0 -17 17 -16 -17 1893 1709 4 MP stroke
33 -33 0 33 -33 0 1926 1709 4 MP stroke
-66 0 33 -33 33 33 3973 2963 4 MP stroke
0 -66 33 33 -33 33 4039 2963 4 MP stroke
0 -33 17 16 -17 17 3973 2996 4 MP stroke
-33 -33 33 0 0 33 3973 2963 4 MP stroke
-66 0 33 -33 33 33 4237 3491 4 MP stroke
0 -66 33 33 -33 33 4303 3491 4 MP stroke
0 -33 17 16 -17 17 4237 3524 4 MP stroke
-33 -33 33 0 0 33 4237 3491 4 MP stroke
66 66 -66 0 0 -66 4303 4283 4 MP stroke
-66 66 0 -66 66 0 4237 4217 4 MP stroke
66 0 -33 33 -33 -33 4369 4283 4 MP stroke
0 66 -33 -33 33 -33 4303 4283 4 MP stroke
0 33 -16 -17 16 -16 4369 4250 4 MP stroke
33 33 -33 0 0 -33 4369 4283 4 MP stroke
-66 -66 66 0 0 66 4435 3887 4 MP stroke
66 -66 0 66 -66 0 4501 3953 4 MP stroke
-66 0 33 -33 33 33 4369 3887 4 MP stroke
0 -66 33 33 -33 33 4435 3887 4 MP stroke
0 -33 17 16 -17 17 4369 3920 4 MP stroke
-33 -33 33 0 0 33 4369 3887 4 MP stroke
0 -66 33 33 -33 33 3114 2039 4 MP stroke
33 -33 0 33 -33 0 3081 2072 4 MP stroke
-33 0 16 -16 17 16 3081 2105 4 MP stroke
-33 33 0 -33 33 0 3048 2105 4 MP stroke
0 -66 33 33 -33 33 2586 1775 4 MP stroke
33 -33 0 33 -33 0 2553 1808 4 MP stroke
-33 0 16 -16 17 16 2553 1841 4 MP stroke
-33 33 0 -33 33 0 2520 1841 4 MP stroke
-132 0 66 -66 66 66 3841 2633 4 MP stroke
0 -132 66 66 -66 66 3973 2633 4 MP stroke
-66 66 0 -66 66 0 3775 2699 4 MP stroke
-66 -66 66 0 0 66 3841 2633 4 MP stroke
-33 -33 33 0 0 33 3808 2732 4 MP stroke
-66 0 33 -33 33 33 3775 2699 4 MP stroke
0 -33 17 16 -17 17 3775 2732 4 MP stroke
-33 -33 33 0 0 33 3775 2699 4 MP stroke
0 66 -33 -33 33 -33 1794 1775 4 MP stroke
0 -66 33 33 -33 33 1860 1709 4 MP stroke
33 0 -17 17 -16 -17 1827 1709 4 MP stroke
33 -33 0 33 -33 0 1860 1709 4 MP stroke
66 0 -33 33 -33 -33 4435 4019 4 MP stroke
-66 0 33 -33 33 33 4369 3953 4 MP stroke
0 -33 17 16 -17 17 4369 3986 4 MP stroke
-33 -33 33 0 0 33 4369 3953 4 MP stroke
66 0 -33 33 -33 -33 4501 4481 4 MP stroke
-66 0 33 -33 33 33 4435 4415 4 MP stroke
0 -33 17 16 -17 17 4435 4448 4 MP stroke
-33 -33 33 0 0 33 4435 4415 4 MP stroke
0 -66 33 33 -33 33 2190 1643 4 MP stroke
0 66 -33 -33 33 -33 2124 1709 4 MP stroke
-33 0 16 -16 17 16 2157 1709 4 MP stroke
-33 33 0 -33 33 0 2124 1709 4 MP stroke
132 0 -66 66 -66 -66 3973 3293 4 MP stroke
0 132 -66 -66 66 -66 3841 3293 4 MP stroke
66 -66 0 66 -66 0 4039 3227 4 MP stroke
66 66 -66 0 0 -66 3973 3293 4 MP stroke
33 33 -33 0 0 -33 4006 3194 4 MP stroke
66 0 -33 33 -33 -33 4039 3227 4 MP stroke
0 33 -16 -17 16 -16 4039 3194 4 MP stroke
33 33 -33 0 0 -33 4039 3227 4 MP stroke
-66 0 33 -33 33 33 4303 4151 4 MP stroke
66 0 -33 33 -33 -33 4369 4217 4 MP stroke
0 33 -16 -17 16 -16 4369 4184 4 MP stroke
33 33 -33 0 0 -33 4369 4217 4 MP stroke
0 -66 33 33 -33 33 1596 1577 4 MP stroke
0 66 -33 -33 33 -33 1530 1643 4 MP stroke
-33 0 16 -16 17 16 1563 1643 4 MP stroke
-33 33 0 -33 33 0 1530 1643 4 MP stroke
0 66 -33 -33 33 -33 1926 1775 4 MP stroke
-33 33 0 -33 33 0 1959 1742 4 MP stroke
33 0 -17 17 -16 -17 1959 1709 4 MP stroke
33 -33 0 33 -33 0 1992 1709 4 MP stroke
-66 66 0 -66 66 0 4105 3689 4 MP stroke
66 -66 0 66 -66 0 4237 3689 4 MP stroke
-66 0 33 -33 33 33 4171 3623 4 MP stroke
66 0 -33 33 -33 -33 4237 3689 4 MP stroke
0 33 -16 -17 16 -16 4237 3656 4 MP stroke
33 33 -33 0 0 -33 4237 3689 4 MP stroke
66 0 -33 33 -33 -33 4501 4613 4 MP stroke
-66 0 33 -33 33 33 4435 4547 4 MP stroke
0 -33 17 16 -17 17 4435 4580 4 MP stroke
-33 -33 33 0 0 33 4435 4547 4 MP stroke
0 66 -33 -33 33 -33 2718 2039 4 MP stroke
-33 33 0 -33 33 0 2751 2006 4 MP stroke
33 0 -17 17 -16 -17 2751 1973 4 MP stroke
33 -33 0 33 -33 0 2784 1973 4 MP stroke
0 33 -17 -16 17 -17 1464 1676 4 MP stroke
0 -66 33 33 -33 33 2388 1709 4 MP stroke
33 -33 0 33 -33 0 2355 1742 4 MP stroke
-33 0 16 -16 17 16 2355 1775 4 MP stroke
-33 33 0 -33 33 0 2322 1775 4 MP stroke
-132 132 0 -132 132 0 3841 3557 4 MP stroke
132 -132 0 132 -132 0 4105 3557 4 MP stroke
-132 0 66 -66 66 66 3973 3425 4 MP stroke
132 0 -66 66 -66 -66 4105 3557 4 MP stroke
-66 0 33 -33 33 33 4105 3491 4 MP stroke
66 66 -66 0 0 -66 4105 3557 4 MP stroke
33 33 -33 0 0 -33 4138 3458 4 MP stroke
66 0 -33 33 -33 -33 4171 3491 4 MP stroke
0 33 -16 -17 16 -16 4171 3458 4 MP stroke
33 33 -33 0 0 -33 4171 3491 4 MP stroke
264 -264 0 264 -264 0 5161 4085 4 MP stroke
-264 264 0 -264 264 0 4633 4085 4 MP stroke
264 0 -132 132 -132 -132 4897 4349 4 MP stroke
-264 0 132 -132 132 132 4633 4085 4 MP stroke
-132 132 0 -132 132 0 4501 4217 4 MP stroke
-132 -132 132 0 0 132 4633 4085 4 MP stroke
132 0 -66 66 -66 -66 4633 4349 4 MP stroke
-132 0 66 -66 66 66 4501 4217 4 MP stroke
66 0 -33 33 -33 -33 4501 4283 4 MP stroke
-66 -66 66 0 0 66 4501 4217 4 MP stroke
66 0 -33 33 -33 -33 4501 4349 4 MP stroke
-66 0 33 -33 33 33 4435 4283 4 MP stroke
0 -33 17 16 -17 17 4435 4316 4 MP stroke
-33 -33 33 0 0 33 4435 4283 4 MP stroke
0 -66 33 33 -33 33 1728 1577 4 MP stroke
0 66 -33 -33 33 -33 1662 1643 4 MP stroke
-33 0 16 -16 17 16 1695 1643 4 MP stroke
-33 33 0 -33 33 0 1662 1643 4 MP stroke
-264 264 0 -264 264 0 3577 4085 4 MP stroke
264 -264 0 264 -264 0 4105 4085 4 MP stroke
-264 0 132 -132 132 132 3841 3821 4 MP stroke
264 0 -132 132 -132 -132 4105 4085 4 MP stroke
132 -132 0 132 -132 0 4237 3953 4 MP stroke
132 132 -132 0 0 -132 4105 4085 4 MP stroke
-132 0 66 -66 66 66 4105 3821 4 MP stroke
132 0 -66 66 -66 -66 4237 3953 4 MP stroke
-66 0 33 -33 33 33 4237 3887 4 MP stroke
66 66 -66 0 0 -66 4237 3953 4 MP stroke
-66 0 33 -33 33 33 4237 3821 4 MP stroke
66 0 -33 33 -33 -33 4303 3887 4 MP stroke
0 33 -16 -17 16 -16 4303 3854 4 MP stroke
33 33 -33 0 0 -33 4303 3887 4 MP stroke
0 -33 17 16 -17 17 4435 4481 4 MP stroke
0 33 -16 -17 16 -16 4402 4514 4 MP stroke
0 -33 17 16 -17 17 3907 2897 4 MP stroke
0 33 -16 -17 16 -16 3874 2930 4 MP stroke
33 0 -17 17 -16 -17 2916 2039 4 MP stroke
-33 0 16 -16 17 16 2883 2006 4 MP stroke
33 -33 0 33 -33 0 2685 1940 4 MP stroke
33 33 -33 0 0 -33 2652 1973 4 MP stroke
-33 0 16 -16 17 16 2652 1907 4 MP stroke
33 0 -17 17 -16 -17 2685 1940 4 MP stroke
0 -33 16 17 -16 16 3114 2105 4 MP stroke
0 33 -17 -16 17 -17 3081 2138 4 MP stroke
0 33 -17 -16 17 -17 2454 1841 4 MP stroke
0 -33 16 17 -16 16 2487 1808 4 MP stroke
0 -33 16 17 -16 16 2586 1841 4 MP stroke
0 33 -17 -16 17 -17 2553 1874 4 MP stroke
-33 0 16 -16 17 16 1596 1643 4 MP stroke
33 0 -17 17 -16 -17 1629 1676 4 MP stroke
0 33 -17 -16 17 -17 2982 2105 4 MP stroke
0 -33 16 17 -16 16 3015 2072 4 MP stroke
0 33 -16 -17 16 -16 4039 3161 4 MP stroke
0 -33 17 16 -17 17 4072 3128 4 MP stroke
132 -132 0 132 -132 0 3444 2633 4 MP stroke
132 132 -132 0 0 -132 3312 2765 4 MP stroke
-66 66 0 -66 66 0 3378 2567 4 MP stroke
132 0 -66 66 -66 -66 3444 2633 4 MP stroke
-66 66 0 -66 66 0 3312 2501 4 MP stroke
66 -66 0 66 -66 0 3444 2501 4 MP stroke
33 33 -33 0 0 -33 3411 2468 4 MP stroke
66 0 -33 33 -33 -33 3444 2501 4 MP stroke
33 -33 0 33 -33 0 3477 2468 4 MP stroke
33 33 -33 0 0 -33 3444 2501 4 MP stroke
-33 0 16 -16 17 16 3444 2435 4 MP stroke
33 0 -17 17 -16 -17 3477 2468 4 MP stroke
-66 66 0 -66 66 0 3577 2765 4 MP stroke
66 -66 0 66 -66 0 3709 2765 4 MP stroke
33 33 -33 0 0 -33 3676 2732 4 MP stroke
66 0 -33 33 -33 -33 3709 2765 4 MP stroke
33 -33 0 33 -33 0 3742 2732 4 MP stroke
33 33 -33 0 0 -33 3709 2765 4 MP stroke
-33 0 17 -17 16 17 3709 2699 4 MP stroke
33 0 -16 16 -17 -16 3742 2732 4 MP stroke
0 33 -17 -16 17 -17 1794 1709 4 MP stroke
0 -33 16 17 -16 16 1827 1676 4 MP stroke
33 0 -16 16 -17 -16 4369 4019 4 MP stroke
-33 0 17 -17 16 17 4336 3986 4 MP stroke
0 -33 16 17 -16 16 3246 2237 4 MP stroke
0 33 -17 -16 17 -17 3213 2270 4 MP stroke
0 -33 17 16 -17 17 3775 2765 4 MP stroke
0 33 -16 -17 16 -16 3742 2798 4 MP stroke
0 -33 16 17 -16 16 2190 1709 4 MP stroke
0 33 -17 -16 17 -17 2157 1742 4 MP stroke
-33 0 16 -16 17 16 3312 2303 4 MP stroke
33 0 -17 17 -16 -17 3345 2336 4 MP stroke
66 -66 0 66 -66 0 4237 3161 4 MP stroke
-66 66 0 -66 66 0 4105 3161 4 MP stroke
66 0 -33 33 -33 -33 4171 3227 4 MP stroke
-66 0 33 -33 33 33 4105 3161 4 MP stroke
-33 33 0 -33 33 0 4072 3194 4 MP stroke
-33 -33 33 0 0 33 4105 3161 4 MP stroke
33 0 -16 16 -17 -16 4105 3227 4 MP stroke
-33 0 17 -17 16 17 4072 3194 4 MP stroke
-132 132 0 -132 132 0 3312 2765 4 MP stroke
133 -132 0 132 -133 0 3577 2765 4 MP stroke
-67 66 0 -66 67 0 3510 2699 4 MP stroke
133 0 -66 66 -67 -66 3577 2765 4 MP stroke
-66 66 0 -66 66 0 3444 2633 4 MP stroke
67 -66 0 66 -67 0 3577 2633 4 MP stroke
33 33 -33 0 0 -33 3543 2600 4 MP stroke
67 0 -33 33 -34 -33 3577 2633 4 MP stroke
33 -33 0 33 -33 0 3610 2600 4 MP stroke
34 33 -34 0 0 -33 3577 2633 4 MP stroke
-33 0 17 -17 16 17 3577 2567 4 MP stroke
33 0 -16 16 -17 -16 3610 2600 4 MP stroke
-33 0 17 -17 16 17 4369 4151 4 MP stroke
33 0 -16 16 -17 -16 4402 4184 4 MP stroke
0 33 -17 -16 17 -17 1926 1709 4 MP stroke
0 -33 16 17 -16 16 1959 1676 4 MP stroke
0 33 -16 -17 16 -16 4171 3425 4 MP stroke
0 -33 17 16 -17 17 4204 3392 4 MP stroke
-33 0 17 -17 16 17 4237 3623 4 MP stroke
33 0 -16 16 -17 -16 4270 3656 4 MP stroke
0 -33 16 17 -16 16 2058 1709 4 MP stroke
0 33 -17 -16 17 -17 2025 1742 4 MP stroke
0 -33 16 17 -16 16 2850 1973 4 MP stroke
0 33 -17 -16 17 -17 2817 2006 4 MP stroke
0 33 -17 -16 17 -17 2718 1973 4 MP stroke
0 -33 16 17 -16 16 2751 1940 4 MP stroke
-33 0 16 -16 17 16 1464 1643 4 MP stroke
33 0 -17 17 -16 -17 1497 1676 4 MP stroke
-33 0 16 -16 17 16 1728 1643 4 MP stroke
33 0 -17 17 -16 -17 1761 1676 4 MP stroke
-33 33 0 -33 33 0 3279 2270 4 MP stroke
-33 -33 33 0 0 33 3312 2237 4 MP stroke
33 0 -17 17 -16 -17 3312 2303 4 MP stroke
-33 0 16 -16 17 16 3279 2270 4 MP stroke
0 33 -16 -17 16 -16 4303 3821 4 MP stroke
0 -33 17 16 -17 17 4336 3788 4 MP stroke
0 -33 17 16 -17 17 4303 3689 4 MP stroke
0 33 -16 -17 16 -16 4270 3722 4 MP stroke
33 0 -17 17 -16 -17 2652 1907 4 MP stroke
-33 0 16 -16 17 16 2619 1874 4 MP stroke
66 -66 0 66 -66 0 3973 2765 4 MP stroke
-66 66 0 -66 66 0 3841 2765 4 MP stroke
-33 -33 33 0 0 33 3874 2798 4 MP stroke
-66 0 33 -33 33 33 3841 2765 4 MP stroke
-33 33 0 -33 33 0 3808 2798 4 MP stroke
-33 -33 33 0 0 33 3841 2765 4 MP stroke
33 0 -16 16 -17 -16 3841 2831 4 MP stroke
-33 0 17 -17 16 17 3808 2798 4 MP stroke
33 -33 0 33 -33 0 2949 2072 4 MP stroke
33 33 -33 0 0 -33 2916 2105 4 MP stroke
-33 0 16 -16 17 16 2916 2039 4 MP stroke
33 0 -17 17 -16 -17 2949 2072 4 MP stroke
-66 66 0 -66 66 0 3841 3161 4 MP stroke
66 -66 0 66 -66 0 3973 3161 4 MP stroke
-66 0 33 -33 33 33 3907 3095 4 MP stroke
66 0 -33 33 -33 -33 3973 3161 4 MP stroke
33 -33 0 33 -33 0 4006 3128 4 MP stroke
33 33 -33 0 0 -33 3973 3161 4 MP stroke
-33 0 17 -17 16 17 3973 3095 4 MP stroke
33 0 -16 16 -17 -16 4006 3128 4 MP stroke
0 -33 17 16 -17 17 4435 4349 4 MP stroke
0 33 -16 -17 16 -16 4402 4382 4 MP stroke
33 0 -17 17 -16 -17 2256 1775 4 MP stroke
-33 0 16 -16 17 16 2223 1742 4 MP stroke
0 33 -17 -16 17 -17 3510 2501 4 MP stroke
0 -33 16 17 -16 16 3543 2468 4 MP stroke
0 33 -17 -16 17 -17 3378 2369 4 MP stroke
0 -33 16 17 -16 16 3411 2336 4 MP stroke
0 33 -16 -17 16 -16 3643 2633 4 MP stroke
0 -33 17 16 -17 17 3676 2600 4 MP stroke
132 -132 0 132 -132 0 4633 3557 4 MP stroke
-132 132 0 -132 132 0 4369 3557 4 MP stroke
132 0 -66 66 -66 -66 4501 3689 4 MP stroke
-132 0 66 -66 66 66 4369 3557 4 MP stroke
-66 66 0 -66 66 0 4303 3623 4 MP stroke
-66 -66 66 0 0 66 4369 3557 4 MP stroke
66 0 -33 33 -33 -33 4369 3689 4 MP stroke
-66 0 33 -33 33 33 4303 3623 4 MP stroke
-33 33 0 -33 33 0 4270 3656 4 MP stroke
-33 -33 33 0 0 33 4303 3623 4 MP stroke
33 0 -16 16 -17 -16 4303 3689 4 MP stroke
-33 0 17 -17 16 17 4270 3656 4 MP stroke
33 0 -16 16 -17 -16 4435 4481 4 MP stroke
-33 0 17 -17 16 17 4402 4448 4 MP stroke
66 -66 0 66 -66 0 3378 2435 4 MP stroke
66 66 -66 0 0 -66 3312 2501 4 MP stroke
33 33 -33 0 0 -33 3345 2402 4 MP stroke
66 0 -33 33 -33 -33 3378 2435 4 MP stroke
33 -33 0 33 -33 0 3411 2402 4 MP stroke
33 33 -33 0 0 -33 3378 2435 4 MP stroke
-33 0 16 -16 17 16 3378 2369 4 MP stroke
33 0 -17 17 -16 -17 3411 2402 4 MP stroke
0 33 -17 -16 17 -17 2916 2039 4 MP stroke
0 -33 16 17 -16 16 2949 2006 4 MP stroke
0 33 -17 -16 17 -17 2652 1907 4 MP stroke
0 -33 16 17 -16 16 2685 1874 4 MP stroke
0 33 -16 -17 16 -16 3973 3095 4 MP stroke
0 -33 17 16 -17 17 4006 3062 4 MP stroke
33 0 -17 17 -16 -17 2454 1841 4 MP stroke
-33 0 16 -16 17 16 2421 1808 4 MP stroke
66 -66 0 66 -66 0 3643 2699 4 MP stroke
67 66 -67 0 0 -66 3577 2765 4 MP stroke
33 33 -33 0 0 -33 3610 2666 4 MP stroke
66 0 -33 33 -33 -33 3643 2699 4 MP stroke
33 -33 0 33 -33 0 3676 2666 4 MP stroke
33 33 -33 0 0 -33 3643 2699 4 MP stroke
-33 0 17 -17 16 17 3643 2633 4 MP stroke
33 0 -16 16 -17 -16 3676 2666 4 MP stroke
0 -33 16 17 -16 16 2388 1775 4 MP stroke
0 33 -17 -16 17 -17 2355 1808 4 MP stroke
-33 0 17 -17 16 17 4171 3425 4 MP stroke
33 0 -16 16 -17 -16 4204 3458 4 MP stroke
0 33 -16 -17 16 -16 4237 3623 4 MP stroke
0 -33 17 16 -17 17 4270 3590 4 MP stroke
0 -33 16 17 -16 16 1596 1643 4 MP stroke
0 33 -17 -16 17 -17 1563 1676 4 MP stroke
-33 0 17 -17 16 17 4039 3161 4 MP stroke
33 0 -16 16 -17 -16 4072 3194 4 MP stroke
0 33 -17 -16 17 -17 3444 2435 4 MP stroke
0 -33 16 17 -16 16 3477 2402 4 MP stroke
0 -33 16 17 -16 16 3180 2171 4 MP stroke
0 33 -17 -16 17 -17 3147 2204 4 MP stroke
0 33 -16 -17 16 -16 3709 2699 4 MP stroke
0 -33 17 16 -17 17 3742 2666 4 MP stroke
0 -33 17 16 -17 17 4369 4019 4 MP stroke
0 33 -16 -17 16 -16 4336 4052 4 MP stroke
0 33 -17 -16 17 -17 2256 1775 4 MP stroke
0 -33 16 17 -16 16 2289 1742 4 MP stroke
-66 66 0 -66 66 0 3246 2171 4 MP stroke
-66 -66 66 0 0 66 3312 2105 4 MP stroke
-33 -33 33 0 0 33 3279 2204 4 MP stroke
-66 0 33 -33 33 33 3246 2171 4 MP stroke
-33 33 0 -33 33 0 3213 2204 4 MP stroke
-33 -33 33 0 0 33 3246 2171 4 MP stroke
33 0 -17 17 -16 -17 3246 2237 4 MP stroke
-33 0 16 -16 17 16 3213 2204 4 MP stroke
33 0 -16 16 -17 -16 3775 2765 4 MP stroke
-33 0 17 -17 16 17 3742 2732 4 MP stroke
33 0 -16 16 -17 -16 4435 4349 4 MP stroke
-33 0 17 -17 16 17 4402 4316 4 MP stroke
0 -33 16 17 -16 16 1728 1643 4 MP stroke
0 33 -17 -16 17 -17 1695 1676 4 MP stroke
-33 0 17 -17 16 17 4303 3821 4 MP stroke
33 0 -16 16 -17 -16 4336 3854 4 MP stroke
-33 0 16 -16 17 16 2058 1709 4 MP stroke
33 0 -17 17 -16 -17 2091 1742 4 MP stroke
0 -33 16 17 -16 16 3312 2303 4 MP stroke
0 33 -17 -16 17 -17 3279 2336 4 MP stroke
0 -33 17 16 -17 17 3841 2831 4 MP stroke
0 33 -16 -17 16 -16 3808 2864 4 MP stroke
0 -33 17 16 -17 17 4105 3227 4 MP stroke
0 33 -16 -17 16 -16 4072 3260 4 MP stroke
0 33 -16 -17 16 -16 3577 2567 4 MP stroke
0 -33 17 16 -17 17 3610 2534 4 MP stroke
66 -66 0 66 -66 0 3510 2567 4 MP stroke
66 66 -66 0 0 -66 3444 2633 4 MP stroke
33 33 -33 0 0 -33 3477 2534 4 MP stroke
66 0 -33 33 -33 -33 3510 2567 4 MP stroke
33 -33 0 33 -33 0 3543 2534 4 MP stroke
33 33 -33 0 0 -33 3510 2567 4 MP stroke
-33 0 16 -17 17 17 3510 2501 4 MP stroke
33 0 -17 16 -16 -16 3543 2534 4 MP stroke
0 33 -16 -17 16 -16 4105 3359 4 MP stroke
0 -33 17 16 -17 17 4138 3326 4 MP stroke
0 33 -16 -17 16 -16 4369 4151 4 MP stroke
0 -33 17 16 -17 17 4402 4118 4 MP stroke
33 0 -16 16 -17 -16 4435 4613 4 MP stroke
-33 0 17 -17 16 17 4402 4580 4 MP stroke
33 0 -17 17 -16 -17 1926 1709 4 MP stroke
-33 0 16 -16 17 16 1893 1676 4 MP stroke
0 -33 17 16 -17 17 3973 2963 4 MP stroke
0 33 -16 -17 16 -16 3940 2996 4 MP stroke
0 -33 17 16 -17 17 4237 3491 4 MP stroke
0 33 -16 -17 16 -16 4204 3524 4 MP stroke
0 33 -16 -17 16 -16 4369 4283 4 MP stroke
0 -33 17 16 -17 17 4402 4250 4 MP stroke
0 -33 17 16 -17 17 4369 3887 4 MP stroke
0 33 -16 -17 16 -16 4336 3920 4 MP stroke
0 33 -17 -16 17 -17 1860 1709 4 MP stroke
0 -33 16 17 -16 16 1893 1676 4 MP stroke
33 0 -16 16 -17 -16 4435 4547 4 MP stroke
-33 0 17 -17 16 17 4402 4514 4 MP stroke
0 -33 16 17 -16 16 2124 1709 4 MP stroke
0 33 -17 -16 17 -17 2091 1742 4 MP stroke
66 0 -33 33 -33 -33 3841 2963 4 MP stroke
0 66 -33 -33 33 -33 3775 2963 4 MP stroke
33 -33 0 33 -33 0 3874 2930 4 MP stroke
33 33 -33 0 0 -33 3841 2963 4 MP stroke
-33 0 17 -17 16 17 3841 2897 4 MP stroke
33 0 -16 16 -17 -16 3874 2930 4 MP stroke
0 33 -17 -16 17 -17 2850 2039 4 MP stroke
0 -33 16 17 -16 16 2883 2006 4 MP stroke
0 -33 16 17 -16 16 2718 1907 4 MP stroke
0 33 -17 -16 17 -17 2685 1940 4 MP stroke
0 -33 17 16 -17 17 3973 3029 4 MP stroke
0 33 -16 -17 16 -16 3940 3062 4 MP stroke
-33 0 16 -16 17 16 3048 2105 4 MP stroke
33 0 -17 17 -16 -17 3081 2138 4 MP stroke
-33 33 0 -33 33 0 2487 1808 4 MP stroke
-33 -33 33 0 0 33 2520 1775 4 MP stroke
33 0 -17 17 -16 -17 2520 1841 4 MP stroke
-33 0 16 -16 17 16 2487 1808 4 MP stroke
0 -33 17 16 -17 17 4237 3557 4 MP stroke
0 33 -16 -17 16 -16 4204 3590 4 MP stroke
0 -33 17 16 -17 17 4303 3755 4 MP stroke
0 33 -16 -17 16 -16 4270 3788 4 MP stroke
-33 0 16 -16 17 16 2520 1841 4 MP stroke
33 0 -17 17 -16 -17 2553 1874 4 MP stroke
-33 0 17 -17 16 17 4369 4217 4 MP stroke
33 0 -16 16 -17 -16 4402 4250 4 MP stroke
-66 0 33 -33 33 33 4435 4217 4 MP stroke
0 -66 33 33 -33 33 4501 4217 4 MP stroke
-33 33 0 -33 33 0 4402 4250 4 MP stroke
-33 -33 33 0 0 33 4435 4217 4 MP stroke
33 0 -16 16 -17 -16 4435 4283 4 MP stroke
-33 0 17 -17 16 17 4402 4250 4 MP stroke
0 -33 16 17 -16 16 1662 1643 4 MP stroke
0 33 -17 -16 17 -17 1629 1676 4 MP stroke
-33 33 0 -33 33 0 3015 2072 4 MP stroke
-33 -33 33 0 0 33 3048 2039 4 MP stroke
33 0 -17 17 -16 -17 3048 2105 4 MP stroke
-33 0 16 -16 17 16 3015 2072 4 MP stroke
33 0 -16 16 -17 -16 4369 3953 4 MP stroke
-33 0 17 -17 16 17 4336 3920 4 MP stroke
66 0 -33 33 -33 -33 4303 3953 4 MP stroke
0 66 -33 -33 33 -33 4237 3953 4 MP stroke
33 -33 0 33 -33 0 4336 3920 4 MP stroke
33 33 -33 0 0 -33 4303 3953 4 MP stroke
-33 0 17 -17 16 17 4303 3887 4 MP stroke
33 0 -16 16 -17 -16 4336 3920 4 MP stroke
0 -33 16 17 -16 16 3510 2435 4 MP stroke
0 33 -17 -16 17 -17 3477 2468 4 MP stroke
0 33 -17 -16 17 -17 3180 2237 4 MP stroke
0 -33 16 17 -16 16 3213 2204 4 MP stroke
0 -33 17 16 -17 17 3775 2699 4 MP stroke
0 33 -16 -17 16 -16 3742 2732 4 MP stroke
33 0 -17 17 -16 -17 1860 1709 4 MP stroke
-33 0 16 -16 17 16 1827 1676 4 MP stroke
0 -33 17 16 -17 17 4369 3953 4 MP stroke
0 33 -16 -17 16 -16 4336 3986 4 MP stroke
0 -33 16 17 -16 16 2322 1775 4 MP stroke
0 33 -17 -16 17 -17 2289 1808 4 MP stroke
0 -33 17 16 -17 17 4435 4415 4 MP stroke
0 33 -16 -17 16 -16 4402 4448 4 MP stroke
-33 0 16 -16 17 16 2124 1709 4 MP stroke
33 0 -17 17 -16 -17 2157 1742 4 MP stroke
0 -33 16 17 -16 16 3378 2303 4 MP stroke
0 33 -17 -16 17 -17 3345 2336 4 MP stroke
0 33 -16 -17 16 -16 3841 2897 4 MP stroke
0 -33 17 16 -17 17 3874 2864 4 MP stroke
33 0 -16 16 -17 -16 3973 3029 4 MP stroke
-33 0 17 -17 16 17 3940 2996 4 MP stroke
66 0 -33 33 -33 -33 3907 3029 4 MP stroke
0 66 -33 -33 33 -33 3841 3029 4 MP stroke
33 -33 0 33 -33 0 3940 2996 4 MP stroke
33 33 -33 0 0 -33 3907 3029 4 MP stroke
-33 0 17 -17 16 17 3907 2963 4 MP stroke
33 0 -16 16 -17 -16 3940 2996 4 MP stroke
0 -33 16 17 -16 16 3048 2105 4 MP stroke
0 33 -17 -16 17 -17 3015 2138 4 MP stroke
0 33 -16 -17 16 -16 4039 3227 4 MP stroke
0 -33 17 16 -17 17 4072 3194 4 MP stroke
33 0 -16 16 -17 -16 4237 3557 4 MP stroke
-33 0 17 -17 16 17 4204 3524 4 MP stroke
66 0 -33 33 -33 -33 4171 3557 4 MP stroke
0 66 -33 -33 33 -33 4105 3557 4 MP stroke
33 -33 0 33 -33 0 4204 3524 4 MP stroke
33 33 -33 0 0 -33 4171 3557 4 MP stroke
-33 0 17 -17 16 17 4171 3491 4 MP stroke
33 0 -16 16 -17 -16 4204 3524 4 MP stroke
0 -33 16 17 -16 16 2520 1841 4 MP stroke
0 33 -17 -16 17 -17 2487 1874 4 MP stroke
0 -33 17 16 -17 17 3643 2567 4 MP stroke
0 33 -16 -17 16 -16 3610 2600 4 MP stroke
0 -33 17 16 -17 17 4171 3359 4 MP stroke
0 33 -16 -17 16 -16 4138 3392 4 MP stroke
0 33 -16 -17 16 -16 4369 4217 4 MP stroke
0 -33 17 16 -17 17 4402 4184 4 MP stroke
-33 0 16 -16 17 16 1530 1643 4 MP stroke
33 0 -17 17 -16 -17 1563 1676 4 MP stroke
33 0 -17 17 -16 -17 1992 1709 4 MP stroke
-33 0 16 -16 17 16 1959 1676 4 MP stroke
0 33 -16 -17 16 -16 4369 4085 4 MP stroke
0 -33 17 16 -17 17 4402 4052 4 MP stroke
-33 0 17 -17 16 17 4105 3293 4 MP stroke
33 0 -16 16 -17 -16 4138 3326 4 MP stroke
-66 0 33 -33 33 33 4171 3293 4 MP stroke
0 -66 33 33 -33 33 4237 3293 4 MP stroke
-33 33 0 -33 33 0 4138 3326 4 MP stroke
-33 -33 33 0 0 33 4171 3293 4 MP stroke
33 0 -16 16 -17 -16 4171 3359 4 MP stroke
-33 0 17 -17 16 17 4138 3326 4 MP stroke
0 33 -16 -17 16 -16 4237 3689 4 MP stroke
0 -33 17 16 -17 17 4270 3656 4 MP stroke
0 -33 17 16 -17 17 4435 4547 4 MP stroke
0 33 -16 -17 16 -16 4402 4580 4 MP stroke
33 -33 0 33 -33 0 2025 1742 4 MP stroke
33 33 -33 0 0 -33 1992 1775 4 MP stroke
-33 0 16 -16 17 16 1992 1709 4 MP stroke
33 0 -17 17 -16 -17 2025 1742 4 MP stroke
0 -33 16 17 -16 16 3444 2369 4 MP stroke
0 33 -17 -16 17 -17 3411 2402 4 MP stroke
0 33 -17 -16 17 -17 2784 1973 4 MP stroke
0 -33 16 17 -16 16 2817 1940 4 MP stroke
0 33 -16 -17 16 -16 3907 2963 4 MP stroke
0 -33 17 16 -17 17 3940 2930 4 MP stroke
0 33 -17 -16 17 -17 1992 1709 4 MP stroke
0 -33 16 17 -16 16 2025 1676 4 MP stroke
33 -33 0 33 -33 0 2817 2006 4 MP stroke
33 33 -33 0 0 -33 2784 2039 4 MP stroke
-33 0 16 -16 17 16 2784 1973 4 MP stroke
33 0 -17 17 -16 -17 2817 2006 4 MP stroke
33 0 -17 17 -16 -17 2784 1973 4 MP stroke
-33 0 16 -16 17 16 2751 1940 4 MP stroke
-33 0 17 -17 16 17 4369 4085 4 MP stroke
33 0 -16 16 -17 -16 4402 4118 4 MP stroke
0 33 -17 -16 17 -17 3114 2171 4 MP stroke
0 -33 16 17 -16 16 3147 2138 4 MP stroke
0 33 -16 -17 16 -16 4105 3293 4 MP stroke
0 -33 17 16 -17 17 4138 3260 4 MP stroke
0 33 -17 -16 17 -17 2388 1841 4 MP stroke
0 -33 16 17 -16 16 2421 1808 4 MP stroke
0 -33 17 16 -17 17 3709 2633 4 MP stroke
0 33 -16 -17 16 -16 3676 2666 4 MP stroke
0 -33 16 17 -16 16 1530 1643 4 MP stroke
0 33 -17 -16 17 -17 1497 1676 4 MP stroke
0 -33 16 17 -16 16 1794 1643 4 MP stroke
0 33 -17 -16 17 -17 1761 1676 4 MP stroke
-33 0 16 -16 17 16 2322 1775 4 MP stroke
33 0 -17 17 -16 -17 2355 1808 4 MP stroke
0 33 -17 -16 17 -17 3246 2303 4 MP stroke
0 -33 16 17 -16 16 3279 2270 4 MP stroke
0 33 -16 -17 16 -16 4171 3491 4 MP stroke
0 -33 17 16 -17 17 4204 3458 4 MP stroke
33 0 -16 16 -17 -16 4303 3755 4 MP stroke
-33 0 17 -17 16 17 4270 3722 4 MP stroke
0 33 -17 -16 17 -17 2586 1907 4 MP stroke
0 -33 16 17 -16 16 2619 1874 4 MP stroke
0 33 -16 -17 16 -16 3775 2831 4 MP stroke
0 -33 17 16 -17 17 3808 2798 4 MP stroke
0 -33 17 16 -17 17 4435 4283 4 MP stroke
0 33 -16 -17 16 -16 4402 4316 4 MP stroke
-33 0 16 -16 17 16 1662 1643 4 MP stroke
33 0 -17 17 -16 -17 1695 1676 4 MP stroke
0 -33 16 17 -16 16 2982 2039 4 MP stroke
0 33 -17 -16 17 -17 2949 2072 4 MP stroke
0 -33 17 16 -17 17 4039 3095 4 MP stroke
0 33 -16 -17 16 -16 4006 3128 4 MP stroke
33 0 -16 16 -17 -16 4435 4415 4 MP stroke
-33 0 17 -17 16 17 4402 4382 4 MP stroke
0 33 -16 -17 16 -16 4303 3887 4 MP stroke
0 -33 17 16 -17 17 4336 3854 4 MP stroke
0 33 -17 -16 17 -17 2190 1775 4 MP stroke
0 -33 16 17 -16 16 2223 1742 4 MP stroke
0 -33 17 16 -17 17 3577 2501 4 MP stroke
0 33 -17 -17 17 -16 3543 2534 4 MP stroke
66 0 -33 33 -33 -33 3114 2237 4 MP stroke
0 66 -33 -33 33 -33 3048 2237 4 MP stroke
33 -33 0 33 -33 0 3147 2204 4 MP stroke
33 33 -33 0 0 -33 3114 2237 4 MP stroke
-33 0 16 -16 17 16 3114 2171 4 MP stroke
33 0 -17 17 -16 -17 3147 2204 4 MP stroke
-33 33 0 -33 33 0 2289 1742 4 MP stroke
-33 -33 33 0 0 33 2322 1709 4 MP stroke
33 0 -17 17 -16 -17 2322 1775 4 MP stroke
-33 0 16 -16 17 16 2289 1742 4 MP stroke
-33 33 0 -33 33 0 3841 2963 4 MP stroke
33 -33 0 33 -33 0 3907 2963 4 MP stroke
-33 0 17 -17 16 17 3874 2930 4 MP stroke
33 0 -16 16 -17 -16 3907 2963 4 MP stroke
-33 33 0 -33 33 0 3048 2171 4 MP stroke
33 -33 0 33 -33 0 3114 2171 4 MP stroke
-33 0 16 -16 17 16 3081 2138 4 MP stroke
33 0 -17 17 -16 -17 3114 2171 4 MP stroke
0 66 -33 -33 33 -33 2520 1973 4 MP stroke
0 -66 33 33 -33 33 2586 1907 4 MP stroke
-33 33 0 -33 33 0 2520 1907 4 MP stroke
33 -33 0 33 -33 0 2586 1907 4 MP stroke
-33 0 16 -16 17 16 2553 1874 4 MP stroke
33 0 -17 17 -16 -17 2586 1907 4 MP stroke
66 -66 0 66 -66 0 2982 2171 4 MP stroke
66 66 -66 0 0 -66 2916 2237 4 MP stroke
0 -66 33 33 -33 33 2982 2105 4 MP stroke
66 0 -33 33 -33 -33 2982 2171 4 MP stroke
-33 33 0 -33 33 0 2916 2105 4 MP stroke
33 -33 0 33 -33 0 2982 2105 4 MP stroke
-33 0 16 -16 17 16 2949 2072 4 MP stroke
33 0 -17 17 -16 -17 2982 2105 4 MP stroke
-33 33 0 -33 33 0 3973 3161 4 MP stroke
33 -33 0 33 -33 0 4039 3161 4 MP stroke
-33 0 17 -17 16 17 4006 3128 4 MP stroke
33 0 -16 16 -17 -16 4039 3161 4 MP stroke
0 -66 33 33 -33 33 1860 1577 4 MP stroke
0 66 -33 -33 33 -33 1794 1643 4 MP stroke
33 -33 0 33 -33 0 1860 1643 4 MP stroke
-33 33 0 -33 33 0 1794 1643 4 MP stroke
33 0 -17 17 -16 -17 1827 1676 4 MP stroke
-33 0 16 -16 17 16 1794 1643 4 MP stroke
33 -33 0 33 -33 0 3312 2237 4 MP stroke
-33 33 0 -33 33 0 3246 2237 4 MP stroke
33 0 -17 17 -16 -17 3279 2270 4 MP stroke
-33 0 16 -16 17 16 3246 2237 4 MP stroke
33 -33 0 33 -33 0 3841 2765 4 MP stroke
-33 33 0 -33 33 0 3775 2765 4 MP stroke
33 0 -16 16 -17 -16 3808 2798 4 MP stroke
-33 0 17 -17 16 17 3775 2765 4 MP stroke
0 66 -33 -33 33 -33 2124 1841 4 MP stroke
0 -66 33 33 -33 33 2190 1775 4 MP stroke
-33 33 0 -33 33 0 2124 1775 4 MP stroke
33 -33 0 33 -33 0 2190 1775 4 MP stroke
-33 0 16 -16 17 16 2157 1742 4 MP stroke
33 0 -17 17 -16 -17 2190 1775 4 MP stroke
-33 33 0 -33 33 0 4105 3425 4 MP stroke
33 -33 0 33 -33 0 4171 3425 4 MP stroke
-33 0 17 -17 16 17 4138 3392 4 MP stroke
33 0 -16 16 -17 -16 4171 3425 4 MP stroke
-66 66 0 -66 66 0 2850 1907 4 MP stroke
-66 -66 66 0 0 66 2916 1841 4 MP stroke
0 66 -33 -33 33 -33 2850 1973 4 MP stroke
-66 0 33 -33 33 33 2850 1907 4 MP stroke
33 -33 0 33 -33 0 2916 1973 4 MP stroke
-33 33 0 -33 33 0 2850 1973 4 MP stroke
33 0 -17 17 -16 -17 2883 2006 4 MP stroke
-33 0 16 -16 17 16 2850 1973 4 MP stroke
0 -66 33 33 -33 33 2784 1841 4 MP stroke
0 66 -33 -33 33 -33 2718 1907 4 MP stroke
33 -33 0 33 -33 0 2784 1907 4 MP stroke
-33 33 0 -33 33 0 2718 1907 4 MP stroke
33 0 -17 17 -16 -17 2751 1940 4 MP stroke
-33 0 16 -16 17 16 2718 1907 4 MP stroke
33 -33 0 33 -33 0 4369 3755 4 MP stroke
-33 33 0 -33 33 0 4303 3755 4 MP stroke
33 0 -16 16 -17 -16 4336 3788 4 MP stroke
-33 0 17 -17 16 17 4303 3755 4 MP stroke
-33 33 0 -33 33 0 3444 2501 4 MP stroke
33 -33 0 33 -33 0 3510 2501 4 MP stroke
-33 0 16 -16 17 16 3477 2468 4 MP stroke
33 0 -17 17 -16 -17 3510 2501 4 MP stroke
-33 33 0 -33 33 0 3312 2369 4 MP stroke
33 -33 0 33 -33 0 3378 2369 4 MP stroke
-33 0 16 -16 17 16 3345 2336 4 MP stroke
33 0 -17 17 -16 -17 3378 2369 4 MP stroke
-33 33 0 -33 33 0 3577 2633 4 MP stroke
33 -33 0 33 -33 0 3643 2633 4 MP stroke
-33 0 17 -17 16 17 3610 2600 4 MP stroke
33 0 -16 16 -17 -16 3643 2633 4 MP stroke
33 -33 0 33 -33 0 4039 3029 4 MP stroke
-33 33 0 -33 33 0 3973 3029 4 MP stroke
33 0 -16 16 -17 -16 4006 3062 4 MP stroke
-33 0 17 -17 16 17 3973 3029 4 MP stroke
-132 132 0 -132 132 0 2388 1577 4 MP stroke
-132 -132 132 0 0 132 2520 1445 4 MP stroke
0 132 -66 -66 66 -66 2388 1709 4 MP stroke
-132 0 66 -66 66 66 2388 1577 4 MP stroke
66 -66 0 66 -66 0 2520 1709 4 MP stroke
-66 66 0 -66 66 0 2388 1709 4 MP stroke
0 66 -33 -33 33 -33 2388 1775 4 MP stroke
-66 0 33 -33 33 33 2388 1709 4 MP stroke
33 -33 0 33 -33 0 2454 1775 4 MP stroke
-33 33 0 -33 33 0 2388 1775 4 MP stroke
33 0 -17 17 -16 -17 2421 1808 4 MP stroke
-33 0 16 -16 17 16 2388 1775 4 MP stroke
33 -33 0 33 -33 0 4303 3557 4 MP stroke
-33 33 0 -33 33 0 4237 3557 4 MP stroke
33 0 -16 16 -17 -16 4270 3590 4 MP stroke
-33 0 17 -17 16 17 4237 3557 4 MP stroke
-33 33 0 -33 33 0 3378 2435 4 MP stroke
33 -33 0 33 -33 0 3444 2435 4 MP stroke
-33 0 16 -16 17 16 3411 2402 4 MP stroke
33 0 -17 17 -16 -17 3444 2435 4 MP stroke
0 66 -33 -33 33 -33 3114 2303 4 MP stroke
0 -66 33 33 -33 33 3180 2237 4 MP stroke
-33 33 0 -33 33 0 3114 2237 4 MP stroke
33 -33 0 33 -33 0 3180 2237 4 MP stroke
-33 0 16 -16 17 16 3147 2204 4 MP stroke
33 0 -17 17 -16 -17 3180 2237 4 MP stroke
-33 33 0 -33 33 0 3643 2699 4 MP stroke
33 -33 0 33 -33 0 3709 2699 4 MP stroke
-33 0 17 -17 16 17 3676 2666 4 MP stroke
33 0 -16 16 -17 -16 3709 2699 4 MP stroke
-33 33 0 -33 33 0 4303 4085 4 MP stroke
33 -33 0 33 -33 0 4369 4085 4 MP stroke
-33 0 17 -17 16 17 4336 4052 4 MP stroke
33 0 -16 16 -17 -16 4369 4085 4 MP stroke
33 -33 0 33 -33 0 3907 2831 4 MP stroke
-33 33 0 -33 33 0 3841 2831 4 MP stroke
33 0 -16 16 -17 -16 3874 2864 4 MP stroke
-33 0 17 -17 16 17 3841 2831 4 MP stroke
-33 33 0 -33 33 0 4039 3293 4 MP stroke
33 -33 0 33 -33 0 4105 3293 4 MP stroke
-33 0 17 -17 16 17 4072 3260 4 MP stroke
33 0 -16 16 -17 -16 4105 3293 4 MP stroke
-33 33 0 -33 33 0 3510 2567 4 MP stroke
34 -33 0 33 -34 0 3577 2567 4 MP stroke
-34 0 17 -17 17 17 3543 2534 4 MP stroke
34 0 -17 16 -17 -16 3577 2567 4 MP stroke
gr
2217 294 mt
(Mesh for "newVertices15.dat" and "newCells15.dat") s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF
%!PS-Adobe-2.0 EPSF-1.2
%%Creator: MATLAB, The Mathworks, Inc.
%%Title: C:\Documents and Settings\wen yu\Desktop\output61.eps
%%CreationDate: 12/23/2006 13:22:30
%%DocumentNeededFonts: Helvetica
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%Pages: 1
%%BoundingBox: 54 199 553 602
%%EndComments
%%BeginProlog
% MathWorks dictionary
/MathWorks 160 dict begin
% definition operators
/bdef {bind def} bind def
/ldef {load def} bind def
/xdef {exch def} bdef
/xstore {exch store} bdef
% operator abbreviations
/c /clip ldef
/cc /concat ldef
/cp /closepath ldef
/gr /grestore ldef
/gs /gsave ldef
/mt /moveto ldef
/np /newpath ldef
/cm /currentmatrix ldef
/sm /setmatrix ldef
/rm /rmoveto ldef
/rl /rlineto ldef
/s {show newpath} bdef
/sc {setcmykcolor} bdef
/sr /setrgbcolor ldef
/sg /setgray ldef
/w /setlinewidth ldef
/j /setlinejoin ldef
/cap /setlinecap ldef
/rc {rectclip} bdef
/rf {rectfill} bdef
% page state control
/pgsv () def
/bpage {/pgsv save def} bdef
/epage {pgsv restore} bdef
/bplot /gsave ldef
/eplot {stroke grestore} bdef
% orientation switch
/portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def
% coordinate system mappings
/dpi2point 0 def
% font control
/FontSize 0 def
/FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0]
makefont setfont} bdef
/ISOLatin1Encoding where {pop /WindowsLatin1Encoding 256 array bdef
ISOLatin1Encoding WindowsLatin1Encoding copy pop
/.notdef/.notdef/quotesinglbase/florin/quotedblbase/ellipsis/dagger
/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
/.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright/bullet
/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/.notdef/.notdef
/Ydieresis WindowsLatin1Encoding 128 32 getinterval astore pop}
{/WindowsLatin1Encoding StandardEncoding bdef} ifelse
/reencode {exch dup where {pop load} {pop StandardEncoding} ifelse
exch dup 3 1 roll findfont dup length dict begin
{ 1 index /FID ne {def}{pop pop} ifelse } forall
/Encoding exch def currentdict end definefont pop} bdef
/isroman {findfont /CharStrings get /Agrave known} bdef
/FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse
exch FMS} bdef
/csm {1 dpi2point div -1 dpi2point div scale neg translate
dup landscapeMode eq {pop -90 rotate}
{rotateMode eq {90 rotate} if} ifelse} bdef
% line types: solid, dotted, dashed, dotdash
/SO { [] 0 setdash } bdef
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef
/DA { [6 dpi2point mul] 0 setdash } bdef
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4
dpi2point mul] 0 setdash } bdef
% macros for lines and objects
/L {lineto stroke} bdef
/MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef
/AP {{rlineto} repeat} bdef
/PDlw -1 def
/W {/PDlw currentlinewidth def setlinewidth} def
/PP {closepath eofill} bdef
/DP {closepath stroke} bdef
/MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto
neg 0 exch rlineto closepath} bdef
/FR {MR stroke} bdef
/PR {MR fill} bdef
/L1i {{currentfile picstr readhexstring pop} image} bdef
/tMatrix matrix def
/MakeOval {newpath tMatrix currentmatrix pop translate scale
0 0 1 0 360 arc tMatrix setmatrix} bdef
/FO {MakeOval stroke} bdef
/PO {MakeOval fill} bdef
/PD {currentlinewidth 2 div 0 360 arc fill
PDlw -1 eq not {PDlw w /PDlw -1 def} if} def
/FA {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef
/PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef
/FAn {newpath tMatrix currentmatrix pop translate scale
0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef
/PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale
0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef
/vradius 0 def /hradius 0 def /lry 0 def
/lrx 0 def /uly 0 def /ulx 0 def /rad 0 def
/MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef
/ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly
vradius add translate hradius vradius scale 0 0 1 180 270 arc
tMatrix setmatrix lrx hradius sub uly vradius add translate
hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix
lrx hradius sub lry vradius sub translate hradius vradius scale
0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub
translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix
closepath} bdef
/FRR {MRR stroke } bdef
/PRR {MRR fill } bdef
/MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix
closepath} bdef
/FlrRR {MlrRR stroke } bdef
/PlrRR {MlrRR fill } bdef
/MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def
newpath tMatrix currentmatrix pop ulx rad add uly rad add translate
rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad
sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix
closepath} bdef
/FtbRR {MtbRR stroke } bdef
/PtbRR {MtbRR fill } bdef
/stri 6 array def /dtri 6 array def
/smat 6 array def /dmat 6 array def
/tmat1 6 array def /tmat2 6 array def /dif 3 array def
/asub {/ind2 exch def /ind1 exch def dup dup
ind1 get exch ind2 get sub exch } bdef
/tri_to_matrix {
2 0 asub 3 1 asub 4 0 asub 5 1 asub
dup 0 get exch 1 get 7 -1 roll astore } bdef
/compute_transform {
dmat dtri tri_to_matrix tmat1 invertmatrix
smat stri tri_to_matrix tmat2 concatmatrix } bdef
/ds {stri astore pop} bdef
/dt {dtri astore pop} bdef
/db {2 copy /cols xdef /rows xdef mul dup string
currentfile exch readhexstring pop
/bmap xdef pop pop} bdef
/it {gs np dtri aload pop moveto lineto lineto cp c
cols rows 8 compute_transform
{bmap} image gr}bdef
/il {newpath moveto lineto stroke}bdef
currentdict end def
%%EndProlog
%%BeginSetup
MathWorks begin
0 cap
end
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 54 199 553 602
MathWorks begin
bpage
%%EndPageSetup
%%BeginObject: obj1
bplot
/dpi2point 12 def
portraitMode 0204 7344 csm
446 110 5991 4844 MR c np
85 dict begin %Colortable dictionary
/c0 { 0 0 0 sr} bdef
/c1 { 1 1 1 sr} bdef
/c2 { 1 0 0 sr} bdef
/c3 { 0 1 0 sr} bdef
/c4 { 0 0 1 sr} bdef
/c5 { 1 1 0 sr} bdef
/c6 { 1 0 1 sr} bdef
/c7 { 0 1 1 sr} bdef
c0
1 j
1 sg
0 0 6913 5185 PR
6 w
0 4225 5356 0 0 -4225 899 4614 4 MP
PP
-5356 0 0 4225 5356 0 0 -4225 899 4614 5 MP stroke
4 w
DO
SO
6 w
0 sg
899 389 mt 6255 389 L
899 4614 mt 6255 4614 L
6255 4614 mt 6255 389 L
899 4614 mt 899 389 L
899 4614 mt 6255 4614 L
899 4614 mt 899 389 L
899 4614 mt 899 4560 L
899 389 mt 899 442 L
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
866 4759 mt
(0) s
1494 4614 mt 1494 4560 L
1494 389 mt 1494 442 L
1361 4759 mt
(1000) s
2089 4614 mt 2089 4560 L
2089 389 mt 2089 442 L
1956 4759 mt
(2000) s
2684 4614 mt 2684 4560 L
2684 389 mt 2684 442 L
2551 4759 mt
(3000) s
3279 4614 mt 3279 4560 L
3279 389 mt 3279 442 L
3146 4759 mt
(4000) s
3874 4614 mt 3874 4560 L
3874 389 mt 3874 442 L
3741 4759 mt
(5000) s
4469 4614 mt 4469 4560 L
4469 389 mt 4469 442 L
4336 4759 mt
(6000) s
5064 4614 mt 5064 4560 L
5064 389 mt 5064 442 L
4931 4759 mt
(7000) s
5659 4614 mt 5659 4560 L
5659 389 mt 5659 442 L
5526 4759 mt
(8000) s
6255 4614 mt 6255 4560 L
6255 389 mt 6255 442 L
6122 4759 mt
(9000) s
899 4614 mt 952 4614 L
6255 4614 mt 6201 4614 L
798 4658 mt
(0) s
899 3909 mt 952 3909 L
6255 3909 mt 6201 3909 L
664 3953 mt
(100) s
899 3205 mt 952 3205 L
6255 3205 mt 6201 3205 L
664 3249 mt
(200) s
899 2501 mt 952 2501 L
6255 2501 mt 6201 2501 L
664 2545 mt
(300) s
899 1797 mt 952 1797 L
6255 1797 mt 6201 1797 L
664 1841 mt
(400) s
899 1093 mt 952 1093 L
6255 1093 mt 6201 1093 L
664 1137 mt
(500) s
899 389 mt 952 389 L
6255 389 mt 6201 389 L
664 433 mt
(600) s
899 389 mt 6255 389 L
899 4614 mt 6255 4614 L
6255 4614 mt 6255 389 L
899 4614 mt 899 389 L
gs 899 389 5357 4226 MR c np
3214 -3690 1071 -415 357 -42 1077 4606 4 MP stroke
gr
gs 1004 386 4789 4294 MR c np
0 j
0 -58 -58 0 0 58 58 0 1048 4577 5 MP
DP
0 -58 -58 0 0 58 58 0 1405 4535 5 MP
DP
0 -58 -58 0 0 58 58 0 2476 4120 5 MP
DP
0 -58 -58 0 0 58 58 0 5690 430 5 MP
DP
gr
gs 899 389 5357 4226 MR c np
3214 -1000 1071 -105 357 -14 1077 4606 4 MP stroke
gr
gs 1004 3414 4789 1266 MR c np
36 36 1077 4606 FO
36 36 1434 4592 FO
36 36 2505 4487 FO
36 36 5719 3487 FO
gr
gs 899 389 5357 4226 MR c np
3214 -514 1071 -56 357 -7 1077 4606 4 MP stroke
gr
gs 1004 3956 4789 724 MR c np
1041 4606 mt 1113 4606 L
1077 4570 mt 1077 4642 L
1398 4599 mt 1470 4599 L
1434 4563 mt 1434 4635 L
2469 4543 mt 2541 4543 L
2505 4507 mt 2505 4579 L
5683 4029 mt 5755 4029 L
5719 3993 mt 5719 4065 L
1052 4581 mt 1102 4631 L
1102 4581 mt 1052 4631 L
1409 4574 mt 1459 4624 L
1459 4574 mt 1409 4624 L
2480 4518 mt 2530 4568 L
2530 4518 mt 2480 4568 L
5694 4004 mt 5744 4054 L
5744 4004 mt 5694 4054 L
gr
gs 899 389 5357 4226 MR c np
3214 -288 1071 -28 357 -7 1077 4606 4 MP stroke
gr
gs 1004 4210 4789 470 MR c np
1041 4606 mt 1113 4606 L
1077 4570 mt 1077 4642 L
1398 4599 mt 1470 4599 L
1434 4563 mt 1434 4635 L
2469 4571 mt 2541 4571 L
2505 4535 mt 2505 4607 L
5683 4283 mt 5755 4283 L
5719 4247 mt 5719 4319 L
gr
gs 899 389 5357 4226 MR c np
gr
3150 4902 mt
(Number of Cells) s
582 2981 mt -90 rotate
(Execution Time\(s\)) s
90 rotate
2805 294 mt
(Test Result of Efficiency Test) s
%%IncludeResource: font Symbol
/Symbol /WindowsLatin1Encoding 120 FMSR
4112 2347 mt
(\254) s
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
4230 2347 mt
( serial) s
%%IncludeResource: font Symbol
/Symbol /WindowsLatin1Encoding 120 FMSR
4112 4030 mt
(\254) s
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
4230 4030 mt
( np=2) s
%%IncludeResource: font Symbol
/Symbol /WindowsLatin1Encoding 120 FMSR
4112 4329 mt
(\254) s
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
4230 4329 mt
( np=4) s
%%IncludeResource: font Symbol
/Symbol /WindowsLatin1Encoding 120 FMSR
4112 4470 mt
(\254) s
%%IncludeResource: font Helvetica
/Helvetica /WindowsLatin1Encoding 120 FMSR
4230 4470 mt
( np=8) s
end
eplot
%%EndObject
epage
end
showpage
%%Trailer
%%EOF