Change the domain of the AIC java packate to br.ufrgs.ece. v1.6.0
authorWalter Fetter Lages <w.fetter@ieee.org>
Sun, 20 May 2018 06:21:58 +0000 (03:21 -0300)
committerWalter Fetter Lages <w.fetter@ieee.org>
Sun, 20 May 2018 06:21:58 +0000 (03:21 -0300)
Incluidos os esquematicos e o layout do PCB no arquivo de documentacao em pdf.

Criado o programa DoorWeb.

Criado o target upload nos Makefiles, para fazer o upload dos programas nas
AICs.

Criado o programa DoorOpen.

Removido o arquivo lib/aicio/motor.a51.  As variaveis globais estao agora
definidas em lib/aicio/motor.c.

Corrigido o problema na funcao pwm_set_duty(), que nao funcionava em tempo
real.  Os registradores do banco 1 nao podem ser utilizados em rotinas de
interrupcao.

Corrigido um bug na rotina native_initialize do PWM.  Estava sendo dado um
push de um registrador do banco 1, quando deveria ser do banco 0.

Criado o identificador de comando MOTOR_REF, para enviar para a AIC a
referencia para o PID implementadod pelo programa PIDDaemon.

Alterado o "dominio" do pacote AIC para br.ufrgs.ece.

99 files changed:
AICOff/AICOff.java
AICOff/Makefile
BrakeRtTest/Makefile
BrakeTest/BrakeApply.java
BrakeTest/BrakeRelease.java
BrakeTest/BrakeTest.java
BrakeTest/Makefile
CANTest/Makefile
Changes
CmdDaemon/CmdDaemon.java
CmdDaemon/Makefile
DoorDaemon/DoorDaemon.java
DoorDaemon/Makefile
DoorOpen/DoorOpen.java [new file with mode: 0644]
DoorOpen/Makefile [new file with mode: 0644]
DoorWeb/DoorHandler.java [new file with mode: 0644]
DoorWeb/DoorWeb.java [new file with mode: 0644]
DoorWeb/Makefile [new file with mode: 0644]
DoorWeb/closed.jpg [new file with mode: 0644]
DoorWeb/closed1.jpg [new file with mode: 0644]
DoorWeb/closed2.jpg [new file with mode: 0644]
DoorWeb/index.html [new file with mode: 0644]
DoorWeb/open.jpg [new file with mode: 0644]
DoorWeb/open1.jpg [new file with mode: 0644]
DoorWeb/open2.jpg [new file with mode: 0644]
EncoderRtRead/Makefile
EncoderRtTest/Makefile
EncoderTest/EncoderTest.java
EncoderTest/Makefile
IODaemon/IODaemon.java
IODaemon/Makefile
IndexRtTest/Makefile
IndexRtTest/indextest.c
IndexTest/IndexTest.java
IndexTest/Makefile
JointTest/JointTest.java
JointTest/Makefile
Makefile
MotorReset/Makefile
MotorReset/MotorReset.java
MotorRtTest/Makefile
MotorRtTest/MotorRtTest.java
MotorRtTest/motortest.c
MotorTest/Makefile
MotorTest/MotorTest.java
PID/Makefile
PID/PID.java
PID/pid.c
PIDDaemon/Makefile [new file with mode: 0644]
PIDDaemon/PIDDaemon.java [new file with mode: 0644]
PwmRtTest/Makefile
PwmRtTest/PwmRtTest.java
PwmRtTest/pwmtest.c
SputDaemon/Makefile [new file with mode: 0644]
SputDaemon/SputDaemon.java [new file with mode: 0644]
SputDaemon/SputHandler.java [new file with mode: 0644]
SputDaemon/index.html [new file with mode: 0644]
StrobeTest/Makefile
doc/Makefile
doc/aic.tex
doc/aic_componentmask.ps [deleted file]
doc/aic_componentpin.ps [deleted file]
doc/aic_componentsilk.ps [deleted file]
doc/aic_group1.ps [deleted file]
doc/aic_group2.ps [deleted file]
doc/aic_group3.ps [deleted file]
doc/aic_group4.ps [deleted file]
doc/aic_soldermask.ps [deleted file]
doc/aic_soldersilk.ps [deleted file]
doc/aicback0lrc.ps [deleted file]
doc/aicback4lrc.ps [deleted file]
doc/aicconn.ps [deleted file]
doc/aicpannelc.ps [deleted file]
doc/aicpcb.ps [deleted file]
doc/aicpower.ps [deleted file]
doc/aictini.ps [deleted file]
include/aichost.h
include/aicio.h
include/aicnet.h
lib/AIC.java
lib/Brake.java
lib/CtrlRegister.java
lib/Encoder.java
lib/Host.java
lib/HostCAN.java
lib/HostUDP.java
lib/Index.java
lib/Motor.java
lib/PLD.java
lib/PWM.java
lib/aichost.cpp
lib/aicio/Makefile
lib/aicio/aic.c
lib/aicio/encoder.a51
lib/aicio/encoder.c
lib/aicio/motor.c
lib/aicio/pwm.a51
lib/tlib/pwm.a51
pid/pid.cpp

index 0ba4624..7ae280a 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 
 class AICOff
 {
index e19e90a..0392a58 100644 (file)
@@ -11,3 +11,6 @@ clean:
 
 distclean: clean
        rm -f AICOff.tini
+
+upload: AICOff.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index 6385ca4..9e8cbc0 100644 (file)
@@ -26,3 +26,5 @@ clean:
 distclean: clean
        rm -f BrakeRtTest.tini
 
+upload: BrakeRtTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index 5493ed6..a77cb19 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 
 class BrakeApply
 {
index 3fb1821..7de90f4 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 
 class BrakeRelease
 {
index bde6b64..ff0e365 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.system.*;
 import java.lang.Math.*;
 
index a214f24..e886966 100644 (file)
@@ -24,3 +24,5 @@ clean:
 distclean: clean
        rm -f BrakeTest.tini BrakeApply.tini BrakeRelease.tini
 
+upload: BrakeTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index eaae3fc..9d9ad29 100644 (file)
@@ -16,4 +16,7 @@ clean:
        rm -f *.bak *~ CANRx.class CANTx.class
 
 distclean: clean
-       rm -f CANRx.tini CANTx.tini
\ No newline at end of file
+       rm -f CANRx.tini CANTx.tini
+       
+upload: CANRx.tini CANTx.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
diff --git a/Changes b/Changes
index af95534..9208a3c 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,35 @@
+2006.02.24     Incluidos os esquematicos e o layout do PCB no arquivo de
+               documentacao em pdf.
+
+2006.01.19     Criado o programa DoorWeb.
+2006.01.11     Criado o target upload nos Makefiles, para fazer o upload
+               dos programas nas AICs. 
+
+2006.01.09     Criado o programa DoorOpen.
+
+2005.12.15     Removido o arquivo lib/aicio/motor.a51. As variaveis globais
+               estao agora definidas em lib/aicio/motor.c.
+
+
+2005.12.14     Corrigido o problema na funcao pwm_set_duty(), que nao
+               funcionava em tempo real. Os registradores do banco 1 nao
+               podem ser utilizados em rotinas de interrupcao.
+
+               Corrigido um bug na rotina native_initialize do PWM. Estava
+               sendo dado um push de um registrador do banco 1, quando
+               deveria ser do banco 0.
+
+               Criado o identificador de comando MOTOR_REF, para enviar
+               para a AIC a referencia para o PID implementadod pelo
+               programa PIDDaemon.
+
+
+2005.11.25     Alterado o "dominio" do pacote AIC para br.ufrgs.ece.
+
+               Criada a versao 1.6.0
+
+
 2005.10.19     Criado o programa CmdDaemon, semelhante ao IODaemon, mas
                apenas recebe comandos, sem enviar dados de sensores.
        
index 75ef6bc..b5d1f27 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.comm.*;
 import com.dalsemi.system.*;
 import java.io.*;
index c344464..002d03d 100644 (file)
@@ -1,33 +1,16 @@
-CLASSPATH=-classpath /opt/tini/bin/tini.jar:/opt/tini/bin/tiniclasses.jar:/opt/tini/bin/modules.jar:../lib/AIC.jar
-APIDBPATH=-d /opt/tini/bin/tini.db
-DEPPATH=-p /opt/tini/bin/modules.jar
-DEPFILE=-x /opt/tini/bin/owapi_dep.txt
-DEPNAME=-add CAN
-LIBPATH=-path ../lib/AIC.jar
-NATLIB=-n brake.tlib -n encoder.tlib -n index.tlib -n pwm.tlib
-JAVAFLAGS=-O -target 1.1 -source 1.3
-TARGET= aic1 aic2 aic3 aic4 aic5
-
 all: CmdDaemon.tini
 
 CmdDaemon.class: CmdDaemon.java ../lib/AIC.jar
-       javac ${JAVAFLAGS} ${CLASSPATH} CmdDaemon.java
+       ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} CmdDaemon.java
 
 CmdDaemon.tini: CmdDaemon.class ../lib/AIC.jar
        java ${CLASSPATH} BuildDependency ${DEPNAME} ${DEPFILE} ${DEPPATH} -f CmdDaemon.class ${APIDBPATH} -o CmdDaemon.tini ${LIBPATH} ${NATLIB}
 
 clean:
-       rm -f *.bak *~ *.class UPLOADED
+       rm -f *.bak *~ *.class
 
 distclean: clean
        rm -f CmdDaemon.tini
 
-upload: UPLOADED
-
-UPLOADED: CmdDaemon.tini
-       for i in ${TARGET}; do \
-               ftp $$i < upload.ftp; \
-               echo $$i uploaded; \
-       done
-
-
+upload: CmdDaemon.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
\ No newline at end of file
index 19a2f44..bdaace1 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.system.*;
 import com.dalsemi.tininet.*;
 import java.net.*;
index 0c9348c..7171888 100644 (file)
@@ -12,3 +12,5 @@ clean:
 distclean: clean
        rm -f DoorDaemon.tini
 
+upload: DoorDaemon.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
\ No newline at end of file
diff --git a/DoorOpen/DoorOpen.java b/DoorOpen/DoorOpen.java
new file mode 100644 (file)
index 0000000..f55edff
--- /dev/null
@@ -0,0 +1,62 @@
+/******************************************************************************
+
+                       Actuator Interface Card
+                           Door Open
+       Copyright (C) 2006 Walter Fetter Lages <w.fetter@ieee.org>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+    You can also obtain a copy of the GNU General Public License
+    at <http://www.gnu.org/licenses>.
+
+*******************************************************************************/
+
+import br.ufrgs.ece.AIC.*;
+import com.dalsemi.system.*;
+import java.lang.Math.*;
+
+class DoorOpen
+{
+       static final int BASE=0x800000;
+       static final int ST=1000;
+
+       static AIC aic;
+
+       private static void delay(int ms)
+       {
+               long time=TINIOS.uptimeMillis();
+               while(TINIOS.uptimeMillis() < time+ms);
+       }
+
+       public static void main(String[] args)
+       {
+               int i;
+               
+
+//             System.out.println("AIC Door Open");
+//             System.out.println("Copyright (C) Walter Fetter Lages, 2006.\n");
+
+               aic=new AIC(BASE,24.0,20e3,2000);
+//             aic.on();
+               
+               aic.brake.release();
+               System.out.print("Door open...");
+               delay(ST);
+               aic.brake.apply();
+               System.out.println("closed");   
+
+//             aic.off();
+       }
+}
diff --git a/DoorOpen/Makefile b/DoorOpen/Makefile
new file mode 100644 (file)
index 0000000..2876349
--- /dev/null
@@ -0,0 +1,16 @@
+all: DoorOpen.tini
+
+DoorOpen.class: DoorOpen.java ../lib/AIC.jar
+       javac ${JAVAFLAGS} ${CLASSPATH} DoorOpen.java
+
+DoorOpen.tini: DoorOpen.class ../lib/AIC.jar
+       java ${CLASSPATH} TINIConvertor -f DoorOpen.class ${APIDBPATH} ${NATLIB} -o DoorOpen.tini ${LIBPATH}
+
+clean:
+       rm -f *.bak *~ DoorOpen.class
+
+distclean: clean
+       rm -f DoorOpen.tini
+
+upload: DoorOpen.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
diff --git a/DoorWeb/DoorHandler.java b/DoorWeb/DoorHandler.java
new file mode 100644 (file)
index 0000000..d65611e
--- /dev/null
@@ -0,0 +1,94 @@
+/******************************************************************************
+
+                       Actuator Interface Card
+                           Door Post Handler
+                            
+       Copyright (C) 2006 Walter Fetter Lages <w.fetter@ieee.org>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+    You can also obtain a copy of the GNU General Public License
+    at <http://www.gnu.org/licenses>.
+
+*******************************************************************************/
+import br.ufrgs.ece.AIC.*;
+import java.io.*;
+import java.lang.*;
+import java.util.*;
+import com.dalsemi.tininet.http.*;
+import com.dalsemi.system.*;
+
+public class DoorHandler implements PostScript
+{
+        static final int BASE=0x800000;
+       static AIC aic;
+       static boolean first=true;
+       
+       private static void delay(int ms)
+       {
+               long time=TINIOS.uptimeMillis();
+               while(TINIOS.uptimeMillis() < time+ms);
+       }
+
+        /**
+        * This method handles all responses to the the HTTP POST
+        *
+        * @param data - a Vector of PostElements holding all supplied fields and Values in pairs
+        * @param out - an Output Stream to the client socket
+        * @param work - HTTPWorker contains utility functions used to URL encode our response
+        * @throws IOException if an IO error occurs     
+        */
+
+        public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException
+        {
+                if(first)
+                {
+                        aic=new AIC(BASE,24.0,20e3,2000);
+                        first=false;
+                }
+                
+                // Response page
+
+                // HTML headers
+                StringBuffer strBuff=new StringBuffer("<html>\r\n"
+                        + "<META HTTP-EQUIV=REFRESH CONTENT=\"3;URL=http://d111\">\r\n"
+                        + "<title>Door Control</title>\r\n"
+                        + "<body><center><h1>Door Control</h1>\r\n");
+
+               PostElement passwd = (PostElement)data.elementAt(0);
+               
+                if(passwd.value.equals("Password"))
+                {              
+                       aic.brake.release();
+                       strBuff.append("<img src=\"http://d111/open2.jpg\"><br>Door Open.\r\n");
+                }
+                else
+                {
+                       strBuff.append("<img src=\"http://d111/closed2.jpg\"><br>Sorry!\r\n");
+                }
+                
+                // Use HTTPWorker's encode body function to generate the URL encoded response
+                out.write(work.encodeBody(HTTPServer.HTTP_OK,"OK",HTTPServer.MIME_TEXT_HTML,strBuff.length()));
+
+                // Send out the bytes of our response page
+                out.write(strBuff.toString().getBytes());
+
+                // Ensure that our data is written imediatly
+                out.flush();
+                
+               delay(2000);
+               aic.brake.apply();
+        }
+}
diff --git a/DoorWeb/DoorWeb.java b/DoorWeb/DoorWeb.java
new file mode 100644 (file)
index 0000000..c4dc1ba
--- /dev/null
@@ -0,0 +1,58 @@
+/******************************************************************************
+
+                       Actuator Interface Card
+                            Door Web Server
+       Copyright (C) 2006 Walter Fetter Lages <w.fetter@ieee.org>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+    You can also obtain a copy of the GNU General Public License
+    at <http://www.gnu.org/licenses>.
+
+*******************************************************************************/
+
+import com.dalsemi.tininet.http.HTTPServer;
+import com.dalsemi.tininet.http.HTTPServerException;
+
+class DoorWeb
+{
+        static Object lock;
+
+        public static void main(String[] args)
+        {
+                       System.out.println("Door Web Server");
+               System.out.println("Copyright (C) 2006 Walter Fetter Lages <w.fetter@ieee.org>.\n");
+                
+                HTTPServer httpd=new HTTPServer(80);
+                httpd.setHTTPRoot("/html");
+                httpd.setIndexPage("index.html");
+                httpd.setLogFilename("/log/DoorWeb.txt");
+                httpd.setLogging(true);
+
+                System.out.println("Door web server running...");
+
+                while (true)
+                {
+                        try
+                        {
+                                httpd.serviceRequests();
+                        }
+                        catch (HTTPServerException e)
+                        { 
+                                System.out.println("Error occured while servicing requests: " + e.getMessage());
+                        }
+                }
+        }
+}
diff --git a/DoorWeb/Makefile b/DoorWeb/Makefile
new file mode 100644 (file)
index 0000000..392361b
--- /dev/null
@@ -0,0 +1,22 @@
+DEPNAME:=-add HTTPSERVER
+
+all: DoorWeb.tini
+
+DoorWeb.class: DoorWeb.java ../lib/AIC.jar
+       ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $<
+       
+DoorHandler.class: DoorHandler.java ../lib/AIC.jar
+       ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $<
+
+DoorWeb.tini: DoorWeb.class DoorHandler.class ../lib/AIC.jar
+       java ${CLASSPATH} BuildDependency ${DEPNAME} ${DEPFILE} ${DEPPATH} -f DoorHandler.class  -f DoorWeb.class -o $@ ${LIBPATH} ${NATLIB} ${APIDBPATH}
+
+clean:
+       rm -f *.bak *~ *.class
+
+distclean: clean
+       rm -f DoorWeb.tini
+
+upload: DoorWeb.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
+       
\ No newline at end of file
diff --git a/DoorWeb/closed.jpg b/DoorWeb/closed.jpg
new file mode 100644 (file)
index 0000000..9ee07e2
Binary files /dev/null and b/DoorWeb/closed.jpg differ
diff --git a/DoorWeb/closed1.jpg b/DoorWeb/closed1.jpg
new file mode 100644 (file)
index 0000000..7b164e5
Binary files /dev/null and b/DoorWeb/closed1.jpg differ
diff --git a/DoorWeb/closed2.jpg b/DoorWeb/closed2.jpg
new file mode 100644 (file)
index 0000000..fdf7681
Binary files /dev/null and b/DoorWeb/closed2.jpg differ
diff --git a/DoorWeb/index.html b/DoorWeb/index.html
new file mode 100644 (file)
index 0000000..44b6c8b
--- /dev/null
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">\r
+<html>\r
+<head>\r
+<title>Door Control</title>\r
+</head>\r
+<body>\r
+<center>\r
+<h1>Door Control</h1>\r
+<form method="post" enctype="application/x-www-form-urlencoded" action="DoorHandler">\r
+<img src="closed2.jpg"><br>\r
+Password: <input type="password" name="password">\r
+<input type="submit" value="Open">\r
+</form>\r
+</center>\r
+</body>\r
+</html>\r
diff --git a/DoorWeb/open.jpg b/DoorWeb/open.jpg
new file mode 100644 (file)
index 0000000..3fd2852
Binary files /dev/null and b/DoorWeb/open.jpg differ
diff --git a/DoorWeb/open1.jpg b/DoorWeb/open1.jpg
new file mode 100644 (file)
index 0000000..8aaf707
Binary files /dev/null and b/DoorWeb/open1.jpg differ
diff --git a/DoorWeb/open2.jpg b/DoorWeb/open2.jpg
new file mode 100644 (file)
index 0000000..60b852f
Binary files /dev/null and b/DoorWeb/open2.jpg differ
index 2dd1996..3814981 100644 (file)
@@ -26,3 +26,6 @@ clean:
 distclean: clean
        rm -f EncoderRtRead.tini
 
+upload: EncoderRtRead.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
+       
\ No newline at end of file
index 798d0a4..34ff718 100644 (file)
@@ -26,3 +26,5 @@ clean:
 distclean: clean
        rm -f EncoderRtTest.tini
 
+upload: EncoderRtTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index 808e0c8..d8e5559 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.system.*;
 import java.lang.Math.*;
 
@@ -78,8 +78,8 @@ class EncoderTest
 
                while(run)
                {
-                       for(i=-(int)MV;(i <= MV) && run;i++) iter(24);
-                       for(i=(int)MV;(i >= -MV) && run;i--) iter(-24);
+                       for(i=-(int)MV;(i <= MV) && run;i++) iter(i);
+                       for(i=(int)MV;(i >= -MV) && run;i--) iter(i);
                }
                aic.off();
 
index 91296e5..a686a55 100644 (file)
@@ -25,3 +25,6 @@ clean:
 
 distclean: clean
        rm -f *.tini
+       
+upload: EncoderTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index f642ba9..b10d0d8 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.comm.*;
 import com.dalsemi.system.*;
 import java.io.*;
index 47df9f8..a5bf029 100644 (file)
@@ -12,3 +12,5 @@ clean:
 distclean: clean
        rm -f IODaemon.tini
 
+upload: IODaemon.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
\ No newline at end of file
index 8cf660b..9db9ae5 100644 (file)
@@ -26,3 +26,5 @@ clean:
 distclean: clean
        rm -f IndexRtTest.tini
 
+upload: IndexRtTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index b489c9b..60fa2a1 100644 (file)
@@ -26,7 +26,7 @@
 #include <rtai_sched.h>
 #include <pthread.h>
 
-#include<aicio.h>
+#include <aicio.h>
 
 #define BASE 0x800000
 
index 89ac67a..cc52516 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.system.*;
 import java.lang.Math.*;
 
@@ -51,6 +51,8 @@ class IndexTest
                aic=new AIC(BASE,24.0,20e3,2000);
 
                aic.on();
+               
+               aic.motor.set(2.0);
 
                while(run)
                {
index d2e67bc..efddbf8 100644 (file)
@@ -12,3 +12,5 @@ clean:
 distclean: clean
        rm -f IndexTest.tini
 
+upload: IndexTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index 5e5c65d..981c326 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.system.*;
 import java.lang.Math.*;
 
index 0b55c16..b9e1f79 100644 (file)
@@ -18,3 +18,5 @@ clean:
 distclean: clean
        rm -f JointTest.tini
 
+upload: JointTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index 0b0d1b2..0882dfe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ export DEPNAME=-add CAN
 export LIBPATH=-path ../lib/AIC.jar
 export NATLIB=-n brake.tlib -n encoder.tlib -n index.tlib -n pwm.tlib
 export APIDBPATH=-d /opt/tini/bin/tini.db
-export PKGPATH=br/ufrgs/eletro/AIC
+export PKGPATH=br/ufrgs/ece/AIC
 export JAVAFLAGS=-O -target 1.1 -source 1.3
 export JAVAC=javac
 
@@ -45,10 +45,9 @@ export SDCCFLAGS=-mTININative -S --use-accelerator
 export SDCCINCLUDE=-I${TRTAIPATH}/include -I${TMATHPATH}/include -I../include
 export SDCCCMPFLAGS=${SDCCFLAGS} ${SDCCINCLUDE}
 
+export AIC=aic01
 
-PACKAGES=      doc \
-               lib \
-               AICOff \
+AICPACKAGES=   AICOff \
                BrakeTest \
                BrakeRtTest \
                CANTest \
@@ -64,16 +63,24 @@ PACKAGES=   doc \
                MotorRtTest \
                PwmRtTest \
                PID \
+               PIDDaemon \
                StrobeTest \
                DoorDaemon \
+               DoorOpen \
+               DoorWeb \
                CmdDaemon \
+               SputDaemon
+
+PACKAGES=      lib \
+               ${AICPACKAGES} \
                aicd \
                braketst \
                encodertst \
                indextst \
                jointtst \
                motortst \
-               pid
+               pid \
+               doc
 
 all:
        for i in $(PACKAGES); do $(MAKE) -C $$i; done
@@ -101,3 +108,6 @@ uninstall:
 unpack:
        for i in $(PACKAGES); do $(MAKE) -C $$i unpack; done
 
+upload:
+       for i in $(AICPACKAGES); do $(MAKE) -C $$i upload; done
+       
\ No newline at end of file
index 76d23c4..44ff8c5 100644 (file)
@@ -12,3 +12,5 @@ clean:
 distclean: clean
        rm -f MotorReset.tini
 
+upload: MotorReset.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index ebe1589..655be75 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.system.*;
 import java.lang.Math.*;
 
index e585918..888e438 100644 (file)
@@ -26,3 +26,6 @@ clean:
 distclean: clean
        rm -f MotorRtTest.tini
 
+upload: MotorRtTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
+       
\ No newline at end of file
index f44596e..dcd4db3 100644 (file)
@@ -32,6 +32,7 @@ class MotorRtTest
        public static native int startRealtime(int period);
        public static native void stopRealtime();
        public static native void motorSet(float voltage);
+
        static final int ST=100;
 
        private static void delay(int ms)
@@ -79,14 +80,14 @@ class MotorRtTest
                System.out.println("Running MotorRtTest for "+tfms+" ms...");
                
                long t0=TINIOS.uptimeMillis();
-               long t=0;
+               long t=TINIOS.uptimeMillis()-t0;
                while(t <= tfms)
                {
-                       t=TINIOS.uptimeMillis()-t0;
-                       System.out.print("t="+t+" ms");
+                       System.out.println("t="+t+" ms");
                        for(i=0;(i <= 24) && run;i++) iter(i);
                        for(i=24;(i >= -24) && run;i--) iter(i);
                        for(i=-24;(i <= 0) && run;i++) iter(i);
+                       t=TINIOS.uptimeMillis()-t0;
                }
                System.out.println("...done.");
                
index 2e0eb81..f8a7c84 100644 (file)
 #define BASE 0x800000
 
 volatile pthread_t th;
-volatile float voltage;
+volatile float motor_test_voltage;
 
 void motortest_globals(void) _naked
 {
        _asm
-th:            db      0,0,0,0
-voltage:       db      0,0,0,0
+th:                    db      0,0,0,0
+motor_test_voltage:    db      0,0,0,0
        _endasm;
 }
 
 void *motortest(void *arg)
 {
-//     motor_set(voltage);
+       motor_set(motor_test_voltage);
        return NULL;
 }
 
@@ -51,13 +51,15 @@ void *motortest(void *arg)
 long Native_startRealtime(void) _JavaNative
 {
        volatile long period;
+       unsigned int count;
        
        aic_initialize(BASE,24.0,20e3,2000);
-
+       
        period=NatLib_LoadInt(0);
        start_rt_timer(micro2count(period));
        pthread_create(&th,NULL,motortest,NULL);
        
+       pwm_set_duty(500000);
        aic_on();
        brake_release();
 
@@ -65,7 +67,7 @@ long Native_startRealtime(void) _JavaNative
        clr     a
        _endasm;
 
-       return period;
+
 }
 
 /* public static native void stopRealtime() */
@@ -95,7 +97,7 @@ void Native_motorSet(void) _JavaNative
        _asm
        clr     a
        lcall   Natlib_LoadPrimitive    ; get parameter in R3:R2:R1:R0
-       mov     dptr,#voltage
+       mov     dptr,#motor_test_voltage
        mov     a,r0
        movx    @dptr,a
        inc     dptr
@@ -109,9 +111,8 @@ void Native_motorSet(void) _JavaNative
        movx    @dptr,a
        _endasm;
        
-       motor_set(voltage);     
-       
        _asm
        clr     a
        _endasm;
 }
+
index b5bc809..ff28e65 100644 (file)
@@ -12,3 +12,5 @@ clean:
 distclean: clean
        rm -f MotorTest.tini
 
+upload: MotorTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index 18f321b..feedf79 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-import br.ufrgs.eletro.AIC.*;
+import br.ufrgs.ece.AIC.*;
 import com.dalsemi.system.*;
 import java.lang.Math.*;
 
@@ -56,19 +56,19 @@ class MotorTest
                System.out.println("AIC Motor Test Program");
                System.out.println("Copyright (C) Walter Fetter Lages, 2002...2004.\n");
 
+               int v=Integer.parseInt(args[0]);
+               int t=Integer.parseInt(args[1]);
+               
                aic=new AIC(BASE,24.0,20e3,2000);
 
                aic.on();
-
+               
                aic.brake.release();
 
-               for(i=0;(i <= 12) && run;i++) iter(i);
+               aic.motor.set(v);
+               delay(t);
+               aic.motor.set(0);
 
-               while(run)
-               {
-                       for(i=12;(i >= -12) && run;i--) iter(i);
-                       for(i=-12;(i <= 12) && run;i++) iter(i);
-               }
                aic.off();
        }
 }
index 005aa9e..910bfed 100644 (file)
@@ -26,3 +26,5 @@ clean:
 distclean: clean
        rm -f PID.tini
 
+upload: PID.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
\ No newline at end of file
index 3357d33..423d9b0 100644 (file)
@@ -55,7 +55,7 @@ public class PID
 
                int us=10000;
                System.out.print("Starting real-time timer with "+us+" us period...");
-               int period=startRealtime(us);
+//             int period=startRealtime(us);
                System.out.println("done. Effective period: "+period+" us.");
        
                System.out.println("Running PID for "+tfms+" ms...");   
@@ -65,14 +65,14 @@ public class PID
                {
                        t=TINIOS.uptimeMillis()-t0;
                        System.out.print("t="+t+" ms");
-                       int ref=(int)t/2;
+                       float ref=t/2.0f;
                        setReference(ref);
                        System.out.println("\treference="+ref+"\toutput="+getOutput());
                }
                System.out.println("...done.");
                
                System.out.print("Stoping real-time timer...");
-               stopRealtime();
+//             stopRealtime();
                System.out.println("done.");
        }
 }
index 6ce6cfa..4ebb019 100644 (file)
--- a/PID/pid.c
+++ b/PID/pid.c
@@ -47,7 +47,7 @@ static float ref;
 static float e1;
 static float e2;
 
-static void pid_globals(void) _naked
+static void pid_dummy(void) _naked
 {
        _asm
 th:    db      0,0,0,0 
@@ -71,18 +71,19 @@ void *pid(void *arg)
 //     {
 //             rt_wait_period();               
 
-               y+=encoder_read();
+               y+=encoder_read()_and_clear();
 
-               e=ref-y;
+//             e=ref-y;
+               u=0.001*ref;
                
-               u+=Kp*(e-e1)+Ki*e+Kd*(e-2*e1+e2);
-               if(u < MIN_U) u=MIN_U;
-               if(u > MAX_U) u=MAX_U;
+//             u+=Kp*(e-e1)+Ki*e+Kd*(e-2*e1+e2);
+//             if(u < MIN_U) u=MIN_U;
+//             if(u > MAX_U) u=MAX_U;
 
                motor_set(u);
 
-               e2=e1;
-               e1=e;
+//             e2=e1;
+//             e1=e;
 //     }
        return NULL;
 }
@@ -98,9 +99,10 @@ long Native_startRealtime(void) _JavaNative
        period = NatLib_LoadInt(0);
        count=micro2count(period);
        start_rt_timer(count);
-       pthread_create(&th,NULL,pid,&y);
-       period=count2micro(count);
+       pthread_create(&th,NULL,pid,NULL);
+//     period=count2micro(count);
 
+       pwm_set_duty(500000); // debug
        aic_on();
        brake_release();
        
diff --git a/PIDDaemon/Makefile b/PIDDaemon/Makefile
new file mode 100644 (file)
index 0000000..14d22d4
--- /dev/null
@@ -0,0 +1,16 @@
+all: PIDDaemon.tini
+
+PIDDaemon.class: PIDDaemon.java ../lib/AIC.jar
+       ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} PIDDaemon.java
+
+PIDDaemon.tini: PIDDaemon.class ../lib/AIC.jar
+       java ${CLASSPATH} BuildDependency ${DEPNAME} ${DEPFILE} ${DEPPATH} -f PIDDaemon.class ${APIDBPATH} -o PIDDaemon.tini ${LIBPATH} ${NATLIB}
+
+clean:
+       rm -f *.bak *~ *.class
+
+distclean: clean
+       rm -f PIDDaemon.tini
+
+upload: PIDDaemon.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
\ No newline at end of file
diff --git a/PIDDaemon/PIDDaemon.java b/PIDDaemon/PIDDaemon.java
new file mode 100644 (file)
index 0000000..758a457
--- /dev/null
@@ -0,0 +1,236 @@
+/******************************************************************************
+
+                       Actuator Interface Card
+                             PID Daemon
+       Copyright (C) 2005 Walter Fetter Lages <w.fetter@ieee.org>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+    You can also obtain a copy of the GNU General Public License
+    at <http://www.gnu.org/licenses>.
+
+*******************************************************************************/
+
+import br.ufrgs.ece.AIC.*;
+import com.dalsemi.comm.*;
+import com.dalsemi.system.*;
+import java.io.*;
+import java.lang.*;
+
+class PIDDaemon extends Thread
+{
+       static final int BASE=0x800000;
+       static final int ST=250;
+
+       static AIC aic;
+       static Host host;
+       static boolean debug=false;
+       static boolean udp=false;
+       static boolean help=false;
+
+       public static void main(String[] args) throws IOException,CanBusException
+       {
+               int i;
+               int hostarg=0;
+
+               System.out.println("AIC PID Daemon");
+               System.out.println("Copyright (C) 2005 Walter Fetter Lages <w.fetter@ieee.org>.\n");
+
+               switch(args.length)
+               {
+                       case 0:
+                       {
+                               help=true;
+                               break;
+                       }
+                       case 1:
+                       {
+                               if(args[0].equals("-debug") ||
+                                       args[0].equals("-UDP")) help=true;
+                               break;
+                       }
+                       case 2:
+                       {
+                               hostarg=1;
+                               if(args[0].equals("-debug")) debug=true;
+                               else help=true;
+                               break;
+                       }
+                       case 3:
+                       {
+                               hostarg=1;
+                               if(args[0].equals("-UDP")) udp=true;
+                               else help=true;
+                               break;
+                       }
+                       case 4:
+                       {
+                               hostarg=2;
+                               if(args[0].equals("-debug")) debug=true;
+                               else help=true;
+                               if(args[1].equals("-UDP")) udp=true;
+                               else help=true;
+                               break;
+                       }
+                       default:
+                       {
+                               help=true;
+                       }
+               }
+               
+
+               if(help)
+               {
+                       System.out.println("Usage:\tjava PIDDaemon.tini [-debug] aic_id");
+                       System.out.println("\tor");
+                       System.out.println("\tjava PIDDaemon.tini [-debug] -UDP controller_host status_port");
+                       System.exit(1);
+               }
+               try
+               {
+                       aic=new AIC(BASE,24.0,20e3,2000);
+                       if(udp) host=new HostUDP(args[hostarg],Integer.parseInt(args[hostarg+1]));
+                               else host=new HostCAN(Integer.parseInt(args[hostarg]));
+                       SendOutput sendOutput=new SendOutput();
+                       sendOutput.setPriority(Thread.MAX_PRIORITY);
+                       sendOutput.start();
+
+                       if(debug) System.out.println("sendOutput priority="+sendOutput.getPriority());
+
+                       GetReference getReference=new GetReference();
+                       getReference.setPriority(Thread.MAX_PRIORITY-1);
+                       getReference.start();
+
+                       if(debug) System.out.println("getReference priority="+getReference.getPriority());
+               }
+               catch (NumberFormatException nfe)
+               {
+                       System.out.println("Usage: java PIDDaemon.tini [-debug] [-UDP controller_host port] | aicid");
+                       System.exit(1);
+               }
+       }
+}
+
+
+class GetReference extends PIDDaemon
+{
+       public void run()
+       {
+               try
+               {
+                       aic.on();
+                       aic.brake.release();
+
+                       for(int k=0;;k++)
+                       {
+                               if(debug) System.out.print("k="+k+"\t");
+
+                               int cmd=host.command();
+
+                               if(debug) System.out.print("Command="+ cmd  +"\t");
+                               
+                               switch(cmd)
+                               {
+                                       case Host.MOTOR_ON:
+                                       {
+                                               if(debug) System.out.print("Motor on\t");
+                                               aic.motor.on();
+                                               break;  
+                                       }
+                                       case Host.MOTOR_OFF:
+                                       {
+                                               if(debug) System.out.print("Motor off\t");
+                                               aic.motor.off();
+                                               break;
+                                       }
+                                       case Host.MOTOR_ACT:
+                                       {
+                                               if(debug) System.out.print("Voltage="+host.voltage()+"\t");
+                                               aic.motor.set(host.voltage());
+                                               break;
+                                       }
+                                       case Host.MOTOR_REF:
+                                       {
+                                               if(debug) System.out.print("Reference="+host.reference()+"\t");
+                                               aic.pid.set(host.reference());
+                                               break;
+                                       }
+                                       case Host.BRAKE_RELEASE:
+                                       {
+                                               if(debug) System.out.print("Brake release\t");
+                                               aic.brake.release();
+                                               break;  
+                                       }
+                                       case Host.BRAKE_APPLY:
+                                       {
+                                               if(debug) System.out.print("Brake apply\t");
+                                               aic.brake.apply();
+                                               break;
+                                       }
+/*                                     case Host.RESET:
+                                       {
+                                               if(debug) System.out.print("Reset\t");
+                                               aic.reset();
+                                               break;                  
+                                       }
+*/                                     
+                                       default:
+                                       {
+                                               if(debug) System.out.print("Invalid\t");
+                                               break;                  
+                                       }
+
+                               }
+                       if(debug) System.out.println("");               
+                       }
+               }
+               catch (Exception all)
+               {
+                       all.printStackTrace();
+               }
+       }
+}
+
+class SendOutput extends PIDDaemon
+{
+       public void run()
+       {
+               int i=0;
+               try
+               {
+                       for(;;) 
+                       {
+                               long timeStart=TINIOS.uptimeMillis();
+
+                               int index;
+                               if(aic.index.read()) index=1; else index=0;
+
+                               double disp=aic.encoder.read();
+                               if(debug) System.out.print("Encoder="+disp+" rad\tindex="+index+"\t");
+                                       host.sendStatus(disp,index);
+
+                               long timeEnd=TINIOS.uptimeMillis();
+                               long blockTime=ST-(timeEnd-timeStart);
+                               if(debug) System.out.println("Blocking time="+blockTime);
+                               if(blockTime > 4) Thread.sleep(blockTime);
+                       }
+               }
+               catch(Exception all)
+               {
+                       all.printStackTrace();
+               }
+       }
+}
+
index fcd3fab..3b01178 100644 (file)
@@ -26,3 +26,6 @@ clean:
 distclean: clean
        rm -f PwmRtTest.tini
 
+upload: PwmRtTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
+       
\ No newline at end of file
index ec697b3..83eac6a 100644 (file)
@@ -71,6 +71,10 @@ class PwmRtTest
                System.out.print("Loading native library...");
                System.loadLibrary("pwmtest.tlib");
                System.out.println("done.");
+               
+               System.out.print("Setting initial PWM duty cicle...");
+               pwmSet(500000);
+               System.out.println("done.");
 
                int us=10000;
                System.out.print("Starting real-time timer with "+us+" us period...");
index 32d7389..fc7765e 100644 (file)
@@ -53,7 +53,7 @@ long Native_startRealtime(void) _JavaNative
        unsigned int count;
        volatile long period;
        
-       count=(unsigned int)(REF_FREQ/20e3) & 0xffff;
+       count=((unsigned int)(REF_FREQ/20e3)) & 0xffff;
        pwm_initialize(BASE,MIN_COUNT,count);
        brake_initialize(BASE);
 
@@ -61,6 +61,7 @@ long Native_startRealtime(void) _JavaNative
        start_rt_timer(micro2count(period));
        pthread_create(&th,NULL,pwmtest,NULL);
        
+       pwm_set_duty(500000);
        pwm_on();
        brake_release();
 
@@ -92,7 +93,7 @@ void Native_pwmSet(void) _JavaNative
 {
        duty=NatLib_LoadInt(0);
 
-       _asm
+       _asm    
        clr     a
        _endasm;
 }
diff --git a/SputDaemon/Makefile b/SputDaemon/Makefile
new file mode 100644 (file)
index 0000000..85d0740
--- /dev/null
@@ -0,0 +1,21 @@
+DEPNAME:=-add HTTPSERVER
+
+all: SputDaemon.tini
+
+SputDaemon.class: SputDaemon.java ../lib/AIC.jar
+       ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $<
+       
+SputHandler.class: SputHandler.java ../lib/AIC.jar
+       ${JAVAC} ${JAVAFLAGS} ${CLASSPATH} $<
+
+SputDaemon.tini: SputDaemon.class SputHandler.class ../lib/AIC.jar
+       java ${CLASSPATH} BuildDependency ${DEPNAME} ${DEPFILE} ${DEPPATH} -f SputHandler.class  -f SputDaemon.class -o $@ ${LIBPATH} ${NATLIB} ${APIDBPATH}
+
+clean:
+       rm -f *.bak *~ *.class
+
+distclean: clean
+       rm -f SputDaemon.tini
+
+upload: SputDaemon.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
\ No newline at end of file
diff --git a/SputDaemon/SputDaemon.java b/SputDaemon/SputDaemon.java
new file mode 100644 (file)
index 0000000..c7eeec8
--- /dev/null
@@ -0,0 +1,58 @@
+/******************************************************************************
+
+                       Actuator Interface Card
+                            Sputtering Daemon
+       Copyright (C) 2005 Walter Fetter Lages <w.fetter@ieee.org>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+    You can also obtain a copy of the GNU General Public License
+    at <http://www.gnu.org/licenses>.
+
+*******************************************************************************/
+
+import com.dalsemi.tininet.http.HTTPServer;
+import com.dalsemi.tininet.http.HTTPServerException;
+
+class SputDaemon
+{
+        static Object lock;
+
+        public static void main(String[] args)
+        {
+                       System.out.println("Sputtering Daemon");
+               System.out.println("Copyright (C) 2005 Walter Fetter Lages <w.fetter@ieee.org>.\n");
+                
+                HTTPServer httpd=new HTTPServer(80);
+                httpd.setHTTPRoot("/html");
+                httpd.setIndexPage("index.html");
+                httpd.setLogFilename("log.txt");
+                httpd.setLogging(true);
+
+                System.out.println("Sputtering daemon running...");
+
+                while (true)
+                {
+                        try
+                        {
+                                httpd.serviceRequests();
+                        }
+                        catch (HTTPServerException e)
+                        { 
+                                System.out.println("Error occured while servicing requests: " + e.getMessage());
+                        }
+                }
+        }
+}
diff --git a/SputDaemon/SputHandler.java b/SputDaemon/SputHandler.java
new file mode 100644 (file)
index 0000000..76a0cd8
--- /dev/null
@@ -0,0 +1,94 @@
+/******************************************************************************
+
+                       Actuator Interface Card
+                        Sputtering Post Handler
+                            
+       Copyright (C) 2005 Walter Fetter Lages <w.fetter@ieee.org>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+    You can also obtain a copy of the GNU General Public License
+    at <http://www.gnu.org/licenses>.
+
+*******************************************************************************/
+import br.ufrgs.ece.AIC.*;
+import java.io.*;
+import java.lang.*;
+import java.util.*;
+import com.dalsemi.tininet.http.*;
+
+public class SputHandler implements PostScript
+{
+        static final int BASE=0x800000;
+       static AIC aic;
+       static boolean first=true;
+
+        /**
+        * This method handles all responses to the the HTTP POST
+        *
+        * @param data - a Vector of PostElements holding all supplied fields and Values in pairs
+        * @param out - an Output Stream to the client socket
+        * @param work - HTTPWorker contains utility functions used to URL encode our response
+        * @throws IOException if an IO error occurs     
+        */
+
+        public void handlePost(Vector data,OutputStream out,HTTPWorker work) throws IOException
+        {
+                if(first)
+                {
+                        aic=new AIC(BASE,24.0,20e3,2000);
+                        aic.on();
+                        aic.brake.release();
+                        aic.motor.on();
+                        first=false;
+                }
+                
+                System.out.println("Handling POST Request");
+
+               PostElement pos = (PostElement)data.elementAt(0);
+               System.out.println("Position="+pos.value);
+               
+               PostElement volt = (PostElement)data.elementAt(1);
+               System.out.println("Voltage="+volt.value);
+               Float V=Float.valueOf(volt.value);
+               double v=V.doubleValue();
+               
+               aic.motor.set(v);
+               
+                // Response page
+
+                // HTML headers
+                StringBuffer strBuff=new StringBuffer("<html><title>Sputtering Control</title>\r\n"
+                        + "<body><center><h1>Sputtering Control</h1>\r\n");
+                        
+                strBuff.append("Position set at "+pos.value+"\n");
+                strBuff.append("Voltage set at "+volt.value+"\n");
+          
+
+                // HTML footers
+                strBuff.append("</center></body></html>");
+
+                // Use HTTPWorker's encode body function to generate the URL encoded response
+                out.write(work.encodeBody(HTTPServer.HTTP_OK,"OK",HTTPServer.MIME_TEXT_HTML,strBuff.length()));
+
+                // Send out the bytes of our response page
+                out.write(strBuff.toString().getBytes());
+
+                // Ensure that our data is written imediatly
+                out.flush();
+
+                System.out.println("Finished handling POST request");
+        }
+}
diff --git a/SputDaemon/index.html b/SputDaemon/index.html
new file mode 100644 (file)
index 0000000..bbb5f51
--- /dev/null
@@ -0,0 +1,13 @@
+<html>\r
+<head>\r
+<title>Sputtering Control</title>\r
+</head>\r
+<body>\r
+<h1>Sputtering Control</h1>\r
+<form method="post" enctype="application/x-www-form-urlencoded" action="SputHandler">\r
+Position:      <input type="text" name="position"><br>\r
+Voltage:       <input type="text" name="voltage"><br>\r
+               <input type="submit" value="Submit">\r
+</form>\r
+</body>\r
+</html>\r
index a14e5b0..aea8cc7 100644 (file)
@@ -12,3 +12,5 @@ clean:
 distclean: clean
        rm -f StrobeTest.tini
 
+upload: StrobeTest.tini
+       for i in ${AIC}; do echo put $^ | ftp $$i; done
index 90a6e82..17fee7c 100644 (file)
@@ -2,7 +2,7 @@ SCHEMS=aictini.sch aicpower.sch aicconn.sch
 
 all: doc pcb bom html
 
-doc: aic.ps aic.pdf
+doc: aic.pdf
 
 aic.ps: aic.dvi
        dvips aic
@@ -10,7 +10,12 @@ aic.ps: aic.dvi
 aic.pdf: aic.dvi
        dvipdf aic
 
-aic.dvi: aic.tex aic.aux aic.bbl
+aic.dvi: aic.tex aic.aux aic.bbl \
+       aictini.eps aicpower.eps aicconn.eps \
+       aic_componentpin.eps \
+       aic_soldersilk.eps aic_componentsilk.eps \
+       aic_group1.eps aic_group2.eps aic_group3.eps aic_group4.eps \
+       aic_soldermask.eps aic_componentmask.eps
        latex aic
        latex aic
 
@@ -20,6 +25,24 @@ aic.aux: aic.tex
 aic.bbl: aic.bib
        bibtex aic
 
+aictini.ps: aictini.sch
+       gschem -oaictini.ps -s/usr/share/gEDA/scheme/gschem-print.scm aictini.sch 
+
+aictini.eps: aictini.ps
+       eps2eps aictini.ps aictini.eps
+       
+aicpower.ps: aicpower.sch
+       gschem -oaicpower.ps -s/usr/share/gEDA/scheme/gschem-print.scm aicpower.sch 
+
+aicpower.eps: aicpower.ps
+       eps2eps aicpower.ps aicpower.eps
+
+aicconn.ps: aicconn.sch
+       gschem -oaicconn.ps -s/usr/share/gEDA/scheme/gschem-print.scm aicconn.sch 
+
+aicconn.eps: aicconn.ps
+       eps2eps aicconn.ps aicconn.eps
+
 pcb: aic.net aicpcb.ps aicpcb.pdf #aic.pcb
 
 aic.net: $(SCHEMS)
@@ -31,6 +54,42 @@ aic.net: $(SCHEMS)
 aic_componentpin.ps: aic_group4.ps aic_componentsilk.ps
        MergePCBPS aic_group4.ps aic_componentsilk.ps > aic_componentpin.ps
 
+aic_componentpin.eps: aic_componentpin.ps
+       eps2eps aic_componentpin.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_componentpin.eps
+       
+aic_soldersilk.eps: aic_soldersilk.ps
+       eps2eps aic_soldersilk.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_soldersilk.eps
+
+aic_componentsilk.eps: aic_componentsilk.ps
+       eps2eps aic_componentsilk.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_componentsilk.eps
+       
+aic_group1.eps: aic_group1.ps
+       eps2eps aic_group1.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_group1.eps
+
+aic_group2.eps: aic_group2.ps
+       eps2eps aic_group2.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_group2.eps
+
+aic_group3.eps:  aic_group3.ps
+       eps2eps aic_group3.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_group3.eps
+
+aic_group4.eps:  aic_group4.ps
+       eps2eps aic_group4.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_group4.eps
+
+aic_soldermask.eps: aic_soldermask.ps
+       eps2eps aic_soldermask.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_soldermask.eps
+
+aic_componentmask.eps: aic_componentmask.ps
+       eps2eps aic_componentmask.ps aictmp.eps
+       pstops -b 1:0\(-3.5cm,0\) aictmp.eps aic_componentmask.eps
+
 aicpcb.ps: aic_componentpin.ps aic_soldersilk.ps aic_componentsilk.ps \
        aic_group1.ps aic_group2.ps aic_group3.ps aic_group4.ps \
        aic_soldermask.ps aic_componentmask.ps
@@ -59,10 +118,10 @@ html/index.html: Doxyfile aic.dox
        doxygen
 
 clean:
-       rm -f *.aux *.log *~ *.bak *.bbl *.blg *.old mucs.in mucs.out aictmp.ps 
+       rm -f *.aux *.log *~ *.bak *.bbl *.blg *.old *.ps *.eps *.dvi
 
 distclean: clean
-       rm -f aic.ps aic*.pdf aic.dvi aic.net aic.bom aic.bpp aic.xrf
+       rm -f aic*.pdf aic.net aic.bom aic.bpp aic.xrf
        rm -rf html
 
 update: $(SCHEMS)
index 1575492..a0ee6af 100644 (file)
@@ -1,10 +1,11 @@
 \documentclass{deleticle}
 \usepackage{float}
+\usepackage{longtable}
 
 \newcommand{\foreign}[1]{{\it #1}}
 
 \title{Actuator Interface Card\\
-Versão 1.3.0}
+Versão 1.6.0}
 
 \author{Prof. Walter Fetter Lages}
 
@@ -122,15 +123,26 @@ D1D0 & W\\
 \section{Conector Traseiro}
 
 Os sinais de interface da AIC com os atuadores, sensores e barramento CAN
-estão disponíveis no conector traseiro. A pinagem deste conector Ã©
-detalhada na tabela
-\ref{tab:backpinout}.
+estão disponíveis no conector traseiro. A pinagem deste conector Ã© detalhada
+na tabela \ref{tab:backpinout}.
 
-\begin{table}[htbp]
+%\begin{table}[htbp]
+%\caption{Pinagem do Conector Traseiro}
+%\label{tab:backpinout}
+%\begin{center}
+%\begin{tabular}{ccp{7.5cm}}
+
+\begin{center}   
+\begin{longtable}{ccp{7.5cm}}
 \caption{Pinagem do Conector Traseiro}
 \label{tab:backpinout}
-\begin{center}
-\begin{tabular}{ccp{7.5cm}}
+\endfirsthead
+\caption{Pinagem do Conector Traseiro}
+(Continuação)
+\endhead
+(Continua)
+\endfoot  
+\endlastfoot
 \hline \hline
 Pino &  Sinal & Descrição\\
 \hline
@@ -168,9 +180,12 @@ A30, B30, C30      & GND           & Terra da Alimenta
 A31, B31, C31  & GND           & Terra da Alimentação de +24V\\
 A32, B32, C32  & +24V          & Entrada de Alimentação +24V\\
 \hline
-\end{tabular}
+\end{longtable}
 \end{center}
-\end{table}
+
+%\end{tabular}
+%\end{center}
+%\end{table}
 
 \section{Organização do Software}
 
@@ -813,4 +828,24 @@ eventualmente cada uma na sua pr
 
 \bibliography{aic}
 
+\appendix
+
+
+\section{Schematics}
+\includegraphics[height=\textheight]{aictini.eps}
+\includegraphics[height=\textheight]{aicpower.eps}
+\includegraphics[height=\textheight]{aicconn.eps}
+
+\section{Printed Circuit Board}
+
+\includegraphics{aic_componentpin.eps}
+%\includegraphics{aic_soldersilk.eps}
+\includegraphics{aic_componentsilk.eps}
+\includegraphics{aic_group1.eps}
+\includegraphics{aic_group2.eps}
+\includegraphics{aic_group3.eps}
+\includegraphics{aic_group4.eps}
+\includegraphics{aic_soldermask.eps}
+\includegraphics{aic_componentmask.eps}
+
 \end{document}
diff --git a/doc/aic_componentmask.ps b/doc/aic_componentmask.ps
deleted file mode 100644 (file)
index f51e15a..0000000
+++ /dev/null
@@ -1,881 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), solder mask component side
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-35 40 7035 3997 FILL
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 150 CLRPVR
-575 3762 150 CLRPVR
-6625 275 150 CLRPVR
-6625 3762 150 CLRPVR
-1155 3055 90 CLRPVSQ
-755 3055 90 CLRPVR
-1725 3725 90 CLRPVSQ
-1825 3725 90 CLRPVR
-1925 3725 90 CLRPVR
-2025 3725 90 CLRPVR
-2125 3725 90 CLRPVR
-2225 3725 90 CLRPVR
-2325 3725 90 CLRPVR
-2425 3725 90 CLRPVR
-2525 3725 90 CLRPVR
-2625 3725 90 CLRPVR
-2725 3725 90 CLRPVR
-2825 3725 90 CLRPVR
-2825 3425 90 CLRPVR
-2725 3425 90 CLRPVR
-2625 3425 90 CLRPVR
-2525 3425 90 CLRPVR
-2425 3425 90 CLRPVR
-2325 3425 90 CLRPVR
-2225 3425 90 CLRPVR
-2125 3425 90 CLRPVR
-2025 3425 90 CLRPVR
-1925 3425 90 CLRPVR
-1825 3425 90 CLRPVR
-1725 3425 90 CLRPVR
-1375 3725 90 CLRPVSQ
-1275 3725 90 CLRPVR
-5400 1625 90 CLRPVSQ
-5350 1525 90 CLRPVR
-5300 1625 90 CLRPVR
-5250 1525 90 CLRPVR
-5200 1625 90 CLRPVR
-5150 1525 90 CLRPVR
-5100 1625 90 CLRPVR
-5050 1525 90 CLRPVR
-5000 1625 90 CLRPVR
-4950 1525 90 CLRPVR
-4900 1625 90 CLRPVR
-4850 1525 90 CLRPVR
-4800 1625 90 CLRPVR
-4750 1525 90 CLRPVR
-4700 1625 90 CLRPVR
-4650 1525 90 CLRPVR
-4600 1625 90 CLRPVR
-4550 1525 90 CLRPVR
-4500 1625 90 CLRPVR
-4450 1525 90 CLRPVR
-4400 1625 90 CLRPVR
-4350 1525 90 CLRPVR
-4300 1625 90 CLRPVR
-4250 1525 90 CLRPVR
-4200 1625 90 CLRPVR
-4150 1525 90 CLRPVR
-4100 1625 90 CLRPVR
-4050 1525 90 CLRPVR
-4000 1625 90 CLRPVR
-3950 1525 90 CLRPVR
-3900 1625 90 CLRPVR
-3850 1525 90 CLRPVR
-3800 1625 90 CLRPVR
-3750 1525 90 CLRPVR
-3700 1625 90 CLRPVR
-3650 1525 90 CLRPVR
-3400 1625 90 CLRPVR
-3350 1525 90 CLRPVR
-3300 1625 90 CLRPVR
-3250 1525 90 CLRPVR
-3200 1625 90 CLRPVR
-3150 1525 90 CLRPVR
-3100 1625 90 CLRPVR
-3050 1525 90 CLRPVR
-3000 1625 90 CLRPVR
-2950 1525 90 CLRPVR
-2900 1625 90 CLRPVR
-2850 1525 90 CLRPVR
-2800 1625 90 CLRPVR
-2750 1525 90 CLRPVR
-2700 1625 90 CLRPVR
-2650 1525 90 CLRPVR
-2600 1625 90 CLRPVR
-2550 1525 90 CLRPVR
-2500 1625 90 CLRPVR
-2450 1525 90 CLRPVR
-2400 1625 90 CLRPVR
-2350 1525 90 CLRPVR
-2300 1625 90 CLRPVR
-2250 1525 90 CLRPVR
-2200 1625 90 CLRPVR
-2150 1525 90 CLRPVR
-2100 1625 90 CLRPVR
-2050 1525 90 CLRPVR
-2000 1625 90 CLRPVR
-1950 1525 90 CLRPVR
-1900 1625 90 CLRPVR
-1850 1525 90 CLRPVR
-1800 1625 90 CLRPVR
-1750 1525 90 CLRPVR
-1700 1625 90 CLRPVR
-1650 1525 90 CLRPVR
-5730 1575 110 CLRPVR
-3525 1575 150 CLRPVR
-1325 1575 150 CLRPVR
-1375 3425 90 CLRPVSQ
-1275 3425 90 CLRPVR
-3175 3425 90 CLRPVSQ
-3275 3425 90 CLRPVR
-3600 2900 90 CLRPVSQ
-3700 2900 90 CLRPVR
-3800 2900 90 CLRPVR
-3900 2900 90 CLRPVR
-3900 2600 90 CLRPVR
-3800 2600 90 CLRPVR
-3700 2600 90 CLRPVR
-3600 2600 90 CLRPVR
-875 575 90 CLRPVSQ
-975 625 90 CLRPVR
-875 675 90 CLRPVR
-975 725 90 CLRPVR
-875 775 90 CLRPVR
-975 825 90 CLRPVR
-875 875 90 CLRPVR
-975 925 90 CLRPVR
-625 525 178 CLRPVR
-625 976 178 CLRPVR
-745 445 110 CLRPVR
-745 1056 110 CLRPVR
-3225 2900 90 CLRPVSQ
-3325 2900 90 CLRPVR
-5775 575 90 CLRPVSQ
-5875 575 90 CLRPVR
-5975 575 90 CLRPVR
-6075 575 90 CLRPVR
-6075 275 90 CLRPVR
-5975 275 90 CLRPVR
-5875 275 90 CLRPVR
-5775 275 90 CLRPVR
-5825 2100 110 CLRPVSQ
-5925 2100 110 CLRPVR
-6025 2100 110 CLRPVR
-5775 1175 90 CLRPVSQ
-5875 1175 90 CLRPVR
-5975 1175 90 CLRPVR
-6075 1175 90 CLRPVR
-6075 875 90 CLRPVR
-5975 875 90 CLRPVR
-5875 875 90 CLRPVR
-5775 875 90 CLRPVR
-5625 1875 90 CLRPVSQ
-5925 1875 90 CLRPVR
-5825 2925 110 CLRPVSQ
-5925 2925 110 CLRPVR
-6025 2925 110 CLRPVR
-550 2695 100 CLRPVSQ
-550 2872 100 CLRPVR
-648 2646 100 CLRPVR
-648 2922 100 CLRPVR
-4750 3300 90 CLRPVSQ
-4900 3300 90 CLRPVR
-3000 2975 90 CLRPVSQ
-3000 2575 90 CLRPVR
-4475 625 90 CLRPVSQ
-4475 225 90 CLRPVR
-3325 2600 90 CLRPVSQ
-3225 2600 90 CLRPVR
-6525 475 90 CLRPVSQ
-6525 575 90 CLRPVR
-6525 675 90 CLRPVR
-6525 775 90 CLRPVR
-6525 875 90 CLRPVR
-6525 975 90 CLRPVR
-6525 1075 90 CLRPVR
-6525 1175 90 CLRPVR
-6525 1275 90 CLRPVR
-6525 1375 90 CLRPVR
-6525 1475 90 CLRPVR
-6525 1575 90 CLRPVR
-6525 1675 90 CLRPVR
-6525 1775 90 CLRPVR
-6525 1875 90 CLRPVR
-6525 1975 90 CLRPVR
-6525 2075 90 CLRPVR
-6525 2175 90 CLRPVR
-6525 2275 90 CLRPVR
-6525 2375 90 CLRPVR
-6525 2475 90 CLRPVR
-6525 2575 90 CLRPVR
-6525 2675 90 CLRPVR
-6525 2775 90 CLRPVR
-6525 2875 90 CLRPVR
-6525 2975 90 CLRPVR
-6525 3075 90 CLRPVR
-6525 3175 90 CLRPVR
-6525 3275 90 CLRPVR
-6525 3375 90 CLRPVR
-6525 3475 90 CLRPVR
-6525 3575 90 CLRPVR
-6425 475 90 CLRPVR
-6425 575 90 CLRPVR
-6425 675 90 CLRPVR
-6425 775 90 CLRPVR
-6425 875 90 CLRPVR
-6425 975 90 CLRPVR
-6425 1075 90 CLRPVR
-6425 1175 90 CLRPVR
-6425 1275 90 CLRPVR
-6425 1375 90 CLRPVR
-6425 1475 90 CLRPVR
-6425 1575 90 CLRPVR
-6425 1675 90 CLRPVR
-6425 1775 90 CLRPVR
-6425 1875 90 CLRPVR
-6425 1975 90 CLRPVR
-6425 2075 90 CLRPVR
-6425 2175 90 CLRPVR
-6425 2275 90 CLRPVR
-6425 2375 90 CLRPVR
-6425 2475 90 CLRPVR
-6425 2575 90 CLRPVR
-6425 2675 90 CLRPVR
-6425 2775 90 CLRPVR
-6425 2875 90 CLRPVR
-6425 2975 90 CLRPVR
-6425 3075 90 CLRPVR
-6425 3175 90 CLRPVR
-6425 3275 90 CLRPVR
-6425 3375 90 CLRPVR
-6425 3475 90 CLRPVR
-6425 3575 90 CLRPVR
-6325 475 90 CLRPVR
-6325 575 90 CLRPVR
-6325 675 90 CLRPVR
-6325 775 90 CLRPVR
-6325 875 90 CLRPVR
-6325 975 90 CLRPVR
-6325 1075 90 CLRPVR
-6325 1175 90 CLRPVR
-6325 1275 90 CLRPVR
-6325 1375 90 CLRPVR
-6325 1475 90 CLRPVR
-6325 1575 90 CLRPVR
-6325 1675 90 CLRPVR
-6325 1775 90 CLRPVR
-6325 1875 90 CLRPVR
-6325 1975 90 CLRPVR
-6325 2075 90 CLRPVR
-6325 2175 90 CLRPVR
-6325 2275 90 CLRPVR
-6325 2375 90 CLRPVR
-6325 2475 90 CLRPVR
-6325 2575 90 CLRPVR
-6325 2675 90 CLRPVR
-6325 2775 90 CLRPVR
-6325 2875 90 CLRPVR
-6325 2975 90 CLRPVR
-6325 3075 90 CLRPVR
-6325 3175 90 CLRPVR
-6325 3275 90 CLRPVR
-6325 3375 90 CLRPVR
-6325 3475 90 CLRPVR
-6325 3575 90 CLRPVR
-6625 3775 150 CLRPVR
-6625 275 150 CLRPVR
-5300 2925 110 CLRPVSQ
-5400 2925 110 CLRPVR
-5500 2925 110 CLRPVR
-4900 3700 90 CLRPVSQ
-4750 3700 90 CLRPVR
-1160 2800 90 CLRPVSQ
-760 2800 90 CLRPVR
-2800 2575 90 CLRPVSQ
-2800 2975 90 CLRPVR
-5700 3600 110 CLRPVSQ
-5600 3600 110 CLRPVR
-5500 3600 110 CLRPVR
-4950 2775 100 CLRPVSQ
-4700 2775 100 CLRPVR
-1725 3200 90 CLRPVSQ
-1825 3200 90 CLRPVR
-1925 3200 90 CLRPVR
-2025 3200 90 CLRPVR
-2025 2900 90 CLRPVR
-1925 2900 90 CLRPVR
-1825 2900 90 CLRPVR
-1725 2900 90 CLRPVR
-1050 3300 100 CLRPVSQ
-1150 3300 100 CLRPVR
-3550 625 90 CLRPVSQ
-3550 225 90 CLRPVR
-5350 2100 90 CLRPVSQ
-5450 2100 90 CLRPVR
-5825 2450 110 CLRPVSQ
-5925 2450 110 CLRPVR
-6025 2450 110 CLRPVR
-850 3300 90 CLRPVSQ
-850 3600 90 CLRPVR
-4950 2200 100 CLRPVSQ
-4700 2200 100 CLRPVR
-815 2395 90 CLRPVSQ
-815 2495 90 CLRPVR
-775 1240 150 CLRPVR
-775 2180 150 CLRPVR
-825 1510 100 CLRPVR
-725 1560 100 CLRPVR
-825 1610 100 CLRPVR
-725 1660 100 CLRPVR
-825 1710 100 CLRPVR
-725 1760 100 CLRPVR
-825 1810 100 CLRPVR
-725 1860 100 CLRPVR
-825 1910 100 CLRPVSQ
-2800 2350 90 CLRPVSQ
-2900 2350 90 CLRPVR
-3000 2350 90 CLRPVR
-3100 2350 90 CLRPVR
-3200 2350 90 CLRPVR
-3300 2350 90 CLRPVR
-3400 2350 90 CLRPVR
-3500 2350 90 CLRPVR
-3600 2350 90 CLRPVR
-3700 2350 90 CLRPVR
-3800 2350 90 CLRPVR
-3900 2350 90 CLRPVR
-3900 2050 90 CLRPVR
-3800 2050 90 CLRPVR
-3700 2050 90 CLRPVR
-3600 2050 90 CLRPVR
-3500 2050 90 CLRPVR
-3400 2050 90 CLRPVR
-3300 2050 90 CLRPVR
-3200 2050 90 CLRPVR
-3100 2050 90 CLRPVR
-3000 2050 90 CLRPVR
-2900 2050 90 CLRPVR
-2800 2050 90 CLRPVR
-1400 2650 90 CLRPVSQ
-1500 2650 90 CLRPVR
-1600 2650 90 CLRPVR
-1700 2650 90 CLRPVR
-1800 2650 90 CLRPVR
-1900 2650 90 CLRPVR
-2000 2650 90 CLRPVR
-2100 2650 90 CLRPVR
-2200 2650 90 CLRPVR
-2300 2650 90 CLRPVR
-2400 2650 90 CLRPVR
-2500 2650 90 CLRPVR
-2500 2050 90 CLRPVR
-2400 2050 90 CLRPVR
-2300 2050 90 CLRPVR
-2200 2050 90 CLRPVR
-2100 2050 90 CLRPVR
-2000 2050 90 CLRPVR
-1900 2050 90 CLRPVR
-1800 2050 90 CLRPVR
-1700 2050 90 CLRPVR
-1600 2050 90 CLRPVR
-1500 2050 90 CLRPVR
-1400 2050 90 CLRPVR
-4200 2050 100 CLRPVSQ
-4300 2050 100 CLRPVR
-4200 2150 100 CLRPVR
-4300 2150 100 CLRPVR
-4200 2250 100 CLRPVR
-4300 2250 100 CLRPVR
-4200 2350 100 CLRPVR
-4300 2350 100 CLRPVR
-3175 3725 90 CLRPVSQ
-3275 3725 90 CLRPVR
-2450 575 90 CLRPVSQ
-2550 575 90 CLRPVR
-2650 575 90 CLRPVR
-2750 575 90 CLRPVR
-2850 575 90 CLRPVR
-2950 575 90 CLRPVR
-3050 575 90 CLRPVR
-3150 575 90 CLRPVR
-3150 275 90 CLRPVR
-3050 275 90 CLRPVR
-2950 275 90 CLRPVR
-2850 275 90 CLRPVR
-2750 275 90 CLRPVR
-2650 275 90 CLRPVR
-2550 275 90 CLRPVR
-2450 275 90 CLRPVR
-5300 2450 110 CLRPVSQ
-5400 2450 110 CLRPVR
-5500 2450 110 CLRPVR
-575 2395 90 CLRPVSQ
-575 2495 90 CLRPVR
-1575 3425 90 CLRPVSQ
-1575 3725 90 CLRPVR
-5575 625 90 CLRPVSQ
-5575 225 90 CLRPVR
-3975 575 90 CLRPVSQ
-4075 575 90 CLRPVR
-4175 575 90 CLRPVR
-4275 575 90 CLRPVR
-4275 275 90 CLRPVR
-4175 275 90 CLRPVR
-4075 275 90 CLRPVR
-3975 275 90 CLRPVR
-4875 1175 90 CLRPVSQ
-4975 1175 90 CLRPVR
-5075 1175 90 CLRPVR
-5175 1175 90 CLRPVR
-5175 875 90 CLRPVR
-5075 875 90 CLRPVR
-4975 875 90 CLRPVR
-4875 875 90 CLRPVR
-5375 1225 90 CLRPVSQ
-5375 825 90 CLRPVR
-4675 1225 90 CLRPVSQ
-4675 825 90 CLRPVR
-4675 625 90 CLRPVSQ
-4675 225 90 CLRPVR
-4875 575 90 CLRPVSQ
-4975 575 90 CLRPVR
-5075 575 90 CLRPVR
-5175 575 90 CLRPVR
-5175 275 90 CLRPVR
-5075 275 90 CLRPVR
-4975 275 90 CLRPVR
-4875 275 90 CLRPVR
-5375 625 90 CLRPVSQ
-5375 225 90 CLRPVR
-5575 1225 90 CLRPVSQ
-5575 825 90 CLRPVR
-3975 1175 90 CLRPVSQ
-4075 1175 90 CLRPVR
-4175 1175 90 CLRPVR
-4275 1175 90 CLRPVR
-4275 875 90 CLRPVR
-4175 875 90 CLRPVR
-4075 875 90 CLRPVR
-3975 875 90 CLRPVR
-4475 1225 90 CLRPVSQ
-4475 825 90 CLRPVR
-4150 3600 110 CLRPVSQ
-4050 3600 110 CLRPVR
-3950 3600 110 CLRPVR
-2975 3425 90 CLRPVSQ
-2975 3725 90 CLRPVR
-3350 625 90 CLRPVSQ
-3350 225 90 CLRPVR
-4750 3425 90 CLRPVR
-4900 3425 90 CLRPVR
-5600 3425 90 CLRPVR
-6025 2600 90 CLRPVR
-5400 2600 90 CLRPVR
-5400 3075 90 CLRPVR
-6025 3075 90 CLRPVR
-5925 2775 90 CLRPVR
-6125 2875 90 CLRPVR
-5400 3275 90 CLRPVR
-3950 3175 90 CLRPVR
-4750 3175 90 CLRPVR
-6225 3425 90 CLRPVR
-6125 2675 90 CLRPVR
-5925 2225 90 CLRPVR
-4625 3425 90 CLRPVR
-5625 2200 90 CLRPVR
-6225 1025 90 CLRPVR
-6475 1025 90 CLRPVR
-5675 1075 90 CLRPVR
-5975 475 90 CLRPVR
-5375 475 90 CLRPVR
-4875 475 90 CLRPVR
-5175 400 90 CLRPVR
-5775 400 90 CLRPVR
-4025 725 90 CLRPVR
-4875 725 90 CLRPVR
-5375 725 90 CLRPVR
-5925 725 90 CLRPVR
-4975 950 90 CLRPVR
-1400 950 90 CLRPVR
-1750 950 90 CLRPVR
-2375 950 90 CLRPVR
-3225 3175 90 CLRPVR
-3275 3925 90 CLRPVR
-2400 2450 90 CLRPVR
-2700 2450 90 CLRPVR
-1400 2450 90 CLRPVR
-1300 2800 90 CLRPVR
-1300 2900 90 CLRPVR
-2525 2875 70 CLRPVR
-4275 1000 90 CLRPVR
-5250 1000 90 CLRPVR
-3150 1000 90 CLRPVR
-4475 950 90 CLRPVR
-2025 3050 90 CLRPVR
-1275 3925 90 CLRPVR
-2125 3925 90 CLRPVR
-2725 3925 90 CLRPVR
-3600 3175 90 CLRPVR
-775 3925 90 CLRPVR
-4875 1075 70 CLRPVR
-6200 525 70 CLRPVR
-6225 875 70 CLRPVR
-5375 1075 70 CLRPVR
-6375 1725 70 CLRPVR
-2625 1725 70 CLRPVR
-5975 650 70 CLRPVR
-4075 475 90 CLRPVR
-2050 825 70 CLRPVR
-4025 2350 70 CLRPVR
-2950 1300 70 CLRPVR
-3350 525 70 CLRPVR
-5275 225 70 CLRPVR
-6150 150 70 CLRPVR
-4775 575 70 CLRPVR
-6225 350 70 CLRPVR
-6475 200 70 CLRPVR
-5575 150 70 CLRPVR
-5025 150 70 CLRPVR
-5475 1425 70 CLRPVR
-6100 1425 70 CLRPVR
-6150 1300 70 CLRPVR
-5550 1350 70 CLRPVR
-1950 575 70 CLRPVR
-2425 3600 70 CLRPVR
-2100 675 70 CLRPVR
-1150 1125 70 CLRPVR
-5075 1075 70 CLRPVR
-4175 1350 70 CLRPVR
-2000 625 70 CLRPVR
-5125 800 70 CLRPVR
-5575 2375 70 CLRPVR
-4475 300 70 CLRPVR
-3550 1300 70 CLRPVR
-2725 3525 90 CLRPVR
-950 2450 70 CLRPVR
-1150 2450 70 CLRPVR
-5825 2850 70 CLRPVR
-1100 3675 70 CLRPVR
-1825 3850 70 CLRPVR
-2525 3850 70 CLRPVR
-2125 3525 90 CLRPVR
-2325 3525 90 CLRPVR
-1925 3600 70 CLRPVR
-4175 1075 70 CLRPVR
-4475 1075 70 CLRPVR
-4725 1075 70 CLRPVR
-4675 150 70 CLRPVR
-2550 1200 70 CLRPVR
-2650 1200 70 CLRPVR
-2650 1300 70 CLRPVR
-2500 1300 70 CLRPVR
-2600 1050 70 CLRPVR
-2450 1050 70 CLRPVR
-2850 1200 70 CLRPVR
-3000 1200 70 CLRPVR
-2900 1250 70 CLRPVR
-3100 1250 70 CLRPVR
-2950 1375 70 CLRPVR
-3225 1375 70 CLRPVR
-1450 1375 70 CLRPVR
-1550 1250 70 CLRPVR
-1600 1000 70 CLRPVR
-3000 1000 70 CLRPVR
-1700 1425 70 CLRPVR
-2800 1425 70 CLRPVR
-1800 1325 70 CLRPVR
-2750 1300 70 CLRPVR
-1900 1050 70 CLRPVR
-2700 1050 70 CLRPVR
-2000 2550 70 CLRPVR
-2700 2550 70 CLRPVR
-3225 2450 90 CLRPVR
-3500 2500 70 CLRPVR
-2025 2825 70 CLRPVR
-2200 2825 70 CLRPVR
-2575 2500 70 CLRPVR
-2100 2500 70 CLRPVR
-2575 1975 70 CLRPVR
-2200 2250 90 CLRPVR
-2400 2250 90 CLRPVR
-3000 2125 70 CLRPVR
-2150 2125 70 CLRPVR
-3100 2175 70 CLRPVR
-2250 2175 70 CLRPVR
-2250 1950 70 CLRPVR
-3150 1925 70 CLRPVR
-1500 1875 70 CLRPVR
-3250 1875 70 CLRPVR
-2350 1875 70 CLRPVR
-3600 2525 70 CLRPVR
-2925 2225 70 CLRPVR
-1700 2175 70 CLRPVR
-2100 2300 70 CLRPVR
-3900 2250 70 CLRPVR
-2575 2775 70 CLRPVR
-3850 2775 70 CLRPVR
-1550 2825 70 CLRPVR
-3400 2825 70 CLRPVR
-2300 1825 70 CLRPVR
-2450 1825 70 CLRPVR
-2275 900 70 CLRPVR
-2550 900 70 CLRPVR
-2500 1725 70 CLRPVR
-1900 1750 70 CLRPVR
-1800 1700 70 CLRPVR
-4300 1975 70 CLRPVR
-3325 2700 90 CLRPVR
-2900 2650 70 CLRPVR
-4800 2650 70 CLRPVR
-4700 2900 90 CLRPVR
-4625 2825 70 CLRPVR
-3000 1775 70 CLRPVR
-4850 1775 70 CLRPVR
-3050 850 70 CLRPVR
-2750 850 70 CLRPVR
-3300 800 70 CLRPVR
-2850 800 70 CLRPVR
-3500 2200 70 CLRPVR
-3650 2200 70 CLRPVR
-3550 3850 70 CLRPVR
-2975 3525 90 CLRPVR
-3750 3600 70 CLRPVR
-1075 1475 70 CLRPVR
-1220 1605 70 CLRPVR
-4500 1825 70 CLRPVR
-2625 3525 70 CLRPVR
-3275 3525 70 CLRPVR
-4000 2250 70 CLRPVR
-4050 2150 70 CLRPVR
-4100 2050 70 CLRPVR
-1050 2700 70 CLRPVR
-4150 2725 70 CLRPVR
-4025 2500 70 CLRPVR
-2225 3100 70 CLRPVR
-4025 3100 70 CLRPVR
-5200 2600 70 CLRPVR
-5200 3375 70 CLRPVR
-2100 3225 70 CLRPVR
-5700 3225 70 CLRPVR
-5700 2450 70 CLRPVR
-5300 3275 70 CLRPVR
-2825 3300 70 CLRPVR
-3275 3050 70 CLRPVR
-495 3300 70 CLRPVR
-1300 2550 90 CLRPVR
-765 2570 70 CLRPVR
-905 3055 70 CLRPVR
-5925 3600 90 CLRPVR
-4050 3425 90 CLRPVR
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aic_componentpin.ps b/doc/aic_componentpin.ps
deleted file mode 100644 (file)
index 932fd68..0000000
+++ /dev/null
@@ -1,2137 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), merged layouts
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-/Color {0.127 0.540 0.127 mysetrgbcolor} def Color
-% LayerGroup: 3, Layer: "unused" (#7)
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 120 80 PVR
-575 3762 120 80 PVR
-6625 275 120 80 PVR
-6625 3762 120 80 PVR
-1155 3055 60 35 PVSQ
-755 3055 60 35 PVR
-1725 3725 60 35 PVSQ
-1825 3725 60 35 PVR
-1925 3725 60 35 PVR
-2025 3725 60 35 PVR
-2125 3725 60 35 PVR
-2225 3725 60 35 PVR
-2325 3725 60 35 PVR
-2425 3725 60 35 PVR
-2525 3725 60 35 PVR
-2625 3725 60 35 PVR
-2725 3725 60 35 PVR
-2825 3725 60 35 PVR
-2825 3425 60 35 PVR
-2725 3425 60 35 PVR
-2625 3425 60 35 PVR
-2525 3425 60 35 PVR
-2425 3425 60 35 PVR
-2325 3425 60 35 PVR
-2225 3425 60 35 PVR
-2125 3425 60 35 PVR
-2025 3425 60 35 PVR
-1925 3425 60 35 PVR
-1825 3425 60 35 PVR
-1725 3425 60 35 PVR
-1375 3725 60 35 PVSQ
-1275 3725 60 35 PVR
-5400 1625 60 35 PVSQ
-5350 1525 60 35 PVR
-5300 1625 60 35 PVR
-5250 1525 60 35 PVR
-5200 1625 60 35 PVR
-5150 1525 60 35 PVR
-5100 1625 60 35 PVR
-5050 1525 60 35 PVR
-5000 1625 60 35 PVR
-4950 1525 60 35 PVR
-4900 1625 60 35 PVR
-4850 1525 60 35 PVR
-4800 1625 60 35 PVR
-4750 1525 60 35 PVR
-4700 1625 60 35 PVR
-4650 1525 60 35 PVR
-4600 1625 60 35 PVR
-4550 1525 60 35 PVR
-4500 1625 60 35 PVR
-4450 1525 60 35 PVR
-4400 1625 60 35 PVR
-4350 1525 60 35 PVR
-4300 1625 60 35 PVR
-4250 1525 60 35 PVR
-4200 1625 60 35 PVR
-4150 1525 60 35 PVR
-4100 1625 60 35 PVR
-4050 1525 60 35 PVR
-4000 1625 60 35 PVR
-3950 1525 60 35 PVR
-3900 1625 60 35 PVR
-3850 1525 60 35 PVR
-3800 1625 60 35 PVR
-3750 1525 60 35 PVR
-3700 1625 60 35 PVR
-3650 1525 60 35 PVR
-3400 1625 60 35 PVR
-3350 1525 60 35 PVR
-3300 1625 60 35 PVR
-3250 1525 60 35 PVR
-3200 1625 60 35 PVR
-3150 1525 60 35 PVR
-3100 1625 60 35 PVR
-3050 1525 60 35 PVR
-3000 1625 60 35 PVR
-2950 1525 60 35 PVR
-2900 1625 60 35 PVR
-2850 1525 60 35 PVR
-2800 1625 60 35 PVR
-2750 1525 60 35 PVR
-2700 1625 60 35 PVR
-2650 1525 60 35 PVR
-2600 1625 60 35 PVR
-2550 1525 60 35 PVR
-2500 1625 60 35 PVR
-2450 1525 60 35 PVR
-2400 1625 60 35 PVR
-2350 1525 60 35 PVR
-2300 1625 60 35 PVR
-2250 1525 60 35 PVR
-2200 1625 60 35 PVR
-2150 1525 60 35 PVR
-2100 1625 60 35 PVR
-2050 1525 60 35 PVR
-2000 1625 60 35 PVR
-1950 1525 60 35 PVR
-1900 1625 60 35 PVR
-1850 1525 60 35 PVR
-1800 1625 60 35 PVR
-1750 1525 60 35 PVR
-1700 1625 60 35 PVR
-1650 1525 60 35 PVR
-5730 1575 80 60 PVR
-3525 1575 120 100 PVR
-1325 1575 120 100 PVR
-1375 3425 60 35 PVSQ
-1275 3425 60 35 PVR
-3175 3425 60 35 PVSQ
-3275 3425 60 35 PVR
-3600 2900 60 35 PVSQ
-3700 2900 60 35 PVR
-3800 2900 60 35 PVR
-3900 2900 60 35 PVR
-3900 2600 60 35 PVR
-3800 2600 60 35 PVR
-3700 2600 60 35 PVR
-3600 2600 60 35 PVR
-875 575 60 35 PVSQ
-975 625 60 35 PVR
-875 675 60 35 PVR
-975 725 60 35 PVR
-875 775 60 35 PVR
-975 825 60 35 PVR
-875 875 60 35 PVR
-975 925 60 35 PVR
-625 525 148 128 PVR
-625 976 148 128 PVR
-745 445 80 60 PVR
-745 1056 80 60 PVR
-3225 2900 60 35 PVSQ
-3325 2900 60 35 PVR
-5775 575 60 35 PVSQ
-5875 575 60 35 PVR
-5975 575 60 35 PVR
-6075 575 60 35 PVR
-6075 275 60 35 PVR
-5975 275 60 35 PVR
-5875 275 60 35 PVR
-5775 275 60 35 PVR
-5825 2100 80 42 PVSQ
-5925 2100 80 42 PVR
-6025 2100 80 42 PVR
-5775 1175 60 35 PVSQ
-5875 1175 60 35 PVR
-5975 1175 60 35 PVR
-6075 1175 60 35 PVR
-6075 875 60 35 PVR
-5975 875 60 35 PVR
-5875 875 60 35 PVR
-5775 875 60 35 PVR
-5625 1875 60 35 PVSQ
-5925 1875 60 35 PVR
-5825 2925 80 42 PVSQ
-5925 2925 80 42 PVR
-6025 2925 80 42 PVR
-550 2695 70 42 PVSQ
-550 2872 70 42 PVR
-648 2646 70 52 PVR
-648 2922 70 52 PVR
-4750 3300 60 35 PVSQ
-4900 3300 60 35 PVR
-3000 2975 60 35 PVSQ
-3000 2575 60 35 PVR
-4475 625 60 35 PVSQ
-4475 225 60 35 PVR
-3325 2600 60 35 PVSQ
-3225 2600 60 35 PVR
-6525 475 60 35 PVSQ
-6525 575 60 35 PVR
-6525 675 60 35 PVR
-6525 775 60 35 PVR
-6525 875 60 35 PVR
-6525 975 60 35 PVR
-6525 1075 60 35 PVR
-6525 1175 60 35 PVR
-6525 1275 60 35 PVR
-6525 1375 60 35 PVR
-6525 1475 60 35 PVR
-6525 1575 60 35 PVR
-6525 1675 60 35 PVR
-6525 1775 60 35 PVR
-6525 1875 60 35 PVR
-6525 1975 60 35 PVR
-6525 2075 60 35 PVR
-6525 2175 60 35 PVR
-6525 2275 60 35 PVR
-6525 2375 60 35 PVR
-6525 2475 60 35 PVR
-6525 2575 60 35 PVR
-6525 2675 60 35 PVR
-6525 2775 60 35 PVR
-6525 2875 60 35 PVR
-6525 2975 60 35 PVR
-6525 3075 60 35 PVR
-6525 3175 60 35 PVR
-6525 3275 60 35 PVR
-6525 3375 60 35 PVR
-6525 3475 60 35 PVR
-6525 3575 60 35 PVR
-6425 475 60 35 PVR
-6425 575 60 35 PVR
-6425 675 60 35 PVR
-6425 775 60 35 PVR
-6425 875 60 35 PVR
-6425 975 60 35 PVR
-6425 1075 60 35 PVR
-6425 1175 60 35 PVR
-6425 1275 60 35 PVR
-6425 1375 60 35 PVR
-6425 1475 60 35 PVR
-6425 1575 60 35 PVR
-6425 1675 60 35 PVR
-6425 1775 60 35 PVR
-6425 1875 60 35 PVR
-6425 1975 60 35 PVR
-6425 2075 60 35 PVR
-6425 2175 60 35 PVR
-6425 2275 60 35 PVR
-6425 2375 60 35 PVR
-6425 2475 60 35 PVR
-6425 2575 60 35 PVR
-6425 2675 60 35 PVR
-6425 2775 60 35 PVR
-6425 2875 60 35 PVR
-6425 2975 60 35 PVR
-6425 3075 60 35 PVR
-6425 3175 60 35 PVR
-6425 3275 60 35 PVR
-6425 3375 60 35 PVR
-6425 3475 60 35 PVR
-6425 3575 60 35 PVR
-6325 475 60 35 PVR
-6325 575 60 35 PVR
-6325 675 60 35 PVR
-6325 775 60 35 PVR
-6325 875 60 35 PVR
-6325 975 60 35 PVR
-6325 1075 60 35 PVR
-6325 1175 60 35 PVR
-6325 1275 60 35 PVR
-6325 1375 60 35 PVR
-6325 1475 60 35 PVR
-6325 1575 60 35 PVR
-6325 1675 60 35 PVR
-6325 1775 60 35 PVR
-6325 1875 60 35 PVR
-6325 1975 60 35 PVR
-6325 2075 60 35 PVR
-6325 2175 60 35 PVR
-6325 2275 60 35 PVR
-6325 2375 60 35 PVR
-6325 2475 60 35 PVR
-6325 2575 60 35 PVR
-6325 2675 60 35 PVR
-6325 2775 60 35 PVR
-6325 2875 60 35 PVR
-6325 2975 60 35 PVR
-6325 3075 60 35 PVR
-6325 3175 60 35 PVR
-6325 3275 60 35 PVR
-6325 3375 60 35 PVR
-6325 3475 60 35 PVR
-6325 3575 60 35 PVR
-6625 3775 120 80 PVR
-6625 275 120 80 PVR
-5300 2925 80 42 PVSQ
-5400 2925 80 42 PVR
-5500 2925 80 42 PVR
-4900 3700 60 35 PVSQ
-4750 3700 60 35 PVR
-1160 2800 60 35 PVSQ
-760 2800 60 35 PVR
-2800 2575 60 35 PVSQ
-2800 2975 60 35 PVR
-5700 3600 80 42 PVSQ
-5600 3600 80 42 PVR
-5500 3600 80 42 PVR
-4950 2775 70 42 PVSQ
-4700 2775 70 42 PVR
-1725 3200 60 35 PVSQ
-1825 3200 60 35 PVR
-1925 3200 60 35 PVR
-2025 3200 60 35 PVR
-2025 2900 60 35 PVR
-1925 2900 60 35 PVR
-1825 2900 60 35 PVR
-1725 2900 60 35 PVR
-1050 3300 70 42 PVSQ
-1150 3300 70 42 PVR
-3550 625 60 35 PVSQ
-3550 225 60 35 PVR
-5350 2100 60 35 PVSQ
-5450 2100 60 35 PVR
-5825 2450 80 42 PVSQ
-5925 2450 80 42 PVR
-6025 2450 80 42 PVR
-850 3300 60 35 PVSQ
-850 3600 60 35 PVR
-4950 2200 70 42 PVSQ
-4700 2200 70 42 PVR
-815 2395 60 35 PVSQ
-815 2495 60 35 PVR
-775 1240 120 100 PVR
-775 2180 120 100 PVR
-825 1510 70 42 PVR
-725 1560 70 42 PVR
-825 1610 70 42 PVR
-725 1660 70 42 PVR
-825 1710 70 42 PVR
-725 1760 70 42 PVR
-825 1810 70 42 PVR
-725 1860 70 42 PVR
-825 1910 70 42 PVSQ
-2800 2350 60 35 PVSQ
-2900 2350 60 35 PVR
-3000 2350 60 35 PVR
-3100 2350 60 35 PVR
-3200 2350 60 35 PVR
-3300 2350 60 35 PVR
-3400 2350 60 35 PVR
-3500 2350 60 35 PVR
-3600 2350 60 35 PVR
-3700 2350 60 35 PVR
-3800 2350 60 35 PVR
-3900 2350 60 35 PVR
-3900 2050 60 35 PVR
-3800 2050 60 35 PVR
-3700 2050 60 35 PVR
-3600 2050 60 35 PVR
-3500 2050 60 35 PVR
-3400 2050 60 35 PVR
-3300 2050 60 35 PVR
-3200 2050 60 35 PVR
-3100 2050 60 35 PVR
-3000 2050 60 35 PVR
-2900 2050 60 35 PVR
-2800 2050 60 35 PVR
-1400 2650 60 35 PVSQ
-1500 2650 60 35 PVR
-1600 2650 60 35 PVR
-1700 2650 60 35 PVR
-1800 2650 60 35 PVR
-1900 2650 60 35 PVR
-2000 2650 60 35 PVR
-2100 2650 60 35 PVR
-2200 2650 60 35 PVR
-2300 2650 60 35 PVR
-2400 2650 60 35 PVR
-2500 2650 60 35 PVR
-2500 2050 60 35 PVR
-2400 2050 60 35 PVR
-2300 2050 60 35 PVR
-2200 2050 60 35 PVR
-2100 2050 60 35 PVR
-2000 2050 60 35 PVR
-1900 2050 60 35 PVR
-1800 2050 60 35 PVR
-1700 2050 60 35 PVR
-1600 2050 60 35 PVR
-1500 2050 60 35 PVR
-1400 2050 60 35 PVR
-4200 2050 70 42 PVSQ
-4300 2050 70 42 PVR
-4200 2150 70 42 PVR
-4300 2150 70 42 PVR
-4200 2250 70 42 PVR
-4300 2250 70 42 PVR
-4200 2350 70 42 PVR
-4300 2350 70 42 PVR
-3175 3725 60 35 PVSQ
-3275 3725 60 35 PVR
-2450 575 60 35 PVSQ
-2550 575 60 35 PVR
-2650 575 60 35 PVR
-2750 575 60 35 PVR
-2850 575 60 35 PVR
-2950 575 60 35 PVR
-3050 575 60 35 PVR
-3150 575 60 35 PVR
-3150 275 60 35 PVR
-3050 275 60 35 PVR
-2950 275 60 35 PVR
-2850 275 60 35 PVR
-2750 275 60 35 PVR
-2650 275 60 35 PVR
-2550 275 60 35 PVR
-2450 275 60 35 PVR
-5300 2450 80 42 PVSQ
-5400 2450 80 42 PVR
-5500 2450 80 42 PVR
-575 2395 60 35 PVSQ
-575 2495 60 35 PVR
-1575 3425 60 35 PVSQ
-1575 3725 60 35 PVR
-5575 625 60 35 PVSQ
-5575 225 60 35 PVR
-3975 575 60 35 PVSQ
-4075 575 60 35 PVR
-4175 575 60 35 PVR
-4275 575 60 35 PVR
-4275 275 60 35 PVR
-4175 275 60 35 PVR
-4075 275 60 35 PVR
-3975 275 60 35 PVR
-4875 1175 60 35 PVSQ
-4975 1175 60 35 PVR
-5075 1175 60 35 PVR
-5175 1175 60 35 PVR
-5175 875 60 35 PVR
-5075 875 60 35 PVR
-4975 875 60 35 PVR
-4875 875 60 35 PVR
-5375 1225 60 35 PVSQ
-5375 825 60 35 PVR
-4675 1225 60 35 PVSQ
-4675 825 60 35 PVR
-4675 625 60 35 PVSQ
-4675 225 60 35 PVR
-4875 575 60 35 PVSQ
-4975 575 60 35 PVR
-5075 575 60 35 PVR
-5175 575 60 35 PVR
-5175 275 60 35 PVR
-5075 275 60 35 PVR
-4975 275 60 35 PVR
-4875 275 60 35 PVR
-5375 625 60 35 PVSQ
-5375 225 60 35 PVR
-5575 1225 60 35 PVSQ
-5575 825 60 35 PVR
-3975 1175 60 35 PVSQ
-4075 1175 60 35 PVR
-4175 1175 60 35 PVR
-4275 1175 60 35 PVR
-4275 875 60 35 PVR
-4175 875 60 35 PVR
-4075 875 60 35 PVR
-3975 875 60 35 PVR
-4475 1225 60 35 PVSQ
-4475 825 60 35 PVR
-4150 3600 80 42 PVSQ
-4050 3600 80 42 PVR
-3950 3600 80 42 PVR
-2975 3425 60 35 PVSQ
-2975 3725 60 35 PVR
-3350 625 60 35 PVSQ
-3350 225 60 35 PVR
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-4750 3425 60 35 PVR
-4900 3425 60 35 PVR
-5600 3425 60 35 PVR
-6025 2600 60 35 PVR
-5400 2600 60 35 PVR
-5400 3075 60 35 PVR
-6025 3075 60 35 PVR
-5925 2775 60 35 PVR
-6125 2875 60 35 PVR
-5400 3275 60 35 PVR
-3950 3175 60 35 PVR
-4750 3175 60 35 PVR
-6225 3425 60 35 PVR
-6125 2675 60 35 PVR
-5925 2225 60 35 PVR
-4625 3425 60 35 PVR
-5625 2200 60 35 PVR
-6225 1025 60 35 PVR
-6475 1025 60 35 PVR
-5675 1075 60 35 PVR
-5975 475 60 35 PVR
-5375 475 60 35 PVR
-4875 475 60 35 PVR
-5175 400 60 35 PVR
-5775 400 60 35 PVR
-4025 725 60 35 PVR
-4875 725 60 35 PVR
-5375 725 60 35 PVR
-5925 725 60 35 PVR
-4975 950 60 35 PVR
-1400 950 60 35 PVR
-1750 950 60 35 PVR
-2375 950 60 35 PVR
-3225 3175 60 35 PVR
-3275 3925 60 35 PVR
-2400 2450 60 35 PVR
-2700 2450 60 35 PVR
-1400 2450 60 35 PVR
-1300 2800 60 35 PVR
-1300 2900 60 35 PVR
-2525 2875 40 20 PVR
-4275 1000 60 35 PVR
-5250 1000 60 35 PVR
-3150 1000 60 35 PVR
-4475 950 60 35 PVR
-2025 3050 60 35 PVR
-1275 3925 60 35 PVR
-2125 3925 60 35 PVR
-2725 3925 60 35 PVR
-3600 3175 60 35 PVR
-775 3925 60 35 PVR
-4875 1075 40 20 PVR
-6200 525 40 20 PVR
-6225 875 40 20 PVR
-5375 1075 40 20 PVR
-6375 1725 40 20 PVR
-2625 1725 40 20 PVR
-5975 650 40 20 PVR
-4075 475 60 35 PVR
-2050 825 40 20 PVR
-4025 2350 40 20 PVR
-2950 1300 40 20 PVR
-3350 525 40 20 PVR
-5275 225 40 20 PVR
-6150 150 40 20 PVR
-4775 575 40 20 PVR
-6225 350 40 20 PVR
-6475 200 40 20 PVR
-5575 150 40 20 PVR
-5025 150 40 20 PVR
-5475 1425 40 20 PVR
-6100 1425 40 20 PVR
-6150 1300 40 20 PVR
-5550 1350 40 20 PVR
-1950 575 40 20 PVR
-2425 3600 40 20 PVR
-2100 675 40 20 PVR
-1150 1125 40 20 PVR
-5075 1075 40 20 PVR
-4175 1350 40 20 PVR
-2000 625 40 20 PVR
-5125 800 40 20 PVR
-5575 2375 40 20 PVR
-4475 300 40 20 PVR
-3550 1300 40 20 PVR
-2725 3525 60 35 PVR
-950 2450 40 20 PVR
-1150 2450 40 20 PVR
-5825 2850 40 20 PVR
-1100 3675 40 20 PVR
-1825 3850 40 20 PVR
-2525 3850 40 20 PVR
-2125 3525 60 35 PVR
-2325 3525 60 35 PVR
-1925 3600 40 20 PVR
-4175 1075 40 20 PVR
-4475 1075 40 20 PVR
-4725 1075 40 20 PVR
-4675 150 40 20 PVR
-2550 1200 40 20 PVR
-2650 1200 40 20 PVR
-2650 1300 40 20 PVR
-2500 1300 40 20 PVR
-2600 1050 40 20 PVR
-2450 1050 40 20 PVR
-2850 1200 40 20 PVR
-3000 1200 40 20 PVR
-2900 1250 40 20 PVR
-3100 1250 40 20 PVR
-2950 1375 40 20 PVR
-3225 1375 40 20 PVR
-1450 1375 40 20 PVR
-1550 1250 40 20 PVR
-1600 1000 40 20 PVR
-3000 1000 40 20 PVR
-1700 1425 40 20 PVR
-2800 1425 40 20 PVR
-1800 1325 40 20 PVR
-2750 1300 40 20 PVR
-1900 1050 40 20 PVR
-2700 1050 40 20 PVR
-2000 2550 40 20 PVR
-2700 2550 40 20 PVR
-3225 2450 60 35 PVR
-3500 2500 40 20 PVR
-2025 2825 40 20 PVR
-2200 2825 40 20 PVR
-2575 2500 40 20 PVR
-2100 2500 40 20 PVR
-2575 1975 40 20 PVR
-2200 2250 60 35 PVR
-2400 2250 60 35 PVR
-3000 2125 40 20 PVR
-2150 2125 40 20 PVR
-3100 2175 40 20 PVR
-2250 2175 40 20 PVR
-2250 1950 40 20 PVR
-3150 1925 40 20 PVR
-1500 1875 40 20 PVR
-3250 1875 40 20 PVR
-2350 1875 40 20 PVR
-3600 2525 40 20 PVR
-2925 2225 40 20 PVR
-1700 2175 40 20 PVR
-2100 2300 40 20 PVR
-3900 2250 40 20 PVR
-2575 2775 40 20 PVR
-3850 2775 40 20 PVR
-1550 2825 40 20 PVR
-3400 2825 40 20 PVR
-2300 1825 40 20 PVR
-2450 1825 40 20 PVR
-2275 900 40 20 PVR
-2550 900 40 20 PVR
-2500 1725 40 20 PVR
-1900 1750 40 20 PVR
-1800 1700 40 20 PVR
-4300 1975 40 20 PVR
-3325 2700 60 35 PVR
-2900 2650 40 20 PVR
-4800 2650 40 20 PVR
-4700 2900 60 35 PVR
-4625 2825 40 20 PVR
-3000 1775 40 20 PVR
-4850 1775 40 20 PVR
-3050 850 40 20 PVR
-2750 850 40 20 PVR
-3300 800 40 20 PVR
-2850 800 40 20 PVR
-3500 2200 40 20 PVR
-3650 2200 40 20 PVR
-3550 3850 40 20 PVR
-2975 3525 60 35 PVR
-3750 3600 40 20 PVR
-1075 1475 40 20 PVR
-1220 1605 40 20 PVR
-4500 1825 40 20 PVR
-2625 3525 40 20 PVR
-3275 3525 40 20 PVR
-4000 2250 40 20 PVR
-4050 2150 40 20 PVR
-4100 2050 40 20 PVR
-1050 2700 40 20 PVR
-4150 2725 40 20 PVR
-4025 2500 40 20 PVR
-2225 3100 40 20 PVR
-4025 3100 40 20 PVR
-5200 2600 40 20 PVR
-5200 3375 40 20 PVR
-2100 3225 40 20 PVR
-5700 3225 40 20 PVR
-5700 2450 40 20 PVR
-5300 3275 40 20 PVR
-2825 3300 40 20 PVR
-3275 3050 40 20 PVR
-495 3300 40 20 PVR
-1300 2550 60 35 PVR
-765 2570 40 20 PVR
-905 3055 40 20 PVR
-5925 3600 60 35 PVR
-4050 3425 60 35 PVR
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 20 10 DH
-575 3762 20 10 DH
-6625 275 20 10 DH
-6625 3762 20 10 DH
-5730 1575 20 10 DH
-3525 1575 20 10 DH
-1325 1575 20 10 DH
-625 525 20 10 DH
-625 976 20 10 DH
-745 445 20 10 DH
-745 1056 20 10 DH
-5825 2100 20 10 DH
-5925 2100 20 10 DH
-6025 2100 20 10 DH
-5825 2925 20 10 DH
-5925 2925 20 10 DH
-6025 2925 20 10 DH
-550 2695 20 10 DH
-550 2872 20 10 DH
-648 2646 20 10 DH
-648 2922 20 10 DH
-6625 3775 20 10 DH
-6625 275 20 10 DH
-5300 2925 20 10 DH
-5400 2925 20 10 DH
-5500 2925 20 10 DH
-5700 3600 20 10 DH
-5600 3600 20 10 DH
-5500 3600 20 10 DH
-4950 2775 20 10 DH
-4700 2775 20 10 DH
-1050 3300 20 10 DH
-1150 3300 20 10 DH
-5825 2450 20 10 DH
-5925 2450 20 10 DH
-6025 2450 20 10 DH
-4950 2200 20 10 DH
-4700 2200 20 10 DH
-775 1240 20 10 DH
-775 2180 20 10 DH
-825 1510 20 10 DH
-725 1560 20 10 DH
-825 1610 20 10 DH
-725 1660 20 10 DH
-825 1710 20 10 DH
-725 1760 20 10 DH
-825 1810 20 10 DH
-725 1860 20 10 DH
-825 1910 20 10 DH
-4200 2050 20 10 DH
-4300 2050 20 10 DH
-4200 2150 20 10 DH
-4300 2150 20 10 DH
-4200 2250 20 10 DH
-4300 2250 20 10 DH
-4200 2350 20 10 DH
-4300 2350 20 10 DH
-5300 2450 20 10 DH
-5400 2450 20 10 DH
-5500 2450 20 10 DH
-4150 3600 20 10 DH
-4050 3600 20 10 DH
-3950 3600 20 10 DH
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-grestore
-% PCBENDDATA --- do not remove ---
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-/Color {0.000 0.000 0.000 mysetrgbcolor} def Color
-450 50 450 3987 20 L
-450 3987 6750 3987 20 L
-6750 3987 6750 50 20 L
-6750 50 450 50 20 L
-855 3055 755 3055 20 L
-1155 3055 1055 3055 20 L
-1055 3005 1055 3105 20 L
-855 3005 1055 3005 20 L
-855 3105 855 3005 20 L
-1055 3105 855 3105 20 L
-1035 3075 1015 3075 8 L
-1015 3075 1010 3070 8 L
-1010 3070 1010 3060 8 L
-1015 3055 1010 3060 8 L
-1030 3055 1015 3055 8 L
-1030 3075 1030 3035 8 L
-1030 3055 1010 3035 8 L
-992 3035 982 3035 8 L
-987 3075 987 3035 8 L
-997 3065 987 3075 8 L
-964 3035 954 3035 8 L
-959 3075 959 3035 8 L
-969 3065 959 3075 8 L
-1675 3525 1675 3375 10 L
-1675 3775 1675 3625 10 L
-2875 3375 1675 3375 10 L
-2875 3775 2875 3375 10 L
-1675 3775 2875 3775 10 L
-1675 3575 50 50 10 90 180 A
-1775 3555 1775 3590 8 L
-1775 3590 1780 3595 8 L
-1780 3595 1790 3595 8 L
-1790 3595 1795 3590 8 L
-1795 3555 1795 3590 8 L
-1808 3595 1828 3575 8 L
-1828 3560 1828 3575 8 L
-1823 3555 1828 3560 8 L
-1813 3555 1823 3555 8 L
-1808 3560 1813 3555 8 L
-1808 3560 1808 3570 8 L
-1808 3570 1813 3575 8 L
-1813 3575 1828 3575 8 L
-1325 3725 100 100 10 180 360 A
-1220 3785 1205 3785 8 L
-1225 3790 1220 3785 8 L
-1225 3820 1225 3790 8 L
-1225 3820 1220 3825 8 L
-1220 3825 1205 3825 8 L
-1192 3820 1187 3825 8 L
-1187 3825 1177 3825 8 L
-1177 3825 1172 3820 8 L
-1172 3820 1172 3790 8 L
-1177 3785 1172 3790 8 L
-1187 3785 1177 3785 8 L
-1192 3790 1187 3785 8 L
-1187 3805 1172 3805 8 L
-5800 1700 5800 1410 20 L
-1250 1700 5800 1700 20 L
-1250 1410 1250 1700 20 L
-5800 1410 1250 1410 20 L
-5800 1760 5800 1725 8 L
-5800 1725 5795 1720 8 L
-5795 1720 5785 1720 8 L
-5785 1720 5780 1725 8 L
-5780 1760 5780 1725 8 L
-5762 1720 5752 1720 8 L
-5757 1760 5757 1720 8 L
-5767 1750 5757 1760 8 L
-1325 3425 100 100 10 180 360 A
-1220 3485 1205 3485 8 L
-1225 3490 1220 3485 8 L
-1225 3520 1225 3490 8 L
-1225 3520 1220 3525 8 L
-1220 3525 1205 3525 8 L
-1192 3525 1172 3525 8 L
-1192 3525 1192 3505 8 L
-1192 3505 1187 3510 8 L
-1187 3510 1177 3510 8 L
-1177 3510 1172 3505 8 L
-1172 3505 1172 3490 8 L
-1177 3485 1172 3490 8 L
-1187 3485 1177 3485 8 L
-1192 3490 1187 3485 8 L
-3225 3425 100 100 10 0 360 A
-3330 3365 3345 3365 8 L
-3325 3360 3330 3365 8 L
-3325 3330 3325 3360 8 L
-3325 3330 3330 3325 8 L
-3330 3325 3345 3325 8 L
-3373 3325 3378 3330 8 L
-3363 3325 3373 3325 8 L
-3358 3330 3363 3325 8 L
-3358 3330 3358 3360 8 L
-3358 3360 3363 3365 8 L
-3373 3345 3378 3350 8 L
-3358 3345 3373 3345 8 L
-3363 3365 3373 3365 8 L
-3373 3365 3378 3360 8 L
-3378 3350 3378 3360 8 L
-3550 2700 3550 2550 10 L
-3550 2950 3550 2800 10 L
-3950 2550 3550 2550 10 L
-3950 2950 3950 2550 10 L
-3550 2950 3950 2950 10 L
-3550 2750 50 50 10 90 180 A
-3650 2730 3650 2765 8 L
-3650 2765 3655 2770 8 L
-3655 2770 3665 2770 8 L
-3665 2770 3670 2765 8 L
-3670 2730 3670 2765 8 L
-3688 2770 3698 2770 8 L
-3693 2730 3693 2770 8 L
-3683 2740 3693 2730 8 L
-3711 2765 3716 2770 8 L
-3711 2735 3711 2765 8 L
-3711 2735 3716 2730 8 L
-3716 2730 3726 2730 8 L
-3726 2730 3731 2735 8 L
-3731 2735 3731 2765 8 L
-3726 2770 3731 2765 8 L
-3716 2770 3726 2770 8 L
-3711 2760 3731 2740 8 L
-1050 433 200 433 20 L
-200 433 200 1068 20 L
-200 1068 1050 1068 20 L
-1050 1068 1050 433 20 L
-1050 1128 1035 1128 8 L
-1035 1128 1035 1093 8 L
-1040 1088 1035 1093 8 L
-1045 1088 1040 1088 8 L
-1050 1093 1045 1088 8 L
-1022 1123 1017 1128 8 L
-1017 1128 1002 1128 8 L
-1002 1128 997 1123 8 L
-997 1123 997 1113 8 L
-1022 1088 997 1113 8 L
-1022 1088 997 1088 8 L
-3275 2900 100 100 10 0 360 A
-3380 2840 3395 2840 8 L
-3375 2835 3380 2840 8 L
-3375 2805 3375 2835 8 L
-3375 2805 3380 2800 8 L
-3380 2800 3395 2800 8 L
-3413 2840 3423 2840 8 L
-3418 2800 3418 2840 8 L
-3408 2810 3418 2800 8 L
-3436 2835 3441 2840 8 L
-3436 2805 3436 2835 8 L
-3436 2805 3441 2800 8 L
-3441 2800 3451 2800 8 L
-3451 2800 3456 2805 8 L
-3456 2805 3456 2835 8 L
-3451 2840 3456 2835 8 L
-3441 2840 3451 2840 8 L
-3436 2830 3456 2810 8 L
-5725 375 5725 225 10 L
-5725 625 5725 475 10 L
-6125 225 5725 225 10 L
-6125 625 6125 225 10 L
-5725 625 6125 625 10 L
-5725 425 50 50 10 90 180 A
-5825 405 5825 440 8 L
-5825 440 5830 445 8 L
-5830 445 5840 445 8 L
-5840 445 5845 440 8 L
-5845 405 5845 440 8 L
-5858 425 5878 405 8 L
-5858 425 5883 425 8 L
-5878 405 5878 445 8 L
-5725 1980 6125 1980 20 L
-6125 1980 6125 2160 20 L
-6125 2160 5725 2160 20 L
-5725 2160 5725 1980 20 L
-5725 1980 6125 1980 20 L
-6125 1980 6125 2040 20 L
-6125 2040 5725 2040 20 L
-5725 2040 5725 1980 20 L
-5855 1980 5855 2040 10 L
-5995 1980 5995 2040 10 L
-5725 1915 5725 1945 8 L
-5725 1915 5730 1910 8 L
-5730 1910 5740 1910 8 L
-5740 1910 5745 1915 8 L
-5745 1915 5745 1945 8 L
-5740 1950 5745 1945 8 L
-5730 1950 5740 1950 8 L
-5725 1945 5730 1950 8 L
-5735 1940 5745 1950 8 L
-5758 1910 5778 1910 8 L
-5758 1910 5758 1930 8 L
-5758 1930 5763 1925 8 L
-5763 1925 5773 1925 8 L
-5773 1925 5778 1930 8 L
-5778 1930 5778 1945 8 L
-5773 1950 5778 1945 8 L
-5763 1950 5773 1950 8 L
-5758 1945 5763 1950 8 L
-5725 975 5725 825 10 L
-5725 1225 5725 1075 10 L
-6125 825 5725 825 10 L
-6125 1225 6125 825 10 L
-5725 1225 6125 1225 10 L
-5725 1025 50 50 10 90 180 A
-5825 1005 5825 1040 8 L
-5825 1040 5830 1045 8 L
-5830 1045 5840 1045 8 L
-5840 1045 5845 1040 8 L
-5845 1005 5845 1040 8 L
-5858 1005 5878 1005 8 L
-5858 1005 5858 1025 8 L
-5858 1025 5863 1020 8 L
-5863 1020 5873 1020 8 L
-5873 1020 5878 1025 8 L
-5878 1025 5878 1040 8 L
-5873 1045 5878 1040 8 L
-5863 1045 5873 1045 8 L
-5858 1040 5863 1045 8 L
-5625 1875 5725 1875 10 L
-5825 1875 5925 1875 10 L
-5725 1875 5825 1825 10 L
-5825 1825 5825 1925 10 L
-5825 1925 5725 1875 10 L
-5725 1825 5725 1925 10 L
-5850 1825 5850 1865 8 L
-5865 1825 5870 1830 8 L
-5870 1830 5870 1860 8 L
-5865 1865 5870 1860 8 L
-5845 1865 5865 1865 8 L
-5845 1825 5865 1825 8 L
-5883 1865 5908 1840 8 L
-5908 1825 5908 1840 8 L
-5883 1825 5908 1825 8 L
-5725 2805 6125 2805 20 L
-6125 2805 6125 2985 20 L
-6125 2985 5725 2985 20 L
-5725 2985 5725 2805 20 L
-5725 2805 6125 2805 20 L
-6125 2805 6125 2865 20 L
-6125 2865 5725 2865 20 L
-5725 2865 5725 2805 20 L
-5855 2805 5855 2865 10 L
-5995 2805 5995 2865 10 L
-5725 2740 5725 2770 8 L
-5725 2740 5730 2735 8 L
-5730 2735 5740 2735 8 L
-5740 2735 5745 2740 8 L
-5745 2740 5745 2770 8 L
-5740 2775 5745 2770 8 L
-5730 2775 5740 2775 8 L
-5725 2770 5730 2775 8 L
-5735 2765 5745 2775 8 L
-5758 2740 5763 2735 8 L
-5763 2735 5773 2735 8 L
-5773 2735 5778 2740 8 L
-5778 2740 5778 2770 8 L
-5773 2775 5778 2770 8 L
-5763 2775 5773 2775 8 L
-5758 2770 5763 2775 8 L
-5763 2755 5778 2755 8 L
-84 2843 450 2853 20 L
-84 2725 84 2843 20 L
-450 2715 84 2725 20 L
-588 2922 588 2646 20 L
-450 2922 708 2922 20 L
-450 2646 450 2922 20 L
-708 2646 450 2646 20 L
-668 2784 673 2789 8 L
-653 2784 668 2784 8 L
-648 2789 653 2784 8 L
-648 2789 648 2799 8 L
-648 2799 653 2804 8 L
-653 2804 668 2804 8 L
-668 2804 673 2809 8 L
-673 2809 673 2819 8 L
-668 2824 673 2819 8 L
-653 2824 668 2824 8 L
-648 2819 653 2824 8 L
-691 2824 701 2824 8 L
-696 2784 696 2824 8 L
-686 2794 696 2784 8 L
-4575 3850 3525 3850 20 L
-4575 3850 4575 3200 20 L
-4575 3200 4525 3200 20 L
-4525 3200 4525 3750 20 L
-4525 3750 4325 3750 20 L
-4325 3750 4325 3200 20 L
-4325 3200 4275 3200 20 L
-4275 3200 4275 3750 20 L
-4275 3750 3825 3750 20 L
-3525 3850 3525 3200 20 L
-3525 3200 3575 3200 20 L
-3575 3200 3575 3750 20 L
-3575 3750 3775 3750 20 L
-3775 3750 3775 3200 20 L
-3775 3200 3825 3200 20 L
-3825 3200 3825 3750 20 L
-4825 3300 150 150 10 0 360 A
-4980 3190 4995 3190 8 L
-4975 3185 4980 3190 8 L
-4975 3155 4975 3185 8 L
-4975 3155 4980 3150 8 L
-4980 3150 4995 3150 8 L
-5008 3155 5013 3150 8 L
-5013 3150 5028 3150 8 L
-5028 3150 5033 3155 8 L
-5033 3155 5033 3165 8 L
-5008 3190 5033 3165 8 L
-5008 3190 5033 3190 8 L
-2950 2875 2950 2675 20 L
-2950 2675 3050 2675 20 L
-3050 2675 3050 2875 20 L
-3050 2875 2950 2875 20 L
-3000 2975 3000 2875 20 L
-3000 2675 3000 2575 20 L
-2980 2855 2980 2835 8 L
-2980 2835 2985 2830 8 L
-2985 2830 2995 2830 8 L
-3000 2835 2995 2830 8 L
-3000 2850 3000 2835 8 L
-2980 2850 3020 2850 8 L
-3000 2850 3020 2830 8 L
-3020 2812 3020 2802 8 L
-2980 2807 3020 2807 8 L
-2990 2817 2980 2807 8 L
-3015 2789 3020 2784 8 L
-2985 2789 3015 2789 8 L
-2985 2789 2980 2784 8 L
-2980 2784 2980 2774 8 L
-2980 2774 2985 2769 8 L
-2985 2769 3015 2769 8 L
-3020 2774 3015 2769 8 L
-3020 2784 3020 2774 8 L
-3010 2789 2990 2769 8 L
-4425 525 4425 325 20 L
-4425 325 4525 325 20 L
-4525 325 4525 525 20 L
-4525 525 4425 525 20 L
-4475 625 4475 525 20 L
-4475 325 4475 225 20 L
-4455 505 4455 485 8 L
-4455 485 4460 480 8 L
-4460 480 4470 480 8 L
-4475 485 4470 480 8 L
-4475 500 4475 485 8 L
-4455 500 4495 500 8 L
-4475 500 4495 480 8 L
-4460 467 4455 462 8 L
-4455 462 4455 452 8 L
-4455 452 4460 447 8 L
-4460 447 4490 447 8 L
-4495 452 4490 447 8 L
-4495 462 4495 452 8 L
-4490 467 4495 462 8 L
-4475 462 4475 447 8 L
-3275 2600 100 100 10 180 360 A
-3170 2660 3155 2660 8 L
-3175 2665 3170 2660 8 L
-3175 2695 3175 2665 8 L
-3175 2695 3170 2700 8 L
-3170 2700 3155 2700 8 L
-3142 2660 3122 2680 8 L
-3122 2695 3122 2680 8 L
-3127 2700 3122 2695 8 L
-3137 2700 3127 2700 8 L
-3142 2695 3137 2700 8 L
-3142 2695 3142 2685 8 L
-3142 2685 3137 2680 8 L
-3137 2680 3122 2680 8 L
-7025 275 6845 275 20 L
-7025 3775 7025 275 20 L
-6845 3775 7025 3775 20 L
-6620 3655 6620 395 20 L
-6620 395 6525 395 20 L
-6845 395 6620 395 10 L
-6845 275 6845 395 10 L
-6845 175 6845 275 20 L
-6525 175 6845 175 20 L
-6525 395 6525 175 20 L
-6845 3875 6525 3875 20 L
-6845 3775 6845 3875 20 L
-6845 3655 6845 3775 10 L
-6620 3655 6845 3655 10 L
-6525 3655 6620 3655 20 L
-6525 3875 6525 3655 20 L
-6325 475 6600 475 40 L
-6325 575 6600 575 40 L
-6325 675 6600 675 40 L
-6325 775 6600 775 40 L
-6325 875 6600 875 40 L
-6325 975 6600 975 40 L
-6325 1075 6600 1075 40 L
-6325 1175 6600 1175 40 L
-6325 1275 6600 1275 40 L
-6325 1375 6600 1375 40 L
-6325 1475 6600 1475 40 L
-6325 1575 6600 1575 40 L
-6325 1675 6600 1675 40 L
-6325 1775 6600 1775 40 L
-6325 1875 6600 1875 40 L
-6325 1975 6600 1975 40 L
-6325 2075 6600 2075 40 L
-6325 2175 6600 2175 40 L
-6325 2275 6600 2275 40 L
-6325 2375 6600 2375 40 L
-6325 2475 6600 2475 40 L
-6325 2575 6600 2575 40 L
-6325 2675 6600 2675 40 L
-6325 2775 6600 2775 40 L
-6325 2875 6600 2875 40 L
-6325 2975 6600 2975 40 L
-6325 3075 6600 3075 40 L
-6325 3175 6600 3175 40 L
-6325 3275 6600 3275 40 L
-6325 3375 6600 3375 40 L
-6325 3475 6600 3475 40 L
-6325 3575 6600 3575 40 L
-6625 3455 6625 3425 16 L
-6625 3425 6695 3425 16 L
-6705 3435 6695 3425 16 L
-6705 3445 6705 3435 16 L
-6695 3455 6705 3445 16 L
-6705 3389 6705 3369 16 L
-6625 3379 6705 3379 16 L
-6645 3399 6625 3379 16 L
-6625 3343 6625 3303 16 L
-6625 3343 6665 3343 16 L
-6665 3343 6655 3333 16 L
-6655 3333 6655 3313 16 L
-6655 3313 6665 3303 16 L
-6665 3303 6695 3303 16 L
-6705 3313 6695 3303 16 L
-6705 3333 6705 3313 16 L
-6695 3343 6705 3333 16 L
-5200 2805 5600 2805 20 L
-5600 2805 5600 2985 20 L
-5600 2985 5200 2985 20 L
-5200 2985 5200 2805 20 L
-5200 2805 5600 2805 20 L
-5600 2805 5600 2865 20 L
-5600 2865 5200 2865 20 L
-5200 2865 5200 2805 20 L
-5330 2805 5330 2865 10 L
-5470 2805 5470 2865 10 L
-5200 2740 5200 2770 8 L
-5200 2740 5205 2735 8 L
-5205 2735 5215 2735 8 L
-5215 2735 5220 2740 8 L
-5220 2740 5220 2770 8 L
-5215 2775 5220 2770 8 L
-5205 2775 5215 2775 8 L
-5200 2770 5205 2775 8 L
-5210 2765 5220 2775 8 L
-5233 2755 5253 2735 8 L
-5233 2755 5258 2755 8 L
-5253 2735 5253 2775 8 L
-4825 3700 150 150 10 180 360 A
-4670 3810 4655 3810 8 L
-4675 3815 4670 3810 8 L
-4675 3845 4675 3815 8 L
-4675 3845 4670 3850 8 L
-4670 3850 4655 3850 8 L
-4637 3810 4627 3810 8 L
-4632 3850 4632 3810 8 L
-4642 3840 4632 3850 8 L
-1060 2850 860 2850 20 L
-860 2850 860 2750 20 L
-860 2750 1060 2750 20 L
-1060 2750 1060 2850 20 L
-1160 2800 1060 2800 20 L
-860 2800 760 2800 20 L
-1040 2820 1020 2820 8 L
-1020 2820 1015 2815 8 L
-1015 2815 1015 2805 8 L
-1020 2800 1015 2805 8 L
-1035 2800 1020 2800 8 L
-1035 2820 1035 2780 8 L
-1035 2800 1015 2780 8 L
-997 2780 987 2780 8 L
-992 2820 992 2780 8 L
-1002 2810 992 2820 8 L
-974 2815 969 2820 8 L
-969 2820 954 2820 8 L
-954 2820 949 2815 8 L
-949 2815 949 2805 8 L
-974 2780 949 2805 8 L
-974 2780 949 2780 8 L
-6125 3850 5075 3850 20 L
-6125 3850 6125 3200 20 L
-6125 3200 6075 3200 20 L
-6075 3200 6075 3750 20 L
-6075 3750 5875 3750 20 L
-5875 3750 5875 3200 20 L
-5875 3200 5825 3200 20 L
-5825 3200 5825 3750 20 L
-5825 3750 5375 3750 20 L
-5075 3850 5075 3200 20 L
-5075 3200 5125 3200 20 L
-5125 3200 5125 3750 20 L
-5125 3750 5325 3750 20 L
-5325 3750 5325 3200 20 L
-5325 3200 5375 3200 20 L
-5375 3200 5375 3750 20 L
-2850 2675 2850 2875 20 L
-2850 2875 2750 2875 20 L
-2750 2875 2750 2675 20 L
-2750 2675 2850 2675 20 L
-2800 2575 2800 2675 20 L
-2800 2875 2800 2975 20 L
-2820 2695 2820 2715 8 L
-2820 2715 2815 2720 8 L
-2815 2720 2805 2720 8 L
-2800 2715 2805 2720 8 L
-2800 2700 2800 2715 8 L
-2820 2700 2780 2700 8 L
-2800 2700 2780 2720 8 L
-2780 2733 2800 2753 8 L
-2815 2753 2800 2753 8 L
-2820 2748 2815 2753 8 L
-2820 2738 2820 2748 8 L
-2815 2733 2820 2738 8 L
-2815 2733 2805 2733 8 L
-2805 2733 2800 2738 8 L
-2800 2738 2800 2753 8 L
-5530 3720 5530 3660 10 L
-5670 3720 5670 3660 10 L
-5800 3660 5800 3720 20 L
-5400 3660 5800 3660 20 L
-5400 3720 5400 3660 20 L
-5800 3720 5400 3720 20 L
-5800 3540 5800 3720 20 L
-5400 3540 5800 3540 20 L
-5400 3720 5400 3540 20 L
-5800 3720 5400 3720 20 L
-5800 3790 5800 3755 8 L
-5800 3755 5795 3750 8 L
-5795 3750 5785 3750 8 L
-5785 3750 5780 3755 8 L
-5780 3790 5780 3755 8 L
-5767 3785 5762 3790 8 L
-5762 3790 5752 3790 8 L
-5752 3790 5747 3785 8 L
-5747 3785 5747 3755 8 L
-5752 3750 5747 3755 8 L
-5762 3750 5752 3750 8 L
-5767 3755 5762 3750 8 L
-5762 3770 5747 3770 8 L
-4825 2775 250 250 10 180 360 A
-4570 2985 4555 2985 8 L
-4575 2990 4570 2985 8 L
-4575 3020 4575 2990 8 L
-4575 3020 4570 3025 8 L
-4570 3025 4555 3025 8 L
-4542 2990 4537 2985 8 L
-4542 3000 4542 2990 8 L
-4542 3000 4537 3005 8 L
-4537 3005 4527 3005 8 L
-4527 3005 4522 3000 8 L
-4522 3000 4522 2990 8 L
-4527 2985 4522 2990 8 L
-4537 2985 4527 2985 8 L
-4542 3010 4537 3005 8 L
-4542 3020 4542 3010 8 L
-4542 3020 4537 3025 8 L
-4537 3025 4527 3025 8 L
-4527 3025 4522 3020 8 L
-4522 3020 4522 3010 8 L
-4527 3005 4522 3010 8 L
-1675 3000 1675 2850 10 L
-1675 3250 1675 3100 10 L
-2075 2850 1675 2850 10 L
-2075 3250 2075 2850 10 L
-1675 3250 2075 3250 10 L
-1675 3050 50 50 10 90 180 A
-1775 3030 1775 3065 8 L
-1775 3065 1780 3070 8 L
-1780 3070 1790 3070 8 L
-1790 3070 1795 3065 8 L
-1795 3030 1795 3065 8 L
-1813 3070 1823 3070 8 L
-1818 3030 1818 3070 8 L
-1808 3040 1818 3030 8 L
-1841 3070 1851 3070 8 L
-1846 3030 1846 3070 8 L
-1836 3040 1846 3030 8 L
-1100 3350 1100 3250 10 L
-1000 3350 1100 3350 10 L
-1200 3250 1000 3250 20 L
-1200 3350 1200 3250 20 L
-1000 3350 1200 3350 20 L
-1000 3250 1000 3350 20 L
-1260 3250 1260 3265 8 L
-1260 3265 1225 3265 8 L
-1220 3260 1225 3265 8 L
-1220 3255 1220 3260 8 L
-1225 3250 1220 3255 8 L
-1260 3283 1220 3283 8 L
-1260 3278 1260 3298 8 L
-1260 3298 1255 3303 8 L
-1255 3303 1245 3303 8 L
-1240 3298 1245 3303 8 L
-1240 3283 1240 3298 8 L
-1255 3316 1260 3321 8 L
-1260 3321 1260 3336 8 L
-1260 3336 1255 3341 8 L
-1255 3341 1245 3341 8 L
-1220 3316 1245 3341 8 L
-1220 3316 1220 3341 8 L
-3500 525 3500 325 20 L
-3500 325 3600 325 20 L
-3600 325 3600 525 20 L
-3600 525 3500 525 20 L
-3550 625 3550 525 20 L
-3550 325 3550 225 20 L
-3530 505 3530 485 8 L
-3530 485 3535 480 8 L
-3535 480 3545 480 8 L
-3550 485 3545 480 8 L
-3550 500 3550 485 8 L
-3530 500 3570 500 8 L
-3550 500 3570 480 8 L
-3570 462 3570 452 8 L
-3530 457 3570 457 8 L
-3540 467 3530 457 8 L
-3550 439 3530 419 8 L
-3550 439 3550 414 8 L
-3530 419 3570 419 8 L
-5400 2100 100 100 10 0 360 A
-5505 2040 5520 2040 8 L
-5500 2035 5505 2040 8 L
-5500 2005 5500 2035 8 L
-5500 2005 5505 2000 8 L
-5505 2000 5520 2000 8 L
-5538 2040 5548 2040 8 L
-5543 2000 5543 2040 8 L
-5533 2010 5543 2000 8 L
-5566 2040 5576 2040 8 L
-5571 2000 5571 2040 8 L
-5561 2010 5571 2000 8 L
-5725 2330 6125 2330 20 L
-6125 2330 6125 2510 20 L
-6125 2510 5725 2510 20 L
-5725 2510 5725 2330 20 L
-5725 2330 6125 2330 20 L
-6125 2330 6125 2390 20 L
-6125 2390 5725 2390 20 L
-5725 2390 5725 2330 20 L
-5855 2330 5855 2390 10 L
-5995 2330 5995 2390 10 L
-5725 2265 5725 2295 8 L
-5725 2265 5730 2260 8 L
-5730 2260 5740 2260 8 L
-5740 2260 5745 2265 8 L
-5745 2265 5745 2295 8 L
-5740 2300 5745 2295 8 L
-5730 2300 5740 2300 8 L
-5725 2295 5730 2300 8 L
-5735 2290 5745 2300 8 L
-5763 2300 5773 2300 8 L
-5768 2260 5768 2300 8 L
-5758 2270 5768 2260 8 L
-850 3300 850 3400 10 L
-850 3500 850 3600 10 L
-850 3400 900 3500 10 L
-900 3500 800 3500 10 L
-800 3500 850 3400 10 L
-900 3400 800 3400 10 L
-900 3525 860 3525 8 L
-900 3540 895 3545 8 L
-895 3545 865 3545 8 L
-860 3540 865 3545 8 L
-860 3520 860 3540 8 L
-900 3520 900 3540 8 L
-895 3558 900 3563 8 L
-900 3563 900 3573 8 L
-900 3573 895 3578 8 L
-895 3578 865 3578 8 L
-860 3573 865 3578 8 L
-860 3563 860 3573 8 L
-865 3558 860 3563 8 L
-880 3563 880 3578 8 L
-4825 2200 250 250 10 180 360 A
-4570 2410 4555 2410 8 L
-4575 2415 4570 2410 8 L
-4575 2445 4575 2415 8 L
-4575 2445 4570 2450 8 L
-4570 2450 4555 2450 8 L
-4542 2410 4517 2435 8 L
-4517 2450 4517 2435 8 L
-4542 2450 4517 2450 8 L
-815 2445 70 70 10 0 360 A
-815 2445 50 50 15 0 360 A
-770 2315 770 2355 8 L
-785 2315 790 2320 8 L
-790 2320 790 2350 8 L
-785 2355 790 2350 8 L
-765 2355 785 2355 8 L
-765 2315 785 2315 8 L
-803 2355 823 2335 8 L
-823 2320 823 2335 8 L
-818 2315 823 2320 8 L
-808 2315 818 2315 8 L
-803 2320 808 2315 8 L
-803 2320 803 2330 8 L
-803 2330 808 2335 8 L
-808 2335 823 2335 8 L
-825 1910 545 1910 20 L
-725 1860 545 1860 20 L
-825 1810 545 1810 20 L
-725 1760 545 1760 20 L
-825 1710 545 1710 20 L
-725 1660 545 1660 20 L
-825 1610 545 1610 20 L
-725 1560 545 1560 20 L
-825 1510 545 1510 20 L
-345 2070 345 1350 10 L
-545 2070 345 2070 20 L
-545 1350 545 2070 20 L
-345 1350 545 1350 20 L
-45 2010 45 1410 20 L
-315 2010 45 2010 20 L
-315 1410 315 2010 10 L
-45 1410 315 1410 20 L
-315 2120 345 2120 10 L
-315 2240 345 2240 10 L
-315 1300 345 1300 10 L
-315 1180 345 1180 10 L
-315 2300 315 1120 10 L
-345 2300 315 2300 10 L
-345 1120 345 2300 10 L
-315 1120 345 1120 10 L
-425 1440 425 1455 8 L
-425 1455 390 1455 8 L
-385 1450 390 1455 8 L
-385 1445 385 1450 8 L
-390 1440 385 1445 8 L
-385 1468 405 1488 8 L
-420 1488 405 1488 8 L
-425 1483 420 1488 8 L
-425 1473 425 1483 8 L
-420 1468 425 1473 8 L
-420 1468 410 1468 8 L
-410 1468 405 1473 8 L
-405 1473 405 1488 8 L
-2750 2150 2750 2000 10 L
-2750 2400 2750 2250 10 L
-3950 2000 2750 2000 10 L
-3950 2400 3950 2000 10 L
-2750 2400 3950 2400 10 L
-2750 2200 50 50 10 90 180 A
-2850 2180 2850 2215 8 L
-2850 2215 2855 2220 8 L
-2855 2220 2865 2220 8 L
-2865 2220 2870 2215 8 L
-2870 2180 2870 2215 8 L
-2883 2215 2888 2220 8 L
-2883 2205 2883 2215 8 L
-2883 2205 2888 2200 8 L
-2888 2200 2898 2200 8 L
-2898 2200 2903 2205 8 L
-2903 2205 2903 2215 8 L
-2898 2220 2903 2215 8 L
-2888 2220 2898 2220 8 L
-2883 2195 2888 2200 8 L
-2883 2185 2883 2195 8 L
-2883 2185 2888 2180 8 L
-2888 2180 2898 2180 8 L
-2898 2180 2903 2185 8 L
-2903 2185 2903 2195 8 L
-2898 2200 2903 2195 8 L
-1350 2300 1350 2000 10 L
-1350 2700 1350 2400 10 L
-2550 2000 1350 2000 10 L
-2550 2700 2550 2000 10 L
-1350 2700 2550 2700 10 L
-1350 2350 50 50 10 90 180 A
-1450 2330 1450 2365 8 L
-1450 2365 1455 2370 8 L
-1455 2370 1465 2370 8 L
-1465 2370 1470 2365 8 L
-1470 2330 1470 2365 8 L
-1498 2330 1503 2335 8 L
-1488 2330 1498 2330 8 L
-1483 2335 1488 2330 8 L
-1483 2335 1483 2365 8 L
-1483 2365 1488 2370 8 L
-1498 2350 1503 2355 8 L
-1483 2350 1498 2350 8 L
-1488 2370 1498 2370 8 L
-1498 2370 1503 2365 8 L
-1503 2355 1503 2365 8 L
-4150 2000 4150 2400 20 L
-4150 2400 4350 2400 20 L
-4350 2400 4350 2000 20 L
-4350 2000 4150 2000 20 L
-4150 2100 4250 2100 10 L
-4250 2100 4250 2000 10 L
-4410 2000 4410 2015 8 L
-4410 2015 4375 2015 8 L
-4370 2010 4375 2015 8 L
-4370 2005 4370 2010 8 L
-4375 2000 4370 2005 8 L
-4410 2033 4370 2033 8 L
-4410 2028 4410 2048 8 L
-4410 2048 4405 2053 8 L
-4405 2053 4395 2053 8 L
-4390 2048 4395 2053 8 L
-4390 2033 4390 2048 8 L
-4370 2071 4370 2081 8 L
-4410 2076 4370 2076 8 L
-4400 2066 4410 2076 8 L
-3225 3725 100 100 10 0 360 A
-3330 3665 3345 3665 8 L
-3325 3660 3330 3665 8 L
-3325 3630 3325 3660 8 L
-3325 3630 3330 3625 8 L
-3330 3625 3345 3625 8 L
-3358 3645 3378 3625 8 L
-3358 3645 3383 3645 8 L
-3378 3625 3378 3665 8 L
-2400 375 2400 225 10 L
-2400 625 2400 475 10 L
-3200 225 2400 225 10 L
-3200 625 3200 225 10 L
-2400 625 3200 625 10 L
-2400 425 50 50 10 90 180 A
-2500 405 2500 440 8 L
-2500 440 2505 445 8 L
-2505 445 2515 445 8 L
-2515 445 2520 440 8 L
-2520 405 2520 440 8 L
-2533 445 2558 420 8 L
-2558 405 2558 420 8 L
-2533 405 2558 405 8 L
-5200 2330 5600 2330 20 L
-5600 2330 5600 2510 20 L
-5600 2510 5200 2510 20 L
-5200 2510 5200 2330 20 L
-5200 2330 5600 2330 20 L
-5600 2330 5600 2390 20 L
-5600 2390 5200 2390 20 L
-5200 2390 5200 2330 20 L
-5330 2330 5330 2390 10 L
-5470 2330 5470 2390 10 L
-5200 2265 5200 2295 8 L
-5200 2265 5205 2260 8 L
-5205 2260 5215 2260 8 L
-5215 2260 5220 2265 8 L
-5220 2265 5220 2295 8 L
-5215 2300 5220 2295 8 L
-5205 2300 5215 2300 8 L
-5200 2295 5205 2300 8 L
-5210 2290 5220 2300 8 L
-5233 2265 5238 2260 8 L
-5238 2260 5253 2260 8 L
-5253 2260 5258 2265 8 L
-5258 2265 5258 2275 8 L
-5233 2300 5258 2275 8 L
-5233 2300 5258 2300 8 L
-575 2445 50 50 15 0 360 A
-575 2445 70 70 10 0 360 A
-530 2315 530 2355 8 L
-545 2315 550 2320 8 L
-550 2320 550 2350 8 L
-545 2355 550 2350 8 L
-525 2355 545 2355 8 L
-525 2315 545 2315 8 L
-568 2355 578 2355 8 L
-573 2315 573 2355 8 L
-563 2325 573 2315 8 L
-591 2350 596 2355 8 L
-591 2320 591 2350 8 L
-591 2320 596 2315 8 L
-596 2315 606 2315 8 L
-606 2315 611 2320 8 L
-611 2320 611 2350 8 L
-606 2355 611 2350 8 L
-596 2355 606 2355 8 L
-591 2345 611 2325 8 L
-1625 3525 1525 3525 10 L
-1525 3625 1575 3525 10 L
-1625 3625 1525 3625 10 L
-1575 3525 1625 3625 10 L
-1575 3625 1575 3725 10 L
-1575 3425 1575 3525 10 L
-1625 3650 1585 3650 8 L
-1625 3665 1620 3670 8 L
-1620 3670 1590 3670 8 L
-1585 3665 1590 3670 8 L
-1585 3645 1585 3665 8 L
-1625 3645 1625 3665 8 L
-1585 3688 1585 3698 8 L
-1625 3693 1585 3693 8 L
-1615 3683 1625 3693 8 L
-5525 525 5525 325 20 L
-5525 325 5625 325 20 L
-5625 325 5625 525 20 L
-5625 525 5525 525 20 L
-5575 625 5575 525 20 L
-5575 325 5575 225 20 L
-5555 505 5555 485 8 L
-5555 485 5560 480 8 L
-5560 480 5570 480 8 L
-5575 485 5570 480 8 L
-5575 500 5575 485 8 L
-5555 500 5595 500 8 L
-5575 500 5595 480 8 L
-5575 467 5555 447 8 L
-5575 467 5575 442 8 L
-5555 447 5595 447 8 L
-3925 375 3925 225 10 L
-3925 625 3925 475 10 L
-4325 225 3925 225 10 L
-4325 625 4325 225 10 L
-3925 625 4325 625 10 L
-3925 425 50 50 10 90 180 A
-4025 405 4025 440 8 L
-4025 440 4030 445 8 L
-4030 445 4040 445 8 L
-4040 445 4045 440 8 L
-4045 405 4045 440 8 L
-4063 445 4073 445 8 L
-4068 405 4068 445 8 L
-4058 415 4068 405 8 L
-4086 410 4091 405 8 L
-4091 405 4101 405 8 L
-4101 405 4106 410 8 L
-4106 410 4106 440 8 L
-4101 445 4106 440 8 L
-4091 445 4101 445 8 L
-4086 440 4091 445 8 L
-4091 425 4106 425 8 L
-4825 975 4825 825 10 L
-4825 1225 4825 1075 10 L
-5225 825 4825 825 10 L
-5225 1225 5225 825 10 L
-4825 1225 5225 1225 10 L
-4825 1025 50 50 10 90 180 A
-4925 1005 4925 1040 8 L
-4925 1040 4930 1045 8 L
-4930 1045 4940 1045 8 L
-4940 1045 4945 1040 8 L
-4945 1005 4945 1040 8 L
-4963 1045 4973 1045 8 L
-4968 1005 4968 1045 8 L
-4958 1015 4968 1005 8 L
-4986 1025 5006 1005 8 L
-4986 1025 5011 1025 8 L
-5006 1005 5006 1045 8 L
-5325 1125 5325 925 20 L
-5325 925 5425 925 20 L
-5425 925 5425 1125 20 L
-5425 1125 5325 1125 20 L
-5375 1225 5375 1125 20 L
-5375 925 5375 825 20 L
-5355 1105 5355 1085 8 L
-5355 1085 5360 1080 8 L
-5360 1080 5370 1080 8 L
-5375 1085 5370 1080 8 L
-5375 1100 5375 1085 8 L
-5355 1100 5395 1100 8 L
-5375 1100 5395 1080 8 L
-5355 1067 5355 1047 8 L
-5355 1067 5375 1067 8 L
-5375 1067 5370 1062 8 L
-5370 1062 5370 1052 8 L
-5370 1052 5375 1047 8 L
-5375 1047 5390 1047 8 L
-5395 1052 5390 1047 8 L
-5395 1062 5395 1052 8 L
-5390 1067 5395 1062 8 L
-4625 1125 4625 925 20 L
-4625 925 4725 925 20 L
-4725 925 4725 1125 20 L
-4725 1125 4625 1125 20 L
-4675 1225 4675 1125 20 L
-4675 925 4675 825 20 L
-4655 1105 4655 1085 8 L
-4655 1085 4660 1080 8 L
-4660 1080 4670 1080 8 L
-4675 1085 4670 1080 8 L
-4675 1100 4675 1085 8 L
-4655 1100 4695 1100 8 L
-4675 1100 4695 1080 8 L
-4655 1052 4660 1047 8 L
-4655 1062 4655 1052 8 L
-4660 1067 4655 1062 8 L
-4660 1067 4690 1067 8 L
-4690 1067 4695 1062 8 L
-4675 1052 4680 1047 8 L
-4675 1067 4675 1052 8 L
-4695 1062 4695 1052 8 L
-4695 1052 4690 1047 8 L
-4680 1047 4690 1047 8 L
-4625 525 4625 325 20 L
-4625 325 4725 325 20 L
-4725 325 4725 525 20 L
-4725 525 4625 525 20 L
-4675 625 4675 525 20 L
-4675 325 4675 225 20 L
-4655 505 4655 485 8 L
-4655 485 4660 480 8 L
-4660 480 4670 480 8 L
-4675 485 4670 480 8 L
-4675 500 4675 485 8 L
-4655 500 4695 500 8 L
-4675 500 4695 480 8 L
-4660 467 4655 462 8 L
-4655 462 4655 447 8 L
-4655 447 4660 442 8 L
-4660 442 4670 442 8 L
-4695 467 4670 442 8 L
-4695 467 4695 442 8 L
-4825 375 4825 225 10 L
-4825 625 4825 475 10 L
-5225 225 4825 225 10 L
-5225 625 5225 225 10 L
-4825 625 5225 625 10 L
-4825 425 50 50 10 90 180 A
-4925 405 4925 440 8 L
-4925 440 4930 445 8 L
-4930 445 4940 445 8 L
-4940 445 4945 440 8 L
-4945 405 4945 440 8 L
-4963 445 4973 445 8 L
-4968 405 4968 445 8 L
-4958 415 4968 405 8 L
-4986 410 4991 405 8 L
-4991 405 5006 405 8 L
-5006 405 5011 410 8 L
-5011 410 5011 420 8 L
-4986 445 5011 420 8 L
-4986 445 5011 445 8 L
-5325 525 5325 325 20 L
-5325 325 5425 325 20 L
-5425 325 5425 525 20 L
-5425 525 5325 525 20 L
-5375 625 5375 525 20 L
-5375 325 5375 225 20 L
-5355 505 5355 485 8 L
-5355 485 5360 480 8 L
-5360 480 5370 480 8 L
-5375 485 5370 480 8 L
-5375 500 5375 485 8 L
-5355 500 5395 500 8 L
-5375 500 5395 480 8 L
-5395 462 5395 452 8 L
-5355 457 5395 457 8 L
-5365 467 5355 457 8 L
-5525 1125 5525 925 20 L
-5525 925 5625 925 20 L
-5625 925 5625 1125 20 L
-5625 1125 5525 1125 20 L
-5575 1225 5575 1125 20 L
-5575 925 5575 825 20 L
-5555 1105 5555 1085 8 L
-5555 1085 5560 1080 8 L
-5560 1080 5570 1080 8 L
-5575 1085 5570 1080 8 L
-5575 1100 5575 1085 8 L
-5555 1100 5595 1100 8 L
-5575 1100 5595 1080 8 L
-5590 1067 5595 1062 8 L
-5580 1067 5590 1067 8 L
-5580 1067 5575 1062 8 L
-5575 1062 5575 1052 8 L
-5575 1052 5580 1047 8 L
-5580 1047 5590 1047 8 L
-5595 1052 5590 1047 8 L
-5595 1062 5595 1052 8 L
-5570 1067 5575 1062 8 L
-5560 1067 5570 1067 8 L
-5560 1067 5555 1062 8 L
-5555 1062 5555 1052 8 L
-5555 1052 5560 1047 8 L
-5560 1047 5570 1047 8 L
-5575 1052 5570 1047 8 L
-3925 975 3925 825 10 L
-3925 1225 3925 1075 10 L
-4325 825 3925 825 10 L
-4325 1225 4325 825 10 L
-3925 1225 4325 1225 10 L
-3925 1025 50 50 10 90 180 A
-4025 1005 4025 1040 8 L
-4025 1040 4030 1045 8 L
-4030 1045 4040 1045 8 L
-4040 1045 4045 1040 8 L
-4045 1005 4045 1040 8 L
-4063 1045 4073 1045 8 L
-4068 1005 4068 1045 8 L
-4058 1015 4068 1005 8 L
-4086 1005 4106 1005 8 L
-4086 1005 4086 1025 8 L
-4086 1025 4091 1020 8 L
-4091 1020 4101 1020 8 L
-4101 1020 4106 1025 8 L
-4106 1025 4106 1040 8 L
-4101 1045 4106 1040 8 L
-4091 1045 4101 1045 8 L
-4086 1040 4091 1045 8 L
-4425 1125 4425 925 20 L
-4425 925 4525 925 20 L
-4525 925 4525 1125 20 L
-4525 1125 4425 1125 20 L
-4475 1225 4475 1125 20 L
-4475 925 4475 825 20 L
-4455 1105 4455 1085 8 L
-4455 1085 4460 1080 8 L
-4460 1080 4470 1080 8 L
-4475 1085 4470 1080 8 L
-4475 1100 4475 1085 8 L
-4455 1100 4495 1100 8 L
-4475 1100 4495 1080 8 L
-4495 1067 4470 1042 8 L
-4455 1042 4470 1042 8 L
-4455 1067 4455 1042 8 L
-3980 3720 3980 3660 10 L
-4120 3720 4120 3660 10 L
-4250 3660 4250 3720 20 L
-3850 3660 4250 3660 20 L
-3850 3720 3850 3660 20 L
-4250 3720 3850 3720 20 L
-4250 3540 4250 3720 20 L
-3850 3540 4250 3540 20 L
-3850 3720 3850 3540 20 L
-4250 3720 3850 3720 20 L
-4250 3790 4250 3755 8 L
-4250 3755 4245 3750 8 L
-4245 3750 4235 3750 8 L
-4235 3750 4230 3755 8 L
-4230 3790 4230 3755 8 L
-4217 3785 4212 3790 8 L
-4212 3790 4197 3790 8 L
-4197 3790 4192 3785 8 L
-4192 3785 4192 3775 8 L
-4217 3750 4192 3775 8 L
-4217 3750 4192 3750 8 L
-3025 3525 2925 3525 10 L
-2925 3625 2975 3525 10 L
-3025 3625 2925 3625 10 L
-2975 3525 3025 3625 10 L
-2975 3625 2975 3725 10 L
-2975 3425 2975 3525 10 L
-3025 3650 2985 3650 8 L
-3025 3665 3020 3670 8 L
-3020 3670 2990 3670 8 L
-2985 3665 2990 3670 8 L
-2985 3645 2985 3665 8 L
-3025 3645 3025 3665 8 L
-3020 3683 3025 3688 8 L
-3025 3688 3025 3703 8 L
-3025 3703 3020 3708 8 L
-3020 3708 3010 3708 8 L
-2985 3683 3010 3708 8 L
-2985 3683 2985 3708 8 L
-3300 525 3300 325 20 L
-3300 325 3400 325 20 L
-3400 325 3400 525 20 L
-3400 525 3300 525 20 L
-3350 625 3350 525 20 L
-3350 325 3350 225 20 L
-3330 505 3330 485 8 L
-3330 485 3335 480 8 L
-3335 480 3345 480 8 L
-3350 485 3345 480 8 L
-3350 500 3350 485 8 L
-3330 500 3370 500 8 L
-3350 500 3370 480 8 L
-3370 462 3370 452 8 L
-3330 457 3370 457 8 L
-3340 467 3330 457 8 L
-3335 439 3330 434 8 L
-3330 434 3330 424 8 L
-3330 424 3335 419 8 L
-3335 419 3365 419 8 L
-3370 424 3365 419 8 L
-3370 434 3370 424 8 L
-3365 439 3370 434 8 L
-3350 434 3350 419 8 L
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aic_componentsilk.ps b/doc/aic_componentsilk.ps
deleted file mode 100644 (file)
index d569df4..0000000
+++ /dev/null
@@ -1,1408 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), silkscreen component side
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-/Color {0.000 0.000 0.000 mysetrgbcolor} def Color
-450 50 450 3987 20 L
-450 3987 6750 3987 20 L
-6750 3987 6750 50 20 L
-6750 50 450 50 20 L
-855 3055 755 3055 20 L
-1155 3055 1055 3055 20 L
-1055 3005 1055 3105 20 L
-855 3005 1055 3005 20 L
-855 3105 855 3005 20 L
-1055 3105 855 3105 20 L
-1035 3075 1015 3075 8 L
-1015 3075 1010 3070 8 L
-1010 3070 1010 3060 8 L
-1015 3055 1010 3060 8 L
-1030 3055 1015 3055 8 L
-1030 3075 1030 3035 8 L
-1030 3055 1010 3035 8 L
-992 3035 982 3035 8 L
-987 3075 987 3035 8 L
-997 3065 987 3075 8 L
-964 3035 954 3035 8 L
-959 3075 959 3035 8 L
-969 3065 959 3075 8 L
-1675 3525 1675 3375 10 L
-1675 3775 1675 3625 10 L
-2875 3375 1675 3375 10 L
-2875 3775 2875 3375 10 L
-1675 3775 2875 3775 10 L
-1675 3575 50 50 10 90 180 A
-1775 3555 1775 3590 8 L
-1775 3590 1780 3595 8 L
-1780 3595 1790 3595 8 L
-1790 3595 1795 3590 8 L
-1795 3555 1795 3590 8 L
-1808 3595 1828 3575 8 L
-1828 3560 1828 3575 8 L
-1823 3555 1828 3560 8 L
-1813 3555 1823 3555 8 L
-1808 3560 1813 3555 8 L
-1808 3560 1808 3570 8 L
-1808 3570 1813 3575 8 L
-1813 3575 1828 3575 8 L
-1325 3725 100 100 10 180 360 A
-1220 3785 1205 3785 8 L
-1225 3790 1220 3785 8 L
-1225 3820 1225 3790 8 L
-1225 3820 1220 3825 8 L
-1220 3825 1205 3825 8 L
-1192 3820 1187 3825 8 L
-1187 3825 1177 3825 8 L
-1177 3825 1172 3820 8 L
-1172 3820 1172 3790 8 L
-1177 3785 1172 3790 8 L
-1187 3785 1177 3785 8 L
-1192 3790 1187 3785 8 L
-1187 3805 1172 3805 8 L
-5800 1700 5800 1410 20 L
-1250 1700 5800 1700 20 L
-1250 1410 1250 1700 20 L
-5800 1410 1250 1410 20 L
-5800 1760 5800 1725 8 L
-5800 1725 5795 1720 8 L
-5795 1720 5785 1720 8 L
-5785 1720 5780 1725 8 L
-5780 1760 5780 1725 8 L
-5762 1720 5752 1720 8 L
-5757 1760 5757 1720 8 L
-5767 1750 5757 1760 8 L
-1325 3425 100 100 10 180 360 A
-1220 3485 1205 3485 8 L
-1225 3490 1220 3485 8 L
-1225 3520 1225 3490 8 L
-1225 3520 1220 3525 8 L
-1220 3525 1205 3525 8 L
-1192 3525 1172 3525 8 L
-1192 3525 1192 3505 8 L
-1192 3505 1187 3510 8 L
-1187 3510 1177 3510 8 L
-1177 3510 1172 3505 8 L
-1172 3505 1172 3490 8 L
-1177 3485 1172 3490 8 L
-1187 3485 1177 3485 8 L
-1192 3490 1187 3485 8 L
-3225 3425 100 100 10 0 360 A
-3330 3365 3345 3365 8 L
-3325 3360 3330 3365 8 L
-3325 3330 3325 3360 8 L
-3325 3330 3330 3325 8 L
-3330 3325 3345 3325 8 L
-3373 3325 3378 3330 8 L
-3363 3325 3373 3325 8 L
-3358 3330 3363 3325 8 L
-3358 3330 3358 3360 8 L
-3358 3360 3363 3365 8 L
-3373 3345 3378 3350 8 L
-3358 3345 3373 3345 8 L
-3363 3365 3373 3365 8 L
-3373 3365 3378 3360 8 L
-3378 3350 3378 3360 8 L
-3550 2700 3550 2550 10 L
-3550 2950 3550 2800 10 L
-3950 2550 3550 2550 10 L
-3950 2950 3950 2550 10 L
-3550 2950 3950 2950 10 L
-3550 2750 50 50 10 90 180 A
-3650 2730 3650 2765 8 L
-3650 2765 3655 2770 8 L
-3655 2770 3665 2770 8 L
-3665 2770 3670 2765 8 L
-3670 2730 3670 2765 8 L
-3688 2770 3698 2770 8 L
-3693 2730 3693 2770 8 L
-3683 2740 3693 2730 8 L
-3711 2765 3716 2770 8 L
-3711 2735 3711 2765 8 L
-3711 2735 3716 2730 8 L
-3716 2730 3726 2730 8 L
-3726 2730 3731 2735 8 L
-3731 2735 3731 2765 8 L
-3726 2770 3731 2765 8 L
-3716 2770 3726 2770 8 L
-3711 2760 3731 2740 8 L
-1050 433 200 433 20 L
-200 433 200 1068 20 L
-200 1068 1050 1068 20 L
-1050 1068 1050 433 20 L
-1050 1128 1035 1128 8 L
-1035 1128 1035 1093 8 L
-1040 1088 1035 1093 8 L
-1045 1088 1040 1088 8 L
-1050 1093 1045 1088 8 L
-1022 1123 1017 1128 8 L
-1017 1128 1002 1128 8 L
-1002 1128 997 1123 8 L
-997 1123 997 1113 8 L
-1022 1088 997 1113 8 L
-1022 1088 997 1088 8 L
-3275 2900 100 100 10 0 360 A
-3380 2840 3395 2840 8 L
-3375 2835 3380 2840 8 L
-3375 2805 3375 2835 8 L
-3375 2805 3380 2800 8 L
-3380 2800 3395 2800 8 L
-3413 2840 3423 2840 8 L
-3418 2800 3418 2840 8 L
-3408 2810 3418 2800 8 L
-3436 2835 3441 2840 8 L
-3436 2805 3436 2835 8 L
-3436 2805 3441 2800 8 L
-3441 2800 3451 2800 8 L
-3451 2800 3456 2805 8 L
-3456 2805 3456 2835 8 L
-3451 2840 3456 2835 8 L
-3441 2840 3451 2840 8 L
-3436 2830 3456 2810 8 L
-5725 375 5725 225 10 L
-5725 625 5725 475 10 L
-6125 225 5725 225 10 L
-6125 625 6125 225 10 L
-5725 625 6125 625 10 L
-5725 425 50 50 10 90 180 A
-5825 405 5825 440 8 L
-5825 440 5830 445 8 L
-5830 445 5840 445 8 L
-5840 445 5845 440 8 L
-5845 405 5845 440 8 L
-5858 425 5878 405 8 L
-5858 425 5883 425 8 L
-5878 405 5878 445 8 L
-5725 1980 6125 1980 20 L
-6125 1980 6125 2160 20 L
-6125 2160 5725 2160 20 L
-5725 2160 5725 1980 20 L
-5725 1980 6125 1980 20 L
-6125 1980 6125 2040 20 L
-6125 2040 5725 2040 20 L
-5725 2040 5725 1980 20 L
-5855 1980 5855 2040 10 L
-5995 1980 5995 2040 10 L
-5725 1915 5725 1945 8 L
-5725 1915 5730 1910 8 L
-5730 1910 5740 1910 8 L
-5740 1910 5745 1915 8 L
-5745 1915 5745 1945 8 L
-5740 1950 5745 1945 8 L
-5730 1950 5740 1950 8 L
-5725 1945 5730 1950 8 L
-5735 1940 5745 1950 8 L
-5758 1910 5778 1910 8 L
-5758 1910 5758 1930 8 L
-5758 1930 5763 1925 8 L
-5763 1925 5773 1925 8 L
-5773 1925 5778 1930 8 L
-5778 1930 5778 1945 8 L
-5773 1950 5778 1945 8 L
-5763 1950 5773 1950 8 L
-5758 1945 5763 1950 8 L
-5725 975 5725 825 10 L
-5725 1225 5725 1075 10 L
-6125 825 5725 825 10 L
-6125 1225 6125 825 10 L
-5725 1225 6125 1225 10 L
-5725 1025 50 50 10 90 180 A
-5825 1005 5825 1040 8 L
-5825 1040 5830 1045 8 L
-5830 1045 5840 1045 8 L
-5840 1045 5845 1040 8 L
-5845 1005 5845 1040 8 L
-5858 1005 5878 1005 8 L
-5858 1005 5858 1025 8 L
-5858 1025 5863 1020 8 L
-5863 1020 5873 1020 8 L
-5873 1020 5878 1025 8 L
-5878 1025 5878 1040 8 L
-5873 1045 5878 1040 8 L
-5863 1045 5873 1045 8 L
-5858 1040 5863 1045 8 L
-5625 1875 5725 1875 10 L
-5825 1875 5925 1875 10 L
-5725 1875 5825 1825 10 L
-5825 1825 5825 1925 10 L
-5825 1925 5725 1875 10 L
-5725 1825 5725 1925 10 L
-5850 1825 5850 1865 8 L
-5865 1825 5870 1830 8 L
-5870 1830 5870 1860 8 L
-5865 1865 5870 1860 8 L
-5845 1865 5865 1865 8 L
-5845 1825 5865 1825 8 L
-5883 1865 5908 1840 8 L
-5908 1825 5908 1840 8 L
-5883 1825 5908 1825 8 L
-5725 2805 6125 2805 20 L
-6125 2805 6125 2985 20 L
-6125 2985 5725 2985 20 L
-5725 2985 5725 2805 20 L
-5725 2805 6125 2805 20 L
-6125 2805 6125 2865 20 L
-6125 2865 5725 2865 20 L
-5725 2865 5725 2805 20 L
-5855 2805 5855 2865 10 L
-5995 2805 5995 2865 10 L
-5725 2740 5725 2770 8 L
-5725 2740 5730 2735 8 L
-5730 2735 5740 2735 8 L
-5740 2735 5745 2740 8 L
-5745 2740 5745 2770 8 L
-5740 2775 5745 2770 8 L
-5730 2775 5740 2775 8 L
-5725 2770 5730 2775 8 L
-5735 2765 5745 2775 8 L
-5758 2740 5763 2735 8 L
-5763 2735 5773 2735 8 L
-5773 2735 5778 2740 8 L
-5778 2740 5778 2770 8 L
-5773 2775 5778 2770 8 L
-5763 2775 5773 2775 8 L
-5758 2770 5763 2775 8 L
-5763 2755 5778 2755 8 L
-84 2843 450 2853 20 L
-84 2725 84 2843 20 L
-450 2715 84 2725 20 L
-588 2922 588 2646 20 L
-450 2922 708 2922 20 L
-450 2646 450 2922 20 L
-708 2646 450 2646 20 L
-668 2784 673 2789 8 L
-653 2784 668 2784 8 L
-648 2789 653 2784 8 L
-648 2789 648 2799 8 L
-648 2799 653 2804 8 L
-653 2804 668 2804 8 L
-668 2804 673 2809 8 L
-673 2809 673 2819 8 L
-668 2824 673 2819 8 L
-653 2824 668 2824 8 L
-648 2819 653 2824 8 L
-691 2824 701 2824 8 L
-696 2784 696 2824 8 L
-686 2794 696 2784 8 L
-4575 3850 3525 3850 20 L
-4575 3850 4575 3200 20 L
-4575 3200 4525 3200 20 L
-4525 3200 4525 3750 20 L
-4525 3750 4325 3750 20 L
-4325 3750 4325 3200 20 L
-4325 3200 4275 3200 20 L
-4275 3200 4275 3750 20 L
-4275 3750 3825 3750 20 L
-3525 3850 3525 3200 20 L
-3525 3200 3575 3200 20 L
-3575 3200 3575 3750 20 L
-3575 3750 3775 3750 20 L
-3775 3750 3775 3200 20 L
-3775 3200 3825 3200 20 L
-3825 3200 3825 3750 20 L
-4825 3300 150 150 10 0 360 A
-4980 3190 4995 3190 8 L
-4975 3185 4980 3190 8 L
-4975 3155 4975 3185 8 L
-4975 3155 4980 3150 8 L
-4980 3150 4995 3150 8 L
-5008 3155 5013 3150 8 L
-5013 3150 5028 3150 8 L
-5028 3150 5033 3155 8 L
-5033 3155 5033 3165 8 L
-5008 3190 5033 3165 8 L
-5008 3190 5033 3190 8 L
-2950 2875 2950 2675 20 L
-2950 2675 3050 2675 20 L
-3050 2675 3050 2875 20 L
-3050 2875 2950 2875 20 L
-3000 2975 3000 2875 20 L
-3000 2675 3000 2575 20 L
-2980 2855 2980 2835 8 L
-2980 2835 2985 2830 8 L
-2985 2830 2995 2830 8 L
-3000 2835 2995 2830 8 L
-3000 2850 3000 2835 8 L
-2980 2850 3020 2850 8 L
-3000 2850 3020 2830 8 L
-3020 2812 3020 2802 8 L
-2980 2807 3020 2807 8 L
-2990 2817 2980 2807 8 L
-3015 2789 3020 2784 8 L
-2985 2789 3015 2789 8 L
-2985 2789 2980 2784 8 L
-2980 2784 2980 2774 8 L
-2980 2774 2985 2769 8 L
-2985 2769 3015 2769 8 L
-3020 2774 3015 2769 8 L
-3020 2784 3020 2774 8 L
-3010 2789 2990 2769 8 L
-4425 525 4425 325 20 L
-4425 325 4525 325 20 L
-4525 325 4525 525 20 L
-4525 525 4425 525 20 L
-4475 625 4475 525 20 L
-4475 325 4475 225 20 L
-4455 505 4455 485 8 L
-4455 485 4460 480 8 L
-4460 480 4470 480 8 L
-4475 485 4470 480 8 L
-4475 500 4475 485 8 L
-4455 500 4495 500 8 L
-4475 500 4495 480 8 L
-4460 467 4455 462 8 L
-4455 462 4455 452 8 L
-4455 452 4460 447 8 L
-4460 447 4490 447 8 L
-4495 452 4490 447 8 L
-4495 462 4495 452 8 L
-4490 467 4495 462 8 L
-4475 462 4475 447 8 L
-3275 2600 100 100 10 180 360 A
-3170 2660 3155 2660 8 L
-3175 2665 3170 2660 8 L
-3175 2695 3175 2665 8 L
-3175 2695 3170 2700 8 L
-3170 2700 3155 2700 8 L
-3142 2660 3122 2680 8 L
-3122 2695 3122 2680 8 L
-3127 2700 3122 2695 8 L
-3137 2700 3127 2700 8 L
-3142 2695 3137 2700 8 L
-3142 2695 3142 2685 8 L
-3142 2685 3137 2680 8 L
-3137 2680 3122 2680 8 L
-7025 275 6845 275 20 L
-7025 3775 7025 275 20 L
-6845 3775 7025 3775 20 L
-6620 3655 6620 395 20 L
-6620 395 6525 395 20 L
-6845 395 6620 395 10 L
-6845 275 6845 395 10 L
-6845 175 6845 275 20 L
-6525 175 6845 175 20 L
-6525 395 6525 175 20 L
-6845 3875 6525 3875 20 L
-6845 3775 6845 3875 20 L
-6845 3655 6845 3775 10 L
-6620 3655 6845 3655 10 L
-6525 3655 6620 3655 20 L
-6525 3875 6525 3655 20 L
-6325 475 6600 475 40 L
-6325 575 6600 575 40 L
-6325 675 6600 675 40 L
-6325 775 6600 775 40 L
-6325 875 6600 875 40 L
-6325 975 6600 975 40 L
-6325 1075 6600 1075 40 L
-6325 1175 6600 1175 40 L
-6325 1275 6600 1275 40 L
-6325 1375 6600 1375 40 L
-6325 1475 6600 1475 40 L
-6325 1575 6600 1575 40 L
-6325 1675 6600 1675 40 L
-6325 1775 6600 1775 40 L
-6325 1875 6600 1875 40 L
-6325 1975 6600 1975 40 L
-6325 2075 6600 2075 40 L
-6325 2175 6600 2175 40 L
-6325 2275 6600 2275 40 L
-6325 2375 6600 2375 40 L
-6325 2475 6600 2475 40 L
-6325 2575 6600 2575 40 L
-6325 2675 6600 2675 40 L
-6325 2775 6600 2775 40 L
-6325 2875 6600 2875 40 L
-6325 2975 6600 2975 40 L
-6325 3075 6600 3075 40 L
-6325 3175 6600 3175 40 L
-6325 3275 6600 3275 40 L
-6325 3375 6600 3375 40 L
-6325 3475 6600 3475 40 L
-6325 3575 6600 3575 40 L
-6625 3455 6625 3425 16 L
-6625 3425 6695 3425 16 L
-6705 3435 6695 3425 16 L
-6705 3445 6705 3435 16 L
-6695 3455 6705 3445 16 L
-6705 3389 6705 3369 16 L
-6625 3379 6705 3379 16 L
-6645 3399 6625 3379 16 L
-6625 3343 6625 3303 16 L
-6625 3343 6665 3343 16 L
-6665 3343 6655 3333 16 L
-6655 3333 6655 3313 16 L
-6655 3313 6665 3303 16 L
-6665 3303 6695 3303 16 L
-6705 3313 6695 3303 16 L
-6705 3333 6705 3313 16 L
-6695 3343 6705 3333 16 L
-5200 2805 5600 2805 20 L
-5600 2805 5600 2985 20 L
-5600 2985 5200 2985 20 L
-5200 2985 5200 2805 20 L
-5200 2805 5600 2805 20 L
-5600 2805 5600 2865 20 L
-5600 2865 5200 2865 20 L
-5200 2865 5200 2805 20 L
-5330 2805 5330 2865 10 L
-5470 2805 5470 2865 10 L
-5200 2740 5200 2770 8 L
-5200 2740 5205 2735 8 L
-5205 2735 5215 2735 8 L
-5215 2735 5220 2740 8 L
-5220 2740 5220 2770 8 L
-5215 2775 5220 2770 8 L
-5205 2775 5215 2775 8 L
-5200 2770 5205 2775 8 L
-5210 2765 5220 2775 8 L
-5233 2755 5253 2735 8 L
-5233 2755 5258 2755 8 L
-5253 2735 5253 2775 8 L
-4825 3700 150 150 10 180 360 A
-4670 3810 4655 3810 8 L
-4675 3815 4670 3810 8 L
-4675 3845 4675 3815 8 L
-4675 3845 4670 3850 8 L
-4670 3850 4655 3850 8 L
-4637 3810 4627 3810 8 L
-4632 3850 4632 3810 8 L
-4642 3840 4632 3850 8 L
-1060 2850 860 2850 20 L
-860 2850 860 2750 20 L
-860 2750 1060 2750 20 L
-1060 2750 1060 2850 20 L
-1160 2800 1060 2800 20 L
-860 2800 760 2800 20 L
-1040 2820 1020 2820 8 L
-1020 2820 1015 2815 8 L
-1015 2815 1015 2805 8 L
-1020 2800 1015 2805 8 L
-1035 2800 1020 2800 8 L
-1035 2820 1035 2780 8 L
-1035 2800 1015 2780 8 L
-997 2780 987 2780 8 L
-992 2820 992 2780 8 L
-1002 2810 992 2820 8 L
-974 2815 969 2820 8 L
-969 2820 954 2820 8 L
-954 2820 949 2815 8 L
-949 2815 949 2805 8 L
-974 2780 949 2805 8 L
-974 2780 949 2780 8 L
-6125 3850 5075 3850 20 L
-6125 3850 6125 3200 20 L
-6125 3200 6075 3200 20 L
-6075 3200 6075 3750 20 L
-6075 3750 5875 3750 20 L
-5875 3750 5875 3200 20 L
-5875 3200 5825 3200 20 L
-5825 3200 5825 3750 20 L
-5825 3750 5375 3750 20 L
-5075 3850 5075 3200 20 L
-5075 3200 5125 3200 20 L
-5125 3200 5125 3750 20 L
-5125 3750 5325 3750 20 L
-5325 3750 5325 3200 20 L
-5325 3200 5375 3200 20 L
-5375 3200 5375 3750 20 L
-2850 2675 2850 2875 20 L
-2850 2875 2750 2875 20 L
-2750 2875 2750 2675 20 L
-2750 2675 2850 2675 20 L
-2800 2575 2800 2675 20 L
-2800 2875 2800 2975 20 L
-2820 2695 2820 2715 8 L
-2820 2715 2815 2720 8 L
-2815 2720 2805 2720 8 L
-2800 2715 2805 2720 8 L
-2800 2700 2800 2715 8 L
-2820 2700 2780 2700 8 L
-2800 2700 2780 2720 8 L
-2780 2733 2800 2753 8 L
-2815 2753 2800 2753 8 L
-2820 2748 2815 2753 8 L
-2820 2738 2820 2748 8 L
-2815 2733 2820 2738 8 L
-2815 2733 2805 2733 8 L
-2805 2733 2800 2738 8 L
-2800 2738 2800 2753 8 L
-5530 3720 5530 3660 10 L
-5670 3720 5670 3660 10 L
-5800 3660 5800 3720 20 L
-5400 3660 5800 3660 20 L
-5400 3720 5400 3660 20 L
-5800 3720 5400 3720 20 L
-5800 3540 5800 3720 20 L
-5400 3540 5800 3540 20 L
-5400 3720 5400 3540 20 L
-5800 3720 5400 3720 20 L
-5800 3790 5800 3755 8 L
-5800 3755 5795 3750 8 L
-5795 3750 5785 3750 8 L
-5785 3750 5780 3755 8 L
-5780 3790 5780 3755 8 L
-5767 3785 5762 3790 8 L
-5762 3790 5752 3790 8 L
-5752 3790 5747 3785 8 L
-5747 3785 5747 3755 8 L
-5752 3750 5747 3755 8 L
-5762 3750 5752 3750 8 L
-5767 3755 5762 3750 8 L
-5762 3770 5747 3770 8 L
-4825 2775 250 250 10 180 360 A
-4570 2985 4555 2985 8 L
-4575 2990 4570 2985 8 L
-4575 3020 4575 2990 8 L
-4575 3020 4570 3025 8 L
-4570 3025 4555 3025 8 L
-4542 2990 4537 2985 8 L
-4542 3000 4542 2990 8 L
-4542 3000 4537 3005 8 L
-4537 3005 4527 3005 8 L
-4527 3005 4522 3000 8 L
-4522 3000 4522 2990 8 L
-4527 2985 4522 2990 8 L
-4537 2985 4527 2985 8 L
-4542 3010 4537 3005 8 L
-4542 3020 4542 3010 8 L
-4542 3020 4537 3025 8 L
-4537 3025 4527 3025 8 L
-4527 3025 4522 3020 8 L
-4522 3020 4522 3010 8 L
-4527 3005 4522 3010 8 L
-1675 3000 1675 2850 10 L
-1675 3250 1675 3100 10 L
-2075 2850 1675 2850 10 L
-2075 3250 2075 2850 10 L
-1675 3250 2075 3250 10 L
-1675 3050 50 50 10 90 180 A
-1775 3030 1775 3065 8 L
-1775 3065 1780 3070 8 L
-1780 3070 1790 3070 8 L
-1790 3070 1795 3065 8 L
-1795 3030 1795 3065 8 L
-1813 3070 1823 3070 8 L
-1818 3030 1818 3070 8 L
-1808 3040 1818 3030 8 L
-1841 3070 1851 3070 8 L
-1846 3030 1846 3070 8 L
-1836 3040 1846 3030 8 L
-1100 3350 1100 3250 10 L
-1000 3350 1100 3350 10 L
-1200 3250 1000 3250 20 L
-1200 3350 1200 3250 20 L
-1000 3350 1200 3350 20 L
-1000 3250 1000 3350 20 L
-1260 3250 1260 3265 8 L
-1260 3265 1225 3265 8 L
-1220 3260 1225 3265 8 L
-1220 3255 1220 3260 8 L
-1225 3250 1220 3255 8 L
-1260 3283 1220 3283 8 L
-1260 3278 1260 3298 8 L
-1260 3298 1255 3303 8 L
-1255 3303 1245 3303 8 L
-1240 3298 1245 3303 8 L
-1240 3283 1240 3298 8 L
-1255 3316 1260 3321 8 L
-1260 3321 1260 3336 8 L
-1260 3336 1255 3341 8 L
-1255 3341 1245 3341 8 L
-1220 3316 1245 3341 8 L
-1220 3316 1220 3341 8 L
-3500 525 3500 325 20 L
-3500 325 3600 325 20 L
-3600 325 3600 525 20 L
-3600 525 3500 525 20 L
-3550 625 3550 525 20 L
-3550 325 3550 225 20 L
-3530 505 3530 485 8 L
-3530 485 3535 480 8 L
-3535 480 3545 480 8 L
-3550 485 3545 480 8 L
-3550 500 3550 485 8 L
-3530 500 3570 500 8 L
-3550 500 3570 480 8 L
-3570 462 3570 452 8 L
-3530 457 3570 457 8 L
-3540 467 3530 457 8 L
-3550 439 3530 419 8 L
-3550 439 3550 414 8 L
-3530 419 3570 419 8 L
-5400 2100 100 100 10 0 360 A
-5505 2040 5520 2040 8 L
-5500 2035 5505 2040 8 L
-5500 2005 5500 2035 8 L
-5500 2005 5505 2000 8 L
-5505 2000 5520 2000 8 L
-5538 2040 5548 2040 8 L
-5543 2000 5543 2040 8 L
-5533 2010 5543 2000 8 L
-5566 2040 5576 2040 8 L
-5571 2000 5571 2040 8 L
-5561 2010 5571 2000 8 L
-5725 2330 6125 2330 20 L
-6125 2330 6125 2510 20 L
-6125 2510 5725 2510 20 L
-5725 2510 5725 2330 20 L
-5725 2330 6125 2330 20 L
-6125 2330 6125 2390 20 L
-6125 2390 5725 2390 20 L
-5725 2390 5725 2330 20 L
-5855 2330 5855 2390 10 L
-5995 2330 5995 2390 10 L
-5725 2265 5725 2295 8 L
-5725 2265 5730 2260 8 L
-5730 2260 5740 2260 8 L
-5740 2260 5745 2265 8 L
-5745 2265 5745 2295 8 L
-5740 2300 5745 2295 8 L
-5730 2300 5740 2300 8 L
-5725 2295 5730 2300 8 L
-5735 2290 5745 2300 8 L
-5763 2300 5773 2300 8 L
-5768 2260 5768 2300 8 L
-5758 2270 5768 2260 8 L
-850 3300 850 3400 10 L
-850 3500 850 3600 10 L
-850 3400 900 3500 10 L
-900 3500 800 3500 10 L
-800 3500 850 3400 10 L
-900 3400 800 3400 10 L
-900 3525 860 3525 8 L
-900 3540 895 3545 8 L
-895 3545 865 3545 8 L
-860 3540 865 3545 8 L
-860 3520 860 3540 8 L
-900 3520 900 3540 8 L
-895 3558 900 3563 8 L
-900 3563 900 3573 8 L
-900 3573 895 3578 8 L
-895 3578 865 3578 8 L
-860 3573 865 3578 8 L
-860 3563 860 3573 8 L
-865 3558 860 3563 8 L
-880 3563 880 3578 8 L
-4825 2200 250 250 10 180 360 A
-4570 2410 4555 2410 8 L
-4575 2415 4570 2410 8 L
-4575 2445 4575 2415 8 L
-4575 2445 4570 2450 8 L
-4570 2450 4555 2450 8 L
-4542 2410 4517 2435 8 L
-4517 2450 4517 2435 8 L
-4542 2450 4517 2450 8 L
-815 2445 70 70 10 0 360 A
-815 2445 50 50 15 0 360 A
-770 2315 770 2355 8 L
-785 2315 790 2320 8 L
-790 2320 790 2350 8 L
-785 2355 790 2350 8 L
-765 2355 785 2355 8 L
-765 2315 785 2315 8 L
-803 2355 823 2335 8 L
-823 2320 823 2335 8 L
-818 2315 823 2320 8 L
-808 2315 818 2315 8 L
-803 2320 808 2315 8 L
-803 2320 803 2330 8 L
-803 2330 808 2335 8 L
-808 2335 823 2335 8 L
-825 1910 545 1910 20 L
-725 1860 545 1860 20 L
-825 1810 545 1810 20 L
-725 1760 545 1760 20 L
-825 1710 545 1710 20 L
-725 1660 545 1660 20 L
-825 1610 545 1610 20 L
-725 1560 545 1560 20 L
-825 1510 545 1510 20 L
-345 2070 345 1350 10 L
-545 2070 345 2070 20 L
-545 1350 545 2070 20 L
-345 1350 545 1350 20 L
-45 2010 45 1410 20 L
-315 2010 45 2010 20 L
-315 1410 315 2010 10 L
-45 1410 315 1410 20 L
-315 2120 345 2120 10 L
-315 2240 345 2240 10 L
-315 1300 345 1300 10 L
-315 1180 345 1180 10 L
-315 2300 315 1120 10 L
-345 2300 315 2300 10 L
-345 1120 345 2300 10 L
-315 1120 345 1120 10 L
-425 1440 425 1455 8 L
-425 1455 390 1455 8 L
-385 1450 390 1455 8 L
-385 1445 385 1450 8 L
-390 1440 385 1445 8 L
-385 1468 405 1488 8 L
-420 1488 405 1488 8 L
-425 1483 420 1488 8 L
-425 1473 425 1483 8 L
-420 1468 425 1473 8 L
-420 1468 410 1468 8 L
-410 1468 405 1473 8 L
-405 1473 405 1488 8 L
-2750 2150 2750 2000 10 L
-2750 2400 2750 2250 10 L
-3950 2000 2750 2000 10 L
-3950 2400 3950 2000 10 L
-2750 2400 3950 2400 10 L
-2750 2200 50 50 10 90 180 A
-2850 2180 2850 2215 8 L
-2850 2215 2855 2220 8 L
-2855 2220 2865 2220 8 L
-2865 2220 2870 2215 8 L
-2870 2180 2870 2215 8 L
-2883 2215 2888 2220 8 L
-2883 2205 2883 2215 8 L
-2883 2205 2888 2200 8 L
-2888 2200 2898 2200 8 L
-2898 2200 2903 2205 8 L
-2903 2205 2903 2215 8 L
-2898 2220 2903 2215 8 L
-2888 2220 2898 2220 8 L
-2883 2195 2888 2200 8 L
-2883 2185 2883 2195 8 L
-2883 2185 2888 2180 8 L
-2888 2180 2898 2180 8 L
-2898 2180 2903 2185 8 L
-2903 2185 2903 2195 8 L
-2898 2200 2903 2195 8 L
-1350 2300 1350 2000 10 L
-1350 2700 1350 2400 10 L
-2550 2000 1350 2000 10 L
-2550 2700 2550 2000 10 L
-1350 2700 2550 2700 10 L
-1350 2350 50 50 10 90 180 A
-1450 2330 1450 2365 8 L
-1450 2365 1455 2370 8 L
-1455 2370 1465 2370 8 L
-1465 2370 1470 2365 8 L
-1470 2330 1470 2365 8 L
-1498 2330 1503 2335 8 L
-1488 2330 1498 2330 8 L
-1483 2335 1488 2330 8 L
-1483 2335 1483 2365 8 L
-1483 2365 1488 2370 8 L
-1498 2350 1503 2355 8 L
-1483 2350 1498 2350 8 L
-1488 2370 1498 2370 8 L
-1498 2370 1503 2365 8 L
-1503 2355 1503 2365 8 L
-4150 2000 4150 2400 20 L
-4150 2400 4350 2400 20 L
-4350 2400 4350 2000 20 L
-4350 2000 4150 2000 20 L
-4150 2100 4250 2100 10 L
-4250 2100 4250 2000 10 L
-4410 2000 4410 2015 8 L
-4410 2015 4375 2015 8 L
-4370 2010 4375 2015 8 L
-4370 2005 4370 2010 8 L
-4375 2000 4370 2005 8 L
-4410 2033 4370 2033 8 L
-4410 2028 4410 2048 8 L
-4410 2048 4405 2053 8 L
-4405 2053 4395 2053 8 L
-4390 2048 4395 2053 8 L
-4390 2033 4390 2048 8 L
-4370 2071 4370 2081 8 L
-4410 2076 4370 2076 8 L
-4400 2066 4410 2076 8 L
-3225 3725 100 100 10 0 360 A
-3330 3665 3345 3665 8 L
-3325 3660 3330 3665 8 L
-3325 3630 3325 3660 8 L
-3325 3630 3330 3625 8 L
-3330 3625 3345 3625 8 L
-3358 3645 3378 3625 8 L
-3358 3645 3383 3645 8 L
-3378 3625 3378 3665 8 L
-2400 375 2400 225 10 L
-2400 625 2400 475 10 L
-3200 225 2400 225 10 L
-3200 625 3200 225 10 L
-2400 625 3200 625 10 L
-2400 425 50 50 10 90 180 A
-2500 405 2500 440 8 L
-2500 440 2505 445 8 L
-2505 445 2515 445 8 L
-2515 445 2520 440 8 L
-2520 405 2520 440 8 L
-2533 445 2558 420 8 L
-2558 405 2558 420 8 L
-2533 405 2558 405 8 L
-5200 2330 5600 2330 20 L
-5600 2330 5600 2510 20 L
-5600 2510 5200 2510 20 L
-5200 2510 5200 2330 20 L
-5200 2330 5600 2330 20 L
-5600 2330 5600 2390 20 L
-5600 2390 5200 2390 20 L
-5200 2390 5200 2330 20 L
-5330 2330 5330 2390 10 L
-5470 2330 5470 2390 10 L
-5200 2265 5200 2295 8 L
-5200 2265 5205 2260 8 L
-5205 2260 5215 2260 8 L
-5215 2260 5220 2265 8 L
-5220 2265 5220 2295 8 L
-5215 2300 5220 2295 8 L
-5205 2300 5215 2300 8 L
-5200 2295 5205 2300 8 L
-5210 2290 5220 2300 8 L
-5233 2265 5238 2260 8 L
-5238 2260 5253 2260 8 L
-5253 2260 5258 2265 8 L
-5258 2265 5258 2275 8 L
-5233 2300 5258 2275 8 L
-5233 2300 5258 2300 8 L
-575 2445 50 50 15 0 360 A
-575 2445 70 70 10 0 360 A
-530 2315 530 2355 8 L
-545 2315 550 2320 8 L
-550 2320 550 2350 8 L
-545 2355 550 2350 8 L
-525 2355 545 2355 8 L
-525 2315 545 2315 8 L
-568 2355 578 2355 8 L
-573 2315 573 2355 8 L
-563 2325 573 2315 8 L
-591 2350 596 2355 8 L
-591 2320 591 2350 8 L
-591 2320 596 2315 8 L
-596 2315 606 2315 8 L
-606 2315 611 2320 8 L
-611 2320 611 2350 8 L
-606 2355 611 2350 8 L
-596 2355 606 2355 8 L
-591 2345 611 2325 8 L
-1625 3525 1525 3525 10 L
-1525 3625 1575 3525 10 L
-1625 3625 1525 3625 10 L
-1575 3525 1625 3625 10 L
-1575 3625 1575 3725 10 L
-1575 3425 1575 3525 10 L
-1625 3650 1585 3650 8 L
-1625 3665 1620 3670 8 L
-1620 3670 1590 3670 8 L
-1585 3665 1590 3670 8 L
-1585 3645 1585 3665 8 L
-1625 3645 1625 3665 8 L
-1585 3688 1585 3698 8 L
-1625 3693 1585 3693 8 L
-1615 3683 1625 3693 8 L
-5525 525 5525 325 20 L
-5525 325 5625 325 20 L
-5625 325 5625 525 20 L
-5625 525 5525 525 20 L
-5575 625 5575 525 20 L
-5575 325 5575 225 20 L
-5555 505 5555 485 8 L
-5555 485 5560 480 8 L
-5560 480 5570 480 8 L
-5575 485 5570 480 8 L
-5575 500 5575 485 8 L
-5555 500 5595 500 8 L
-5575 500 5595 480 8 L
-5575 467 5555 447 8 L
-5575 467 5575 442 8 L
-5555 447 5595 447 8 L
-3925 375 3925 225 10 L
-3925 625 3925 475 10 L
-4325 225 3925 225 10 L
-4325 625 4325 225 10 L
-3925 625 4325 625 10 L
-3925 425 50 50 10 90 180 A
-4025 405 4025 440 8 L
-4025 440 4030 445 8 L
-4030 445 4040 445 8 L
-4040 445 4045 440 8 L
-4045 405 4045 440 8 L
-4063 445 4073 445 8 L
-4068 405 4068 445 8 L
-4058 415 4068 405 8 L
-4086 410 4091 405 8 L
-4091 405 4101 405 8 L
-4101 405 4106 410 8 L
-4106 410 4106 440 8 L
-4101 445 4106 440 8 L
-4091 445 4101 445 8 L
-4086 440 4091 445 8 L
-4091 425 4106 425 8 L
-4825 975 4825 825 10 L
-4825 1225 4825 1075 10 L
-5225 825 4825 825 10 L
-5225 1225 5225 825 10 L
-4825 1225 5225 1225 10 L
-4825 1025 50 50 10 90 180 A
-4925 1005 4925 1040 8 L
-4925 1040 4930 1045 8 L
-4930 1045 4940 1045 8 L
-4940 1045 4945 1040 8 L
-4945 1005 4945 1040 8 L
-4963 1045 4973 1045 8 L
-4968 1005 4968 1045 8 L
-4958 1015 4968 1005 8 L
-4986 1025 5006 1005 8 L
-4986 1025 5011 1025 8 L
-5006 1005 5006 1045 8 L
-5325 1125 5325 925 20 L
-5325 925 5425 925 20 L
-5425 925 5425 1125 20 L
-5425 1125 5325 1125 20 L
-5375 1225 5375 1125 20 L
-5375 925 5375 825 20 L
-5355 1105 5355 1085 8 L
-5355 1085 5360 1080 8 L
-5360 1080 5370 1080 8 L
-5375 1085 5370 1080 8 L
-5375 1100 5375 1085 8 L
-5355 1100 5395 1100 8 L
-5375 1100 5395 1080 8 L
-5355 1067 5355 1047 8 L
-5355 1067 5375 1067 8 L
-5375 1067 5370 1062 8 L
-5370 1062 5370 1052 8 L
-5370 1052 5375 1047 8 L
-5375 1047 5390 1047 8 L
-5395 1052 5390 1047 8 L
-5395 1062 5395 1052 8 L
-5390 1067 5395 1062 8 L
-4625 1125 4625 925 20 L
-4625 925 4725 925 20 L
-4725 925 4725 1125 20 L
-4725 1125 4625 1125 20 L
-4675 1225 4675 1125 20 L
-4675 925 4675 825 20 L
-4655 1105 4655 1085 8 L
-4655 1085 4660 1080 8 L
-4660 1080 4670 1080 8 L
-4675 1085 4670 1080 8 L
-4675 1100 4675 1085 8 L
-4655 1100 4695 1100 8 L
-4675 1100 4695 1080 8 L
-4655 1052 4660 1047 8 L
-4655 1062 4655 1052 8 L
-4660 1067 4655 1062 8 L
-4660 1067 4690 1067 8 L
-4690 1067 4695 1062 8 L
-4675 1052 4680 1047 8 L
-4675 1067 4675 1052 8 L
-4695 1062 4695 1052 8 L
-4695 1052 4690 1047 8 L
-4680 1047 4690 1047 8 L
-4625 525 4625 325 20 L
-4625 325 4725 325 20 L
-4725 325 4725 525 20 L
-4725 525 4625 525 20 L
-4675 625 4675 525 20 L
-4675 325 4675 225 20 L
-4655 505 4655 485 8 L
-4655 485 4660 480 8 L
-4660 480 4670 480 8 L
-4675 485 4670 480 8 L
-4675 500 4675 485 8 L
-4655 500 4695 500 8 L
-4675 500 4695 480 8 L
-4660 467 4655 462 8 L
-4655 462 4655 447 8 L
-4655 447 4660 442 8 L
-4660 442 4670 442 8 L
-4695 467 4670 442 8 L
-4695 467 4695 442 8 L
-4825 375 4825 225 10 L
-4825 625 4825 475 10 L
-5225 225 4825 225 10 L
-5225 625 5225 225 10 L
-4825 625 5225 625 10 L
-4825 425 50 50 10 90 180 A
-4925 405 4925 440 8 L
-4925 440 4930 445 8 L
-4930 445 4940 445 8 L
-4940 445 4945 440 8 L
-4945 405 4945 440 8 L
-4963 445 4973 445 8 L
-4968 405 4968 445 8 L
-4958 415 4968 405 8 L
-4986 410 4991 405 8 L
-4991 405 5006 405 8 L
-5006 405 5011 410 8 L
-5011 410 5011 420 8 L
-4986 445 5011 420 8 L
-4986 445 5011 445 8 L
-5325 525 5325 325 20 L
-5325 325 5425 325 20 L
-5425 325 5425 525 20 L
-5425 525 5325 525 20 L
-5375 625 5375 525 20 L
-5375 325 5375 225 20 L
-5355 505 5355 485 8 L
-5355 485 5360 480 8 L
-5360 480 5370 480 8 L
-5375 485 5370 480 8 L
-5375 500 5375 485 8 L
-5355 500 5395 500 8 L
-5375 500 5395 480 8 L
-5395 462 5395 452 8 L
-5355 457 5395 457 8 L
-5365 467 5355 457 8 L
-5525 1125 5525 925 20 L
-5525 925 5625 925 20 L
-5625 925 5625 1125 20 L
-5625 1125 5525 1125 20 L
-5575 1225 5575 1125 20 L
-5575 925 5575 825 20 L
-5555 1105 5555 1085 8 L
-5555 1085 5560 1080 8 L
-5560 1080 5570 1080 8 L
-5575 1085 5570 1080 8 L
-5575 1100 5575 1085 8 L
-5555 1100 5595 1100 8 L
-5575 1100 5595 1080 8 L
-5590 1067 5595 1062 8 L
-5580 1067 5590 1067 8 L
-5580 1067 5575 1062 8 L
-5575 1062 5575 1052 8 L
-5575 1052 5580 1047 8 L
-5580 1047 5590 1047 8 L
-5595 1052 5590 1047 8 L
-5595 1062 5595 1052 8 L
-5570 1067 5575 1062 8 L
-5560 1067 5570 1067 8 L
-5560 1067 5555 1062 8 L
-5555 1062 5555 1052 8 L
-5555 1052 5560 1047 8 L
-5560 1047 5570 1047 8 L
-5575 1052 5570 1047 8 L
-3925 975 3925 825 10 L
-3925 1225 3925 1075 10 L
-4325 825 3925 825 10 L
-4325 1225 4325 825 10 L
-3925 1225 4325 1225 10 L
-3925 1025 50 50 10 90 180 A
-4025 1005 4025 1040 8 L
-4025 1040 4030 1045 8 L
-4030 1045 4040 1045 8 L
-4040 1045 4045 1040 8 L
-4045 1005 4045 1040 8 L
-4063 1045 4073 1045 8 L
-4068 1005 4068 1045 8 L
-4058 1015 4068 1005 8 L
-4086 1005 4106 1005 8 L
-4086 1005 4086 1025 8 L
-4086 1025 4091 1020 8 L
-4091 1020 4101 1020 8 L
-4101 1020 4106 1025 8 L
-4106 1025 4106 1040 8 L
-4101 1045 4106 1040 8 L
-4091 1045 4101 1045 8 L
-4086 1040 4091 1045 8 L
-4425 1125 4425 925 20 L
-4425 925 4525 925 20 L
-4525 925 4525 1125 20 L
-4525 1125 4425 1125 20 L
-4475 1225 4475 1125 20 L
-4475 925 4475 825 20 L
-4455 1105 4455 1085 8 L
-4455 1085 4460 1080 8 L
-4460 1080 4470 1080 8 L
-4475 1085 4470 1080 8 L
-4475 1100 4475 1085 8 L
-4455 1100 4495 1100 8 L
-4475 1100 4495 1080 8 L
-4495 1067 4470 1042 8 L
-4455 1042 4470 1042 8 L
-4455 1067 4455 1042 8 L
-3980 3720 3980 3660 10 L
-4120 3720 4120 3660 10 L
-4250 3660 4250 3720 20 L
-3850 3660 4250 3660 20 L
-3850 3720 3850 3660 20 L
-4250 3720 3850 3720 20 L
-4250 3540 4250 3720 20 L
-3850 3540 4250 3540 20 L
-3850 3720 3850 3540 20 L
-4250 3720 3850 3720 20 L
-4250 3790 4250 3755 8 L
-4250 3755 4245 3750 8 L
-4245 3750 4235 3750 8 L
-4235 3750 4230 3755 8 L
-4230 3790 4230 3755 8 L
-4217 3785 4212 3790 8 L
-4212 3790 4197 3790 8 L
-4197 3790 4192 3785 8 L
-4192 3785 4192 3775 8 L
-4217 3750 4192 3775 8 L
-4217 3750 4192 3750 8 L
-3025 3525 2925 3525 10 L
-2925 3625 2975 3525 10 L
-3025 3625 2925 3625 10 L
-2975 3525 3025 3625 10 L
-2975 3625 2975 3725 10 L
-2975 3425 2975 3525 10 L
-3025 3650 2985 3650 8 L
-3025 3665 3020 3670 8 L
-3020 3670 2990 3670 8 L
-2985 3665 2990 3670 8 L
-2985 3645 2985 3665 8 L
-3025 3645 3025 3665 8 L
-3020 3683 3025 3688 8 L
-3025 3688 3025 3703 8 L
-3025 3703 3020 3708 8 L
-3020 3708 3010 3708 8 L
-2985 3683 3010 3708 8 L
-2985 3683 2985 3708 8 L
-3300 525 3300 325 20 L
-3300 325 3400 325 20 L
-3400 325 3400 525 20 L
-3400 525 3300 525 20 L
-3350 625 3350 525 20 L
-3350 325 3350 225 20 L
-3330 505 3330 485 8 L
-3330 485 3335 480 8 L
-3335 480 3345 480 8 L
-3350 485 3345 480 8 L
-3350 500 3350 485 8 L
-3330 500 3370 500 8 L
-3350 500 3370 480 8 L
-3370 462 3370 452 8 L
-3330 457 3370 457 8 L
-3340 467 3330 457 8 L
-3335 439 3330 434 8 L
-3330 434 3330 424 8 L
-3330 424 3335 419 8 L
-3335 419 3365 419 8 L
-3370 424 3365 419 8 L
-3370 434 3370 424 8 L
-3365 439 3370 434 8 L
-3350 434 3350 419 8 L
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aic_group1.ps b/doc/aic_group1.ps
deleted file mode 100644 (file)
index 55f1ae6..0000000
+++ /dev/null
@@ -1,1605 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), layergroup #1
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-/Color {0.222 0.365 0.810 mysetrgbcolor} def Color
-% LayerGroup: 0, Layer: "solder" (#0)
-900 1610 825 1610 10 L
-905 1605 900 1610 10 L
-1220 1605 905 1605 10 L
-900 1810 825 1810 10 L
-910 1800 900 1810 10 L
-1075 1800 910 1800 10 L
-4675 2850 5825 2850 10 L
-4650 2875 4675 2850 10 L
-4600 2875 4650 2875 10 L
-4575 2850 4600 2875 10 L
-3500 2850 4575 2850 10 L
-3050 850 2750 850 10 L
-3025 2550 3000 2575 10 L
-3375 2550 3025 2550 10 L
-3225 1975 2575 1975 10 L
-3300 2050 3225 1975 10 L
-2575 2500 2100 2500 10 L
-2025 2825 2200 2825 10 L
-3150 2500 3500 2500 10 L
-3300 800 2850 800 10 L
-2750 2500 3150 2500 10 L
-2700 2550 2750 2500 10 L
-2375 1050 2425 1100 10 L
-1900 1050 2375 1050 10 L
-2650 1100 2700 1050 10 L
-2425 1100 2650 1100 10 L
-1800 1325 2425 1325 10 L
-2700 1350 2750 1300 10 L
-2450 1350 2700 1350 10 L
-2425 1325 2450 1350 10 L
-1700 1425 2800 1425 10 L
-1600 1000 3000 1000 10 L
-1550 1250 2900 1250 10 L
-1450 1375 2950 1375 10 L
-2950 1375 3225 1375 10 L
-2900 1250 3100 1250 10 L
-2850 1200 3000 1200 10 L
-2600 1050 2450 1050 10 L
-2650 1300 2500 1300 10 L
-2550 1200 2650 1200 10 L
-5350 1725 2625 1725 10 L
-6475 1125 6525 1175 10 L
-1150 1125 6475 1125 10 L
-6200 525 3100 525 10 L
-6200 525 6200 525 10 L
-6150 1300 2950 1300 10 L
-6150 875 6225 875 10 L
-6100 925 6150 875 10 L
-5925 925 6100 925 10 L
-5875 875 5925 925 10 L
-6000 625 5975 650 10 L
-6475 625 6000 625 10 L
-6525 675 6475 625 10 L
-5925 350 6225 350 10 L
-5875 300 5925 350 10 L
-5875 275 5875 300 10 L
-6000 200 6475 200 10 L
-5975 225 6000 200 10 L
-5975 275 5975 225 10 L
-6400 400 5175 400 25 L
-6425 425 6400 400 25 L
-6425 475 6425 425 25 L
-3100 525 3050 575 10 L
-6325 475 4075 475 25 L
-5675 1075 6325 1075 25 L
-6225 1025 6475 1025 25 L
-6475 925 6525 975 25 L
-6375 925 6475 925 25 L
-775 3925 1275 3925 25 L
-4900 3700 4900 3625 45 L
-3400 2900 3425 2900 10 L
-6525 3575 6325 3575 40 L
-6475 525 6525 575 25 L
-6375 525 6475 525 25 L
-6325 475 6375 525 25 L
-5900 2200 5925 2225 45 L
-4950 2200 5900 2200 45 L
-5925 2775 4950 2775 45 L
-6125 2675 6325 2675 45 L
-6325 3175 3950 3175 45 L
-6325 3275 5400 3275 45 L
-6325 2875 6125 2875 45 L
-6325 2775 5925 2775 45 L
-5400 3075 6025 3075 45 L
-6325 2975 6075 2975 45 L
-6075 2975 6025 2925 45 L
-6025 2600 5400 2600 45 L
-3350 2850 3400 2900 10 L
-3425 2900 3475 2850 10 L
-3475 2850 3500 2850 10 L
-3000 1775 4850 1775 10 L
-2525 2875 2550 2850 10 L
-4100 3075 4075 3050 10 L
-4075 3050 3300 3050 10 L
-2550 2850 3350 2850 10 L
-3300 3050 3275 3050 10 L
-5500 3600 4150 3600 45 L
-6300 3600 5700 3600 45 L
-6325 3575 6300 3600 45 L
-6525 2575 6325 2575 45 L
-6525 2675 6325 2675 45 L
-6525 2775 6325 2775 45 L
-6525 2875 6325 2875 45 L
-6525 2975 6325 2975 45 L
-6525 3075 6325 3075 45 L
-6525 3175 6325 3175 45 L
-6525 3275 6325 3275 45 L
-6375 725 6475 725 25 L
-6475 725 6525 775 25 L
-6375 725 4025 725 25 L
-6325 675 6325 725 25 L
-5175 875 5775 875 25 L
-6425 775 6375 825 25 L
-6375 825 6225 825 25 L
-6225 825 6175 825 25 L
-6175 825 6125 775 25 L
-6125 775 5800 775 25 L
-5800 775 5775 800 25 L
-5775 800 5775 875 25 L
-6375 925 6175 925 25 L
-6175 925 6150 925 25 L
-6150 925 6125 950 25 L
-6125 950 4025 950 25 L
-4475 825 4475 950 25 L
-4025 950 1400 950 25 L
-1750 1525 1850 1525 25 L
-1800 1625 1925 1625 25 L
-1800 1525 1800 1625 25 L
-3950 3175 3225 3175 25 L
-2400 2450 3225 2450 25 L
-2000 2550 2700 2550 10 L
-2400 2450 1400 2450 25 L
-6275 3425 6325 3475 40 L
-6325 3375 6275 3425 40 L
-1725 2900 1300 2900 25 L
-6750 3985 450 3985 1 L
-575 1620 575 2390 25 L
-6750 50 6750 3985 1 L
-570 2385 560 2395 25 L
-735 2895 685 2845 25 L
-6075 1000 4225 1000 25 L
-5100 1625 5300 1625 25 L
-5200 1525 5200 1625 25 L
-5150 1525 5250 1525 25 L
-6225 1025 6100 1025 25 L
-6100 1025 6075 1000 25 L
-4225 1000 3150 1000 25 L
-3975 875 3975 950 25 L
-6325 875 6325 925 25 L
-450 50 6750 50 1 L
-4000 175 4425 175 25 L
-4425 175 4475 225 25 L
-3900 2900 4575 2900 25 L
-2900 2650 4800 2650 10 L
-3000 2975 3250 2975 25 L
-2125 3925 3275 3925 25 L
-3000 2975 2925 2975 25 L
-2925 2975 2850 3050 25 L
-2850 3050 2050 3050 25 L
-2050 3050 2025 3050 25 L
-3600 2000 3625 1975 10 L
-3600 2050 3600 2000 10 L
-3625 1975 4300 1975 10 L
-3250 2975 3825 2975 25 L
-3825 2975 3900 2900 25 L
-3325 2925 3325 2975 25 L
-1275 3925 2125 3925 25 L
-6225 3425 6275 3425 40 L
-550 3300 1050 3300 10 L
-1375 3725 1725 3725 25 L
-1150 2800 1300 2800 25 L
-2975 3725 2975 3800 25 L
-1725 3800 1725 3750 25 L
-3175 3725 3175 3800 25 L
-2325 3725 2325 3800 25 L
-4150 3600 4150 3800 25 L
-4150 3800 1725 3800 25 L
-905 3055 755 3055 10 L
-4000 175 3400 175 25 L
-3400 175 3350 225 25 L
-3550 225 3550 175 25 L
-3975 275 3975 175 25 L
-6150 150 5575 150 10 L
-5025 150 4675 150 10 L
-5275 225 5075 225 10 L
-5075 225 5075 275 10 L
-4400 225 4375 225 10 L
-4375 225 4175 225 10 L
-4175 225 4175 275 10 L
-4475 300 4400 225 10 L
-5375 625 5425 575 10 L
-5425 575 5550 575 10 L
-5550 575 5775 575 10 L
-5825 2100 5450 2100 10 L
-4175 575 4175 675 10 L
-4175 675 5575 675 10 L
-5575 675 5575 625 10 L
-5550 1350 4175 1350 10 L
-4175 1075 4475 1075 10 L
-5775 1175 5375 1175 10 L
-5375 1175 5375 1225 10 L
-5375 1075 5075 1075 10 L
-6100 1425 5475 1425 10 L
-5125 800 4675 800 10 L
-4675 800 4675 825 10 L
-4875 1075 4725 1075 10 L
-4775 575 4500 575 10 L
-4500 575 4475 600 10 L
-4475 600 4475 625 10 L
-4025 2350 4200 2350 10 L
-3700 2350 3750 2300 10 L
-3750 2300 4250 2300 10 L
-4250 2300 4300 2350 10 L
-3700 2600 3800 2600 10 L
-5225 2375 5575 2375 10 L
-3800 2600 3800 2550 10 L
-3800 2550 3925 2425 10 L
-3925 2425 5175 2425 10 L
-5175 2425 5225 2375 10 L
-2800 2575 3000 2575 10 L
-2975 3425 3175 3425 10 L
-2725 3525 2775 3525 25 L
-3550 3850 2525 3850 10 L
-1825 3850 2525 3850 10 L
-950 2450 1150 2450 10 L
-825 1500 570 1500 25 L
-575 1620 575 1500 25 L
-1100 3675 2575 3675 10 L
-2575 3675 2625 3725 10 L
-2025 3725 2025 3675 10 L
-2125 3525 2325 3525 25 L
-1925 3600 2425 3600 10 L
-1950 575 875 575 10 L
-2000 625 975 625 10 L
-2050 825 975 825 10 L
-2100 675 875 675 10 L
-6375 1725 5350 1725 10 L
-2200 2250 2400 2250 25 L
-3000 2125 2150 2125 10 L
-3100 2175 2250 2175 10 L
-2525 1925 3150 1925 10 L
-2250 1950 2500 1950 10 L
-2500 1950 2525 1925 10 L
-1500 1875 2975 1875 10 L
-2975 1875 3250 1875 10 L
-2925 2225 2500 2225 10 L
-2500 2225 2475 2225 10 L
-2475 2225 2450 2200 10 L
-2450 2200 2325 2200 10 L
-2325 2200 2300 2225 10 L
-2300 2225 2250 2225 10 L
-2250 2225 2200 2175 10 L
-2200 2175 1700 2175 10 L
-2100 2300 2675 2300 10 L
-2675 2300 2700 2275 10 L
-2700 2275 3875 2275 10 L
-3875 2275 3900 2250 10 L
-2575 2775 3850 2775 10 L
-1550 2825 1925 2825 10 L
-1925 2825 1975 2775 10 L
-1975 2775 2250 2775 10 L
-2250 2775 2300 2825 10 L
-2300 2825 3400 2825 10 L
-2300 1825 2450 1825 10 L
-2275 900 2550 900 10 L
-2500 1625 2425 1700 10 L
-1900 1750 2475 1750 10 L
-2475 1750 2500 1725 10 L
-2425 1700 1800 1700 10 L
-2500 2650 2550 2700 25 L
-2550 2700 3325 2700 25 L
-4575 2900 4700 2900 25 L
-3400 2825 4625 2825 10 L
-3375 2550 3575 2550 10 L
-3575 2550 3600 2525 10 L
-3650 2200 3500 2200 10 L
-2775 3525 2975 3525 25 L
-2425 3600 3750 3600 10 L
-1075 1475 4450 1475 10 L
-4450 1475 4450 1525 10 L
-2200 1775 2900 1775 10 L
-2900 1775 2950 1825 10 L
-2950 1825 4500 1825 10 L
-1075 1800 1275 1800 10 L
-1275 1800 2175 1800 10 L
-2175 1800 2200 1775 10 L
-4025 3100 2225 3100 10 L
-4075 2450 4025 2500 10 L
-5300 2450 4075 2450 10 L
-1375 3425 1725 3425 10 L
-1825 3425 1925 3425 10 L
-2325 3425 2375 3475 10 L
-2375 3475 2400 3475 10 L
-2400 3475 3125 3475 10 L
-3125 3475 3175 3425 10 L
-2975 3425 2975 3475 10 L
-2425 3425 2525 3425 10 L
-2625 3525 2675 3575 10 L
-3225 3575 3250 3550 10 L
-3250 3550 3275 3525 10 L
-2675 3575 3225 3575 10 L
-4000 2250 4200 2250 10 L
-4200 2150 4050 2150 10 L
-4200 2050 4100 2050 10 L
-4150 2725 3475 2725 10 L
-3475 2725 3450 2750 10 L
-3450 2750 2725 2750 10 L
-2725 2750 2700 2725 10 L
-2700 2725 2475 2725 10 L
-2475 2725 2450 2700 10 L
-2450 2700 1050 2700 10 L
-1275 3425 1275 3375 10 L
-1275 3375 5200 3375 10 L
-5200 2600 5400 2600 10 L
-2025 3425 2025 3375 10 L
-2100 3225 5700 3225 10 L
-5700 2450 5825 2450 10 L
-5300 3275 5275 3250 10 L
-5275 3250 2875 3250 10 L
-2875 3250 2825 3300 10 L
-5375 3075 4100 3075 10 L
-6325 3375 6325 3475 45 L
-6325 3425 4050 3425 45 L
-6325 3475 6525 3475 40 L
-6525 3475 6525 3375 40 L
-6525 3375 6325 3375 40 L
-6325 3400 6525 3400 40 L
-6325 3425 6525 3425 40 L
-6325 3450 6525 3450 40 L
-1300 2895 735 2895 25 L
-450 3985 450 50 1 L
-685 2845 585 2845 25 L
-585 2845 550 2880 25 L
-550 3300 495 3300 10 L
-1290 2545 870 2545 25 L
-870 2545 815 2490 25 L
-580 2505 645 2570 10 L
-645 2570 760 2570 10 L
-800 175 800 135 8 L
-800 175 820 175 8 L
-800 155 815 155 8 L
-838 135 853 135 8 L
-833 140 838 135 8 L
-833 150 833 140 8 L
-833 150 838 155 8 L
-838 155 848 155 8 L
-848 155 853 150 8 L
-833 145 853 145 8 L
-853 145 853 150 8 L
-871 150 871 135 8 L
-871 150 876 155 8 L
-876 155 886 155 8 L
-866 155 871 150 8 L
-904 150 904 135 8 L
-904 150 909 155 8 L
-909 155 914 155 8 L
-914 155 919 150 8 L
-919 150 919 135 8 L
-899 155 904 150 8 L
-947 155 952 150 8 L
-937 155 947 155 8 L
-932 150 937 155 8 L
-932 150 932 140 8 L
-932 140 937 135 8 L
-952 155 952 140 8 L
-952 140 957 135 8 L
-937 135 947 135 8 L
-947 135 952 140 8 L
-975 150 975 135 8 L
-975 150 980 155 8 L
-980 155 985 155 8 L
-985 155 990 150 8 L
-990 150 990 135 8 L
-970 155 975 150 8 L
-1023 175 1023 135 8 L
-1018 135 1023 140 8 L
-1008 135 1018 135 8 L
-1003 140 1008 135 8 L
-1003 150 1003 140 8 L
-1003 150 1008 155 8 L
-1008 155 1018 155 8 L
-1018 155 1023 150 8 L
-1036 150 1036 140 8 L
-1036 150 1041 155 8 L
-1041 155 1051 155 8 L
-1051 155 1056 150 8 L
-1056 150 1056 140 8 L
-1051 135 1056 140 8 L
-1041 135 1051 135 8 L
-1036 140 1041 135 8 L
-1092 175 1092 135 8 L
-1087 175 1107 175 8 L
-1107 175 1112 170 8 L
-1112 170 1112 160 8 L
-1107 155 1112 160 8 L
-1092 155 1107 155 8 L
-1130 135 1145 135 8 L
-1125 140 1130 135 8 L
-1125 150 1125 140 8 L
-1125 150 1130 155 8 L
-1130 155 1140 155 8 L
-1140 155 1145 150 8 L
-1125 145 1145 145 8 L
-1145 145 1145 150 8 L
-1163 135 1178 135 8 L
-1178 135 1183 140 8 L
-1178 145 1183 140 8 L
-1163 145 1178 145 8 L
-1158 150 1163 145 8 L
-1158 150 1163 155 8 L
-1163 155 1178 155 8 L
-1178 155 1183 150 8 L
-1158 140 1163 135 8 L
-1201 135 1216 135 8 L
-1216 135 1221 140 8 L
-1216 145 1221 140 8 L
-1201 145 1216 145 8 L
-1196 150 1201 145 8 L
-1196 150 1201 155 8 L
-1201 155 1216 155 8 L
-1216 155 1221 150 8 L
-1196 140 1201 135 8 L
-1234 155 1234 140 8 L
-1234 140 1239 135 8 L
-1239 135 1249 135 8 L
-1249 135 1254 140 8 L
-1254 155 1254 140 8 L
-1272 175 1272 140 8 L
-1272 140 1277 135 8 L
-1267 160 1277 160 8 L
-1293 175 1293 140 8 L
-1293 140 1298 135 8 L
-1288 160 1298 160 8 L
-1309 150 1309 140 8 L
-1309 150 1314 155 8 L
-1314 155 1324 155 8 L
-1324 155 1329 150 8 L
-1329 150 1329 140 8 L
-1324 135 1329 140 8 L
-1314 135 1324 135 8 L
-1309 140 1314 135 8 L
-800 215 805 210 8 L
-800 245 805 250 8 L
-800 245 800 215 8 L
-823 210 838 210 8 L
-818 215 823 210 8 L
-818 245 818 215 8 L
-818 245 823 250 8 L
-823 250 838 250 8 L
-851 250 856 245 8 L
-856 245 856 215 8 L
-851 210 856 215 8 L
-887 245 892 250 8 L
-892 250 907 250 8 L
-907 250 912 245 8 L
-912 245 912 235 8 L
-887 210 912 235 8 L
-887 210 912 210 8 L
-925 215 930 210 8 L
-925 245 925 215 8 L
-925 245 930 250 8 L
-930 250 940 250 8 L
-940 250 945 245 8 L
-945 245 945 215 8 L
-940 210 945 215 8 L
-930 210 940 210 8 L
-925 220 945 240 8 L
-958 215 963 210 8 L
-958 245 958 215 8 L
-958 245 963 250 8 L
-963 250 973 250 8 L
-973 250 978 245 8 L
-978 245 978 215 8 L
-973 210 978 215 8 L
-963 210 973 210 8 L
-958 220 978 240 8 L
-991 245 996 250 8 L
-996 250 1006 250 8 L
-1006 250 1011 245 8 L
-1011 245 1011 215 8 L
-1006 210 1011 215 8 L
-996 210 1006 210 8 L
-991 215 996 210 8 L
-996 230 1011 230 8 L
-1042 250 1042 210 8 L
-1042 210 1057 225 8 L
-1057 225 1072 210 8 L
-1072 250 1072 210 8 L
-1100 230 1105 225 8 L
-1090 230 1100 230 8 L
-1085 225 1090 230 8 L
-1085 225 1085 215 8 L
-1085 215 1090 210 8 L
-1105 230 1105 215 8 L
-1105 215 1110 210 8 L
-1090 210 1100 210 8 L
-1100 210 1105 215 8 L
-1123 250 1123 215 8 L
-1123 215 1128 210 8 L
-1144 250 1144 215 8 L
-1144 215 1149 210 8 L
-1139 235 1149 235 8 L
-1165 210 1180 210 8 L
-1160 215 1165 210 8 L
-1160 225 1160 215 8 L
-1160 225 1165 230 8 L
-1165 230 1175 230 8 L
-1175 230 1180 225 8 L
-1160 220 1180 220 8 L
-1180 220 1180 225 8 L
-1198 225 1198 210 8 L
-1198 225 1203 230 8 L
-1203 230 1213 230 8 L
-1193 230 1198 225 8 L
-1244 250 1244 210 8 L
-1244 250 1264 250 8 L
-1244 230 1259 230 8 L
-1282 210 1297 210 8 L
-1277 215 1282 210 8 L
-1277 225 1277 215 8 L
-1277 225 1282 230 8 L
-1282 230 1292 230 8 L
-1292 230 1297 225 8 L
-1277 220 1297 220 8 L
-1297 220 1297 225 8 L
-1315 250 1315 215 8 L
-1315 215 1320 210 8 L
-1310 235 1320 235 8 L
-1336 250 1336 215 8 L
-1336 215 1341 210 8 L
-1331 235 1341 235 8 L
-1357 210 1372 210 8 L
-1352 215 1357 210 8 L
-1352 225 1352 215 8 L
-1352 225 1357 230 8 L
-1357 230 1367 230 8 L
-1367 230 1372 225 8 L
-1352 220 1372 220 8 L
-1372 220 1372 225 8 L
-1390 225 1390 210 8 L
-1390 225 1395 230 8 L
-1395 230 1405 230 8 L
-1385 230 1390 225 8 L
-1436 250 1436 210 8 L
-1436 210 1456 210 8 L
-1484 230 1489 225 8 L
-1474 230 1484 230 8 L
-1469 225 1474 230 8 L
-1469 225 1469 215 8 L
-1469 215 1474 210 8 L
-1489 230 1489 215 8 L
-1489 215 1494 210 8 L
-1474 210 1484 210 8 L
-1484 210 1489 215 8 L
-1522 230 1527 225 8 L
-1512 230 1522 230 8 L
-1507 225 1512 230 8 L
-1507 225 1507 215 8 L
-1507 215 1512 210 8 L
-1512 210 1522 210 8 L
-1522 210 1527 215 8 L
-1507 200 1512 195 8 L
-1512 195 1522 195 8 L
-1522 195 1527 200 8 L
-1527 230 1527 200 8 L
-1545 210 1560 210 8 L
-1540 215 1545 210 8 L
-1540 225 1540 215 8 L
-1540 225 1545 230 8 L
-1545 230 1555 230 8 L
-1555 230 1560 225 8 L
-1540 220 1560 220 8 L
-1560 220 1560 225 8 L
-1578 210 1593 210 8 L
-1593 210 1598 215 8 L
-1593 220 1598 215 8 L
-1578 220 1593 220 8 L
-1573 225 1578 220 8 L
-1573 225 1578 230 8 L
-1578 230 1593 230 8 L
-1593 230 1598 225 8 L
-1573 215 1578 210 8 L
-800 320 800 285 8 L
-800 320 805 325 8 L
-805 325 820 325 8 L
-820 325 825 320 8 L
-825 320 825 285 8 L
-800 305 825 305 8 L
-838 325 848 325 8 L
-843 325 843 285 8 L
-838 285 848 285 8 L
-866 285 881 285 8 L
-861 290 866 285 8 L
-861 320 861 290 8 L
-861 320 866 325 8 L
-866 325 881 325 8 L
-894 305 914 305 8 L
-932 285 942 285 8 L
-937 325 937 285 8 L
-927 315 937 325 8 L
-955 285 960 285 8 L
-978 285 988 285 8 L
-983 325 983 285 8 L
-973 315 983 325 8 L
-1001 285 1006 285 8 L
-1019 290 1024 285 8 L
-1019 320 1019 290 8 L
-1019 320 1024 325 8 L
-1024 325 1034 325 8 L
-1034 325 1039 320 8 L
-1039 320 1039 290 8 L
-1034 285 1039 290 8 L
-1024 285 1034 285 8 L
-1019 295 1039 315 8 L
-820 100 825 95 8 L
-805 100 820 100 8 L
-800 95 805 100 8 L
-800 95 800 85 8 L
-800 85 805 80 8 L
-805 80 820 80 8 L
-820 80 825 75 8 L
-825 75 825 65 8 L
-820 60 825 65 8 L
-805 60 820 60 8 L
-800 65 805 60 8 L
-838 95 838 65 8 L
-838 95 843 100 8 L
-843 100 853 100 8 L
-853 100 858 95 8 L
-858 95 858 65 8 L
-853 60 858 65 8 L
-843 60 853 60 8 L
-838 65 843 60 8 L
-871 100 871 60 8 L
-871 60 891 60 8 L
-909 100 909 60 8 L
-924 100 929 95 8 L
-929 95 929 65 8 L
-924 60 929 65 8 L
-904 60 924 60 8 L
-904 100 924 100 8 L
-942 80 957 80 8 L
-942 60 962 60 8 L
-942 100 942 60 8 L
-942 100 962 100 8 L
-975 100 995 100 8 L
-995 100 1000 95 8 L
-1000 95 1000 85 8 L
-995 80 1000 85 8 L
-980 80 995 80 8 L
-980 100 980 60 8 L
-980 80 1000 60 8 L
-/Color {0.063 0.302 0.556 mysetrgbcolor} def Color
-% LayerGroup: 0, Layer: "GND-sldr" (#1)
-/Color {0.556 0.444 0.317 mysetrgbcolor} def Color
-% LayerGroup: 0, Layer: "Vcc-sldr" (#2)
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 120 80 PVR
-575 3762 120 80 PVR
-6625 275 120 80 PVR
-6625 3762 120 80 PVR
-1155 3055 60 35 PVSQ
-755 3055 60 35 PVR
-1725 3725 60 35 PVSQ
-1825 3725 60 35 PVR
-1925 3725 60 35 PVR
-2025 3725 60 35 PVR
-2125 3725 60 35 PVR
-2225 3725 60 35 PVR
-2325 3725 60 35 PVR
-2425 3725 60 35 PVR
-2525 3725 60 35 PVR
-2625 3725 60 35 PVR
-2725 3725 60 35 PVR
-2825 3725 60 35 PVR
-2825 3425 60 35 PVR
-2725 3425 60 35 PVR
-2625 3425 60 35 PVR
-2525 3425 60 35 PVR
-2425 3425 60 35 PVR
-2325 3425 60 35 PVR
-2225 3425 60 35 PVR
-2125 3425 60 35 PVR
-2025 3425 60 35 PVR
-1925 3425 60 35 PVR
-1825 3425 60 35 PVR
-1725 3425 60 35 PVR
-1375 3725 60 35 PVSQ
-1275 3725 60 35 PVR
-5400 1625 60 35 PVSQ
-5350 1525 60 35 PVR
-5300 1625 60 35 PVR
-5250 1525 60 35 PVR
-5200 1625 60 35 PVR
-5150 1525 60 35 PVR
-5100 1625 60 35 PVR
-5050 1525 60 35 PVR
-5000 1625 60 35 PVR
-4950 1525 60 35 PVR
-4900 1625 60 35 PVR
-4850 1525 60 35 PVR
-4800 1625 60 35 PVR
-4750 1525 60 35 PVR
-4700 1625 60 35 PVR
-4650 1525 60 35 PVR
-4600 1625 60 35 PVR
-4550 1525 60 35 PVR
-4500 1625 60 35 PVR
-4450 1525 60 35 PVR
-4400 1625 60 35 PVR
-4350 1525 60 35 PVR
-4300 1625 60 35 PVR
-4250 1525 60 35 PVR
-4200 1625 60 35 PVR
-4150 1525 60 35 PVR
-4100 1625 60 35 PVR
-4050 1525 60 35 PVR
-4000 1625 60 35 PVR
-3950 1525 60 35 PVR
-3900 1625 60 35 PVR
-3850 1525 60 35 PVR
-3800 1625 60 35 PVR
-3750 1525 60 35 PVR
-3700 1625 60 35 PVR
-3650 1525 60 35 PVR
-3400 1625 60 35 PVR
-3350 1525 60 35 PVR
-3300 1625 60 35 PVR
-3250 1525 60 35 PVR
-3200 1625 60 35 PVR
-3150 1525 60 35 PVR
-3100 1625 60 35 PVR
-3050 1525 60 35 PVR
-3000 1625 60 35 PVR
-2950 1525 60 35 PVR
-2900 1625 60 35 PVR
-2850 1525 60 35 PVR
-2800 1625 60 35 PVR
-2750 1525 60 35 PVR
-2700 1625 60 35 PVR
-2650 1525 60 35 PVR
-2600 1625 60 35 PVR
-2550 1525 60 35 PVR
-2500 1625 60 35 PVR
-2450 1525 60 35 PVR
-2400 1625 60 35 PVR
-2350 1525 60 35 PVR
-2300 1625 60 35 PVR
-2250 1525 60 35 PVR
-2200 1625 60 35 PVR
-2150 1525 60 35 PVR
-2100 1625 60 35 PVR
-2050 1525 60 35 PVR
-2000 1625 60 35 PVR
-1950 1525 60 35 PVR
-1900 1625 60 35 PVR
-1850 1525 60 35 PVR
-1800 1625 60 35 PVR
-1750 1525 60 35 PVR
-1700 1625 60 35 PVR
-1650 1525 60 35 PVR
-5730 1575 80 60 PVR
-3525 1575 120 100 PVR
-1325 1575 120 100 PVR
-1375 3425 60 35 PVSQ
-1275 3425 60 35 PVR
-3175 3425 60 35 PVSQ
-3275 3425 60 35 PVR
-3600 2900 60 35 PVSQ
-3700 2900 60 35 PVR
-3800 2900 60 35 PVR
-3900 2900 60 35 PVR
-3900 2600 60 35 PVR
-3800 2600 60 35 PVR
-3700 2600 60 35 PVR
-3600 2600 60 35 PVR
-875 575 60 35 PVSQ
-975 625 60 35 PVR
-875 675 60 35 PVR
-975 725 60 35 PVR
-875 775 60 35 PVR
-975 825 60 35 PVR
-875 875 60 35 PVR
-975 925 60 35 PVR
-625 525 148 128 PVR
-625 976 148 128 PVR
-745 445 80 60 PVR
-745 1056 80 60 PVR
-3225 2900 60 35 PVSQ
-3325 2900 60 35 PVR
-5775 575 60 35 PVSQ
-5875 575 60 35 PVR
-5975 575 60 35 PVR
-6075 575 60 35 PVR
-6075 275 60 35 PVR
-5975 275 60 35 PVR
-5875 275 60 35 PVR
-5775 275 60 35 PVR
-5825 2100 80 42 PVSQ
-5925 2100 80 42 PVR
-6025 2100 80 42 PVR
-5775 1175 60 35 PVSQ
-5875 1175 60 35 PVR
-5975 1175 60 35 PVR
-6075 1175 60 35 PVR
-6075 875 60 35 PVR
-5975 875 60 35 PVR
-5875 875 60 35 PVR
-5775 875 60 35 PVR
-5625 1875 60 35 PVSQ
-5925 1875 60 35 PVR
-5825 2925 80 42 PVSQ
-5925 2925 80 42 PVR
-6025 2925 80 42 PVR
-550 2695 70 42 PVSQ
-550 2872 70 42 PVR
-648 2646 70 52 PVR
-648 2922 70 52 PVR
-4750 3300 60 35 PVSQ
-4900 3300 60 35 PVR
-3000 2975 60 35 PVSQ
-3000 2575 60 35 PVR
-4475 625 60 35 PVSQ
-4475 225 60 35 PVR
-3325 2600 60 35 PVSQ
-3225 2600 60 35 PVR
-6525 475 60 35 PVSQ
-6525 575 60 35 PVR
-6525 675 60 35 PVR
-6525 775 60 35 PVR
-6525 875 60 35 PVR
-6525 975 60 35 PVR
-6525 1075 60 35 PVR
-6525 1175 60 35 PVR
-6525 1275 60 35 PVR
-6525 1375 60 35 PVR
-6525 1475 60 35 PVR
-6525 1575 60 35 PVR
-6525 1675 60 35 PVR
-6525 1775 60 35 PVR
-6525 1875 60 35 PVR
-6525 1975 60 35 PVR
-6525 2075 60 35 PVR
-6525 2175 60 35 PVR
-6525 2275 60 35 PVR
-6525 2375 60 35 PVR
-6525 2475 60 35 PVR
-6525 2575 60 35 PVR
-6525 2675 60 35 PVR
-6525 2775 60 35 PVR
-6525 2875 60 35 PVR
-6525 2975 60 35 PVR
-6525 3075 60 35 PVR
-6525 3175 60 35 PVR
-6525 3275 60 35 PVR
-6525 3375 60 35 PVR
-6525 3475 60 35 PVR
-6525 3575 60 35 PVR
-6425 475 60 35 PVR
-6425 575 60 35 PVR
-6425 675 60 35 PVR
-6425 775 60 35 PVR
-6425 875 60 35 PVR
-6425 975 60 35 PVR
-6425 1075 60 35 PVR
-6425 1175 60 35 PVR
-6425 1275 60 35 PVR
-6425 1375 60 35 PVR
-6425 1475 60 35 PVR
-6425 1575 60 35 PVR
-6425 1675 60 35 PVR
-6425 1775 60 35 PVR
-6425 1875 60 35 PVR
-6425 1975 60 35 PVR
-6425 2075 60 35 PVR
-6425 2175 60 35 PVR
-6425 2275 60 35 PVR
-6425 2375 60 35 PVR
-6425 2475 60 35 PVR
-6425 2575 60 35 PVR
-6425 2675 60 35 PVR
-6425 2775 60 35 PVR
-6425 2875 60 35 PVR
-6425 2975 60 35 PVR
-6425 3075 60 35 PVR
-6425 3175 60 35 PVR
-6425 3275 60 35 PVR
-6425 3375 60 35 PVR
-6425 3475 60 35 PVR
-6425 3575 60 35 PVR
-6325 475 60 35 PVR
-6325 575 60 35 PVR
-6325 675 60 35 PVR
-6325 775 60 35 PVR
-6325 875 60 35 PVR
-6325 975 60 35 PVR
-6325 1075 60 35 PVR
-6325 1175 60 35 PVR
-6325 1275 60 35 PVR
-6325 1375 60 35 PVR
-6325 1475 60 35 PVR
-6325 1575 60 35 PVR
-6325 1675 60 35 PVR
-6325 1775 60 35 PVR
-6325 1875 60 35 PVR
-6325 1975 60 35 PVR
-6325 2075 60 35 PVR
-6325 2175 60 35 PVR
-6325 2275 60 35 PVR
-6325 2375 60 35 PVR
-6325 2475 60 35 PVR
-6325 2575 60 35 PVR
-6325 2675 60 35 PVR
-6325 2775 60 35 PVR
-6325 2875 60 35 PVR
-6325 2975 60 35 PVR
-6325 3075 60 35 PVR
-6325 3175 60 35 PVR
-6325 3275 60 35 PVR
-6325 3375 60 35 PVR
-6325 3475 60 35 PVR
-6325 3575 60 35 PVR
-6625 3775 120 80 PVR
-6625 275 120 80 PVR
-5300 2925 80 42 PVSQ
-5400 2925 80 42 PVR
-5500 2925 80 42 PVR
-4900 3700 60 35 PVSQ
-4750 3700 60 35 PVR
-1160 2800 60 35 PVSQ
-760 2800 60 35 PVR
-2800 2575 60 35 PVSQ
-2800 2975 60 35 PVR
-5700 3600 80 42 PVSQ
-5600 3600 80 42 PVR
-5500 3600 80 42 PVR
-4950 2775 70 42 PVSQ
-4700 2775 70 42 PVR
-1725 3200 60 35 PVSQ
-1825 3200 60 35 PVR
-1925 3200 60 35 PVR
-2025 3200 60 35 PVR
-2025 2900 60 35 PVR
-1925 2900 60 35 PVR
-1825 2900 60 35 PVR
-1725 2900 60 35 PVR
-1050 3300 70 42 PVSQ
-1150 3300 70 42 PVR
-3550 625 60 35 PVSQ
-3550 225 60 35 PVR
-5350 2100 60 35 PVSQ
-5450 2100 60 35 PVR
-5825 2450 80 42 PVSQ
-5925 2450 80 42 PVR
-6025 2450 80 42 PVR
-850 3300 60 35 PVSQ
-850 3600 60 35 PVR
-4950 2200 70 42 PVSQ
-4700 2200 70 42 PVR
-815 2395 60 35 PVSQ
-815 2495 60 35 PVR
-775 1240 120 100 PVR
-775 2180 120 100 PVR
-825 1510 70 42 PVR
-725 1560 70 42 PVR
-825 1610 70 42 PVR
-725 1660 70 42 PVR
-825 1710 70 42 PVR
-725 1760 70 42 PVR
-825 1810 70 42 PVR
-725 1860 70 42 PVR
-825 1910 70 42 PVSQ
-2800 2350 60 35 PVSQ
-2900 2350 60 35 PVR
-3000 2350 60 35 PVR
-3100 2350 60 35 PVR
-3200 2350 60 35 PVR
-3300 2350 60 35 PVR
-3400 2350 60 35 PVR
-3500 2350 60 35 PVR
-3600 2350 60 35 PVR
-3700 2350 60 35 PVR
-3800 2350 60 35 PVR
-3900 2350 60 35 PVR
-3900 2050 60 35 PVR
-3800 2050 60 35 PVR
-3700 2050 60 35 PVR
-3600 2050 60 35 PVR
-3500 2050 60 35 PVR
-3400 2050 60 35 PVR
-3300 2050 60 35 PVR
-3200 2050 60 35 PVR
-3100 2050 60 35 PVR
-3000 2050 60 35 PVR
-2900 2050 60 35 PVR
-2800 2050 60 35 PVR
-1400 2650 60 35 PVSQ
-1500 2650 60 35 PVR
-1600 2650 60 35 PVR
-1700 2650 60 35 PVR
-1800 2650 60 35 PVR
-1900 2650 60 35 PVR
-2000 2650 60 35 PVR
-2100 2650 60 35 PVR
-2200 2650 60 35 PVR
-2300 2650 60 35 PVR
-2400 2650 60 35 PVR
-2500 2650 60 35 PVR
-2500 2050 60 35 PVR
-2400 2050 60 35 PVR
-2300 2050 60 35 PVR
-2200 2050 60 35 PVR
-2100 2050 60 35 PVR
-2000 2050 60 35 PVR
-1900 2050 60 35 PVR
-1800 2050 60 35 PVR
-1700 2050 60 35 PVR
-1600 2050 60 35 PVR
-1500 2050 60 35 PVR
-1400 2050 60 35 PVR
-4200 2050 70 42 PVSQ
-4300 2050 70 42 PVR
-4200 2150 70 42 PVR
-4300 2150 70 42 PVR
-4200 2250 70 42 PVR
-4300 2250 70 42 PVR
-4200 2350 70 42 PVR
-4300 2350 70 42 PVR
-3175 3725 60 35 PVSQ
-3275 3725 60 35 PVR
-2450 575 60 35 PVSQ
-2550 575 60 35 PVR
-2650 575 60 35 PVR
-2750 575 60 35 PVR
-2850 575 60 35 PVR
-2950 575 60 35 PVR
-3050 575 60 35 PVR
-3150 575 60 35 PVR
-3150 275 60 35 PVR
-3050 275 60 35 PVR
-2950 275 60 35 PVR
-2850 275 60 35 PVR
-2750 275 60 35 PVR
-2650 275 60 35 PVR
-2550 275 60 35 PVR
-2450 275 60 35 PVR
-5300 2450 80 42 PVSQ
-5400 2450 80 42 PVR
-5500 2450 80 42 PVR
-575 2395 60 35 PVSQ
-575 2495 60 35 PVR
-1575 3425 60 35 PVSQ
-1575 3725 60 35 PVR
-5575 625 60 35 PVSQ
-5575 225 60 35 PVR
-3975 575 60 35 PVSQ
-4075 575 60 35 PVR
-4175 575 60 35 PVR
-4275 575 60 35 PVR
-4275 275 60 35 PVR
-4175 275 60 35 PVR
-4075 275 60 35 PVR
-3975 275 60 35 PVR
-4875 1175 60 35 PVSQ
-4975 1175 60 35 PVR
-5075 1175 60 35 PVR
-5175 1175 60 35 PVR
-5175 875 60 35 PVR
-5075 875 60 35 PVR
-4975 875 60 35 PVR
-4875 875 60 35 PVR
-5375 1225 60 35 PVSQ
-5375 825 60 35 PVR
-4675 1225 60 35 PVSQ
-4675 825 60 35 PVR
-4675 625 60 35 PVSQ
-4675 225 60 35 PVR
-4875 575 60 35 PVSQ
-4975 575 60 35 PVR
-5075 575 60 35 PVR
-5175 575 60 35 PVR
-5175 275 60 35 PVR
-5075 275 60 35 PVR
-4975 275 60 35 PVR
-4875 275 60 35 PVR
-5375 625 60 35 PVSQ
-5375 225 60 35 PVR
-5575 1225 60 35 PVSQ
-5575 825 60 35 PVR
-3975 1175 60 35 PVSQ
-4075 1175 60 35 PVR
-4175 1175 60 35 PVR
-4275 1175 60 35 PVR
-4275 875 60 35 PVR
-4175 875 60 35 PVR
-4075 875 60 35 PVR
-3975 875 60 35 PVR
-4475 1225 60 35 PVSQ
-4475 825 60 35 PVR
-4150 3600 80 42 PVSQ
-4050 3600 80 42 PVR
-3950 3600 80 42 PVR
-2975 3425 60 35 PVSQ
-2975 3725 60 35 PVR
-3350 625 60 35 PVSQ
-3350 225 60 35 PVR
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-4750 3425 60 35 PVR
-4900 3425 60 35 PVR
-5600 3425 60 35 PVR
-6025 2600 60 35 PVR
-5400 2600 60 35 PVR
-5400 3075 60 35 PVR
-6025 3075 60 35 PVR
-5925 2775 60 35 PVR
-6125 2875 60 35 PVR
-5400 3275 60 35 PVR
-3950 3175 60 35 PVR
-4750 3175 60 35 PVR
-6225 3425 60 35 PVR
-6125 2675 60 35 PVR
-5925 2225 60 35 PVR
-4625 3425 60 35 PVR
-5625 2200 60 35 PVR
-6225 1025 60 35 PVR
-6475 1025 60 35 PVR
-5675 1075 60 35 PVR
-5975 475 60 35 PVR
-5375 475 60 35 PVR
-4875 475 60 35 PVR
-5175 400 60 35 PVR
-5775 400 60 35 PVR
-4025 725 60 35 PVR
-4875 725 60 35 PVR
-5375 725 60 35 PVR
-5925 725 60 35 PVR
-4975 950 60 35 PVR
-1400 950 60 35 PVR
-1750 950 60 35 PVR
-2375 950 60 35 PVR
-3225 3175 60 35 PVR
-3275 3925 60 35 PVR
-2400 2450 60 35 PVR
-2700 2450 60 35 PVR
-1400 2450 60 35 PVR
-1300 2800 60 35 PVR
-1300 2900 60 35 PVR
-2525 2875 40 20 PVR
-4275 1000 60 35 PVR
-5250 1000 60 35 PVR
-3150 1000 60 35 PVR
-4475 950 60 35 PVR
-2025 3050 60 35 PVR
-1275 3925 60 35 PVR
-2125 3925 60 35 PVR
-2725 3925 60 35 PVR
-3600 3175 60 35 PVR
-775 3925 60 35 PVR
-4875 1075 40 20 PVR
-6200 525 40 20 PVR
-6225 875 40 20 PVR
-5375 1075 40 20 PVR
-6375 1725 40 20 PVR
-2625 1725 40 20 PVR
-5975 650 40 20 PVR
-4075 475 60 35 PVR
-2050 825 40 20 PVR
-4025 2350 40 20 PVR
-2950 1300 40 20 PVR
-3350 525 40 20 PVR
-5275 225 40 20 PVR
-6150 150 40 20 PVR
-4775 575 40 20 PVR
-6225 350 40 20 PVR
-6475 200 40 20 PVR
-5575 150 40 20 PVR
-5025 150 40 20 PVR
-5475 1425 40 20 PVR
-6100 1425 40 20 PVR
-6150 1300 40 20 PVR
-5550 1350 40 20 PVR
-1950 575 40 20 PVR
-2425 3600 40 20 PVR
-2100 675 40 20 PVR
-1150 1125 40 20 PVR
-5075 1075 40 20 PVR
-4175 1350 40 20 PVR
-2000 625 40 20 PVR
-5125 800 40 20 PVR
-5575 2375 40 20 PVR
-4475 300 40 20 PVR
-3550 1300 40 20 PVR
-2725 3525 60 35 PVR
-950 2450 40 20 PVR
-1150 2450 40 20 PVR
-5825 2850 40 20 PVR
-1100 3675 40 20 PVR
-1825 3850 40 20 PVR
-2525 3850 40 20 PVR
-2125 3525 60 35 PVR
-2325 3525 60 35 PVR
-1925 3600 40 20 PVR
-4175 1075 40 20 PVR
-4475 1075 40 20 PVR
-4725 1075 40 20 PVR
-4675 150 40 20 PVR
-2550 1200 40 20 PVR
-2650 1200 40 20 PVR
-2650 1300 40 20 PVR
-2500 1300 40 20 PVR
-2600 1050 40 20 PVR
-2450 1050 40 20 PVR
-2850 1200 40 20 PVR
-3000 1200 40 20 PVR
-2900 1250 40 20 PVR
-3100 1250 40 20 PVR
-2950 1375 40 20 PVR
-3225 1375 40 20 PVR
-1450 1375 40 20 PVR
-1550 1250 40 20 PVR
-1600 1000 40 20 PVR
-3000 1000 40 20 PVR
-1700 1425 40 20 PVR
-2800 1425 40 20 PVR
-1800 1325 40 20 PVR
-2750 1300 40 20 PVR
-1900 1050 40 20 PVR
-2700 1050 40 20 PVR
-2000 2550 40 20 PVR
-2700 2550 40 20 PVR
-3225 2450 60 35 PVR
-3500 2500 40 20 PVR
-2025 2825 40 20 PVR
-2200 2825 40 20 PVR
-2575 2500 40 20 PVR
-2100 2500 40 20 PVR
-2575 1975 40 20 PVR
-2200 2250 60 35 PVR
-2400 2250 60 35 PVR
-3000 2125 40 20 PVR
-2150 2125 40 20 PVR
-3100 2175 40 20 PVR
-2250 2175 40 20 PVR
-2250 1950 40 20 PVR
-3150 1925 40 20 PVR
-1500 1875 40 20 PVR
-3250 1875 40 20 PVR
-2350 1875 40 20 PVR
-3600 2525 40 20 PVR
-2925 2225 40 20 PVR
-1700 2175 40 20 PVR
-2100 2300 40 20 PVR
-3900 2250 40 20 PVR
-2575 2775 40 20 PVR
-3850 2775 40 20 PVR
-1550 2825 40 20 PVR
-3400 2825 40 20 PVR
-2300 1825 40 20 PVR
-2450 1825 40 20 PVR
-2275 900 40 20 PVR
-2550 900 40 20 PVR
-2500 1725 40 20 PVR
-1900 1750 40 20 PVR
-1800 1700 40 20 PVR
-4300 1975 40 20 PVR
-3325 2700 60 35 PVR
-2900 2650 40 20 PVR
-4800 2650 40 20 PVR
-4700 2900 60 35 PVR
-4625 2825 40 20 PVR
-3000 1775 40 20 PVR
-4850 1775 40 20 PVR
-3050 850 40 20 PVR
-2750 850 40 20 PVR
-3300 800 40 20 PVR
-2850 800 40 20 PVR
-3500 2200 40 20 PVR
-3650 2200 40 20 PVR
-3550 3850 40 20 PVR
-2975 3525 60 35 PVR
-3750 3600 40 20 PVR
-1075 1475 40 20 PVR
-1220 1605 40 20 PVR
-4500 1825 40 20 PVR
-2625 3525 40 20 PVR
-3275 3525 40 20 PVR
-4000 2250 40 20 PVR
-4050 2150 40 20 PVR
-4100 2050 40 20 PVR
-1050 2700 40 20 PVR
-4150 2725 40 20 PVR
-4025 2500 40 20 PVR
-2225 3100 40 20 PVR
-4025 3100 40 20 PVR
-5200 2600 40 20 PVR
-5200 3375 40 20 PVR
-2100 3225 40 20 PVR
-5700 3225 40 20 PVR
-5700 2450 40 20 PVR
-5300 3275 40 20 PVR
-2825 3300 40 20 PVR
-3275 3050 40 20 PVR
-495 3300 40 20 PVR
-1300 2550 60 35 PVR
-765 2570 40 20 PVR
-905 3055 40 20 PVR
-5925 3600 60 35 PVR
-4050 3425 60 35 PVR
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 20 10 DH
-575 3762 20 10 DH
-6625 275 20 10 DH
-6625 3762 20 10 DH
-5730 1575 20 10 DH
-3525 1575 20 10 DH
-1325 1575 20 10 DH
-625 525 20 10 DH
-625 976 20 10 DH
-745 445 20 10 DH
-745 1056 20 10 DH
-5825 2100 20 10 DH
-5925 2100 20 10 DH
-6025 2100 20 10 DH
-5825 2925 20 10 DH
-5925 2925 20 10 DH
-6025 2925 20 10 DH
-550 2695 20 10 DH
-550 2872 20 10 DH
-648 2646 20 10 DH
-648 2922 20 10 DH
-6625 3775 20 10 DH
-6625 275 20 10 DH
-5300 2925 20 10 DH
-5400 2925 20 10 DH
-5500 2925 20 10 DH
-5700 3600 20 10 DH
-5600 3600 20 10 DH
-5500 3600 20 10 DH
-4950 2775 20 10 DH
-4700 2775 20 10 DH
-1050 3300 20 10 DH
-1150 3300 20 10 DH
-5825 2450 20 10 DH
-5925 2450 20 10 DH
-6025 2450 20 10 DH
-4950 2200 20 10 DH
-4700 2200 20 10 DH
-775 1240 20 10 DH
-775 2180 20 10 DH
-825 1510 20 10 DH
-725 1560 20 10 DH
-825 1610 20 10 DH
-725 1660 20 10 DH
-825 1710 20 10 DH
-725 1760 20 10 DH
-825 1810 20 10 DH
-725 1860 20 10 DH
-825 1910 20 10 DH
-4200 2050 20 10 DH
-4300 2050 20 10 DH
-4200 2150 20 10 DH
-4300 2150 20 10 DH
-4200 2250 20 10 DH
-4300 2250 20 10 DH
-4200 2350 20 10 DH
-4300 2350 20 10 DH
-5300 2450 20 10 DH
-5400 2450 20 10 DH
-5500 2450 20 10 DH
-4150 3600 20 10 DH
-4050 3600 20 10 DH
-3950 3600 20 10 DH
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aic_group2.ps b/doc/aic_group2.ps
deleted file mode 100644 (file)
index f5c5b96..0000000
+++ /dev/null
@@ -1,1704 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), layergroup #2
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-/Color {0.556 0.127 0.127 mysetrgbcolor} def Color
-% LayerGroup: 1, Layer: "component" (#3)
-965 1710 825 1710 10 L
-1050 1625 965 1710 10 L
-700 3150 700 3850 25 L
-700 2700 725 2675 25 L
-700 2850 700 2700 25 L
-725 2875 700 2850 25 L
-725 2975 725 2875 25 L
-700 3000 725 2975 25 L
-700 3150 700 3000 25 L
-450 50 6750 50 1 L
-3850 2400 3850 2775 10 L
-3650 2675 3650 2200 10 L
-3700 2725 3650 2675 10 L
-3700 2900 3700 2725 10 L
-3600 2500 3600 2525 10 L
-3600 2350 3600 2500 10 L
-2600 1625 2575 1650 10 L
-2100 2500 2100 2650 10 L
-2575 2000 2575 2500 10 L
-2575 1650 2575 2000 10 L
-3500 2500 3500 2350 10 L
-3225 2450 3225 2600 25 L
-2650 1675 2650 1525 10 L
-2700 1725 2650 1675 10 L
-2700 1775 2700 1725 10 L
-2650 1825 2700 1775 10 L
-2650 2500 2650 1825 10 L
-2700 2550 2650 2500 10 L
-2000 2650 2000 2550 10 L
-1900 1550 1900 1050 10 L
-1925 1575 1900 1550 10 L
-1950 1600 1925 1575 10 L
-1950 2500 1950 1600 10 L
-1900 2550 1950 2500 10 L
-1900 2650 1900 2550 10 L
-1800 1550 1800 1325 10 L
-1850 1600 1800 1550 10 L
-1850 2500 1850 1600 10 L
-1800 2550 1850 2500 10 L
-1800 2650 1800 2550 10 L
-1700 1550 1700 1425 10 L
-1750 1600 1700 1550 10 L
-1750 2500 1750 1600 10 L
-1700 2550 1750 2500 10 L
-1700 2650 1700 2550 10 L
-1600 1650 1600 1000 10 L
-1625 1675 1600 1650 10 L
-1650 1700 1625 1675 10 L
-1650 2500 1650 1700 10 L
-1600 2550 1650 2500 10 L
-1600 2650 1600 2550 10 L
-1550 2500 1550 1250 10 L
-1500 2550 1550 2500 10 L
-1500 2650 1500 2550 10 L
-1400 2650 1400 2550 10 L
-815 2400 905 2490 10 L
-905 2490 905 3055 10 L
-1400 2550 1450 2500 10 L
-3225 1375 3225 350 10 L
-2950 1525 2950 1375 10 L
-3225 350 3150 275 10 L
-2900 1625 2900 1250 10 L
-3100 325 3050 275 10 L
-3100 1250 3100 325 10 L
-3000 325 2950 275 10 L
-3000 1200 3000 325 10 L
-2850 1525 2850 1200 10 L
-2800 1625 2800 950 10 L
-2900 325 2850 275 10 L
-2900 850 2900 325 10 L
-2800 950 2900 850 10 L
-2800 325 2750 275 10 L
-2800 900 2800 325 10 L
-2750 950 2800 900 10 L
-2750 1525 2750 950 10 L
-2700 1625 2700 325 10 L
-2700 325 2650 275 10 L
-2450 1050 2450 575 10 L
-2600 1625 2600 1050 10 L
-2650 1525 2650 1300 10 L
-2500 325 2550 275 10 L
-2500 350 2500 325 10 L
-2500 1300 2500 350 10 L
-2650 1200 2650 575 10 L
-2550 1525 2550 1200 10 L
-6025 2775 6125 2875 45 L
-6025 2600 6025 2775 45 L
-6025 2925 6025 3075 45 L
-5400 2600 5400 2450 45 L
-5400 2925 5400 3075 45 L
-6025 2450 6025 2600 45 L
-5500 2450 5500 2925 45 L
-5600 3600 5600 3425 45 L
-4900 3300 4900 3425 45 L
-4750 3700 4750 3425 45 L
-4050 3425 4050 3600 45 L
-5925 2450 5925 3600 45 L
-4025 725 4025 1125 25 L
-4025 1125 4075 1175 25 L
-4875 875 4875 725 25 L
-5375 825 5375 725 25 L
-5975 1175 5925 1125 25 L
-5925 1125 5925 725 25 L
-5875 1175 5825 1125 25 L
-5825 1125 5825 1025 25 L
-5825 1025 5825 925 25 L
-5825 925 5775 875 25 L
-4975 575 4975 750 25 L
-4975 950 4975 1175 25 L
-4975 1175 4975 1400 25 L
-4975 1400 5000 1425 25 L
-5000 1425 5000 1625 25 L
-4975 750 4925 800 25 L
-4925 800 4925 925 25 L
-4925 925 4975 975 25 L
-2425 275 2375 325 25 L
-2375 325 2375 950 25 L
-765 2805 760 2810 10 L
-1750 1525 1750 950 25 L
-2450 275 2425 275 25 L
-3225 3175 3225 2600 25 L
-3275 3725 3275 3925 25 L
-2200 2050 2200 2250 25 L
-5400 3275 5400 3500 45 L
-2400 2450 2400 2650 25 L
-2775 2050 2700 2125 25 L
-2700 2125 2700 2450 25 L
-2800 2050 2775 2050 25 L
-1400 2450 1400 2050 25 L
-1300 2550 1400 2450 25 L
-1100 3100 1150 3050 10 L
-1300 2750 1300 2550 25 L
-4275 875 4275 1000 25 L
-5250 1525 5250 1000 25 L
-3150 1000 3150 575 25 L
-4275 275 4325 275 25 L
-4325 275 4350 300 25 L
-4350 300 4350 800 25 L
-4350 800 4275 875 25 L
-4475 850 4475 950 25 L
-3900 350 3975 275 25 L
-3975 875 3900 800 25 L
-3900 800 3900 350 25 L
-5500 2450 5500 2250 25 L
-5500 2250 5350 2100 25 L
-3325 2600 3325 2900 25 L
-3900 2350 3900 2600 25 L
-3900 2600 3900 2900 25 L
-2025 3050 2025 3225 25 L
-1275 3925 1275 3725 25 L
-2125 3725 2125 3925 25 L
-2725 3725 2725 3925 25 L
-3600 2600 3600 2900 25 L
-3600 2900 3600 3175 25 L
-3325 2900 3375 2950 25 L
-3375 2950 3375 3650 25 L
-3375 3650 3300 3725 25 L
-3300 3725 3275 3725 25 L
-2125 3525 2125 3425 25 L
-2225 3425 2225 3725 10 L
-2725 3425 2725 3475 25 L
-5575 2225 5450 2100 10 L
-495 2750 495 3300 10 L
-450 3985 450 50 1 L
-6750 50 6750 3985 1 L
-725 2675 725 2600 25 L
-725 2600 700 2575 25 L
-700 2575 700 2525 25 L
-3550 625 3550 1300 10 L
-3350 625 3350 525 10 L
-6075 575 6150 500 10 L
-6150 500 6150 150 10 L
-5575 150 5575 225 10 L
-4675 150 4675 225 10 L
-5075 575 5075 475 10 L
-5075 475 5025 425 10 L
-5025 425 5025 150 10 L
-5375 625 5275 525 10 L
-5275 525 5275 225 10 L
-4475 625 4475 300 10 L
-5575 1225 5550 1250 10 L
-5550 1250 5550 1350 10 L
-4175 1350 4175 1175 10 L
-4175 875 4175 1075 10 L
-4475 1075 4475 1225 10 L
-5375 1225 5375 1075 10 L
-5075 1075 5075 875 10 L
-5575 925 5575 825 10 L
-4300 2050 4300 2350 10 L
-6075 1175 6100 1200 10 L
-6100 1200 6100 1425 10 L
-5475 1425 5475 1125 10 L
-5475 1125 5525 1075 10 L
-5525 1075 5525 1000 10 L
-5525 1000 5575 950 10 L
-5575 950 5575 925 10 L
-5125 900 5125 875 10 L
-5125 875 5125 800 10 L
-5075 1175 5175 1075 10 L
-5175 1075 5175 950 10 L
-5175 950 5125 900 10 L
-4925 1425 4925 1100 10 L
-4950 1525 4950 1450 10 L
-4925 1100 4900 1075 10 L
-4900 1075 4875 1075 10 L
-4725 1075 4725 950 10 L
-4725 950 4750 925 10 L
-4750 925 4750 725 10 L
-4750 725 4675 650 10 L
-4675 650 4675 625 10 L
-4950 1450 4925 1425 10 L
-4775 1350 4775 575 10 L
-4900 1625 4900 1475 10 L
-4900 1475 4775 1350 10 L
-4750 1525 4750 1425 10 L
-4750 1425 4675 1350 10 L
-4675 1350 4675 1225 10 L
-4700 1425 4575 1300 10 L
-4575 1300 4575 1225 10 L
-4575 1225 4475 1225 10 L
-4700 1625 4700 1425 10 L
-4100 2050 4100 1950 10 L
-4100 1625 4100 1800 10 L
-4100 1800 4100 1950 10 L
-4050 1525 4050 1950 10 L
-4050 1950 4050 2000 10 L
-4000 2050 4000 2250 10 L
-4000 1625 4000 2050 10 L
-4050 2150 4050 2000 10 L
-3950 1525 3950 2275 10 L
-3950 2275 4025 2350 10 L
-5575 2375 5575 2225 10 L
-2725 3475 2725 3525 25 L
-950 2525 950 2450 10 L
-1150 2450 1150 2325 10 L
-1150 3300 1225 3225 10 L
-1225 3225 1225 1725 10 L
-2025 2900 2025 2825 10 L
-2200 2825 2200 2650 10 L
-2800 2150 2900 2050 10 L
-2800 2350 2800 2150 10 L
-1100 3100 1100 3675 10 L
-700 3850 775 3925 25 L
-1050 1625 1075 1600 10 L
-1825 3725 1825 3850 10 L
-2525 3850 2525 3725 10 L
-2325 3725 2325 3525 25 L
-1925 3725 1925 3600 10 L
-2425 3600 2425 3725 10 L
-1950 1525 1950 575 10 L
-2000 1625 2000 625 10 L
-2050 1525 2050 825 10 L
-2100 1625 2100 675 10 L
-5500 3325 5600 3425 45 L
-5500 2925 5500 3325 45 L
-2625 2825 2775 2975 10 L
-2625 1725 2625 2825 10 L
-6375 1125 6375 1725 10 L
-6425 1075 6375 1125 10 L
-2825 3425 2825 3725 10 L
-950 3450 950 2525 10 L
-850 3550 950 3450 10 L
-850 3600 850 3550 10 L
-1150 2325 1150 1125 10 L
-4075 475 4075 575 25 L
-6150 725 6150 625 10 L
-6375 725 6150 725 10 L
-6375 825 6375 725 10 L
-6475 825 6375 825 10 L
-6525 875 6475 825 10 L
-6150 625 6200 525 10 L
-2950 1300 2950 575 10 L
-6150 975 6150 1300 10 L
-6325 975 6150 975 10 L
-6225 875 6325 775 10 L
-5975 650 5975 875 10 L
-6225 350 6225 475 10 L
-6225 475 6325 575 10 L
-6475 425 6525 475 10 L
-6475 200 6475 425 10 L
-5875 500 5775 400 25 L
-5875 575 5875 500 25 L
-5775 275 5775 400 25 L
-5175 275 5175 400 25 L
-4875 275 4875 475 25 L
-5375 225 5375 475 25 L
-5975 575 5975 475 25 L
-5675 1300 5675 1075 25 L
-5625 1350 5675 1300 25 L
-5625 1875 5625 1350 25 L
-6025 2100 6200 2100 40 L
-6225 2300 6225 1025 40 L
-6425 875 6425 975 25 L
-6425 675 6425 775 25 L
-6425 475 6425 575 25 L
-5925 1875 5925 2100 45 L
-5625 1875 5625 2200 45 L
-4625 3175 4625 3425 45 L
-4700 3100 4625 3175 45 L
-4700 2775 4700 3100 45 L
-4700 2200 4700 2775 45 L
-5925 2225 5925 2450 45 L
-6125 2325 6125 2675 45 L
-5925 2125 6125 2325 45 L
-5925 2100 5925 2125 45 L
-6325 2575 6225 2575 45 L
-6425 975 6525 1075 25 L
-6225 3075 6225 2300 45 L
-6225 3075 6225 3425 45 L
-6325 3075 6225 3075 45 L
-4750 3300 4750 3175 45 L
-3950 3175 3950 3600 45 L
-5400 3500 5500 3600 45 L
-2400 2450 2400 2275 25 L
-2200 2650 2200 2375 10 L
-2200 2375 2300 2275 10 L
-2300 2275 2300 2050 10 L
-2300 2650 2300 2350 10 L
-2300 2350 2325 2325 10 L
-2325 2325 2325 2225 10 L
-2325 2225 2400 2150 10 L
-2400 2150 2400 2050 10 L
-1950 2550 1950 2750 10 L
-1950 2750 2025 2825 10 L
-2000 2050 2000 2500 10 L
-3000 2350 3000 2125 10 L
-2200 1625 2200 1950 10 L
-2250 2000 2250 2175 10 L
-3100 2350 3100 2175 10 L
-2200 1950 2250 2000 10 L
-2250 1525 2250 1950 10 L
-3150 1925 3150 2300 10 L
-3150 2300 3200 2350 10 L
-1500 2050 1500 1875 10 L
-3250 1875 3250 2300 10 L
-3250 2300 3300 2350 10 L
-2350 1525 2350 1875 10 L
-2925 2125 2925 2225 10 L
-1700 2175 1700 2050 10 L
-3000 2050 2925 2125 10 L
-2000 2500 1950 2550 10 L
-3900 2250 3900 2050 10 L
-2150 2125 2150 1525 10 L
-2100 2050 2100 2300 10 L
-2500 2550 2575 2625 10 L
-2575 2625 2575 2775 10 L
-3300 1550 3300 800 10 L
-3250 1600 3300 1550 10 L
-2500 2050 2500 2550 10 L
-1600 2050 1600 2500 10 L
-1600 2500 1550 2550 10 L
-1550 2550 1550 2825 10 L
-3400 2825 3400 2350 10 L
-2400 1075 2275 950 10 L
-2275 950 2275 900 10 L
-2550 900 2550 575 10 L
-2300 2050 2300 1825 10 L
-2450 1825 2450 1600 10 L
-2450 1600 2425 1575 10 L
-2425 1575 2400 1550 10 L
-2400 1550 2400 1075 10 L
-2550 1675 2500 1725 10 L
-1900 1750 1900 2050 10 L
-2550 1525 2550 1675 10 L
-1800 1700 1800 2050 10 L
-4300 1975 4300 1650 10 L
-2900 2350 2900 2650 10 L
-4800 2650 4800 1625 10 L
-4650 2150 4650 1525 10 L
-4625 2825 4625 2175 10 L
-4625 2175 4650 2150 10 L
-4850 1775 4850 1525 10 L
-3000 1625 3000 1775 10 L
-3100 2050 3100 1750 10 L
-3100 1750 3050 1700 10 L
-3050 1700 3050 1625 10 L
-3050 1625 3050 1600 10 L
-3050 1600 3000 1550 10 L
-3000 1550 3000 1475 10 L
-3000 1475 3000 1400 10 L
-3000 1400 3050 1350 10 L
-3050 1350 3050 850 10 L
-2750 850 2750 575 10 L
-2850 800 2850 575 10 L
-3200 2050 3200 1725 10 L
-3200 1725 3250 1675 10 L
-3250 1675 3250 1600 10 L
-3800 2350 3850 2400 10 L
-3500 2200 3500 2050 10 L
-3700 2050 3550 2200 10 L
-3550 2200 3550 2225 10 L
-3550 2225 3550 3850 10 L
-2975 3525 2975 3725 25 L
-3750 2100 3800 2050 10 L
-3750 3600 3750 2100 10 L
-1225 1610 1220 1605 10 L
-2525 3425 2525 2875 10 L
-1225 1725 1225 1610 10 L
-1075 1600 1075 1475 10 L
-4500 1825 4500 1625 10 L
-2625 3425 2625 3525 10 L
-3275 3525 3275 3425 10 L
-4150 1675 4150 2725 10 L
-4200 1625 4150 1675 10 L
-1050 2700 1050 3300 10 L
-2225 3100 2225 3425 10 L
-4025 2500 4025 3100 10 L
-5200 3375 5200 2600 10 L
-1925 3425 2100 3250 10 L
-2100 3250 2100 3225 10 L
-5700 3225 5700 2450 10 L
-5300 2925 5300 3275 10 L
-2825 3300 2825 3425 10 L
-3275 3050 3275 3425 10 L
-5825 2850 5825 2925 10 L
-1300 2730 1300 2905 25 L
-1300 2905 1305 2910 25 L
-550 2695 495 2750 10 L
-6750 3985 450 3985 1 L
-575 2395 700 2520 25 L
-765 2570 765 2805 10 L
-1400 2050 1400 1650 25 L
-1400 1650 1425 1625 25 L
-1425 1625 1425 1525 25 L
-1425 1525 1400 1500 25 L
-1400 1500 1400 950 25 L
-1450 2500 1450 1675 10 L
-1450 1675 1475 1650 10 L
-1475 1650 1475 1400 10 L
-1475 1400 1450 1375 10 L
-1025 300 1025 340 8 L
-1025 300 1045 300 8 L
-1025 320 1040 320 8 L
-1063 340 1078 340 8 L
-1058 335 1063 340 8 L
-1058 325 1058 335 8 L
-1058 325 1063 320 8 L
-1063 320 1073 320 8 L
-1073 320 1078 325 8 L
-1058 330 1078 330 8 L
-1078 330 1078 325 8 L
-1096 325 1096 340 8 L
-1096 325 1101 320 8 L
-1101 320 1111 320 8 L
-1091 320 1096 325 8 L
-1129 325 1129 340 8 L
-1129 325 1134 320 8 L
-1134 320 1139 320 8 L
-1139 320 1144 325 8 L
-1144 325 1144 340 8 L
-1124 320 1129 325 8 L
-1172 320 1177 325 8 L
-1162 320 1172 320 8 L
-1157 325 1162 320 8 L
-1157 325 1157 335 8 L
-1157 335 1162 340 8 L
-1177 320 1177 335 8 L
-1177 335 1182 340 8 L
-1162 340 1172 340 8 L
-1172 340 1177 335 8 L
-1200 325 1200 340 8 L
-1200 325 1205 320 8 L
-1205 320 1210 320 8 L
-1210 320 1215 325 8 L
-1215 325 1215 340 8 L
-1195 320 1200 325 8 L
-1248 300 1248 340 8 L
-1243 340 1248 335 8 L
-1233 340 1243 340 8 L
-1228 335 1233 340 8 L
-1228 325 1228 335 8 L
-1228 325 1233 320 8 L
-1233 320 1243 320 8 L
-1243 320 1248 325 8 L
-1261 325 1261 335 8 L
-1261 325 1266 320 8 L
-1266 320 1276 320 8 L
-1276 320 1281 325 8 L
-1281 325 1281 335 8 L
-1276 340 1281 335 8 L
-1266 340 1276 340 8 L
-1261 335 1266 340 8 L
-1317 300 1317 340 8 L
-1312 300 1332 300 8 L
-1332 300 1337 305 8 L
-1337 305 1337 315 8 L
-1332 320 1337 315 8 L
-1317 320 1332 320 8 L
-1355 340 1370 340 8 L
-1350 335 1355 340 8 L
-1350 325 1350 335 8 L
-1350 325 1355 320 8 L
-1355 320 1365 320 8 L
-1365 320 1370 325 8 L
-1350 330 1370 330 8 L
-1370 330 1370 325 8 L
-1388 340 1403 340 8 L
-1403 340 1408 335 8 L
-1403 330 1408 335 8 L
-1388 330 1403 330 8 L
-1383 325 1388 330 8 L
-1383 325 1388 320 8 L
-1388 320 1403 320 8 L
-1403 320 1408 325 8 L
-1383 335 1388 340 8 L
-1426 340 1441 340 8 L
-1441 340 1446 335 8 L
-1441 330 1446 335 8 L
-1426 330 1441 330 8 L
-1421 325 1426 330 8 L
-1421 325 1426 320 8 L
-1426 320 1441 320 8 L
-1441 320 1446 325 8 L
-1421 335 1426 340 8 L
-1459 320 1459 335 8 L
-1459 335 1464 340 8 L
-1464 340 1474 340 8 L
-1474 340 1479 335 8 L
-1479 320 1479 335 8 L
-1497 300 1497 335 8 L
-1497 335 1502 340 8 L
-1492 315 1502 315 8 L
-1518 300 1518 335 8 L
-1518 335 1523 340 8 L
-1513 315 1523 315 8 L
-1534 325 1534 335 8 L
-1534 325 1539 320 8 L
-1539 320 1549 320 8 L
-1549 320 1554 325 8 L
-1554 325 1554 335 8 L
-1549 340 1554 335 8 L
-1539 340 1549 340 8 L
-1534 335 1539 340 8 L
-775 260 780 265 8 L
-775 230 780 225 8 L
-775 230 775 260 8 L
-798 245 813 245 8 L
-793 250 798 245 8 L
-793 250 793 260 8 L
-793 260 798 265 8 L
-798 265 813 265 8 L
-826 225 831 230 8 L
-831 230 831 260 8 L
-826 265 831 260 8 L
-862 230 867 225 8 L
-867 225 882 225 8 L
-882 225 887 230 8 L
-887 230 887 240 8 L
-862 265 887 240 8 L
-862 265 887 265 8 L
-900 260 905 265 8 L
-900 230 900 260 8 L
-900 230 905 225 8 L
-905 225 915 225 8 L
-915 225 920 230 8 L
-920 230 920 260 8 L
-915 265 920 260 8 L
-905 265 915 265 8 L
-900 255 920 235 8 L
-933 260 938 265 8 L
-933 230 933 260 8 L
-933 230 938 225 8 L
-938 225 948 225 8 L
-948 225 953 230 8 L
-953 230 953 260 8 L
-948 265 953 260 8 L
-938 265 948 265 8 L
-933 255 953 235 8 L
-966 230 971 225 8 L
-971 225 981 225 8 L
-981 225 986 230 8 L
-986 230 986 260 8 L
-981 265 986 260 8 L
-971 265 981 265 8 L
-966 260 971 265 8 L
-971 245 986 245 8 L
-1017 225 1017 265 8 L
-1017 265 1032 250 8 L
-1032 250 1047 265 8 L
-1047 225 1047 265 8 L
-1075 245 1080 250 8 L
-1065 245 1075 245 8 L
-1060 250 1065 245 8 L
-1060 250 1060 260 8 L
-1060 260 1065 265 8 L
-1080 245 1080 260 8 L
-1080 260 1085 265 8 L
-1065 265 1075 265 8 L
-1075 265 1080 260 8 L
-1098 225 1098 260 8 L
-1098 260 1103 265 8 L
-1119 225 1119 260 8 L
-1119 260 1124 265 8 L
-1114 240 1124 240 8 L
-1140 265 1155 265 8 L
-1135 260 1140 265 8 L
-1135 250 1135 260 8 L
-1135 250 1140 245 8 L
-1140 245 1150 245 8 L
-1150 245 1155 250 8 L
-1135 255 1155 255 8 L
-1155 255 1155 250 8 L
-1173 250 1173 265 8 L
-1173 250 1178 245 8 L
-1178 245 1188 245 8 L
-1168 245 1173 250 8 L
-1219 225 1219 265 8 L
-1219 225 1239 225 8 L
-1219 245 1234 245 8 L
-1257 265 1272 265 8 L
-1252 260 1257 265 8 L
-1252 250 1252 260 8 L
-1252 250 1257 245 8 L
-1257 245 1267 245 8 L
-1267 245 1272 250 8 L
-1252 255 1272 255 8 L
-1272 255 1272 250 8 L
-1290 225 1290 260 8 L
-1290 260 1295 265 8 L
-1285 240 1295 240 8 L
-1311 225 1311 260 8 L
-1311 260 1316 265 8 L
-1306 240 1316 240 8 L
-1332 265 1347 265 8 L
-1327 260 1332 265 8 L
-1327 250 1327 260 8 L
-1327 250 1332 245 8 L
-1332 245 1342 245 8 L
-1342 245 1347 250 8 L
-1327 255 1347 255 8 L
-1347 255 1347 250 8 L
-1365 250 1365 265 8 L
-1365 250 1370 245 8 L
-1370 245 1380 245 8 L
-1360 245 1365 250 8 L
-1411 225 1411 265 8 L
-1411 265 1431 265 8 L
-1459 245 1464 250 8 L
-1449 245 1459 245 8 L
-1444 250 1449 245 8 L
-1444 250 1444 260 8 L
-1444 260 1449 265 8 L
-1464 245 1464 260 8 L
-1464 260 1469 265 8 L
-1449 265 1459 265 8 L
-1459 265 1464 260 8 L
-1497 245 1502 250 8 L
-1487 245 1497 245 8 L
-1482 250 1487 245 8 L
-1482 250 1482 260 8 L
-1482 260 1487 265 8 L
-1487 265 1497 265 8 L
-1497 265 1502 260 8 L
-1482 275 1487 280 8 L
-1487 280 1497 280 8 L
-1497 280 1502 275 8 L
-1502 245 1502 275 8 L
-1520 265 1535 265 8 L
-1515 260 1520 265 8 L
-1515 250 1515 260 8 L
-1515 250 1520 245 8 L
-1520 245 1530 245 8 L
-1530 245 1535 250 8 L
-1515 255 1535 255 8 L
-1535 255 1535 250 8 L
-1553 265 1568 265 8 L
-1568 265 1573 260 8 L
-1568 255 1573 260 8 L
-1553 255 1568 255 8 L
-1548 250 1553 255 8 L
-1548 250 1553 245 8 L
-1553 245 1568 245 8 L
-1568 245 1573 250 8 L
-1548 260 1553 265 8 L
-775 155 775 190 8 L
-775 155 780 150 8 L
-780 150 795 150 8 L
-795 150 800 155 8 L
-800 155 800 190 8 L
-775 170 800 170 8 L
-813 150 823 150 8 L
-818 150 818 190 8 L
-813 190 823 190 8 L
-841 190 856 190 8 L
-836 185 841 190 8 L
-836 155 836 185 8 L
-836 155 841 150 8 L
-841 150 856 150 8 L
-869 170 889 170 8 L
-907 190 917 190 8 L
-912 150 912 190 8 L
-902 160 912 150 8 L
-930 190 935 190 8 L
-953 190 963 190 8 L
-958 150 958 190 8 L
-948 160 958 150 8 L
-976 190 981 190 8 L
-994 185 999 190 8 L
-994 155 994 185 8 L
-994 155 999 150 8 L
-999 150 1009 150 8 L
-1009 150 1014 155 8 L
-1014 155 1014 185 8 L
-1009 190 1014 185 8 L
-999 190 1009 190 8 L
-994 180 1014 160 8 L
-780 115 795 115 8 L
-775 110 780 115 8 L
-775 80 775 110 8 L
-775 80 780 75 8 L
-780 75 795 75 8 L
-808 80 808 110 8 L
-808 80 813 75 8 L
-813 75 823 75 8 L
-823 75 828 80 8 L
-828 80 828 110 8 L
-823 115 828 110 8 L
-813 115 823 115 8 L
-808 110 813 115 8 L
-841 75 841 115 8 L
-841 75 856 90 8 L
-856 90 871 75 8 L
-871 75 871 115 8 L
-889 75 889 115 8 L
-884 75 904 75 8 L
-904 75 909 80 8 L
-909 80 909 90 8 L
-904 95 909 90 8 L
-889 95 904 95 8 L
-922 80 922 110 8 L
-922 80 927 75 8 L
-927 75 937 75 8 L
-937 75 942 80 8 L
-942 80 942 110 8 L
-937 115 942 110 8 L
-927 115 937 115 8 L
-922 110 927 115 8 L
-955 75 955 115 8 L
-955 75 955 80 8 L
-955 80 980 105 8 L
-980 75 980 115 8 L
-993 95 1008 95 8 L
-993 115 1013 115 8 L
-993 75 993 115 8 L
-993 75 1013 75 8 L
-1026 75 1026 115 8 L
-1026 75 1026 80 8 L
-1026 80 1051 105 8 L
-1051 75 1051 115 8 L
-1064 75 1084 75 8 L
-1074 75 1074 115 8 L
-/Color {0.317 0.540 0.317 mysetrgbcolor} def Color
-% LayerGroup: 1, Layer: "GND-comp" (#4)
-/Color {0.810 0.206 0.000 mysetrgbcolor} def Color
-% LayerGroup: 1, Layer: "Vcc-comp" (#5)
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 120 80 PVR
-575 3762 120 80 PVR
-6625 275 120 80 PVR
-6625 3762 120 80 PVR
-1155 3055 60 35 PVSQ
-755 3055 60 35 PVR
-1725 3725 60 35 PVSQ
-1825 3725 60 35 PVR
-1925 3725 60 35 PVR
-2025 3725 60 35 PVR
-2125 3725 60 35 PVR
-2225 3725 60 35 PVR
-2325 3725 60 35 PVR
-2425 3725 60 35 PVR
-2525 3725 60 35 PVR
-2625 3725 60 35 PVR
-2725 3725 60 35 PVR
-2825 3725 60 35 PVR
-2825 3425 60 35 PVR
-2725 3425 60 35 PVR
-2625 3425 60 35 PVR
-2525 3425 60 35 PVR
-2425 3425 60 35 PVR
-2325 3425 60 35 PVR
-2225 3425 60 35 PVR
-2125 3425 60 35 PVR
-2025 3425 60 35 PVR
-1925 3425 60 35 PVR
-1825 3425 60 35 PVR
-1725 3425 60 35 PVR
-1375 3725 60 35 PVSQ
-1275 3725 60 35 PVR
-5400 1625 60 35 PVSQ
-5350 1525 60 35 PVR
-5300 1625 60 35 PVR
-5250 1525 60 35 PVR
-5200 1625 60 35 PVR
-5150 1525 60 35 PVR
-5100 1625 60 35 PVR
-5050 1525 60 35 PVR
-5000 1625 60 35 PVR
-4950 1525 60 35 PVR
-4900 1625 60 35 PVR
-4850 1525 60 35 PVR
-4800 1625 60 35 PVR
-4750 1525 60 35 PVR
-4700 1625 60 35 PVR
-4650 1525 60 35 PVR
-4600 1625 60 35 PVR
-4550 1525 60 35 PVR
-4500 1625 60 35 PVR
-4450 1525 60 35 PVR
-4400 1625 60 35 PVR
-4350 1525 60 35 PVR
-4300 1625 60 35 PVR
-4250 1525 60 35 PVR
-4200 1625 60 35 PVR
-4150 1525 60 35 PVR
-4100 1625 60 35 PVR
-4050 1525 60 35 PVR
-4000 1625 60 35 PVR
-3950 1525 60 35 PVR
-3900 1625 60 35 PVR
-3850 1525 60 35 PVR
-3800 1625 60 35 PVR
-3750 1525 60 35 PVR
-3700 1625 60 35 PVR
-3650 1525 60 35 PVR
-3400 1625 60 35 PVR
-3350 1525 60 35 PVR
-3300 1625 60 35 PVR
-3250 1525 60 35 PVR
-3200 1625 60 35 PVR
-3150 1525 60 35 PVR
-3100 1625 60 35 PVR
-3050 1525 60 35 PVR
-3000 1625 60 35 PVR
-2950 1525 60 35 PVR
-2900 1625 60 35 PVR
-2850 1525 60 35 PVR
-2800 1625 60 35 PVR
-2750 1525 60 35 PVR
-2700 1625 60 35 PVR
-2650 1525 60 35 PVR
-2600 1625 60 35 PVR
-2550 1525 60 35 PVR
-2500 1625 60 35 PVR
-2450 1525 60 35 PVR
-2400 1625 60 35 PVR
-2350 1525 60 35 PVR
-2300 1625 60 35 PVR
-2250 1525 60 35 PVR
-2200 1625 60 35 PVR
-2150 1525 60 35 PVR
-2100 1625 60 35 PVR
-2050 1525 60 35 PVR
-2000 1625 60 35 PVR
-1950 1525 60 35 PVR
-1900 1625 60 35 PVR
-1850 1525 60 35 PVR
-1800 1625 60 35 PVR
-1750 1525 60 35 PVR
-1700 1625 60 35 PVR
-1650 1525 60 35 PVR
-5730 1575 80 60 PVR
-3525 1575 120 100 PVR
-1325 1575 120 100 PVR
-1375 3425 60 35 PVSQ
-1275 3425 60 35 PVR
-3175 3425 60 35 PVSQ
-3275 3425 60 35 PVR
-3600 2900 60 35 PVSQ
-3700 2900 60 35 PVR
-3800 2900 60 35 PVR
-3900 2900 60 35 PVR
-3900 2600 60 35 PVR
-3800 2600 60 35 PVR
-3700 2600 60 35 PVR
-3600 2600 60 35 PVR
-875 575 60 35 PVSQ
-975 625 60 35 PVR
-875 675 60 35 PVR
-975 725 60 35 PVR
-875 775 60 35 PVR
-975 825 60 35 PVR
-875 875 60 35 PVR
-975 925 60 35 PVR
-625 525 148 128 PVR
-625 976 148 128 PVR
-745 445 80 60 PVR
-745 1056 80 60 PVR
-3225 2900 60 35 PVSQ
-3325 2900 60 35 PVR
-5775 575 60 35 PVSQ
-5875 575 60 35 PVR
-5975 575 60 35 PVR
-6075 575 60 35 PVR
-6075 275 60 35 PVR
-5975 275 60 35 PVR
-5875 275 60 35 PVR
-5775 275 60 35 PVR
-5825 2100 80 42 PVSQ
-5925 2100 80 42 PVR
-6025 2100 80 42 PVR
-5775 1175 60 35 PVSQ
-5875 1175 60 35 PVR
-5975 1175 60 35 PVR
-6075 1175 60 35 PVR
-6075 875 60 35 PVR
-5975 875 60 35 PVR
-5875 875 60 35 PVR
-5775 875 60 35 PVR
-5625 1875 60 35 PVSQ
-5925 1875 60 35 PVR
-5825 2925 80 42 PVSQ
-5925 2925 80 42 PVR
-6025 2925 80 42 PVR
-550 2695 70 42 PVSQ
-550 2872 70 42 PVR
-648 2646 70 52 PVR
-648 2922 70 52 PVR
-4750 3300 60 35 PVSQ
-4900 3300 60 35 PVR
-3000 2975 60 35 PVSQ
-3000 2575 60 35 PVR
-4475 625 60 35 PVSQ
-4475 225 60 35 PVR
-3325 2600 60 35 PVSQ
-3225 2600 60 35 PVR
-6525 475 60 35 PVSQ
-6525 575 60 35 PVR
-6525 675 60 35 PVR
-6525 775 60 35 PVR
-6525 875 60 35 PVR
-6525 975 60 35 PVR
-6525 1075 60 35 PVR
-6525 1175 60 35 PVR
-6525 1275 60 35 PVR
-6525 1375 60 35 PVR
-6525 1475 60 35 PVR
-6525 1575 60 35 PVR
-6525 1675 60 35 PVR
-6525 1775 60 35 PVR
-6525 1875 60 35 PVR
-6525 1975 60 35 PVR
-6525 2075 60 35 PVR
-6525 2175 60 35 PVR
-6525 2275 60 35 PVR
-6525 2375 60 35 PVR
-6525 2475 60 35 PVR
-6525 2575 60 35 PVR
-6525 2675 60 35 PVR
-6525 2775 60 35 PVR
-6525 2875 60 35 PVR
-6525 2975 60 35 PVR
-6525 3075 60 35 PVR
-6525 3175 60 35 PVR
-6525 3275 60 35 PVR
-6525 3375 60 35 PVR
-6525 3475 60 35 PVR
-6525 3575 60 35 PVR
-6425 475 60 35 PVR
-6425 575 60 35 PVR
-6425 675 60 35 PVR
-6425 775 60 35 PVR
-6425 875 60 35 PVR
-6425 975 60 35 PVR
-6425 1075 60 35 PVR
-6425 1175 60 35 PVR
-6425 1275 60 35 PVR
-6425 1375 60 35 PVR
-6425 1475 60 35 PVR
-6425 1575 60 35 PVR
-6425 1675 60 35 PVR
-6425 1775 60 35 PVR
-6425 1875 60 35 PVR
-6425 1975 60 35 PVR
-6425 2075 60 35 PVR
-6425 2175 60 35 PVR
-6425 2275 60 35 PVR
-6425 2375 60 35 PVR
-6425 2475 60 35 PVR
-6425 2575 60 35 PVR
-6425 2675 60 35 PVR
-6425 2775 60 35 PVR
-6425 2875 60 35 PVR
-6425 2975 60 35 PVR
-6425 3075 60 35 PVR
-6425 3175 60 35 PVR
-6425 3275 60 35 PVR
-6425 3375 60 35 PVR
-6425 3475 60 35 PVR
-6425 3575 60 35 PVR
-6325 475 60 35 PVR
-6325 575 60 35 PVR
-6325 675 60 35 PVR
-6325 775 60 35 PVR
-6325 875 60 35 PVR
-6325 975 60 35 PVR
-6325 1075 60 35 PVR
-6325 1175 60 35 PVR
-6325 1275 60 35 PVR
-6325 1375 60 35 PVR
-6325 1475 60 35 PVR
-6325 1575 60 35 PVR
-6325 1675 60 35 PVR
-6325 1775 60 35 PVR
-6325 1875 60 35 PVR
-6325 1975 60 35 PVR
-6325 2075 60 35 PVR
-6325 2175 60 35 PVR
-6325 2275 60 35 PVR
-6325 2375 60 35 PVR
-6325 2475 60 35 PVR
-6325 2575 60 35 PVR
-6325 2675 60 35 PVR
-6325 2775 60 35 PVR
-6325 2875 60 35 PVR
-6325 2975 60 35 PVR
-6325 3075 60 35 PVR
-6325 3175 60 35 PVR
-6325 3275 60 35 PVR
-6325 3375 60 35 PVR
-6325 3475 60 35 PVR
-6325 3575 60 35 PVR
-6625 3775 120 80 PVR
-6625 275 120 80 PVR
-5300 2925 80 42 PVSQ
-5400 2925 80 42 PVR
-5500 2925 80 42 PVR
-4900 3700 60 35 PVSQ
-4750 3700 60 35 PVR
-1160 2800 60 35 PVSQ
-760 2800 60 35 PVR
-2800 2575 60 35 PVSQ
-2800 2975 60 35 PVR
-5700 3600 80 42 PVSQ
-5600 3600 80 42 PVR
-5500 3600 80 42 PVR
-4950 2775 70 42 PVSQ
-4700 2775 70 42 PVR
-1725 3200 60 35 PVSQ
-1825 3200 60 35 PVR
-1925 3200 60 35 PVR
-2025 3200 60 35 PVR
-2025 2900 60 35 PVR
-1925 2900 60 35 PVR
-1825 2900 60 35 PVR
-1725 2900 60 35 PVR
-1050 3300 70 42 PVSQ
-1150 3300 70 42 PVR
-3550 625 60 35 PVSQ
-3550 225 60 35 PVR
-5350 2100 60 35 PVSQ
-5450 2100 60 35 PVR
-5825 2450 80 42 PVSQ
-5925 2450 80 42 PVR
-6025 2450 80 42 PVR
-850 3300 60 35 PVSQ
-850 3600 60 35 PVR
-4950 2200 70 42 PVSQ
-4700 2200 70 42 PVR
-815 2395 60 35 PVSQ
-815 2495 60 35 PVR
-775 1240 120 100 PVR
-775 2180 120 100 PVR
-825 1510 70 42 PVR
-725 1560 70 42 PVR
-825 1610 70 42 PVR
-725 1660 70 42 PVR
-825 1710 70 42 PVR
-725 1760 70 42 PVR
-825 1810 70 42 PVR
-725 1860 70 42 PVR
-825 1910 70 42 PVSQ
-2800 2350 60 35 PVSQ
-2900 2350 60 35 PVR
-3000 2350 60 35 PVR
-3100 2350 60 35 PVR
-3200 2350 60 35 PVR
-3300 2350 60 35 PVR
-3400 2350 60 35 PVR
-3500 2350 60 35 PVR
-3600 2350 60 35 PVR
-3700 2350 60 35 PVR
-3800 2350 60 35 PVR
-3900 2350 60 35 PVR
-3900 2050 60 35 PVR
-3800 2050 60 35 PVR
-3700 2050 60 35 PVR
-3600 2050 60 35 PVR
-3500 2050 60 35 PVR
-3400 2050 60 35 PVR
-3300 2050 60 35 PVR
-3200 2050 60 35 PVR
-3100 2050 60 35 PVR
-3000 2050 60 35 PVR
-2900 2050 60 35 PVR
-2800 2050 60 35 PVR
-1400 2650 60 35 PVSQ
-1500 2650 60 35 PVR
-1600 2650 60 35 PVR
-1700 2650 60 35 PVR
-1800 2650 60 35 PVR
-1900 2650 60 35 PVR
-2000 2650 60 35 PVR
-2100 2650 60 35 PVR
-2200 2650 60 35 PVR
-2300 2650 60 35 PVR
-2400 2650 60 35 PVR
-2500 2650 60 35 PVR
-2500 2050 60 35 PVR
-2400 2050 60 35 PVR
-2300 2050 60 35 PVR
-2200 2050 60 35 PVR
-2100 2050 60 35 PVR
-2000 2050 60 35 PVR
-1900 2050 60 35 PVR
-1800 2050 60 35 PVR
-1700 2050 60 35 PVR
-1600 2050 60 35 PVR
-1500 2050 60 35 PVR
-1400 2050 60 35 PVR
-4200 2050 70 42 PVSQ
-4300 2050 70 42 PVR
-4200 2150 70 42 PVR
-4300 2150 70 42 PVR
-4200 2250 70 42 PVR
-4300 2250 70 42 PVR
-4200 2350 70 42 PVR
-4300 2350 70 42 PVR
-3175 3725 60 35 PVSQ
-3275 3725 60 35 PVR
-2450 575 60 35 PVSQ
-2550 575 60 35 PVR
-2650 575 60 35 PVR
-2750 575 60 35 PVR
-2850 575 60 35 PVR
-2950 575 60 35 PVR
-3050 575 60 35 PVR
-3150 575 60 35 PVR
-3150 275 60 35 PVR
-3050 275 60 35 PVR
-2950 275 60 35 PVR
-2850 275 60 35 PVR
-2750 275 60 35 PVR
-2650 275 60 35 PVR
-2550 275 60 35 PVR
-2450 275 60 35 PVR
-5300 2450 80 42 PVSQ
-5400 2450 80 42 PVR
-5500 2450 80 42 PVR
-575 2395 60 35 PVSQ
-575 2495 60 35 PVR
-1575 3425 60 35 PVSQ
-1575 3725 60 35 PVR
-5575 625 60 35 PVSQ
-5575 225 60 35 PVR
-3975 575 60 35 PVSQ
-4075 575 60 35 PVR
-4175 575 60 35 PVR
-4275 575 60 35 PVR
-4275 275 60 35 PVR
-4175 275 60 35 PVR
-4075 275 60 35 PVR
-3975 275 60 35 PVR
-4875 1175 60 35 PVSQ
-4975 1175 60 35 PVR
-5075 1175 60 35 PVR
-5175 1175 60 35 PVR
-5175 875 60 35 PVR
-5075 875 60 35 PVR
-4975 875 60 35 PVR
-4875 875 60 35 PVR
-5375 1225 60 35 PVSQ
-5375 825 60 35 PVR
-4675 1225 60 35 PVSQ
-4675 825 60 35 PVR
-4675 625 60 35 PVSQ
-4675 225 60 35 PVR
-4875 575 60 35 PVSQ
-4975 575 60 35 PVR
-5075 575 60 35 PVR
-5175 575 60 35 PVR
-5175 275 60 35 PVR
-5075 275 60 35 PVR
-4975 275 60 35 PVR
-4875 275 60 35 PVR
-5375 625 60 35 PVSQ
-5375 225 60 35 PVR
-5575 1225 60 35 PVSQ
-5575 825 60 35 PVR
-3975 1175 60 35 PVSQ
-4075 1175 60 35 PVR
-4175 1175 60 35 PVR
-4275 1175 60 35 PVR
-4275 875 60 35 PVR
-4175 875 60 35 PVR
-4075 875 60 35 PVR
-3975 875 60 35 PVR
-4475 1225 60 35 PVSQ
-4475 825 60 35 PVR
-4150 3600 80 42 PVSQ
-4050 3600 80 42 PVR
-3950 3600 80 42 PVR
-2975 3425 60 35 PVSQ
-2975 3725 60 35 PVR
-3350 625 60 35 PVSQ
-3350 225 60 35 PVR
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-4750 3425 60 35 PVR
-4900 3425 60 35 PVR
-5600 3425 60 35 PVR
-6025 2600 60 35 PVR
-5400 2600 60 35 PVR
-5400 3075 60 35 PVR
-6025 3075 60 35 PVR
-5925 2775 60 35 PVR
-6125 2875 60 35 PVR
-5400 3275 60 35 PVR
-3950 3175 60 35 PVR
-4750 3175 60 35 PVR
-6225 3425 60 35 PVR
-6125 2675 60 35 PVR
-5925 2225 60 35 PVR
-4625 3425 60 35 PVR
-5625 2200 60 35 PVR
-6225 1025 60 35 PVR
-6475 1025 60 35 PVR
-5675 1075 60 35 PVR
-5975 475 60 35 PVR
-5375 475 60 35 PVR
-4875 475 60 35 PVR
-5175 400 60 35 PVR
-5775 400 60 35 PVR
-4025 725 60 35 PVR
-4875 725 60 35 PVR
-5375 725 60 35 PVR
-5925 725 60 35 PVR
-4975 950 60 35 PVR
-1400 950 60 35 PVR
-1750 950 60 35 PVR
-2375 950 60 35 PVR
-3225 3175 60 35 PVR
-3275 3925 60 35 PVR
-2400 2450 60 35 PVR
-2700 2450 60 35 PVR
-1400 2450 60 35 PVR
-1300 2800 60 35 PVR
-1300 2900 60 35 PVR
-2525 2875 40 20 PVR
-4275 1000 60 35 PVR
-5250 1000 60 35 PVR
-3150 1000 60 35 PVR
-4475 950 60 35 PVR
-2025 3050 60 35 PVR
-1275 3925 60 35 PVR
-2125 3925 60 35 PVR
-2725 3925 60 35 PVR
-3600 3175 60 35 PVR
-775 3925 60 35 PVR
-4875 1075 40 20 PVR
-6200 525 40 20 PVR
-6225 875 40 20 PVR
-5375 1075 40 20 PVR
-6375 1725 40 20 PVR
-2625 1725 40 20 PVR
-5975 650 40 20 PVR
-4075 475 60 35 PVR
-2050 825 40 20 PVR
-4025 2350 40 20 PVR
-2950 1300 40 20 PVR
-3350 525 40 20 PVR
-5275 225 40 20 PVR
-6150 150 40 20 PVR
-4775 575 40 20 PVR
-6225 350 40 20 PVR
-6475 200 40 20 PVR
-5575 150 40 20 PVR
-5025 150 40 20 PVR
-5475 1425 40 20 PVR
-6100 1425 40 20 PVR
-6150 1300 40 20 PVR
-5550 1350 40 20 PVR
-1950 575 40 20 PVR
-2425 3600 40 20 PVR
-2100 675 40 20 PVR
-1150 1125 40 20 PVR
-5075 1075 40 20 PVR
-4175 1350 40 20 PVR
-2000 625 40 20 PVR
-5125 800 40 20 PVR
-5575 2375 40 20 PVR
-4475 300 40 20 PVR
-3550 1300 40 20 PVR
-2725 3525 60 35 PVR
-950 2450 40 20 PVR
-1150 2450 40 20 PVR
-5825 2850 40 20 PVR
-1100 3675 40 20 PVR
-1825 3850 40 20 PVR
-2525 3850 40 20 PVR
-2125 3525 60 35 PVR
-2325 3525 60 35 PVR
-1925 3600 40 20 PVR
-4175 1075 40 20 PVR
-4475 1075 40 20 PVR
-4725 1075 40 20 PVR
-4675 150 40 20 PVR
-2550 1200 40 20 PVR
-2650 1200 40 20 PVR
-2650 1300 40 20 PVR
-2500 1300 40 20 PVR
-2600 1050 40 20 PVR
-2450 1050 40 20 PVR
-2850 1200 40 20 PVR
-3000 1200 40 20 PVR
-2900 1250 40 20 PVR
-3100 1250 40 20 PVR
-2950 1375 40 20 PVR
-3225 1375 40 20 PVR
-1450 1375 40 20 PVR
-1550 1250 40 20 PVR
-1600 1000 40 20 PVR
-3000 1000 40 20 PVR
-1700 1425 40 20 PVR
-2800 1425 40 20 PVR
-1800 1325 40 20 PVR
-2750 1300 40 20 PVR
-1900 1050 40 20 PVR
-2700 1050 40 20 PVR
-2000 2550 40 20 PVR
-2700 2550 40 20 PVR
-3225 2450 60 35 PVR
-3500 2500 40 20 PVR
-2025 2825 40 20 PVR
-2200 2825 40 20 PVR
-2575 2500 40 20 PVR
-2100 2500 40 20 PVR
-2575 1975 40 20 PVR
-2200 2250 60 35 PVR
-2400 2250 60 35 PVR
-3000 2125 40 20 PVR
-2150 2125 40 20 PVR
-3100 2175 40 20 PVR
-2250 2175 40 20 PVR
-2250 1950 40 20 PVR
-3150 1925 40 20 PVR
-1500 1875 40 20 PVR
-3250 1875 40 20 PVR
-2350 1875 40 20 PVR
-3600 2525 40 20 PVR
-2925 2225 40 20 PVR
-1700 2175 40 20 PVR
-2100 2300 40 20 PVR
-3900 2250 40 20 PVR
-2575 2775 40 20 PVR
-3850 2775 40 20 PVR
-1550 2825 40 20 PVR
-3400 2825 40 20 PVR
-2300 1825 40 20 PVR
-2450 1825 40 20 PVR
-2275 900 40 20 PVR
-2550 900 40 20 PVR
-2500 1725 40 20 PVR
-1900 1750 40 20 PVR
-1800 1700 40 20 PVR
-4300 1975 40 20 PVR
-3325 2700 60 35 PVR
-2900 2650 40 20 PVR
-4800 2650 40 20 PVR
-4700 2900 60 35 PVR
-4625 2825 40 20 PVR
-3000 1775 40 20 PVR
-4850 1775 40 20 PVR
-3050 850 40 20 PVR
-2750 850 40 20 PVR
-3300 800 40 20 PVR
-2850 800 40 20 PVR
-3500 2200 40 20 PVR
-3650 2200 40 20 PVR
-3550 3850 40 20 PVR
-2975 3525 60 35 PVR
-3750 3600 40 20 PVR
-1075 1475 40 20 PVR
-1220 1605 40 20 PVR
-4500 1825 40 20 PVR
-2625 3525 40 20 PVR
-3275 3525 40 20 PVR
-4000 2250 40 20 PVR
-4050 2150 40 20 PVR
-4100 2050 40 20 PVR
-1050 2700 40 20 PVR
-4150 2725 40 20 PVR
-4025 2500 40 20 PVR
-2225 3100 40 20 PVR
-4025 3100 40 20 PVR
-5200 2600 40 20 PVR
-5200 3375 40 20 PVR
-2100 3225 40 20 PVR
-5700 3225 40 20 PVR
-5700 2450 40 20 PVR
-5300 3275 40 20 PVR
-2825 3300 40 20 PVR
-3275 3050 40 20 PVR
-495 3300 40 20 PVR
-1300 2550 60 35 PVR
-765 2570 40 20 PVR
-905 3055 40 20 PVR
-5925 3600 60 35 PVR
-4050 3425 60 35 PVR
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 20 10 DH
-575 3762 20 10 DH
-6625 275 20 10 DH
-6625 3762 20 10 DH
-5730 1575 20 10 DH
-3525 1575 20 10 DH
-1325 1575 20 10 DH
-625 525 20 10 DH
-625 976 20 10 DH
-745 445 20 10 DH
-745 1056 20 10 DH
-5825 2100 20 10 DH
-5925 2100 20 10 DH
-6025 2100 20 10 DH
-5825 2925 20 10 DH
-5925 2925 20 10 DH
-6025 2925 20 10 DH
-550 2695 20 10 DH
-550 2872 20 10 DH
-648 2646 20 10 DH
-648 2922 20 10 DH
-6625 3775 20 10 DH
-6625 275 20 10 DH
-5300 2925 20 10 DH
-5400 2925 20 10 DH
-5500 2925 20 10 DH
-5700 3600 20 10 DH
-5600 3600 20 10 DH
-5500 3600 20 10 DH
-4950 2775 20 10 DH
-4700 2775 20 10 DH
-1050 3300 20 10 DH
-1150 3300 20 10 DH
-5825 2450 20 10 DH
-5925 2450 20 10 DH
-6025 2450 20 10 DH
-4950 2200 20 10 DH
-4700 2200 20 10 DH
-775 1240 20 10 DH
-775 2180 20 10 DH
-825 1510 20 10 DH
-725 1560 20 10 DH
-825 1610 20 10 DH
-725 1660 20 10 DH
-825 1710 20 10 DH
-725 1760 20 10 DH
-825 1810 20 10 DH
-725 1860 20 10 DH
-825 1910 20 10 DH
-4200 2050 20 10 DH
-4300 2050 20 10 DH
-4200 2150 20 10 DH
-4300 2150 20 10 DH
-4200 2250 20 10 DH
-4300 2250 20 10 DH
-4200 2350 20 10 DH
-4300 2350 20 10 DH
-5300 2450 20 10 DH
-5400 2450 20 10 DH
-5500 2450 20 10 DH
-4150 3600 20 10 DH
-4050 3600 20 10 DH
-3950 3600 20 10 DH
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aic_group3.ps b/doc/aic_group3.ps
deleted file mode 100644 (file)
index 4aec124..0000000
+++ /dev/null
@@ -1,948 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), layergroup #3
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-/Color {0.000 0.524 0.556 mysetrgbcolor} def Color
-% LayerGroup: 2, Layer: "unused" (#6)
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 120 80 PVR
-575 3762 120 80 PVR
-6625 275 120 80 PVR
-6625 3762 120 80 PVR
-1155 3055 60 35 PVSQ
-755 3055 60 35 PVR
-1725 3725 60 35 PVSQ
-1825 3725 60 35 PVR
-1925 3725 60 35 PVR
-2025 3725 60 35 PVR
-2125 3725 60 35 PVR
-2225 3725 60 35 PVR
-2325 3725 60 35 PVR
-2425 3725 60 35 PVR
-2525 3725 60 35 PVR
-2625 3725 60 35 PVR
-2725 3725 60 35 PVR
-2825 3725 60 35 PVR
-2825 3425 60 35 PVR
-2725 3425 60 35 PVR
-2625 3425 60 35 PVR
-2525 3425 60 35 PVR
-2425 3425 60 35 PVR
-2325 3425 60 35 PVR
-2225 3425 60 35 PVR
-2125 3425 60 35 PVR
-2025 3425 60 35 PVR
-1925 3425 60 35 PVR
-1825 3425 60 35 PVR
-1725 3425 60 35 PVR
-1375 3725 60 35 PVSQ
-1275 3725 60 35 PVR
-5400 1625 60 35 PVSQ
-5350 1525 60 35 PVR
-5300 1625 60 35 PVR
-5250 1525 60 35 PVR
-5200 1625 60 35 PVR
-5150 1525 60 35 PVR
-5100 1625 60 35 PVR
-5050 1525 60 35 PVR
-5000 1625 60 35 PVR
-4950 1525 60 35 PVR
-4900 1625 60 35 PVR
-4850 1525 60 35 PVR
-4800 1625 60 35 PVR
-4750 1525 60 35 PVR
-4700 1625 60 35 PVR
-4650 1525 60 35 PVR
-4600 1625 60 35 PVR
-4550 1525 60 35 PVR
-4500 1625 60 35 PVR
-4450 1525 60 35 PVR
-4400 1625 60 35 PVR
-4350 1525 60 35 PVR
-4300 1625 60 35 PVR
-4250 1525 60 35 PVR
-4200 1625 60 35 PVR
-4150 1525 60 35 PVR
-4100 1625 60 35 PVR
-4050 1525 60 35 PVR
-4000 1625 60 35 PVR
-3950 1525 60 35 PVR
-3900 1625 60 35 PVR
-3850 1525 60 35 PVR
-3800 1625 60 35 PVR
-3750 1525 60 35 PVR
-3700 1625 60 35 PVR
-3650 1525 60 35 PVR
-3400 1625 60 35 PVR
-3350 1525 60 35 PVR
-3300 1625 60 35 PVR
-3250 1525 60 35 PVR
-3200 1625 60 35 PVR
-3150 1525 60 35 PVR
-3100 1625 60 35 PVR
-3050 1525 60 35 PVR
-3000 1625 60 35 PVR
-2950 1525 60 35 PVR
-2900 1625 60 35 PVR
-2850 1525 60 35 PVR
-2800 1625 60 35 PVR
-2750 1525 60 35 PVR
-2700 1625 60 35 PVR
-2650 1525 60 35 PVR
-2600 1625 60 35 PVR
-2550 1525 60 35 PVR
-2500 1625 60 35 PVR
-2450 1525 60 35 PVR
-2400 1625 60 35 PVR
-2350 1525 60 35 PVR
-2300 1625 60 35 PVR
-2250 1525 60 35 PVR
-2200 1625 60 35 PVR
-2150 1525 60 35 PVR
-2100 1625 60 35 PVR
-2050 1525 60 35 PVR
-2000 1625 60 35 PVR
-1950 1525 60 35 PVR
-1900 1625 60 35 PVR
-1850 1525 60 35 PVR
-1800 1625 60 35 PVR
-1750 1525 60 35 PVR
-1700 1625 60 35 PVR
-1650 1525 60 35 PVR
-5730 1575 80 60 PVR
-3525 1575 120 100 PVR
-1325 1575 120 100 PVR
-1375 3425 60 35 PVSQ
-1275 3425 60 35 PVR
-3175 3425 60 35 PVSQ
-3275 3425 60 35 PVR
-3600 2900 60 35 PVSQ
-3700 2900 60 35 PVR
-3800 2900 60 35 PVR
-3900 2900 60 35 PVR
-3900 2600 60 35 PVR
-3800 2600 60 35 PVR
-3700 2600 60 35 PVR
-3600 2600 60 35 PVR
-875 575 60 35 PVSQ
-975 625 60 35 PVR
-875 675 60 35 PVR
-975 725 60 35 PVR
-875 775 60 35 PVR
-975 825 60 35 PVR
-875 875 60 35 PVR
-975 925 60 35 PVR
-625 525 148 128 PVR
-625 976 148 128 PVR
-745 445 80 60 PVR
-745 1056 80 60 PVR
-3225 2900 60 35 PVSQ
-3325 2900 60 35 PVR
-5775 575 60 35 PVSQ
-5875 575 60 35 PVR
-5975 575 60 35 PVR
-6075 575 60 35 PVR
-6075 275 60 35 PVR
-5975 275 60 35 PVR
-5875 275 60 35 PVR
-5775 275 60 35 PVR
-5825 2100 80 42 PVSQ
-5925 2100 80 42 PVR
-6025 2100 80 42 PVR
-5775 1175 60 35 PVSQ
-5875 1175 60 35 PVR
-5975 1175 60 35 PVR
-6075 1175 60 35 PVR
-6075 875 60 35 PVR
-5975 875 60 35 PVR
-5875 875 60 35 PVR
-5775 875 60 35 PVR
-5625 1875 60 35 PVSQ
-5925 1875 60 35 PVR
-5825 2925 80 42 PVSQ
-5925 2925 80 42 PVR
-6025 2925 80 42 PVR
-550 2695 70 42 PVSQ
-550 2872 70 42 PVR
-648 2646 70 52 PVR
-648 2922 70 52 PVR
-4750 3300 60 35 PVSQ
-4900 3300 60 35 PVR
-3000 2975 60 35 PVSQ
-3000 2575 60 35 PVR
-4475 625 60 35 PVSQ
-4475 225 60 35 PVR
-3325 2600 60 35 PVSQ
-3225 2600 60 35 PVR
-6525 475 60 35 PVSQ
-6525 575 60 35 PVR
-6525 675 60 35 PVR
-6525 775 60 35 PVR
-6525 875 60 35 PVR
-6525 975 60 35 PVR
-6525 1075 60 35 PVR
-6525 1175 60 35 PVR
-6525 1275 60 35 PVR
-6525 1375 60 35 PVR
-6525 1475 60 35 PVR
-6525 1575 60 35 PVR
-6525 1675 60 35 PVR
-6525 1775 60 35 PVR
-6525 1875 60 35 PVR
-6525 1975 60 35 PVR
-6525 2075 60 35 PVR
-6525 2175 60 35 PVR
-6525 2275 60 35 PVR
-6525 2375 60 35 PVR
-6525 2475 60 35 PVR
-6525 2575 60 35 PVR
-6525 2675 60 35 PVR
-6525 2775 60 35 PVR
-6525 2875 60 35 PVR
-6525 2975 60 35 PVR
-6525 3075 60 35 PVR
-6525 3175 60 35 PVR
-6525 3275 60 35 PVR
-6525 3375 60 35 PVR
-6525 3475 60 35 PVR
-6525 3575 60 35 PVR
-6425 475 60 35 PVR
-6425 575 60 35 PVR
-6425 675 60 35 PVR
-6425 775 60 35 PVR
-6425 875 60 35 PVR
-6425 975 60 35 PVR
-6425 1075 60 35 PVR
-6425 1175 60 35 PVR
-6425 1275 60 35 PVR
-6425 1375 60 35 PVR
-6425 1475 60 35 PVR
-6425 1575 60 35 PVR
-6425 1675 60 35 PVR
-6425 1775 60 35 PVR
-6425 1875 60 35 PVR
-6425 1975 60 35 PVR
-6425 2075 60 35 PVR
-6425 2175 60 35 PVR
-6425 2275 60 35 PVR
-6425 2375 60 35 PVR
-6425 2475 60 35 PVR
-6425 2575 60 35 PVR
-6425 2675 60 35 PVR
-6425 2775 60 35 PVR
-6425 2875 60 35 PVR
-6425 2975 60 35 PVR
-6425 3075 60 35 PVR
-6425 3175 60 35 PVR
-6425 3275 60 35 PVR
-6425 3375 60 35 PVR
-6425 3475 60 35 PVR
-6425 3575 60 35 PVR
-6325 475 60 35 PVR
-6325 575 60 35 PVR
-6325 675 60 35 PVR
-6325 775 60 35 PVR
-6325 875 60 35 PVR
-6325 975 60 35 PVR
-6325 1075 60 35 PVR
-6325 1175 60 35 PVR
-6325 1275 60 35 PVR
-6325 1375 60 35 PVR
-6325 1475 60 35 PVR
-6325 1575 60 35 PVR
-6325 1675 60 35 PVR
-6325 1775 60 35 PVR
-6325 1875 60 35 PVR
-6325 1975 60 35 PVR
-6325 2075 60 35 PVR
-6325 2175 60 35 PVR
-6325 2275 60 35 PVR
-6325 2375 60 35 PVR
-6325 2475 60 35 PVR
-6325 2575 60 35 PVR
-6325 2675 60 35 PVR
-6325 2775 60 35 PVR
-6325 2875 60 35 PVR
-6325 2975 60 35 PVR
-6325 3075 60 35 PVR
-6325 3175 60 35 PVR
-6325 3275 60 35 PVR
-6325 3375 60 35 PVR
-6325 3475 60 35 PVR
-6325 3575 60 35 PVR
-6625 3775 120 80 PVR
-6625 275 120 80 PVR
-5300 2925 80 42 PVSQ
-5400 2925 80 42 PVR
-5500 2925 80 42 PVR
-4900 3700 60 35 PVSQ
-4750 3700 60 35 PVR
-1160 2800 60 35 PVSQ
-760 2800 60 35 PVR
-2800 2575 60 35 PVSQ
-2800 2975 60 35 PVR
-5700 3600 80 42 PVSQ
-5600 3600 80 42 PVR
-5500 3600 80 42 PVR
-4950 2775 70 42 PVSQ
-4700 2775 70 42 PVR
-1725 3200 60 35 PVSQ
-1825 3200 60 35 PVR
-1925 3200 60 35 PVR
-2025 3200 60 35 PVR
-2025 2900 60 35 PVR
-1925 2900 60 35 PVR
-1825 2900 60 35 PVR
-1725 2900 60 35 PVR
-1050 3300 70 42 PVSQ
-1150 3300 70 42 PVR
-3550 625 60 35 PVSQ
-3550 225 60 35 PVR
-5350 2100 60 35 PVSQ
-5450 2100 60 35 PVR
-5825 2450 80 42 PVSQ
-5925 2450 80 42 PVR
-6025 2450 80 42 PVR
-850 3300 60 35 PVSQ
-850 3600 60 35 PVR
-4950 2200 70 42 PVSQ
-4700 2200 70 42 PVR
-815 2395 60 35 PVSQ
-815 2495 60 35 PVR
-775 1240 120 100 PVR
-775 2180 120 100 PVR
-825 1510 70 42 PVR
-725 1560 70 42 PVR
-825 1610 70 42 PVR
-725 1660 70 42 PVR
-825 1710 70 42 PVR
-725 1760 70 42 PVR
-825 1810 70 42 PVR
-725 1860 70 42 PVR
-825 1910 70 42 PVSQ
-2800 2350 60 35 PVSQ
-2900 2350 60 35 PVR
-3000 2350 60 35 PVR
-3100 2350 60 35 PVR
-3200 2350 60 35 PVR
-3300 2350 60 35 PVR
-3400 2350 60 35 PVR
-3500 2350 60 35 PVR
-3600 2350 60 35 PVR
-3700 2350 60 35 PVR
-3800 2350 60 35 PVR
-3900 2350 60 35 PVR
-3900 2050 60 35 PVR
-3800 2050 60 35 PVR
-3700 2050 60 35 PVR
-3600 2050 60 35 PVR
-3500 2050 60 35 PVR
-3400 2050 60 35 PVR
-3300 2050 60 35 PVR
-3200 2050 60 35 PVR
-3100 2050 60 35 PVR
-3000 2050 60 35 PVR
-2900 2050 60 35 PVR
-2800 2050 60 35 PVR
-1400 2650 60 35 PVSQ
-1500 2650 60 35 PVR
-1600 2650 60 35 PVR
-1700 2650 60 35 PVR
-1800 2650 60 35 PVR
-1900 2650 60 35 PVR
-2000 2650 60 35 PVR
-2100 2650 60 35 PVR
-2200 2650 60 35 PVR
-2300 2650 60 35 PVR
-2400 2650 60 35 PVR
-2500 2650 60 35 PVR
-2500 2050 60 35 PVR
-2400 2050 60 35 PVR
-2300 2050 60 35 PVR
-2200 2050 60 35 PVR
-2100 2050 60 35 PVR
-2000 2050 60 35 PVR
-1900 2050 60 35 PVR
-1800 2050 60 35 PVR
-1700 2050 60 35 PVR
-1600 2050 60 35 PVR
-1500 2050 60 35 PVR
-1400 2050 60 35 PVR
-4200 2050 70 42 PVSQ
-4300 2050 70 42 PVR
-4200 2150 70 42 PVR
-4300 2150 70 42 PVR
-4200 2250 70 42 PVR
-4300 2250 70 42 PVR
-4200 2350 70 42 PVR
-4300 2350 70 42 PVR
-3175 3725 60 35 PVSQ
-3275 3725 60 35 PVR
-2450 575 60 35 PVSQ
-2550 575 60 35 PVR
-2650 575 60 35 PVR
-2750 575 60 35 PVR
-2850 575 60 35 PVR
-2950 575 60 35 PVR
-3050 575 60 35 PVR
-3150 575 60 35 PVR
-3150 275 60 35 PVR
-3050 275 60 35 PVR
-2950 275 60 35 PVR
-2850 275 60 35 PVR
-2750 275 60 35 PVR
-2650 275 60 35 PVR
-2550 275 60 35 PVR
-2450 275 60 35 PVR
-5300 2450 80 42 PVSQ
-5400 2450 80 42 PVR
-5500 2450 80 42 PVR
-575 2395 60 35 PVSQ
-575 2495 60 35 PVR
-1575 3425 60 35 PVSQ
-1575 3725 60 35 PVR
-5575 625 60 35 PVSQ
-5575 225 60 35 PVR
-3975 575 60 35 PVSQ
-4075 575 60 35 PVR
-4175 575 60 35 PVR
-4275 575 60 35 PVR
-4275 275 60 35 PVR
-4175 275 60 35 PVR
-4075 275 60 35 PVR
-3975 275 60 35 PVR
-4875 1175 60 35 PVSQ
-4975 1175 60 35 PVR
-5075 1175 60 35 PVR
-5175 1175 60 35 PVR
-5175 875 60 35 PVR
-5075 875 60 35 PVR
-4975 875 60 35 PVR
-4875 875 60 35 PVR
-5375 1225 60 35 PVSQ
-5375 825 60 35 PVR
-4675 1225 60 35 PVSQ
-4675 825 60 35 PVR
-4675 625 60 35 PVSQ
-4675 225 60 35 PVR
-4875 575 60 35 PVSQ
-4975 575 60 35 PVR
-5075 575 60 35 PVR
-5175 575 60 35 PVR
-5175 275 60 35 PVR
-5075 275 60 35 PVR
-4975 275 60 35 PVR
-4875 275 60 35 PVR
-5375 625 60 35 PVSQ
-5375 225 60 35 PVR
-5575 1225 60 35 PVSQ
-5575 825 60 35 PVR
-3975 1175 60 35 PVSQ
-4075 1175 60 35 PVR
-4175 1175 60 35 PVR
-4275 1175 60 35 PVR
-4275 875 60 35 PVR
-4175 875 60 35 PVR
-4075 875 60 35 PVR
-3975 875 60 35 PVR
-4475 1225 60 35 PVSQ
-4475 825 60 35 PVR
-4150 3600 80 42 PVSQ
-4050 3600 80 42 PVR
-3950 3600 80 42 PVR
-2975 3425 60 35 PVSQ
-2975 3725 60 35 PVR
-3350 625 60 35 PVSQ
-3350 225 60 35 PVR
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-4750 3425 60 35 PVR
-4900 3425 60 35 PVR
-5600 3425 60 35 PVR
-6025 2600 60 35 PVR
-5400 2600 60 35 PVR
-5400 3075 60 35 PVR
-6025 3075 60 35 PVR
-5925 2775 60 35 PVR
-6125 2875 60 35 PVR
-5400 3275 60 35 PVR
-3950 3175 60 35 PVR
-4750 3175 60 35 PVR
-6225 3425 60 35 PVR
-6125 2675 60 35 PVR
-5925 2225 60 35 PVR
-4625 3425 60 35 PVR
-5625 2200 60 35 PVR
-6225 1025 60 35 PVR
-6475 1025 60 35 PVR
-5675 1075 60 35 PVR
-5975 475 60 35 PVR
-5375 475 60 35 PVR
-4875 475 60 35 PVR
-5175 400 60 35 PVR
-5775 400 60 35 PVR
-4025 725 60 35 PVR
-4875 725 60 35 PVR
-5375 725 60 35 PVR
-5925 725 60 35 PVR
-4975 950 60 35 PVR
-1400 950 60 35 PVR
-1750 950 60 35 PVR
-2375 950 60 35 PVR
-3225 3175 60 35 PVR
-3275 3925 60 35 PVR
-2400 2450 60 35 PVR
-2700 2450 60 35 PVR
-1400 2450 60 35 PVR
-1300 2800 60 35 PVR
-1300 2900 60 35 PVR
-2525 2875 40 20 PVR
-4275 1000 60 35 PVR
-5250 1000 60 35 PVR
-3150 1000 60 35 PVR
-4475 950 60 35 PVR
-2025 3050 60 35 PVR
-1275 3925 60 35 PVR
-2125 3925 60 35 PVR
-2725 3925 60 35 PVR
-3600 3175 60 35 PVR
-775 3925 60 35 PVR
-4875 1075 40 20 PVR
-6200 525 40 20 PVR
-6225 875 40 20 PVR
-5375 1075 40 20 PVR
-6375 1725 40 20 PVR
-2625 1725 40 20 PVR
-5975 650 40 20 PVR
-4075 475 60 35 PVR
-2050 825 40 20 PVR
-4025 2350 40 20 PVR
-2950 1300 40 20 PVR
-3350 525 40 20 PVR
-5275 225 40 20 PVR
-6150 150 40 20 PVR
-4775 575 40 20 PVR
-6225 350 40 20 PVR
-6475 200 40 20 PVR
-5575 150 40 20 PVR
-5025 150 40 20 PVR
-5475 1425 40 20 PVR
-6100 1425 40 20 PVR
-6150 1300 40 20 PVR
-5550 1350 40 20 PVR
-1950 575 40 20 PVR
-2425 3600 40 20 PVR
-2100 675 40 20 PVR
-1150 1125 40 20 PVR
-5075 1075 40 20 PVR
-4175 1350 40 20 PVR
-2000 625 40 20 PVR
-5125 800 40 20 PVR
-5575 2375 40 20 PVR
-4475 300 40 20 PVR
-3550 1300 40 20 PVR
-2725 3525 60 35 PVR
-950 2450 40 20 PVR
-1150 2450 40 20 PVR
-5825 2850 40 20 PVR
-1100 3675 40 20 PVR
-1825 3850 40 20 PVR
-2525 3850 40 20 PVR
-2125 3525 60 35 PVR
-2325 3525 60 35 PVR
-1925 3600 40 20 PVR
-4175 1075 40 20 PVR
-4475 1075 40 20 PVR
-4725 1075 40 20 PVR
-4675 150 40 20 PVR
-2550 1200 40 20 PVR
-2650 1200 40 20 PVR
-2650 1300 40 20 PVR
-2500 1300 40 20 PVR
-2600 1050 40 20 PVR
-2450 1050 40 20 PVR
-2850 1200 40 20 PVR
-3000 1200 40 20 PVR
-2900 1250 40 20 PVR
-3100 1250 40 20 PVR
-2950 1375 40 20 PVR
-3225 1375 40 20 PVR
-1450 1375 40 20 PVR
-1550 1250 40 20 PVR
-1600 1000 40 20 PVR
-3000 1000 40 20 PVR
-1700 1425 40 20 PVR
-2800 1425 40 20 PVR
-1800 1325 40 20 PVR
-2750 1300 40 20 PVR
-1900 1050 40 20 PVR
-2700 1050 40 20 PVR
-2000 2550 40 20 PVR
-2700 2550 40 20 PVR
-3225 2450 60 35 PVR
-3500 2500 40 20 PVR
-2025 2825 40 20 PVR
-2200 2825 40 20 PVR
-2575 2500 40 20 PVR
-2100 2500 40 20 PVR
-2575 1975 40 20 PVR
-2200 2250 60 35 PVR
-2400 2250 60 35 PVR
-3000 2125 40 20 PVR
-2150 2125 40 20 PVR
-3100 2175 40 20 PVR
-2250 2175 40 20 PVR
-2250 1950 40 20 PVR
-3150 1925 40 20 PVR
-1500 1875 40 20 PVR
-3250 1875 40 20 PVR
-2350 1875 40 20 PVR
-3600 2525 40 20 PVR
-2925 2225 40 20 PVR
-1700 2175 40 20 PVR
-2100 2300 40 20 PVR
-3900 2250 40 20 PVR
-2575 2775 40 20 PVR
-3850 2775 40 20 PVR
-1550 2825 40 20 PVR
-3400 2825 40 20 PVR
-2300 1825 40 20 PVR
-2450 1825 40 20 PVR
-2275 900 40 20 PVR
-2550 900 40 20 PVR
-2500 1725 40 20 PVR
-1900 1750 40 20 PVR
-1800 1700 40 20 PVR
-4300 1975 40 20 PVR
-3325 2700 60 35 PVR
-2900 2650 40 20 PVR
-4800 2650 40 20 PVR
-4700 2900 60 35 PVR
-4625 2825 40 20 PVR
-3000 1775 40 20 PVR
-4850 1775 40 20 PVR
-3050 850 40 20 PVR
-2750 850 40 20 PVR
-3300 800 40 20 PVR
-2850 800 40 20 PVR
-3500 2200 40 20 PVR
-3650 2200 40 20 PVR
-3550 3850 40 20 PVR
-2975 3525 60 35 PVR
-3750 3600 40 20 PVR
-1075 1475 40 20 PVR
-1220 1605 40 20 PVR
-4500 1825 40 20 PVR
-2625 3525 40 20 PVR
-3275 3525 40 20 PVR
-4000 2250 40 20 PVR
-4050 2150 40 20 PVR
-4100 2050 40 20 PVR
-1050 2700 40 20 PVR
-4150 2725 40 20 PVR
-4025 2500 40 20 PVR
-2225 3100 40 20 PVR
-4025 3100 40 20 PVR
-5200 2600 40 20 PVR
-5200 3375 40 20 PVR
-2100 3225 40 20 PVR
-5700 3225 40 20 PVR
-5700 2450 40 20 PVR
-5300 3275 40 20 PVR
-2825 3300 40 20 PVR
-3275 3050 40 20 PVR
-495 3300 40 20 PVR
-1300 2550 60 35 PVR
-765 2570 40 20 PVR
-905 3055 40 20 PVR
-5925 3600 60 35 PVR
-4050 3425 60 35 PVR
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 20 10 DH
-575 3762 20 10 DH
-6625 275 20 10 DH
-6625 3762 20 10 DH
-5730 1575 20 10 DH
-3525 1575 20 10 DH
-1325 1575 20 10 DH
-625 525 20 10 DH
-625 976 20 10 DH
-745 445 20 10 DH
-745 1056 20 10 DH
-5825 2100 20 10 DH
-5925 2100 20 10 DH
-6025 2100 20 10 DH
-5825 2925 20 10 DH
-5925 2925 20 10 DH
-6025 2925 20 10 DH
-550 2695 20 10 DH
-550 2872 20 10 DH
-648 2646 20 10 DH
-648 2922 20 10 DH
-6625 3775 20 10 DH
-6625 275 20 10 DH
-5300 2925 20 10 DH
-5400 2925 20 10 DH
-5500 2925 20 10 DH
-5700 3600 20 10 DH
-5600 3600 20 10 DH
-5500 3600 20 10 DH
-4950 2775 20 10 DH
-4700 2775 20 10 DH
-1050 3300 20 10 DH
-1150 3300 20 10 DH
-5825 2450 20 10 DH
-5925 2450 20 10 DH
-6025 2450 20 10 DH
-4950 2200 20 10 DH
-4700 2200 20 10 DH
-775 1240 20 10 DH
-775 2180 20 10 DH
-825 1510 20 10 DH
-725 1560 20 10 DH
-825 1610 20 10 DH
-725 1660 20 10 DH
-825 1710 20 10 DH
-725 1760 20 10 DH
-825 1810 20 10 DH
-725 1860 20 10 DH
-825 1910 20 10 DH
-4200 2050 20 10 DH
-4300 2050 20 10 DH
-4200 2150 20 10 DH
-4300 2150 20 10 DH
-4200 2250 20 10 DH
-4300 2250 20 10 DH
-4200 2350 20 10 DH
-4300 2350 20 10 DH
-5300 2450 20 10 DH
-5400 2450 20 10 DH
-5500 2450 20 10 DH
-4150 3600 20 10 DH
-4050 3600 20 10 DH
-3950 3600 20 10 DH
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aic_group4.ps b/doc/aic_group4.ps
deleted file mode 100644 (file)
index 4b083dc..0000000
+++ /dev/null
@@ -1,948 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), layergroup #4
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-/Color {0.127 0.540 0.127 mysetrgbcolor} def Color
-% LayerGroup: 3, Layer: "unused" (#7)
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 120 80 PVR
-575 3762 120 80 PVR
-6625 275 120 80 PVR
-6625 3762 120 80 PVR
-1155 3055 60 35 PVSQ
-755 3055 60 35 PVR
-1725 3725 60 35 PVSQ
-1825 3725 60 35 PVR
-1925 3725 60 35 PVR
-2025 3725 60 35 PVR
-2125 3725 60 35 PVR
-2225 3725 60 35 PVR
-2325 3725 60 35 PVR
-2425 3725 60 35 PVR
-2525 3725 60 35 PVR
-2625 3725 60 35 PVR
-2725 3725 60 35 PVR
-2825 3725 60 35 PVR
-2825 3425 60 35 PVR
-2725 3425 60 35 PVR
-2625 3425 60 35 PVR
-2525 3425 60 35 PVR
-2425 3425 60 35 PVR
-2325 3425 60 35 PVR
-2225 3425 60 35 PVR
-2125 3425 60 35 PVR
-2025 3425 60 35 PVR
-1925 3425 60 35 PVR
-1825 3425 60 35 PVR
-1725 3425 60 35 PVR
-1375 3725 60 35 PVSQ
-1275 3725 60 35 PVR
-5400 1625 60 35 PVSQ
-5350 1525 60 35 PVR
-5300 1625 60 35 PVR
-5250 1525 60 35 PVR
-5200 1625 60 35 PVR
-5150 1525 60 35 PVR
-5100 1625 60 35 PVR
-5050 1525 60 35 PVR
-5000 1625 60 35 PVR
-4950 1525 60 35 PVR
-4900 1625 60 35 PVR
-4850 1525 60 35 PVR
-4800 1625 60 35 PVR
-4750 1525 60 35 PVR
-4700 1625 60 35 PVR
-4650 1525 60 35 PVR
-4600 1625 60 35 PVR
-4550 1525 60 35 PVR
-4500 1625 60 35 PVR
-4450 1525 60 35 PVR
-4400 1625 60 35 PVR
-4350 1525 60 35 PVR
-4300 1625 60 35 PVR
-4250 1525 60 35 PVR
-4200 1625 60 35 PVR
-4150 1525 60 35 PVR
-4100 1625 60 35 PVR
-4050 1525 60 35 PVR
-4000 1625 60 35 PVR
-3950 1525 60 35 PVR
-3900 1625 60 35 PVR
-3850 1525 60 35 PVR
-3800 1625 60 35 PVR
-3750 1525 60 35 PVR
-3700 1625 60 35 PVR
-3650 1525 60 35 PVR
-3400 1625 60 35 PVR
-3350 1525 60 35 PVR
-3300 1625 60 35 PVR
-3250 1525 60 35 PVR
-3200 1625 60 35 PVR
-3150 1525 60 35 PVR
-3100 1625 60 35 PVR
-3050 1525 60 35 PVR
-3000 1625 60 35 PVR
-2950 1525 60 35 PVR
-2900 1625 60 35 PVR
-2850 1525 60 35 PVR
-2800 1625 60 35 PVR
-2750 1525 60 35 PVR
-2700 1625 60 35 PVR
-2650 1525 60 35 PVR
-2600 1625 60 35 PVR
-2550 1525 60 35 PVR
-2500 1625 60 35 PVR
-2450 1525 60 35 PVR
-2400 1625 60 35 PVR
-2350 1525 60 35 PVR
-2300 1625 60 35 PVR
-2250 1525 60 35 PVR
-2200 1625 60 35 PVR
-2150 1525 60 35 PVR
-2100 1625 60 35 PVR
-2050 1525 60 35 PVR
-2000 1625 60 35 PVR
-1950 1525 60 35 PVR
-1900 1625 60 35 PVR
-1850 1525 60 35 PVR
-1800 1625 60 35 PVR
-1750 1525 60 35 PVR
-1700 1625 60 35 PVR
-1650 1525 60 35 PVR
-5730 1575 80 60 PVR
-3525 1575 120 100 PVR
-1325 1575 120 100 PVR
-1375 3425 60 35 PVSQ
-1275 3425 60 35 PVR
-3175 3425 60 35 PVSQ
-3275 3425 60 35 PVR
-3600 2900 60 35 PVSQ
-3700 2900 60 35 PVR
-3800 2900 60 35 PVR
-3900 2900 60 35 PVR
-3900 2600 60 35 PVR
-3800 2600 60 35 PVR
-3700 2600 60 35 PVR
-3600 2600 60 35 PVR
-875 575 60 35 PVSQ
-975 625 60 35 PVR
-875 675 60 35 PVR
-975 725 60 35 PVR
-875 775 60 35 PVR
-975 825 60 35 PVR
-875 875 60 35 PVR
-975 925 60 35 PVR
-625 525 148 128 PVR
-625 976 148 128 PVR
-745 445 80 60 PVR
-745 1056 80 60 PVR
-3225 2900 60 35 PVSQ
-3325 2900 60 35 PVR
-5775 575 60 35 PVSQ
-5875 575 60 35 PVR
-5975 575 60 35 PVR
-6075 575 60 35 PVR
-6075 275 60 35 PVR
-5975 275 60 35 PVR
-5875 275 60 35 PVR
-5775 275 60 35 PVR
-5825 2100 80 42 PVSQ
-5925 2100 80 42 PVR
-6025 2100 80 42 PVR
-5775 1175 60 35 PVSQ
-5875 1175 60 35 PVR
-5975 1175 60 35 PVR
-6075 1175 60 35 PVR
-6075 875 60 35 PVR
-5975 875 60 35 PVR
-5875 875 60 35 PVR
-5775 875 60 35 PVR
-5625 1875 60 35 PVSQ
-5925 1875 60 35 PVR
-5825 2925 80 42 PVSQ
-5925 2925 80 42 PVR
-6025 2925 80 42 PVR
-550 2695 70 42 PVSQ
-550 2872 70 42 PVR
-648 2646 70 52 PVR
-648 2922 70 52 PVR
-4750 3300 60 35 PVSQ
-4900 3300 60 35 PVR
-3000 2975 60 35 PVSQ
-3000 2575 60 35 PVR
-4475 625 60 35 PVSQ
-4475 225 60 35 PVR
-3325 2600 60 35 PVSQ
-3225 2600 60 35 PVR
-6525 475 60 35 PVSQ
-6525 575 60 35 PVR
-6525 675 60 35 PVR
-6525 775 60 35 PVR
-6525 875 60 35 PVR
-6525 975 60 35 PVR
-6525 1075 60 35 PVR
-6525 1175 60 35 PVR
-6525 1275 60 35 PVR
-6525 1375 60 35 PVR
-6525 1475 60 35 PVR
-6525 1575 60 35 PVR
-6525 1675 60 35 PVR
-6525 1775 60 35 PVR
-6525 1875 60 35 PVR
-6525 1975 60 35 PVR
-6525 2075 60 35 PVR
-6525 2175 60 35 PVR
-6525 2275 60 35 PVR
-6525 2375 60 35 PVR
-6525 2475 60 35 PVR
-6525 2575 60 35 PVR
-6525 2675 60 35 PVR
-6525 2775 60 35 PVR
-6525 2875 60 35 PVR
-6525 2975 60 35 PVR
-6525 3075 60 35 PVR
-6525 3175 60 35 PVR
-6525 3275 60 35 PVR
-6525 3375 60 35 PVR
-6525 3475 60 35 PVR
-6525 3575 60 35 PVR
-6425 475 60 35 PVR
-6425 575 60 35 PVR
-6425 675 60 35 PVR
-6425 775 60 35 PVR
-6425 875 60 35 PVR
-6425 975 60 35 PVR
-6425 1075 60 35 PVR
-6425 1175 60 35 PVR
-6425 1275 60 35 PVR
-6425 1375 60 35 PVR
-6425 1475 60 35 PVR
-6425 1575 60 35 PVR
-6425 1675 60 35 PVR
-6425 1775 60 35 PVR
-6425 1875 60 35 PVR
-6425 1975 60 35 PVR
-6425 2075 60 35 PVR
-6425 2175 60 35 PVR
-6425 2275 60 35 PVR
-6425 2375 60 35 PVR
-6425 2475 60 35 PVR
-6425 2575 60 35 PVR
-6425 2675 60 35 PVR
-6425 2775 60 35 PVR
-6425 2875 60 35 PVR
-6425 2975 60 35 PVR
-6425 3075 60 35 PVR
-6425 3175 60 35 PVR
-6425 3275 60 35 PVR
-6425 3375 60 35 PVR
-6425 3475 60 35 PVR
-6425 3575 60 35 PVR
-6325 475 60 35 PVR
-6325 575 60 35 PVR
-6325 675 60 35 PVR
-6325 775 60 35 PVR
-6325 875 60 35 PVR
-6325 975 60 35 PVR
-6325 1075 60 35 PVR
-6325 1175 60 35 PVR
-6325 1275 60 35 PVR
-6325 1375 60 35 PVR
-6325 1475 60 35 PVR
-6325 1575 60 35 PVR
-6325 1675 60 35 PVR
-6325 1775 60 35 PVR
-6325 1875 60 35 PVR
-6325 1975 60 35 PVR
-6325 2075 60 35 PVR
-6325 2175 60 35 PVR
-6325 2275 60 35 PVR
-6325 2375 60 35 PVR
-6325 2475 60 35 PVR
-6325 2575 60 35 PVR
-6325 2675 60 35 PVR
-6325 2775 60 35 PVR
-6325 2875 60 35 PVR
-6325 2975 60 35 PVR
-6325 3075 60 35 PVR
-6325 3175 60 35 PVR
-6325 3275 60 35 PVR
-6325 3375 60 35 PVR
-6325 3475 60 35 PVR
-6325 3575 60 35 PVR
-6625 3775 120 80 PVR
-6625 275 120 80 PVR
-5300 2925 80 42 PVSQ
-5400 2925 80 42 PVR
-5500 2925 80 42 PVR
-4900 3700 60 35 PVSQ
-4750 3700 60 35 PVR
-1160 2800 60 35 PVSQ
-760 2800 60 35 PVR
-2800 2575 60 35 PVSQ
-2800 2975 60 35 PVR
-5700 3600 80 42 PVSQ
-5600 3600 80 42 PVR
-5500 3600 80 42 PVR
-4950 2775 70 42 PVSQ
-4700 2775 70 42 PVR
-1725 3200 60 35 PVSQ
-1825 3200 60 35 PVR
-1925 3200 60 35 PVR
-2025 3200 60 35 PVR
-2025 2900 60 35 PVR
-1925 2900 60 35 PVR
-1825 2900 60 35 PVR
-1725 2900 60 35 PVR
-1050 3300 70 42 PVSQ
-1150 3300 70 42 PVR
-3550 625 60 35 PVSQ
-3550 225 60 35 PVR
-5350 2100 60 35 PVSQ
-5450 2100 60 35 PVR
-5825 2450 80 42 PVSQ
-5925 2450 80 42 PVR
-6025 2450 80 42 PVR
-850 3300 60 35 PVSQ
-850 3600 60 35 PVR
-4950 2200 70 42 PVSQ
-4700 2200 70 42 PVR
-815 2395 60 35 PVSQ
-815 2495 60 35 PVR
-775 1240 120 100 PVR
-775 2180 120 100 PVR
-825 1510 70 42 PVR
-725 1560 70 42 PVR
-825 1610 70 42 PVR
-725 1660 70 42 PVR
-825 1710 70 42 PVR
-725 1760 70 42 PVR
-825 1810 70 42 PVR
-725 1860 70 42 PVR
-825 1910 70 42 PVSQ
-2800 2350 60 35 PVSQ
-2900 2350 60 35 PVR
-3000 2350 60 35 PVR
-3100 2350 60 35 PVR
-3200 2350 60 35 PVR
-3300 2350 60 35 PVR
-3400 2350 60 35 PVR
-3500 2350 60 35 PVR
-3600 2350 60 35 PVR
-3700 2350 60 35 PVR
-3800 2350 60 35 PVR
-3900 2350 60 35 PVR
-3900 2050 60 35 PVR
-3800 2050 60 35 PVR
-3700 2050 60 35 PVR
-3600 2050 60 35 PVR
-3500 2050 60 35 PVR
-3400 2050 60 35 PVR
-3300 2050 60 35 PVR
-3200 2050 60 35 PVR
-3100 2050 60 35 PVR
-3000 2050 60 35 PVR
-2900 2050 60 35 PVR
-2800 2050 60 35 PVR
-1400 2650 60 35 PVSQ
-1500 2650 60 35 PVR
-1600 2650 60 35 PVR
-1700 2650 60 35 PVR
-1800 2650 60 35 PVR
-1900 2650 60 35 PVR
-2000 2650 60 35 PVR
-2100 2650 60 35 PVR
-2200 2650 60 35 PVR
-2300 2650 60 35 PVR
-2400 2650 60 35 PVR
-2500 2650 60 35 PVR
-2500 2050 60 35 PVR
-2400 2050 60 35 PVR
-2300 2050 60 35 PVR
-2200 2050 60 35 PVR
-2100 2050 60 35 PVR
-2000 2050 60 35 PVR
-1900 2050 60 35 PVR
-1800 2050 60 35 PVR
-1700 2050 60 35 PVR
-1600 2050 60 35 PVR
-1500 2050 60 35 PVR
-1400 2050 60 35 PVR
-4200 2050 70 42 PVSQ
-4300 2050 70 42 PVR
-4200 2150 70 42 PVR
-4300 2150 70 42 PVR
-4200 2250 70 42 PVR
-4300 2250 70 42 PVR
-4200 2350 70 42 PVR
-4300 2350 70 42 PVR
-3175 3725 60 35 PVSQ
-3275 3725 60 35 PVR
-2450 575 60 35 PVSQ
-2550 575 60 35 PVR
-2650 575 60 35 PVR
-2750 575 60 35 PVR
-2850 575 60 35 PVR
-2950 575 60 35 PVR
-3050 575 60 35 PVR
-3150 575 60 35 PVR
-3150 275 60 35 PVR
-3050 275 60 35 PVR
-2950 275 60 35 PVR
-2850 275 60 35 PVR
-2750 275 60 35 PVR
-2650 275 60 35 PVR
-2550 275 60 35 PVR
-2450 275 60 35 PVR
-5300 2450 80 42 PVSQ
-5400 2450 80 42 PVR
-5500 2450 80 42 PVR
-575 2395 60 35 PVSQ
-575 2495 60 35 PVR
-1575 3425 60 35 PVSQ
-1575 3725 60 35 PVR
-5575 625 60 35 PVSQ
-5575 225 60 35 PVR
-3975 575 60 35 PVSQ
-4075 575 60 35 PVR
-4175 575 60 35 PVR
-4275 575 60 35 PVR
-4275 275 60 35 PVR
-4175 275 60 35 PVR
-4075 275 60 35 PVR
-3975 275 60 35 PVR
-4875 1175 60 35 PVSQ
-4975 1175 60 35 PVR
-5075 1175 60 35 PVR
-5175 1175 60 35 PVR
-5175 875 60 35 PVR
-5075 875 60 35 PVR
-4975 875 60 35 PVR
-4875 875 60 35 PVR
-5375 1225 60 35 PVSQ
-5375 825 60 35 PVR
-4675 1225 60 35 PVSQ
-4675 825 60 35 PVR
-4675 625 60 35 PVSQ
-4675 225 60 35 PVR
-4875 575 60 35 PVSQ
-4975 575 60 35 PVR
-5075 575 60 35 PVR
-5175 575 60 35 PVR
-5175 275 60 35 PVR
-5075 275 60 35 PVR
-4975 275 60 35 PVR
-4875 275 60 35 PVR
-5375 625 60 35 PVSQ
-5375 225 60 35 PVR
-5575 1225 60 35 PVSQ
-5575 825 60 35 PVR
-3975 1175 60 35 PVSQ
-4075 1175 60 35 PVR
-4175 1175 60 35 PVR
-4275 1175 60 35 PVR
-4275 875 60 35 PVR
-4175 875 60 35 PVR
-4075 875 60 35 PVR
-3975 875 60 35 PVR
-4475 1225 60 35 PVSQ
-4475 825 60 35 PVR
-4150 3600 80 42 PVSQ
-4050 3600 80 42 PVR
-3950 3600 80 42 PVR
-2975 3425 60 35 PVSQ
-2975 3725 60 35 PVR
-3350 625 60 35 PVSQ
-3350 225 60 35 PVR
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-4750 3425 60 35 PVR
-4900 3425 60 35 PVR
-5600 3425 60 35 PVR
-6025 2600 60 35 PVR
-5400 2600 60 35 PVR
-5400 3075 60 35 PVR
-6025 3075 60 35 PVR
-5925 2775 60 35 PVR
-6125 2875 60 35 PVR
-5400 3275 60 35 PVR
-3950 3175 60 35 PVR
-4750 3175 60 35 PVR
-6225 3425 60 35 PVR
-6125 2675 60 35 PVR
-5925 2225 60 35 PVR
-4625 3425 60 35 PVR
-5625 2200 60 35 PVR
-6225 1025 60 35 PVR
-6475 1025 60 35 PVR
-5675 1075 60 35 PVR
-5975 475 60 35 PVR
-5375 475 60 35 PVR
-4875 475 60 35 PVR
-5175 400 60 35 PVR
-5775 400 60 35 PVR
-4025 725 60 35 PVR
-4875 725 60 35 PVR
-5375 725 60 35 PVR
-5925 725 60 35 PVR
-4975 950 60 35 PVR
-1400 950 60 35 PVR
-1750 950 60 35 PVR
-2375 950 60 35 PVR
-3225 3175 60 35 PVR
-3275 3925 60 35 PVR
-2400 2450 60 35 PVR
-2700 2450 60 35 PVR
-1400 2450 60 35 PVR
-1300 2800 60 35 PVR
-1300 2900 60 35 PVR
-2525 2875 40 20 PVR
-4275 1000 60 35 PVR
-5250 1000 60 35 PVR
-3150 1000 60 35 PVR
-4475 950 60 35 PVR
-2025 3050 60 35 PVR
-1275 3925 60 35 PVR
-2125 3925 60 35 PVR
-2725 3925 60 35 PVR
-3600 3175 60 35 PVR
-775 3925 60 35 PVR
-4875 1075 40 20 PVR
-6200 525 40 20 PVR
-6225 875 40 20 PVR
-5375 1075 40 20 PVR
-6375 1725 40 20 PVR
-2625 1725 40 20 PVR
-5975 650 40 20 PVR
-4075 475 60 35 PVR
-2050 825 40 20 PVR
-4025 2350 40 20 PVR
-2950 1300 40 20 PVR
-3350 525 40 20 PVR
-5275 225 40 20 PVR
-6150 150 40 20 PVR
-4775 575 40 20 PVR
-6225 350 40 20 PVR
-6475 200 40 20 PVR
-5575 150 40 20 PVR
-5025 150 40 20 PVR
-5475 1425 40 20 PVR
-6100 1425 40 20 PVR
-6150 1300 40 20 PVR
-5550 1350 40 20 PVR
-1950 575 40 20 PVR
-2425 3600 40 20 PVR
-2100 675 40 20 PVR
-1150 1125 40 20 PVR
-5075 1075 40 20 PVR
-4175 1350 40 20 PVR
-2000 625 40 20 PVR
-5125 800 40 20 PVR
-5575 2375 40 20 PVR
-4475 300 40 20 PVR
-3550 1300 40 20 PVR
-2725 3525 60 35 PVR
-950 2450 40 20 PVR
-1150 2450 40 20 PVR
-5825 2850 40 20 PVR
-1100 3675 40 20 PVR
-1825 3850 40 20 PVR
-2525 3850 40 20 PVR
-2125 3525 60 35 PVR
-2325 3525 60 35 PVR
-1925 3600 40 20 PVR
-4175 1075 40 20 PVR
-4475 1075 40 20 PVR
-4725 1075 40 20 PVR
-4675 150 40 20 PVR
-2550 1200 40 20 PVR
-2650 1200 40 20 PVR
-2650 1300 40 20 PVR
-2500 1300 40 20 PVR
-2600 1050 40 20 PVR
-2450 1050 40 20 PVR
-2850 1200 40 20 PVR
-3000 1200 40 20 PVR
-2900 1250 40 20 PVR
-3100 1250 40 20 PVR
-2950 1375 40 20 PVR
-3225 1375 40 20 PVR
-1450 1375 40 20 PVR
-1550 1250 40 20 PVR
-1600 1000 40 20 PVR
-3000 1000 40 20 PVR
-1700 1425 40 20 PVR
-2800 1425 40 20 PVR
-1800 1325 40 20 PVR
-2750 1300 40 20 PVR
-1900 1050 40 20 PVR
-2700 1050 40 20 PVR
-2000 2550 40 20 PVR
-2700 2550 40 20 PVR
-3225 2450 60 35 PVR
-3500 2500 40 20 PVR
-2025 2825 40 20 PVR
-2200 2825 40 20 PVR
-2575 2500 40 20 PVR
-2100 2500 40 20 PVR
-2575 1975 40 20 PVR
-2200 2250 60 35 PVR
-2400 2250 60 35 PVR
-3000 2125 40 20 PVR
-2150 2125 40 20 PVR
-3100 2175 40 20 PVR
-2250 2175 40 20 PVR
-2250 1950 40 20 PVR
-3150 1925 40 20 PVR
-1500 1875 40 20 PVR
-3250 1875 40 20 PVR
-2350 1875 40 20 PVR
-3600 2525 40 20 PVR
-2925 2225 40 20 PVR
-1700 2175 40 20 PVR
-2100 2300 40 20 PVR
-3900 2250 40 20 PVR
-2575 2775 40 20 PVR
-3850 2775 40 20 PVR
-1550 2825 40 20 PVR
-3400 2825 40 20 PVR
-2300 1825 40 20 PVR
-2450 1825 40 20 PVR
-2275 900 40 20 PVR
-2550 900 40 20 PVR
-2500 1725 40 20 PVR
-1900 1750 40 20 PVR
-1800 1700 40 20 PVR
-4300 1975 40 20 PVR
-3325 2700 60 35 PVR
-2900 2650 40 20 PVR
-4800 2650 40 20 PVR
-4700 2900 60 35 PVR
-4625 2825 40 20 PVR
-3000 1775 40 20 PVR
-4850 1775 40 20 PVR
-3050 850 40 20 PVR
-2750 850 40 20 PVR
-3300 800 40 20 PVR
-2850 800 40 20 PVR
-3500 2200 40 20 PVR
-3650 2200 40 20 PVR
-3550 3850 40 20 PVR
-2975 3525 60 35 PVR
-3750 3600 40 20 PVR
-1075 1475 40 20 PVR
-1220 1605 40 20 PVR
-4500 1825 40 20 PVR
-2625 3525 40 20 PVR
-3275 3525 40 20 PVR
-4000 2250 40 20 PVR
-4050 2150 40 20 PVR
-4100 2050 40 20 PVR
-1050 2700 40 20 PVR
-4150 2725 40 20 PVR
-4025 2500 40 20 PVR
-2225 3100 40 20 PVR
-4025 3100 40 20 PVR
-5200 2600 40 20 PVR
-5200 3375 40 20 PVR
-2100 3225 40 20 PVR
-5700 3225 40 20 PVR
-5700 2450 40 20 PVR
-5300 3275 40 20 PVR
-2825 3300 40 20 PVR
-3275 3050 40 20 PVR
-495 3300 40 20 PVR
-1300 2550 60 35 PVR
-765 2570 40 20 PVR
-905 3055 40 20 PVR
-5925 3600 60 35 PVR
-4050 3425 60 35 PVR
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 20 10 DH
-575 3762 20 10 DH
-6625 275 20 10 DH
-6625 3762 20 10 DH
-5730 1575 20 10 DH
-3525 1575 20 10 DH
-1325 1575 20 10 DH
-625 525 20 10 DH
-625 976 20 10 DH
-745 445 20 10 DH
-745 1056 20 10 DH
-5825 2100 20 10 DH
-5925 2100 20 10 DH
-6025 2100 20 10 DH
-5825 2925 20 10 DH
-5925 2925 20 10 DH
-6025 2925 20 10 DH
-550 2695 20 10 DH
-550 2872 20 10 DH
-648 2646 20 10 DH
-648 2922 20 10 DH
-6625 3775 20 10 DH
-6625 275 20 10 DH
-5300 2925 20 10 DH
-5400 2925 20 10 DH
-5500 2925 20 10 DH
-5700 3600 20 10 DH
-5600 3600 20 10 DH
-5500 3600 20 10 DH
-4950 2775 20 10 DH
-4700 2775 20 10 DH
-1050 3300 20 10 DH
-1150 3300 20 10 DH
-5825 2450 20 10 DH
-5925 2450 20 10 DH
-6025 2450 20 10 DH
-4950 2200 20 10 DH
-4700 2200 20 10 DH
-775 1240 20 10 DH
-775 2180 20 10 DH
-825 1510 20 10 DH
-725 1560 20 10 DH
-825 1610 20 10 DH
-725 1660 20 10 DH
-825 1710 20 10 DH
-725 1760 20 10 DH
-825 1810 20 10 DH
-725 1860 20 10 DH
-825 1910 20 10 DH
-4200 2050 20 10 DH
-4300 2050 20 10 DH
-4200 2150 20 10 DH
-4300 2150 20 10 DH
-4200 2250 20 10 DH
-4300 2250 20 10 DH
-4200 2350 20 10 DH
-4300 2350 20 10 DH
-5300 2450 20 10 DH
-5400 2450 20 10 DH
-5500 2450 20 10 DH
-4150 3600 20 10 DH
-4050 3600 20 10 DH
-3950 3600 20 10 DH
-/Color {0.476 0.492 0.476 mysetrgbcolor} def Color
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aic_soldermask.ps b/doc/aic_soldermask.ps
deleted file mode 100644 (file)
index 6a4e563..0000000
+++ /dev/null
@@ -1,881 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), solder mask solder side
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-35 40 7035 3997 FILL
-/Color {0.286 0.302 0.286 mysetrgbcolor} def Color
-575 275 150 CLRPVR
-575 3762 150 CLRPVR
-6625 275 150 CLRPVR
-6625 3762 150 CLRPVR
-1155 3055 90 CLRPVSQ
-755 3055 90 CLRPVR
-1725 3725 90 CLRPVSQ
-1825 3725 90 CLRPVR
-1925 3725 90 CLRPVR
-2025 3725 90 CLRPVR
-2125 3725 90 CLRPVR
-2225 3725 90 CLRPVR
-2325 3725 90 CLRPVR
-2425 3725 90 CLRPVR
-2525 3725 90 CLRPVR
-2625 3725 90 CLRPVR
-2725 3725 90 CLRPVR
-2825 3725 90 CLRPVR
-2825 3425 90 CLRPVR
-2725 3425 90 CLRPVR
-2625 3425 90 CLRPVR
-2525 3425 90 CLRPVR
-2425 3425 90 CLRPVR
-2325 3425 90 CLRPVR
-2225 3425 90 CLRPVR
-2125 3425 90 CLRPVR
-2025 3425 90 CLRPVR
-1925 3425 90 CLRPVR
-1825 3425 90 CLRPVR
-1725 3425 90 CLRPVR
-1375 3725 90 CLRPVSQ
-1275 3725 90 CLRPVR
-5400 1625 90 CLRPVSQ
-5350 1525 90 CLRPVR
-5300 1625 90 CLRPVR
-5250 1525 90 CLRPVR
-5200 1625 90 CLRPVR
-5150 1525 90 CLRPVR
-5100 1625 90 CLRPVR
-5050 1525 90 CLRPVR
-5000 1625 90 CLRPVR
-4950 1525 90 CLRPVR
-4900 1625 90 CLRPVR
-4850 1525 90 CLRPVR
-4800 1625 90 CLRPVR
-4750 1525 90 CLRPVR
-4700 1625 90 CLRPVR
-4650 1525 90 CLRPVR
-4600 1625 90 CLRPVR
-4550 1525 90 CLRPVR
-4500 1625 90 CLRPVR
-4450 1525 90 CLRPVR
-4400 1625 90 CLRPVR
-4350 1525 90 CLRPVR
-4300 1625 90 CLRPVR
-4250 1525 90 CLRPVR
-4200 1625 90 CLRPVR
-4150 1525 90 CLRPVR
-4100 1625 90 CLRPVR
-4050 1525 90 CLRPVR
-4000 1625 90 CLRPVR
-3950 1525 90 CLRPVR
-3900 1625 90 CLRPVR
-3850 1525 90 CLRPVR
-3800 1625 90 CLRPVR
-3750 1525 90 CLRPVR
-3700 1625 90 CLRPVR
-3650 1525 90 CLRPVR
-3400 1625 90 CLRPVR
-3350 1525 90 CLRPVR
-3300 1625 90 CLRPVR
-3250 1525 90 CLRPVR
-3200 1625 90 CLRPVR
-3150 1525 90 CLRPVR
-3100 1625 90 CLRPVR
-3050 1525 90 CLRPVR
-3000 1625 90 CLRPVR
-2950 1525 90 CLRPVR
-2900 1625 90 CLRPVR
-2850 1525 90 CLRPVR
-2800 1625 90 CLRPVR
-2750 1525 90 CLRPVR
-2700 1625 90 CLRPVR
-2650 1525 90 CLRPVR
-2600 1625 90 CLRPVR
-2550 1525 90 CLRPVR
-2500 1625 90 CLRPVR
-2450 1525 90 CLRPVR
-2400 1625 90 CLRPVR
-2350 1525 90 CLRPVR
-2300 1625 90 CLRPVR
-2250 1525 90 CLRPVR
-2200 1625 90 CLRPVR
-2150 1525 90 CLRPVR
-2100 1625 90 CLRPVR
-2050 1525 90 CLRPVR
-2000 1625 90 CLRPVR
-1950 1525 90 CLRPVR
-1900 1625 90 CLRPVR
-1850 1525 90 CLRPVR
-1800 1625 90 CLRPVR
-1750 1525 90 CLRPVR
-1700 1625 90 CLRPVR
-1650 1525 90 CLRPVR
-5730 1575 110 CLRPVR
-3525 1575 150 CLRPVR
-1325 1575 150 CLRPVR
-1375 3425 90 CLRPVSQ
-1275 3425 90 CLRPVR
-3175 3425 90 CLRPVSQ
-3275 3425 90 CLRPVR
-3600 2900 90 CLRPVSQ
-3700 2900 90 CLRPVR
-3800 2900 90 CLRPVR
-3900 2900 90 CLRPVR
-3900 2600 90 CLRPVR
-3800 2600 90 CLRPVR
-3700 2600 90 CLRPVR
-3600 2600 90 CLRPVR
-875 575 90 CLRPVSQ
-975 625 90 CLRPVR
-875 675 90 CLRPVR
-975 725 90 CLRPVR
-875 775 90 CLRPVR
-975 825 90 CLRPVR
-875 875 90 CLRPVR
-975 925 90 CLRPVR
-625 525 178 CLRPVR
-625 976 178 CLRPVR
-745 445 110 CLRPVR
-745 1056 110 CLRPVR
-3225 2900 90 CLRPVSQ
-3325 2900 90 CLRPVR
-5775 575 90 CLRPVSQ
-5875 575 90 CLRPVR
-5975 575 90 CLRPVR
-6075 575 90 CLRPVR
-6075 275 90 CLRPVR
-5975 275 90 CLRPVR
-5875 275 90 CLRPVR
-5775 275 90 CLRPVR
-5825 2100 110 CLRPVSQ
-5925 2100 110 CLRPVR
-6025 2100 110 CLRPVR
-5775 1175 90 CLRPVSQ
-5875 1175 90 CLRPVR
-5975 1175 90 CLRPVR
-6075 1175 90 CLRPVR
-6075 875 90 CLRPVR
-5975 875 90 CLRPVR
-5875 875 90 CLRPVR
-5775 875 90 CLRPVR
-5625 1875 90 CLRPVSQ
-5925 1875 90 CLRPVR
-5825 2925 110 CLRPVSQ
-5925 2925 110 CLRPVR
-6025 2925 110 CLRPVR
-550 2695 100 CLRPVSQ
-550 2872 100 CLRPVR
-648 2646 100 CLRPVR
-648 2922 100 CLRPVR
-4750 3300 90 CLRPVSQ
-4900 3300 90 CLRPVR
-3000 2975 90 CLRPVSQ
-3000 2575 90 CLRPVR
-4475 625 90 CLRPVSQ
-4475 225 90 CLRPVR
-3325 2600 90 CLRPVSQ
-3225 2600 90 CLRPVR
-6525 475 90 CLRPVSQ
-6525 575 90 CLRPVR
-6525 675 90 CLRPVR
-6525 775 90 CLRPVR
-6525 875 90 CLRPVR
-6525 975 90 CLRPVR
-6525 1075 90 CLRPVR
-6525 1175 90 CLRPVR
-6525 1275 90 CLRPVR
-6525 1375 90 CLRPVR
-6525 1475 90 CLRPVR
-6525 1575 90 CLRPVR
-6525 1675 90 CLRPVR
-6525 1775 90 CLRPVR
-6525 1875 90 CLRPVR
-6525 1975 90 CLRPVR
-6525 2075 90 CLRPVR
-6525 2175 90 CLRPVR
-6525 2275 90 CLRPVR
-6525 2375 90 CLRPVR
-6525 2475 90 CLRPVR
-6525 2575 90 CLRPVR
-6525 2675 90 CLRPVR
-6525 2775 90 CLRPVR
-6525 2875 90 CLRPVR
-6525 2975 90 CLRPVR
-6525 3075 90 CLRPVR
-6525 3175 90 CLRPVR
-6525 3275 90 CLRPVR
-6525 3375 90 CLRPVR
-6525 3475 90 CLRPVR
-6525 3575 90 CLRPVR
-6425 475 90 CLRPVR
-6425 575 90 CLRPVR
-6425 675 90 CLRPVR
-6425 775 90 CLRPVR
-6425 875 90 CLRPVR
-6425 975 90 CLRPVR
-6425 1075 90 CLRPVR
-6425 1175 90 CLRPVR
-6425 1275 90 CLRPVR
-6425 1375 90 CLRPVR
-6425 1475 90 CLRPVR
-6425 1575 90 CLRPVR
-6425 1675 90 CLRPVR
-6425 1775 90 CLRPVR
-6425 1875 90 CLRPVR
-6425 1975 90 CLRPVR
-6425 2075 90 CLRPVR
-6425 2175 90 CLRPVR
-6425 2275 90 CLRPVR
-6425 2375 90 CLRPVR
-6425 2475 90 CLRPVR
-6425 2575 90 CLRPVR
-6425 2675 90 CLRPVR
-6425 2775 90 CLRPVR
-6425 2875 90 CLRPVR
-6425 2975 90 CLRPVR
-6425 3075 90 CLRPVR
-6425 3175 90 CLRPVR
-6425 3275 90 CLRPVR
-6425 3375 90 CLRPVR
-6425 3475 90 CLRPVR
-6425 3575 90 CLRPVR
-6325 475 90 CLRPVR
-6325 575 90 CLRPVR
-6325 675 90 CLRPVR
-6325 775 90 CLRPVR
-6325 875 90 CLRPVR
-6325 975 90 CLRPVR
-6325 1075 90 CLRPVR
-6325 1175 90 CLRPVR
-6325 1275 90 CLRPVR
-6325 1375 90 CLRPVR
-6325 1475 90 CLRPVR
-6325 1575 90 CLRPVR
-6325 1675 90 CLRPVR
-6325 1775 90 CLRPVR
-6325 1875 90 CLRPVR
-6325 1975 90 CLRPVR
-6325 2075 90 CLRPVR
-6325 2175 90 CLRPVR
-6325 2275 90 CLRPVR
-6325 2375 90 CLRPVR
-6325 2475 90 CLRPVR
-6325 2575 90 CLRPVR
-6325 2675 90 CLRPVR
-6325 2775 90 CLRPVR
-6325 2875 90 CLRPVR
-6325 2975 90 CLRPVR
-6325 3075 90 CLRPVR
-6325 3175 90 CLRPVR
-6325 3275 90 CLRPVR
-6325 3375 90 CLRPVR
-6325 3475 90 CLRPVR
-6325 3575 90 CLRPVR
-6625 3775 150 CLRPVR
-6625 275 150 CLRPVR
-5300 2925 110 CLRPVSQ
-5400 2925 110 CLRPVR
-5500 2925 110 CLRPVR
-4900 3700 90 CLRPVSQ
-4750 3700 90 CLRPVR
-1160 2800 90 CLRPVSQ
-760 2800 90 CLRPVR
-2800 2575 90 CLRPVSQ
-2800 2975 90 CLRPVR
-5700 3600 110 CLRPVSQ
-5600 3600 110 CLRPVR
-5500 3600 110 CLRPVR
-4950 2775 100 CLRPVSQ
-4700 2775 100 CLRPVR
-1725 3200 90 CLRPVSQ
-1825 3200 90 CLRPVR
-1925 3200 90 CLRPVR
-2025 3200 90 CLRPVR
-2025 2900 90 CLRPVR
-1925 2900 90 CLRPVR
-1825 2900 90 CLRPVR
-1725 2900 90 CLRPVR
-1050 3300 100 CLRPVSQ
-1150 3300 100 CLRPVR
-3550 625 90 CLRPVSQ
-3550 225 90 CLRPVR
-5350 2100 90 CLRPVSQ
-5450 2100 90 CLRPVR
-5825 2450 110 CLRPVSQ
-5925 2450 110 CLRPVR
-6025 2450 110 CLRPVR
-850 3300 90 CLRPVSQ
-850 3600 90 CLRPVR
-4950 2200 100 CLRPVSQ
-4700 2200 100 CLRPVR
-815 2395 90 CLRPVSQ
-815 2495 90 CLRPVR
-775 1240 150 CLRPVR
-775 2180 150 CLRPVR
-825 1510 100 CLRPVR
-725 1560 100 CLRPVR
-825 1610 100 CLRPVR
-725 1660 100 CLRPVR
-825 1710 100 CLRPVR
-725 1760 100 CLRPVR
-825 1810 100 CLRPVR
-725 1860 100 CLRPVR
-825 1910 100 CLRPVSQ
-2800 2350 90 CLRPVSQ
-2900 2350 90 CLRPVR
-3000 2350 90 CLRPVR
-3100 2350 90 CLRPVR
-3200 2350 90 CLRPVR
-3300 2350 90 CLRPVR
-3400 2350 90 CLRPVR
-3500 2350 90 CLRPVR
-3600 2350 90 CLRPVR
-3700 2350 90 CLRPVR
-3800 2350 90 CLRPVR
-3900 2350 90 CLRPVR
-3900 2050 90 CLRPVR
-3800 2050 90 CLRPVR
-3700 2050 90 CLRPVR
-3600 2050 90 CLRPVR
-3500 2050 90 CLRPVR
-3400 2050 90 CLRPVR
-3300 2050 90 CLRPVR
-3200 2050 90 CLRPVR
-3100 2050 90 CLRPVR
-3000 2050 90 CLRPVR
-2900 2050 90 CLRPVR
-2800 2050 90 CLRPVR
-1400 2650 90 CLRPVSQ
-1500 2650 90 CLRPVR
-1600 2650 90 CLRPVR
-1700 2650 90 CLRPVR
-1800 2650 90 CLRPVR
-1900 2650 90 CLRPVR
-2000 2650 90 CLRPVR
-2100 2650 90 CLRPVR
-2200 2650 90 CLRPVR
-2300 2650 90 CLRPVR
-2400 2650 90 CLRPVR
-2500 2650 90 CLRPVR
-2500 2050 90 CLRPVR
-2400 2050 90 CLRPVR
-2300 2050 90 CLRPVR
-2200 2050 90 CLRPVR
-2100 2050 90 CLRPVR
-2000 2050 90 CLRPVR
-1900 2050 90 CLRPVR
-1800 2050 90 CLRPVR
-1700 2050 90 CLRPVR
-1600 2050 90 CLRPVR
-1500 2050 90 CLRPVR
-1400 2050 90 CLRPVR
-4200 2050 100 CLRPVSQ
-4300 2050 100 CLRPVR
-4200 2150 100 CLRPVR
-4300 2150 100 CLRPVR
-4200 2250 100 CLRPVR
-4300 2250 100 CLRPVR
-4200 2350 100 CLRPVR
-4300 2350 100 CLRPVR
-3175 3725 90 CLRPVSQ
-3275 3725 90 CLRPVR
-2450 575 90 CLRPVSQ
-2550 575 90 CLRPVR
-2650 575 90 CLRPVR
-2750 575 90 CLRPVR
-2850 575 90 CLRPVR
-2950 575 90 CLRPVR
-3050 575 90 CLRPVR
-3150 575 90 CLRPVR
-3150 275 90 CLRPVR
-3050 275 90 CLRPVR
-2950 275 90 CLRPVR
-2850 275 90 CLRPVR
-2750 275 90 CLRPVR
-2650 275 90 CLRPVR
-2550 275 90 CLRPVR
-2450 275 90 CLRPVR
-5300 2450 110 CLRPVSQ
-5400 2450 110 CLRPVR
-5500 2450 110 CLRPVR
-575 2395 90 CLRPVSQ
-575 2495 90 CLRPVR
-1575 3425 90 CLRPVSQ
-1575 3725 90 CLRPVR
-5575 625 90 CLRPVSQ
-5575 225 90 CLRPVR
-3975 575 90 CLRPVSQ
-4075 575 90 CLRPVR
-4175 575 90 CLRPVR
-4275 575 90 CLRPVR
-4275 275 90 CLRPVR
-4175 275 90 CLRPVR
-4075 275 90 CLRPVR
-3975 275 90 CLRPVR
-4875 1175 90 CLRPVSQ
-4975 1175 90 CLRPVR
-5075 1175 90 CLRPVR
-5175 1175 90 CLRPVR
-5175 875 90 CLRPVR
-5075 875 90 CLRPVR
-4975 875 90 CLRPVR
-4875 875 90 CLRPVR
-5375 1225 90 CLRPVSQ
-5375 825 90 CLRPVR
-4675 1225 90 CLRPVSQ
-4675 825 90 CLRPVR
-4675 625 90 CLRPVSQ
-4675 225 90 CLRPVR
-4875 575 90 CLRPVSQ
-4975 575 90 CLRPVR
-5075 575 90 CLRPVR
-5175 575 90 CLRPVR
-5175 275 90 CLRPVR
-5075 275 90 CLRPVR
-4975 275 90 CLRPVR
-4875 275 90 CLRPVR
-5375 625 90 CLRPVSQ
-5375 225 90 CLRPVR
-5575 1225 90 CLRPVSQ
-5575 825 90 CLRPVR
-3975 1175 90 CLRPVSQ
-4075 1175 90 CLRPVR
-4175 1175 90 CLRPVR
-4275 1175 90 CLRPVR
-4275 875 90 CLRPVR
-4175 875 90 CLRPVR
-4075 875 90 CLRPVR
-3975 875 90 CLRPVR
-4475 1225 90 CLRPVSQ
-4475 825 90 CLRPVR
-4150 3600 110 CLRPVSQ
-4050 3600 110 CLRPVR
-3950 3600 110 CLRPVR
-2975 3425 90 CLRPVSQ
-2975 3725 90 CLRPVR
-3350 625 90 CLRPVSQ
-3350 225 90 CLRPVR
-4750 3425 90 CLRPVR
-4900 3425 90 CLRPVR
-5600 3425 90 CLRPVR
-6025 2600 90 CLRPVR
-5400 2600 90 CLRPVR
-5400 3075 90 CLRPVR
-6025 3075 90 CLRPVR
-5925 2775 90 CLRPVR
-6125 2875 90 CLRPVR
-5400 3275 90 CLRPVR
-3950 3175 90 CLRPVR
-4750 3175 90 CLRPVR
-6225 3425 90 CLRPVR
-6125 2675 90 CLRPVR
-5925 2225 90 CLRPVR
-4625 3425 90 CLRPVR
-5625 2200 90 CLRPVR
-6225 1025 90 CLRPVR
-6475 1025 90 CLRPVR
-5675 1075 90 CLRPVR
-5975 475 90 CLRPVR
-5375 475 90 CLRPVR
-4875 475 90 CLRPVR
-5175 400 90 CLRPVR
-5775 400 90 CLRPVR
-4025 725 90 CLRPVR
-4875 725 90 CLRPVR
-5375 725 90 CLRPVR
-5925 725 90 CLRPVR
-4975 950 90 CLRPVR
-1400 950 90 CLRPVR
-1750 950 90 CLRPVR
-2375 950 90 CLRPVR
-3225 3175 90 CLRPVR
-3275 3925 90 CLRPVR
-2400 2450 90 CLRPVR
-2700 2450 90 CLRPVR
-1400 2450 90 CLRPVR
-1300 2800 90 CLRPVR
-1300 2900 90 CLRPVR
-2525 2875 70 CLRPVR
-4275 1000 90 CLRPVR
-5250 1000 90 CLRPVR
-3150 1000 90 CLRPVR
-4475 950 90 CLRPVR
-2025 3050 90 CLRPVR
-1275 3925 90 CLRPVR
-2125 3925 90 CLRPVR
-2725 3925 90 CLRPVR
-3600 3175 90 CLRPVR
-775 3925 90 CLRPVR
-4875 1075 70 CLRPVR
-6200 525 70 CLRPVR
-6225 875 70 CLRPVR
-5375 1075 70 CLRPVR
-6375 1725 70 CLRPVR
-2625 1725 70 CLRPVR
-5975 650 70 CLRPVR
-4075 475 90 CLRPVR
-2050 825 70 CLRPVR
-4025 2350 70 CLRPVR
-2950 1300 70 CLRPVR
-3350 525 70 CLRPVR
-5275 225 70 CLRPVR
-6150 150 70 CLRPVR
-4775 575 70 CLRPVR
-6225 350 70 CLRPVR
-6475 200 70 CLRPVR
-5575 150 70 CLRPVR
-5025 150 70 CLRPVR
-5475 1425 70 CLRPVR
-6100 1425 70 CLRPVR
-6150 1300 70 CLRPVR
-5550 1350 70 CLRPVR
-1950 575 70 CLRPVR
-2425 3600 70 CLRPVR
-2100 675 70 CLRPVR
-1150 1125 70 CLRPVR
-5075 1075 70 CLRPVR
-4175 1350 70 CLRPVR
-2000 625 70 CLRPVR
-5125 800 70 CLRPVR
-5575 2375 70 CLRPVR
-4475 300 70 CLRPVR
-3550 1300 70 CLRPVR
-2725 3525 90 CLRPVR
-950 2450 70 CLRPVR
-1150 2450 70 CLRPVR
-5825 2850 70 CLRPVR
-1100 3675 70 CLRPVR
-1825 3850 70 CLRPVR
-2525 3850 70 CLRPVR
-2125 3525 90 CLRPVR
-2325 3525 90 CLRPVR
-1925 3600 70 CLRPVR
-4175 1075 70 CLRPVR
-4475 1075 70 CLRPVR
-4725 1075 70 CLRPVR
-4675 150 70 CLRPVR
-2550 1200 70 CLRPVR
-2650 1200 70 CLRPVR
-2650 1300 70 CLRPVR
-2500 1300 70 CLRPVR
-2600 1050 70 CLRPVR
-2450 1050 70 CLRPVR
-2850 1200 70 CLRPVR
-3000 1200 70 CLRPVR
-2900 1250 70 CLRPVR
-3100 1250 70 CLRPVR
-2950 1375 70 CLRPVR
-3225 1375 70 CLRPVR
-1450 1375 70 CLRPVR
-1550 1250 70 CLRPVR
-1600 1000 70 CLRPVR
-3000 1000 70 CLRPVR
-1700 1425 70 CLRPVR
-2800 1425 70 CLRPVR
-1800 1325 70 CLRPVR
-2750 1300 70 CLRPVR
-1900 1050 70 CLRPVR
-2700 1050 70 CLRPVR
-2000 2550 70 CLRPVR
-2700 2550 70 CLRPVR
-3225 2450 90 CLRPVR
-3500 2500 70 CLRPVR
-2025 2825 70 CLRPVR
-2200 2825 70 CLRPVR
-2575 2500 70 CLRPVR
-2100 2500 70 CLRPVR
-2575 1975 70 CLRPVR
-2200 2250 90 CLRPVR
-2400 2250 90 CLRPVR
-3000 2125 70 CLRPVR
-2150 2125 70 CLRPVR
-3100 2175 70 CLRPVR
-2250 2175 70 CLRPVR
-2250 1950 70 CLRPVR
-3150 1925 70 CLRPVR
-1500 1875 70 CLRPVR
-3250 1875 70 CLRPVR
-2350 1875 70 CLRPVR
-3600 2525 70 CLRPVR
-2925 2225 70 CLRPVR
-1700 2175 70 CLRPVR
-2100 2300 70 CLRPVR
-3900 2250 70 CLRPVR
-2575 2775 70 CLRPVR
-3850 2775 70 CLRPVR
-1550 2825 70 CLRPVR
-3400 2825 70 CLRPVR
-2300 1825 70 CLRPVR
-2450 1825 70 CLRPVR
-2275 900 70 CLRPVR
-2550 900 70 CLRPVR
-2500 1725 70 CLRPVR
-1900 1750 70 CLRPVR
-1800 1700 70 CLRPVR
-4300 1975 70 CLRPVR
-3325 2700 90 CLRPVR
-2900 2650 70 CLRPVR
-4800 2650 70 CLRPVR
-4700 2900 90 CLRPVR
-4625 2825 70 CLRPVR
-3000 1775 70 CLRPVR
-4850 1775 70 CLRPVR
-3050 850 70 CLRPVR
-2750 850 70 CLRPVR
-3300 800 70 CLRPVR
-2850 800 70 CLRPVR
-3500 2200 70 CLRPVR
-3650 2200 70 CLRPVR
-3550 3850 70 CLRPVR
-2975 3525 90 CLRPVR
-3750 3600 70 CLRPVR
-1075 1475 70 CLRPVR
-1220 1605 70 CLRPVR
-4500 1825 70 CLRPVR
-2625 3525 70 CLRPVR
-3275 3525 70 CLRPVR
-4000 2250 70 CLRPVR
-4050 2150 70 CLRPVR
-4100 2050 70 CLRPVR
-1050 2700 70 CLRPVR
-4150 2725 70 CLRPVR
-4025 2500 70 CLRPVR
-2225 3100 70 CLRPVR
-4025 3100 70 CLRPVR
-5200 2600 70 CLRPVR
-5200 3375 70 CLRPVR
-2100 3225 70 CLRPVR
-5700 3225 70 CLRPVR
-5700 2450 70 CLRPVR
-5300 3275 70 CLRPVR
-2825 3300 70 CLRPVR
-3275 3050 70 CLRPVR
-495 3300 70 CLRPVR
-1300 2550 90 CLRPVR
-765 2570 70 CLRPVR
-905 3055 70 CLRPVR
-5925 3600 90 CLRPVR
-4050 3425 90 CLRPVR
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aic_soldersilk.ps b/doc/aic_soldersilk.ps
deleted file mode 100644 (file)
index c891090..0000000
+++ /dev/null
@@ -1,230 +0,0 @@
-%!PS-Adobe-3.0
-%%Title: (unknown), silkscreen solder side
-%%Creator: pcb 1.6.3
-%%CreationDate: Mon Mar 31 16:59:21 2003
-%%For: fetter (Prof. Walter Fetter)
-%%LanguageLevel: 1
-%%Orientation: Portrait
-%%Pages: 1
-%%PageOrder: Ascend
-%%IncludeFeature: *PageSize a4
-%%EndComments
-%%BeginProlog
-
-/PcbDict 200 dict def
-PcbDict begin
-PcbDict /DictMatrix matrix put
-
-% some constants
-/Black {0.0 mysetgray} def
-/White {1.0 mysetgray} def
-/TAN {0.207106781} def
-/MTAN {-0.207106781} def
-
-% draw a filled polygon
-% get (x,y)... and number of points from stack
-/PO {
-       /number exch def
-       newpath
-       moveto
-       number 1 sub { lineto } repeat
-       closepath fill stroke
-} def
-
-/P {
-% draw a pin-polygon,
-% get x, y and thickness from stack
-       /thickness exch def /y exch def /x exch def
-       gsave x y translate thickness thickness scale
-       0.5  MTAN
-       TAN  -0.5
-       MTAN -0.5
-       -0.5 MTAN
-       -0.5 TAN
-       MTAN 0.5
-       TAN  0.5
-       0.5  TAN
-       8 PO grestore
-} def
-
-/PV {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       x y thickness P
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/PVR {
-% pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       gsave 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-% draw drilling whole
-       White
-       newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/PVSQ {
-% square pin or via, x, y and thickness are on the stack
-       /drillinghole exch def /thickness exch def /y exch def /x exch def
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-% draw drilling whole
-       gsave White 0 setlinewidth
-   newpath x y drillinghole 2 div 0 360 arc closepath fill stroke
-   grestore
-} def
-
-/DH {
-% drill helpher; x, y, hole, copper-thickness are on stack
-       /copper exch def /hole exch def /y exch def /x exch def
-   gsave copper setlinewidth
-   newpath x y hole copper add 2 div 0 360 arc closepath stroke
-   grestore
-} def
-
-/L {
-% line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/B {
-% filled box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-} def
-
-/PA {
-% pad, same as line
-       L
-} def
-
-/A {
-% arc for elements, get x, y, width, height, thickness
-% startangle and delta-angle from stack
-  /delta exch def /start exch def /thickness exch def
-  /height exch def /width exch def /y exch def /x exch def
-% draw it
-       gsave thickness setlinewidth /save DictMatrix currentmatrix def
-% scaling is less then zero because the coord system has to be swapped
-       x y translate width neg height scale
-       0 0 1 start start delta add arc save setmatrix stroke
-       grestore
-} def
-
-/CLRPV {
-% clears a pin/via for groundplane; x,y and thickness are on stack
-   /thickness exch def /y exch def /x exch def
-       gsave White x y thickness P grestore
-} def
-
-/CLRPVSQ {
-% clears a square pin, x,y and thickness are on stack
-       /thickness exch def /y exch def /x exch def
-   gsave White
-       newpath x thickness 2 div sub y thickness 2 div sub moveto
-       thickness 0 rlineto 0 thickness rlineto
-       thickness neg 0 rlineto closepath fill stroke
-       grestore
-} def
-
-/CLRPVR {
-% clears a round pin/via for groundplane; x,y and thickness are on the stack
-       /thickness exch def /y exch def /x exch def
-       gsave White 0 setlinewidth
-       newpath x y thickness 2 div 0 360 arc closepath fill stroke
-       grestore
-} def
-
-/CLRPA {
-% clear line, get x1, y1, x2, y2 and thickness from stack
-       /thick exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White thick setlinewidth
-       x1 y1 moveto x2 y2 lineto stroke
-       grestore
-} def
-
-/CLRB {
-% cleared box, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-       gsave White newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-       grestore
-} def
-
-/FILL {
-% draw a filled rectangle for the ground plane
-% get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath fill stroke
-   grestore
-} def
-
-/Outline {
-% outline, get x1, y1, x2 and y2 from stack
-       /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-       newpath
-       x1 y1 moveto x2 y1 lineto x2 y2 lineto x1 y2 lineto
-       closepath stroke
-   grestore
-} def
-
-/Alignment {
-% alignment targets, get x1, y1, x2, y2 and distance from stack
-       /dis exch def /y2 exch def /x2 exch def /y1 exch def /x1 exch def
-   gsave 0.175 setlinewidth
-   newpath x1 y1 dis add moveto 0 dis neg rlineto dis 0 rlineto stroke
-   newpath x1 y2 dis sub moveto 0 dis rlineto dis 0 rlineto stroke
-   newpath x2 y2 dis sub moveto 0 dis rlineto dis neg 0 rlineto stroke
-   newpath x2 y1 dis add moveto 0 dis neg rlineto dis neg 0 rlineto stroke
-   grestore
-} def
-
-/mysetgray { setgray } def
-/mysetrgbcolor { setrgbcolor } def
-
-%%EndProlog
-%%BeginDefaults
-%%EndDefaults
-%%BeginSetup
-a4
-0.0 setlinewidth
-1 setlinecap
-Black
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-%%EndPageSetup
-gsave White newpath
-44 277 moveto 550 277 lineto 550 564 lineto 44 564 lineto
-closepath fill stroke grestore
-% PCBMIN(35,40), PCBMAX(7035,3997)
-% PCBOFFSET(630,3867), PCBSCALE(1.00000)
-% PCBSTARTDATA --- do not remove ---
-gsave
-0.07200 0.07200 scale
-630 3867 translate
-1.000 1.000 scale
-0 3957 translate
-1 -1 scale
--35 -40 translate
-/Color {0.000 0.000 0.000 mysetrgbcolor} def Color
-grestore
-% PCBENDDATA --- do not remove ---
-showpage
-%%EOF
diff --git a/doc/aicback0lrc.ps b/doc/aicback0lrc.ps
deleted file mode 100644 (file)
index 3662ac2..0000000
+++ /dev/null
@@ -1,7697 +0,0 @@
-%!PS-Adobe-3.0
-%%Creator: Wine PostScript Driver
-%%Title: H:\src\aic-1.1.0\doc\aicback0lrc.dwg
-%%BoundingBox: 18 36 576 805
-%%Pages: (atend)
-%%EndComments
-%%BeginProlog
-/tmpmtrx matrix def
-/hatch {
-  pathbbox
-  /b exch def /r exch def /t exch def /l exch def /gap 32 def
-  l cvi gap idiv gap mul
-  gap
-  r cvi gap idiv gap mul
-  {t moveto 0 b t sub rlineto}
-  for
-} bind def
-/B {pop pop pop pop} def
-/havetype42gdir {version cvi 2015 ge} bind def
-%%EndProlog
-%%BeginSetup
-mark {
-%%BeginFeature: *PageSize A4
-<</PageSize[595 842]/ImagingBBox null>>setpagedevice
-%%EndFeature
-} stopped cleartomark
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-/pgsave save def
-72 300 div 72 300 div scale
-75 3358 translate
-1 -1 scale
-0 rotate
-%%EndPageSetup
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-9 10 moveto
-9 3198 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-9 3198 moveto
-950 3198 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-950 3198 moveto
-950 10 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-950 10 moveto
-9 10 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 229 moveto
-133 453 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 475 moveto
-378 475 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-400 453 moveto
-400 229 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 207 moveto
-155 207 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-266 455 moveto
-286 453 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-286 453 moveto
-305 448 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 448 moveto
-323 440 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-323 440 moveto
-339 428 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-339 428 moveto
-353 414 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-353 414 moveto
-365 398 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 398 moveto
-373 380 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 380 moveto
-378 361 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 361 moveto
-380 341 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 341 moveto
-378 321 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 321 moveto
-373 302 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 302 moveto
-365 284 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 284 moveto
-353 268 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-353 268 moveto
-339 254 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-339 254 moveto
-323 242 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-323 242 moveto
-305 234 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 234 moveto
-286 229 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-286 229 moveto
-266 227 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-266 227 moveto
-246 229 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-246 229 moveto
-227 234 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-227 234 moveto
-209 242 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-209 242 moveto
-193 254 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 254 moveto
-179 268 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-179 268 moveto
-168 284 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-168 284 moveto
-159 302 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-159 302 moveto
-154 321 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-154 321 moveto
-152 341 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-152 341 moveto
-154 361 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-154 361 moveto
-159 380 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-159 380 moveto
-168 398 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-168 398 moveto
-179 414 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-179 414 moveto
-193 428 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 428 moveto
-209 440 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-209 440 moveto
-227 448 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-227 448 moveto
-246 453 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-246 453 moveto
-266 455 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-159 245 moveto
-165 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 244 moveto
-169 239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 239 moveto
-170 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-170 233 moveto
-169 228 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 228 moveto
-165 223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 223 moveto
-159 222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-159 222 moveto
-153 223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 223 moveto
-148 228 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 228 moveto
-147 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 233 moveto
-148 239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 239 moveto
-153 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 244 moveto
-159 245 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-159 460 moveto
-165 459 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 459 moveto
-169 454 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 454 moveto
-170 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-170 449 moveto
-169 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 443 moveto
-165 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 438 moveto
-159 437 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-159 437 moveto
-153 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 438 moveto
-148 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 443 moveto
-147 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 449 moveto
-148 454 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 454 moveto
-153 459 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 459 moveto
-159 460 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 460 moveto
-379 459 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 459 moveto
-384 454 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 454 moveto
-385 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 449 moveto
-384 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 443 moveto
-379 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 438 moveto
-374 437 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 437 moveto
-368 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 438 moveto
-363 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 443 moveto
-362 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-362 449 moveto
-363 454 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 454 moveto
-368 459 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 459 moveto
-374 460 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 245 moveto
-379 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 244 moveto
-384 239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 239 moveto
-385 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 233 moveto
-384 228 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 228 moveto
-379 223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 223 moveto
-374 222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 222 moveto
-368 223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 223 moveto
-363 228 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 228 moveto
-362 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-362 233 moveto
-363 239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 239 moveto
-368 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 244 moveto
-374 245 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-378 475 moveto
-386 473 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-386 473 moveto
-393 468 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-393 468 moveto
-398 461 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-398 461 moveto
-400 453 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 453 moveto
-134 461 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-134 461 moveto
-139 468 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-139 468 moveto
-146 473 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-146 473 moveto
-155 475 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 207 moveto
-146 209 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-146 209 moveto
-139 214 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-139 214 moveto
-134 221 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-134 221 moveto
-133 229 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-400 229 moveto
-398 221 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-398 221 moveto
-393 214 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-393 214 moveto
-386 209 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-386 209 moveto
-378 207 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-586 230 moveto
-586 452 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-597 463 moveto
-818 463 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-829 452 moveto
-829 230 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-818 219 moveto
-597 219 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-609 254 moveto
-614 252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 252 moveto
-619 248 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 248 moveto
-620 242 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-620 242 moveto
-619 236 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 236 moveto
-614 232 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 232 moveto
-609 230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 230 moveto
-603 232 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 232 moveto
-598 236 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 236 moveto
-597 242 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-597 242 moveto
-598 248 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 248 moveto
-603 252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 252 moveto
-609 254 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 452 moveto
-614 450 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 450 moveto
-619 446 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 446 moveto
-620 440 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-620 440 moveto
-619 434 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 434 moveto
-614 430 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 430 moveto
-609 428 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 428 moveto
-603 430 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 430 moveto
-598 434 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 434 moveto
-597 440 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-597 440 moveto
-598 446 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 446 moveto
-603 450 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 450 moveto
-609 452 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 452 moveto
-812 450 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 450 moveto
-817 446 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 446 moveto
-818 440 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-818 440 moveto
-817 434 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 434 moveto
-812 430 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 430 moveto
-807 428 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 428 moveto
-801 430 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 430 moveto
-796 434 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 434 moveto
-795 440 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-795 440 moveto
-796 446 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 446 moveto
-801 450 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 450 moveto
-807 452 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 254 moveto
-812 252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 252 moveto
-817 248 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 248 moveto
-818 242 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-818 242 moveto
-817 236 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 236 moveto
-812 232 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 232 moveto
-807 230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 230 moveto
-801 232 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 232 moveto
-796 236 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 236 moveto
-795 242 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-795 242 moveto
-796 248 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 248 moveto
-801 252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 252 moveto
-807 254 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-708 443 moveto
-728 441 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-728 441 moveto
-747 436 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-747 436 moveto
-764 426 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-764 426 moveto
-780 413 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-780 413 moveto
-793 398 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-793 398 moveto
-802 380 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-802 380 moveto
-808 361 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-808 361 moveto
-810 341 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-810 341 moveto
-808 321 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-808 321 moveto
-802 302 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-802 302 moveto
-793 284 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-793 284 moveto
-780 269 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-780 269 moveto
-764 256 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-764 256 moveto
-747 246 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-747 246 moveto
-728 241 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-728 241 moveto
-708 239 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-708 239 moveto
-688 241 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 241 moveto
-668 246 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-668 246 moveto
-651 256 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-651 256 moveto
-635 269 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 269 moveto
-623 284 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-623 284 moveto
-613 302 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 302 moveto
-607 321 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-607 321 moveto
-605 341 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 341 moveto
-607 361 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-607 361 moveto
-613 380 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 380 moveto
-623 398 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-623 398 moveto
-635 413 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 413 moveto
-651 426 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-651 426 moveto
-668 436 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-668 436 moveto
-688 441 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 441 moveto
-708 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-266 468 moveto
-288 466 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-288 466 moveto
-310 460 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-310 460 moveto
-330 451 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-330 451 moveto
-348 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-348 438 moveto
-363 423 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 423 moveto
-376 405 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-376 405 moveto
-385 384 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 384 moveto
-391 363 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-391 363 moveto
-393 341 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 341 moveto
-391 319 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-391 319 moveto
-385 298 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 298 moveto
-376 277 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-376 277 moveto
-363 259 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 259 moveto
-348 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-348 244 moveto
-330 231 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-330 231 moveto
-310 222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-310 222 moveto
-288 216 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-288 216 moveto
-266 214 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-266 214 moveto
-244 216 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-244 216 moveto
-223 222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-223 222 moveto
-203 231 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-203 231 moveto
-185 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-185 244 moveto
-169 259 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 259 moveto
-156 277 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-156 277 moveto
-147 298 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 298 moveto
-141 319 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-141 319 moveto
-139 341 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-139 341 moveto
-141 363 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-141 363 moveto
-147 384 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 384 moveto
-156 405 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-156 405 moveto
-169 423 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 423 moveto
-185 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-185 438 moveto
-203 451 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-203 451 moveto
-223 460 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-223 460 moveto
-244 466 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-244 466 moveto
-266 468 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-708 456 moveto
-728 455 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-728 455 moveto
-747 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-747 449 moveto
-765 441 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-765 441 moveto
-782 429 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-782 429 moveto
-796 415 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 415 moveto
-807 399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 399 moveto
-816 380 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-816 380 moveto
-821 361 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-821 361 moveto
-823 341 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-823 341 moveto
-821 321 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-821 321 moveto
-816 302 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-816 302 moveto
-807 283 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 283 moveto
-796 267 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 267 moveto
-782 253 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-782 253 moveto
-765 241 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-765 241 moveto
-747 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-747 233 moveto
-728 227 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-728 227 moveto
-708 226 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-708 226 moveto
-688 227 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-688 227 moveto
-668 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-668 233 moveto
-650 241 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-650 241 moveto
-634 253 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-634 253 moveto
-619 267 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 267 moveto
-608 283 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-608 283 moveto
-599 302 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 302 moveto
-594 321 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 321 moveto
-592 341 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 341 moveto
-594 361 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 361 moveto
-599 380 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 380 moveto
-608 399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-608 399 moveto
-619 415 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 415 moveto
-634 429 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-634 429 moveto
-650 441 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-650 441 moveto
-668 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-668 449 moveto
-688 455 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-688 455 moveto
-708 456 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-861 237 moveto
-845 237 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 237 moveto
-842 240 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 240 moveto
-842 246 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 246 moveto
-845 249 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 249 moveto
-861 249 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 255 moveto
-861 267 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 261 moveto
-842 261 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 283 moveto
-851 286 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 286 moveto
-842 286 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 286 moveto
-842 277 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 277 moveto
-845 274 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 274 moveto
-858 274 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 274 moveto
-861 277 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 277 moveto
-861 286 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 314 moveto
-845 310 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 310 moveto
-858 310 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 310 moveto
-861 314 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 314 moveto
-861 317 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 317 moveto
-858 320 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 320 moveto
-845 320 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 320 moveto
-842 317 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 317 moveto
-842 314 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 326 moveto
-861 329 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 329 moveto
-842 329 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 326 moveto
-842 332 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 341 moveto
-845 338 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 338 moveto
-848 338 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 338 moveto
-851 341 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 341 moveto
-851 347 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 347 moveto
-854 350 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 350 moveto
-858 350 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 350 moveto
-861 347 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 347 moveto
-861 341 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 341 moveto
-858 338 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 338 moveto
-854 338 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 338 moveto
-851 341 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 347 moveto
-848 350 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 350 moveto
-845 350 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 350 moveto
-842 347 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 347 moveto
-842 341 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 375 moveto
-861 378 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 378 moveto
-861 384 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 384 moveto
-858 387 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 387 moveto
-854 387 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 387 moveto
-851 384 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 384 moveto
-851 378 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 378 moveto
-848 375 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 375 moveto
-842 375 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 375 moveto
-842 387 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 393 moveto
-861 396 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 396 moveto
-861 403 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 403 moveto
-858 406 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 406 moveto
-854 406 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 406 moveto
-851 403 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 403 moveto
-851 399 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 403 moveto
-848 406 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 406 moveto
-845 406 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 406 moveto
-842 403 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 403 moveto
-842 396 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 396 moveto
-845 393 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 238 moveto
-419 238 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 238 moveto
-416 241 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 241 moveto
-416 247 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 247 moveto
-419 251 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 251 moveto
-434 251 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 257 moveto
-434 269 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 263 moveto
-416 263 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 284 moveto
-425 287 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 287 moveto
-416 287 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 287 moveto
-416 278 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 278 moveto
-419 275 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 275 moveto
-431 275 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 275 moveto
-434 278 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 278 moveto
-434 287 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 315 moveto
-419 312 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 312 moveto
-431 312 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 312 moveto
-434 315 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 315 moveto
-434 318 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 318 moveto
-431 321 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 321 moveto
-419 321 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 321 moveto
-416 318 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 318 moveto
-416 315 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 327 moveto
-434 330 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 330 moveto
-434 336 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 336 moveto
-431 340 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 340 moveto
-428 340 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 340 moveto
-425 336 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 336 moveto
-425 330 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 330 moveto
-422 327 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 327 moveto
-416 327 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 327 moveto
-416 340 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 349 moveto
-419 346 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 346 moveto
-431 346 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 346 moveto
-434 349 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 349 moveto
-434 352 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 352 moveto
-431 355 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 355 moveto
-419 355 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 355 moveto
-416 352 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 352 moveto
-416 349 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 379 moveto
-434 382 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 382 moveto
-434 389 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 389 moveto
-431 392 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 392 moveto
-428 392 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 392 moveto
-425 389 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 389 moveto
-425 382 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 382 moveto
-422 379 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 379 moveto
-416 379 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 379 moveto
-416 392 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 401 moveto
-419 398 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 398 moveto
-422 398 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 398 moveto
-425 401 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 401 moveto
-425 407 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 407 moveto
-428 410 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 410 moveto
-431 410 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 410 moveto
-434 407 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 407 moveto
-434 401 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 401 moveto
-431 398 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 398 moveto
-428 398 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 398 moveto
-425 401 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 407 moveto
-422 410 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 410 moveto
-419 410 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 410 moveto
-416 407 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 407 moveto
-416 401 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-829 230 moveto
-828 225 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-828 225 moveto
-824 221 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-824 221 moveto
-818 219 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-818 463 moveto
-824 461 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-824 461 moveto
-828 457 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-828 457 moveto
-829 452 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-586 452 moveto
-587 457 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-587 457 moveto
-591 461 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-591 461 moveto
-597 463 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-597 219 moveto
-591 221 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-591 221 moveto
-587 225 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-587 225 moveto
-586 230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-266 910 moveto
-288 908 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-288 908 moveto
-310 902 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-310 902 moveto
-330 893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-330 893 moveto
-348 880 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-348 880 moveto
-363 865 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 865 moveto
-376 846 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-376 846 moveto
-385 826 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 826 moveto
-391 805 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-391 805 moveto
-393 783 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 783 moveto
-391 761 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-391 761 moveto
-385 739 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 739 moveto
-376 719 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-376 719 moveto
-363 701 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 701 moveto
-348 686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-348 686 moveto
-330 673 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-330 673 moveto
-310 663 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-310 663 moveto
-288 658 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-288 658 moveto
-266 656 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-266 656 moveto
-244 658 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-244 658 moveto
-223 663 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-223 663 moveto
-203 673 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-203 673 moveto
-185 686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-185 686 moveto
-169 701 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 701 moveto
-156 719 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-156 719 moveto
-147 739 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 739 moveto
-141 761 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-141 761 moveto
-139 783 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-139 783 moveto
-141 805 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-141 805 moveto
-147 826 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 826 moveto
-156 846 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-156 846 moveto
-169 865 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 865 moveto
-185 880 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-185 880 moveto
-203 893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-203 893 moveto
-223 902 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-223 902 moveto
-244 908 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-244 908 moveto
-266 910 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-266 897 moveto
-286 895 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-286 895 moveto
-305 890 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 890 moveto
-323 881 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-323 881 moveto
-339 870 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-339 870 moveto
-353 856 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-353 856 moveto
-365 840 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 840 moveto
-373 822 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 822 moveto
-378 803 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 803 moveto
-380 783 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 783 moveto
-378 763 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 763 moveto
-373 744 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 744 moveto
-365 726 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 726 moveto
-353 710 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-353 710 moveto
-339 696 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-339 696 moveto
-323 684 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-323 684 moveto
-305 676 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 676 moveto
-286 671 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-286 671 moveto
-266 669 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-266 669 moveto
-246 671 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-246 671 moveto
-227 676 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-227 676 moveto
-209 684 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-209 684 moveto
-193 696 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 696 moveto
-179 710 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-179 710 moveto
-168 726 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-168 726 moveto
-159 744 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-159 744 moveto
-154 763 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-154 763 moveto
-152 783 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-152 783 moveto
-154 803 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-154 803 moveto
-159 822 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-159 822 moveto
-168 840 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-168 840 moveto
-179 856 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-179 856 moveto
-193 870 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 870 moveto
-209 881 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-209 881 moveto
-227 890 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-227 890 moveto
-246 895 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-246 895 moveto
-266 897 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 649 moveto
-155 649 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 917 moveto
-378 917 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 671 moveto
-133 894 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-159 687 moveto
-165 686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 686 moveto
-169 681 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 681 moveto
-170 675 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-170 675 moveto
-169 669 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 669 moveto
-165 665 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 665 moveto
-159 664 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-159 664 moveto
-153 665 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 665 moveto
-148 669 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 669 moveto
-147 675 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 675 moveto
-148 681 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 681 moveto
-153 686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 686 moveto
-159 687 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-155 649 moveto
-146 651 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-146 651 moveto
-139 656 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-139 656 moveto
-134 663 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-134 663 moveto
-133 671 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 894 moveto
-134 903 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-134 903 moveto
-139 910 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-139 910 moveto
-146 915 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-146 915 moveto
-155 917 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-159 902 moveto
-165 901 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 901 moveto
-169 896 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 896 moveto
-170 890 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-170 890 moveto
-169 884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 884 moveto
-165 880 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 880 moveto
-159 879 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-159 879 moveto
-153 880 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 880 moveto
-148 884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 884 moveto
-147 890 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 890 moveto
-148 896 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 896 moveto
-153 901 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 901 moveto
-159 902 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-597 905 moveto
-818 905 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-818 661 moveto
-597 661 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-708 885 moveto
-728 883 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-728 883 moveto
-747 877 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-747 877 moveto
-764 868 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-764 868 moveto
-780 855 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-780 855 moveto
-793 840 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-793 840 moveto
-802 822 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-802 822 moveto
-808 803 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-808 803 moveto
-810 783 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-810 783 moveto
-808 763 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-808 763 moveto
-802 744 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-802 744 moveto
-793 726 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-793 726 moveto
-780 710 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-780 710 moveto
-764 698 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-764 698 moveto
-747 688 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-747 688 moveto
-728 682 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-728 682 moveto
-708 680 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-708 680 moveto
-688 682 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 682 moveto
-668 688 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-668 688 moveto
-651 698 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-651 698 moveto
-635 710 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 710 moveto
-623 726 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-623 726 moveto
-613 744 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 744 moveto
-607 763 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-607 763 moveto
-605 783 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 783 moveto
-607 803 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-607 803 moveto
-613 822 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 822 moveto
-623 840 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-623 840 moveto
-635 855 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 855 moveto
-651 868 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-651 868 moveto
-668 877 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-668 877 moveto
-688 883 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 883 moveto
-708 885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-708 898 moveto
-728 896 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-728 896 moveto
-747 891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-747 891 moveto
-765 883 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-765 883 moveto
-782 871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-782 871 moveto
-796 857 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 857 moveto
-807 840 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 840 moveto
-816 822 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-816 822 moveto
-821 803 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-821 803 moveto
-823 783 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-823 783 moveto
-821 763 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-821 763 moveto
-816 743 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-816 743 moveto
-807 725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 725 moveto
-796 709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 709 moveto
-782 695 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-782 695 moveto
-765 683 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-765 683 moveto
-747 675 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-747 675 moveto
-728 669 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-728 669 moveto
-708 668 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-708 668 moveto
-688 669 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-688 669 moveto
-668 675 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-668 675 moveto
-650 683 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-650 683 moveto
-634 695 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-634 695 moveto
-619 709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 709 moveto
-608 725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-608 725 moveto
-599 743 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 743 moveto
-594 763 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 763 moveto
-592 783 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 783 moveto
-594 803 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 803 moveto
-599 822 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 822 moveto
-608 840 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-608 840 moveto
-619 857 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 857 moveto
-634 871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-634 871 moveto
-650 883 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-650 883 moveto
-668 891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-668 891 moveto
-688 896 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-688 896 moveto
-708 898 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-586 672 moveto
-586 894 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-400 894 moveto
-400 671 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-434 680 moveto
-419 680 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 680 moveto
-416 683 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 683 moveto
-416 689 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 689 moveto
-419 692 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 692 moveto
-434 692 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 699 moveto
-434 711 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 705 moveto
-416 705 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 726 moveto
-425 729 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 729 moveto
-416 729 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 729 moveto
-416 720 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 720 moveto
-419 717 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 717 moveto
-431 717 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 717 moveto
-434 720 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 720 moveto
-434 729 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 757 moveto
-419 754 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 754 moveto
-431 754 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 754 moveto
-434 757 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 757 moveto
-434 760 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 760 moveto
-431 763 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 763 moveto
-419 763 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 763 moveto
-416 760 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 760 moveto
-416 757 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 769 moveto
-434 772 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 772 moveto
-434 778 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 778 moveto
-431 781 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 781 moveto
-428 781 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 781 moveto
-425 778 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 778 moveto
-425 772 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 772 moveto
-422 769 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 769 moveto
-416 769 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 769 moveto
-416 781 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 791 moveto
-419 788 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 788 moveto
-431 788 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 788 moveto
-434 791 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 791 moveto
-434 794 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 794 moveto
-431 797 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 797 moveto
-419 797 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 797 moveto
-416 794 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 794 moveto
-416 791 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 821 moveto
-434 824 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 824 moveto
-434 830 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 830 moveto
-431 834 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 834 moveto
-428 834 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 834 moveto
-425 830 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 830 moveto
-425 824 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 824 moveto
-422 821 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 821 moveto
-416 821 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 821 moveto
-416 834 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 843 moveto
-419 840 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 840 moveto
-422 840 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 840 moveto
-425 843 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 843 moveto
-425 849 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 849 moveto
-428 852 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 852 moveto
-431 852 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 852 moveto
-434 849 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 849 moveto
-434 843 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 843 moveto
-431 840 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 840 moveto
-428 840 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 840 moveto
-425 843 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 849 moveto
-422 852 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 852 moveto
-419 852 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 852 moveto
-416 849 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 849 moveto
-416 843 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-374 687 moveto
-379 686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 686 moveto
-384 681 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 681 moveto
-385 675 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 675 moveto
-384 669 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 669 moveto
-379 665 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 665 moveto
-374 664 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 664 moveto
-368 665 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 665 moveto
-363 669 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 669 moveto
-362 675 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-362 675 moveto
-363 681 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 681 moveto
-368 686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 686 moveto
-374 687 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-400 671 moveto
-398 663 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-398 663 moveto
-393 656 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-393 656 moveto
-386 651 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-386 651 moveto
-378 649 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-609 696 moveto
-614 694 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 694 moveto
-619 690 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 690 moveto
-620 684 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-620 684 moveto
-619 678 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 678 moveto
-614 674 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 674 moveto
-609 672 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 672 moveto
-603 674 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 674 moveto
-598 678 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 678 moveto
-597 684 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-597 684 moveto
-598 690 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 690 moveto
-603 694 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 694 moveto
-609 696 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-597 661 moveto
-591 662 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-591 662 moveto
-587 667 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-587 667 moveto
-586 672 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 917 moveto
-386 915 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-386 915 moveto
-393 910 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-393 910 moveto
-398 903 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-398 903 moveto
-400 894 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-374 902 moveto
-379 901 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 901 moveto
-384 896 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 896 moveto
-385 890 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 890 moveto
-384 884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 884 moveto
-379 880 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 880 moveto
-374 879 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 879 moveto
-368 880 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 880 moveto
-363 884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 884 moveto
-362 890 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-362 890 moveto
-363 896 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 896 moveto
-368 901 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 901 moveto
-374 902 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 894 moveto
-614 892 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 892 moveto
-619 888 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 888 moveto
-620 882 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-620 882 moveto
-619 876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 876 moveto
-614 872 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 872 moveto
-609 870 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 870 moveto
-603 872 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 872 moveto
-598 876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 876 moveto
-597 882 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-597 882 moveto
-598 888 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 888 moveto
-603 892 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 892 moveto
-609 894 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-586 894 moveto
-587 899 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-587 899 moveto
-591 903 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-591 903 moveto
-597 905 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-829 894 moveto
-829 672 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-861 679 moveto
-845 679 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 679 moveto
-842 682 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 682 moveto
-842 688 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 688 moveto
-845 691 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 691 moveto
-861 691 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 697 moveto
-861 709 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 703 moveto
-842 703 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 725 moveto
-851 728 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 728 moveto
-842 728 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 728 moveto
-842 719 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 719 moveto
-845 715 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 715 moveto
-858 715 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 715 moveto
-861 719 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 719 moveto
-861 728 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 755 moveto
-845 752 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 752 moveto
-858 752 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 752 moveto
-861 755 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 755 moveto
-861 758 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 758 moveto
-858 762 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 762 moveto
-845 762 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 762 moveto
-842 758 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 758 moveto
-842 755 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 768 moveto
-861 771 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 771 moveto
-842 771 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 768 moveto
-842 774 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 783 moveto
-845 780 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 780 moveto
-848 780 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 780 moveto
-851 783 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 783 moveto
-851 789 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 789 moveto
-854 792 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 792 moveto
-858 792 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 792 moveto
-861 789 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 789 moveto
-861 783 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 783 moveto
-858 780 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 780 moveto
-854 780 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 780 moveto
-851 783 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 789 moveto
-848 792 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 792 moveto
-845 792 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 792 moveto
-842 789 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 789 moveto
-842 783 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 817 moveto
-861 820 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 820 moveto
-861 826 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 826 moveto
-858 829 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 829 moveto
-854 829 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 829 moveto
-851 826 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 826 moveto
-851 820 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 820 moveto
-848 817 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 817 moveto
-842 817 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 817 moveto
-842 829 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 835 moveto
-861 838 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 838 moveto
-861 844 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 844 moveto
-858 847 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 847 moveto
-854 847 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 847 moveto
-851 844 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 844 moveto
-851 841 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 844 moveto
-848 847 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 847 moveto
-845 847 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 847 moveto
-842 844 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 844 moveto
-842 838 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 838 moveto
-845 835 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-807 696 moveto
-812 694 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 694 moveto
-817 690 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 690 moveto
-818 684 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-818 684 moveto
-817 678 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 678 moveto
-812 674 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 674 moveto
-807 672 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 672 moveto
-801 674 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 674 moveto
-796 678 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 678 moveto
-795 684 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-795 684 moveto
-796 690 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 690 moveto
-801 694 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 694 moveto
-807 696 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-829 672 moveto
-828 667 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-828 667 moveto
-824 662 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-824 662 moveto
-818 661 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-807 894 moveto
-812 892 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 892 moveto
-817 888 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 888 moveto
-818 882 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-818 882 moveto
-817 876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 876 moveto
-812 872 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 872 moveto
-807 870 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 870 moveto
-801 872 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 872 moveto
-796 876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 876 moveto
-795 882 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-795 882 moveto
-796 888 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 888 moveto
-801 892 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 892 moveto
-807 894 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-818 905 moveto
-824 903 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-824 903 moveto
-828 899 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-828 899 moveto
-829 894 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2900 moveto
-209 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-121 2915 moveto
-121 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 3088 moveto
-119 2867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-211 2867 moveto
-211 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2900 moveto
-121 2915 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2900 moveto
-172 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2898 moveto
-178 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2893 moveto
-180 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2885 moveto
-178 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2878 moveto
-172 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2873 moveto
-165 2871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2871 moveto
-158 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2873 moveto
-152 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2878 moveto
-150 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2885 moveto
-152 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2893 moveto
-158 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2898 moveto
-165 2900 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2867 moveto
-211 2867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 3055 moveto
-121 3040 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 3084 moveto
-172 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 3082 moveto
-178 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 3077 moveto
-180 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 3070 moveto
-178 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 3062 moveto
-172 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 3057 moveto
-165 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 3055 moveto
-158 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 3057 moveto
-152 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 3062 moveto
-150 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 3070 moveto
-152 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 3077 moveto
-158 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 3082 moveto
-165 3084 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-211 3088 moveto
-119 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2900 moveto
-430 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-342 2915 moveto
-342 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 3088 moveto
-340 2867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-432 2867 moveto
-432 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2900 moveto
-342 2915 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2900 moveto
-393 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2898 moveto
-398 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2893 moveto
-400 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2885 moveto
-398 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2878 moveto
-393 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2873 moveto
-386 2871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2871 moveto
-378 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2873 moveto
-373 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2878 moveto
-371 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2885 moveto
-373 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2893 moveto
-378 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2898 moveto
-386 2900 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2867 moveto
-432 2867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 3055 moveto
-342 3040 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 3084 moveto
-393 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 3082 moveto
-398 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 3077 moveto
-400 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 3070 moveto
-398 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 3062 moveto
-393 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 3057 moveto
-386 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 3055 moveto
-378 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 3057 moveto
-373 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 3062 moveto
-371 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 3070 moveto
-373 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 3077 moveto
-378 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 3082 moveto
-386 3084 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-432 3088 moveto
-340 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2900 moveto
-651 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 2915 moveto
-562 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 3088 moveto
-560 2867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-652 2867 moveto
-652 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2900 moveto
-562 2915 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2900 moveto
-614 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2898 moveto
-619 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2893 moveto
-621 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2885 moveto
-619 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2878 moveto
-614 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2873 moveto
-606 2871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2871 moveto
-599 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2873 moveto
-594 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2878 moveto
-592 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2885 moveto
-594 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2893 moveto
-599 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2898 moveto
-606 2900 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2867 moveto
-652 2867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 3055 moveto
-562 3040 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 3084 moveto
-614 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 3082 moveto
-619 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 3077 moveto
-621 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 3070 moveto
-619 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 3062 moveto
-614 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 3057 moveto
-606 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 3055 moveto
-599 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 3057 moveto
-594 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 3062 moveto
-592 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 3070 moveto
-594 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 3077 moveto
-599 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 3082 moveto
-606 3084 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-652 3088 moveto
-560 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2900 moveto
-871 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-783 2915 moveto
-783 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 3088 moveto
-781 2867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-873 2867 moveto
-873 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2900 moveto
-783 2915 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2900 moveto
-834 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2898 moveto
-840 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2893 moveto
-842 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2885 moveto
-840 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2878 moveto
-834 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2873 moveto
-827 2871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2871 moveto
-820 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2873 moveto
-814 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2878 moveto
-812 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2885 moveto
-814 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2893 moveto
-820 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2898 moveto
-827 2900 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2867 moveto
-873 2867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 3055 moveto
-783 3040 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 3084 moveto
-834 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 3082 moveto
-840 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 3077 moveto
-842 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 3070 moveto
-840 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 3062 moveto
-834 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 3057 moveto
-827 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 3055 moveto
-820 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 3057 moveto
-814 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 3062 moveto
-812 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 3070 moveto
-814 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 3077 moveto
-820 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 3082 moveto
-827 3084 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-873 3088 moveto
-781 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2569 moveto
-209 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-121 2583 moveto
-121 2709 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2757 moveto
-119 2536 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-211 2536 moveto
-211 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2569 moveto
-121 2583 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2569 moveto
-172 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2567 moveto
-178 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2561 moveto
-180 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2554 moveto
-178 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2547 moveto
-172 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2541 moveto
-165 2539 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2539 moveto
-158 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2541 moveto
-152 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2547 moveto
-150 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2554 moveto
-152 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2561 moveto
-158 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2567 moveto
-165 2569 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2536 moveto
-211 2536 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2723 moveto
-121 2709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2753 moveto
-172 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2751 moveto
-178 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2745 moveto
-180 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2738 moveto
-178 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2731 moveto
-172 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2725 moveto
-165 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2723 moveto
-158 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2725 moveto
-152 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2731 moveto
-150 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2738 moveto
-152 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2745 moveto
-158 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2751 moveto
-165 2753 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-211 2757 moveto
-119 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2569 moveto
-430 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-342 2583 moveto
-342 2709 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2757 moveto
-340 2536 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-432 2536 moveto
-432 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2569 moveto
-342 2583 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2569 moveto
-393 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2567 moveto
-398 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2561 moveto
-400 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2554 moveto
-398 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2547 moveto
-393 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2541 moveto
-386 2539 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2539 moveto
-378 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2541 moveto
-373 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2547 moveto
-371 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2554 moveto
-373 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2561 moveto
-378 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2567 moveto
-386 2569 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2536 moveto
-432 2536 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2723 moveto
-342 2709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2753 moveto
-393 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2751 moveto
-398 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2745 moveto
-400 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2738 moveto
-398 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2731 moveto
-393 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2725 moveto
-386 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2723 moveto
-378 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2725 moveto
-373 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2731 moveto
-371 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2738 moveto
-373 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2745 moveto
-378 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2751 moveto
-386 2753 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-432 2757 moveto
-340 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2569 moveto
-651 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 2583 moveto
-562 2709 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2757 moveto
-560 2536 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-652 2536 moveto
-652 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2569 moveto
-562 2583 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2569 moveto
-614 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2567 moveto
-619 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2561 moveto
-621 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2554 moveto
-619 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2547 moveto
-614 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2541 moveto
-606 2539 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2539 moveto
-599 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2541 moveto
-594 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2547 moveto
-592 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2554 moveto
-594 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2561 moveto
-599 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2567 moveto
-606 2569 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2536 moveto
-652 2536 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2723 moveto
-562 2709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2753 moveto
-614 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2751 moveto
-619 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2745 moveto
-621 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2738 moveto
-619 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2731 moveto
-614 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2725 moveto
-606 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2723 moveto
-599 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2725 moveto
-594 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2731 moveto
-592 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2738 moveto
-594 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2745 moveto
-599 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2751 moveto
-606 2753 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-652 2757 moveto
-560 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2569 moveto
-871 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-783 2583 moveto
-783 2709 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2757 moveto
-781 2536 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-873 2536 moveto
-873 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2569 moveto
-783 2583 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2569 moveto
-834 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2567 moveto
-840 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2561 moveto
-842 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2554 moveto
-840 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2547 moveto
-834 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2541 moveto
-827 2539 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2539 moveto
-820 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2541 moveto
-814 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2547 moveto
-812 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2554 moveto
-814 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2561 moveto
-820 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2567 moveto
-827 2569 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2536 moveto
-873 2536 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2723 moveto
-783 2709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2753 moveto
-834 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2751 moveto
-840 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2745 moveto
-842 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2738 moveto
-840 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2731 moveto
-834 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2725 moveto
-827 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2723 moveto
-820 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2725 moveto
-814 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2731 moveto
-812 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2738 moveto
-814 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2745 moveto
-820 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2751 moveto
-827 2753 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-873 2757 moveto
-781 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2237 moveto
-209 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-121 2252 moveto
-121 2377 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2425 moveto
-119 2204 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-211 2204 moveto
-211 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2237 moveto
-121 2252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2237 moveto
-172 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2235 moveto
-178 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2230 moveto
-180 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2223 moveto
-178 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2215 moveto
-172 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2210 moveto
-165 2208 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2208 moveto
-158 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2210 moveto
-152 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2215 moveto
-150 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2223 moveto
-152 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2230 moveto
-158 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2235 moveto
-165 2237 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2204 moveto
-211 2204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2392 moveto
-121 2377 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2421 moveto
-172 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2419 moveto
-178 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2414 moveto
-180 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2407 moveto
-178 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2399 moveto
-172 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2394 moveto
-165 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2392 moveto
-158 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2394 moveto
-152 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2399 moveto
-150 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2407 moveto
-152 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2414 moveto
-158 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2419 moveto
-165 2421 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-211 2425 moveto
-119 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2237 moveto
-430 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-342 2252 moveto
-342 2377 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2425 moveto
-340 2204 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-432 2204 moveto
-432 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2237 moveto
-342 2252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2237 moveto
-393 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2235 moveto
-398 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2230 moveto
-400 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2223 moveto
-398 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2215 moveto
-393 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2210 moveto
-386 2208 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2208 moveto
-378 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2210 moveto
-373 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2215 moveto
-371 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2223 moveto
-373 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2230 moveto
-378 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2235 moveto
-386 2237 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2204 moveto
-432 2204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2392 moveto
-342 2377 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2421 moveto
-393 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2419 moveto
-398 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2414 moveto
-400 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2407 moveto
-398 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2399 moveto
-393 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2394 moveto
-386 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2392 moveto
-378 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2394 moveto
-373 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2399 moveto
-371 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2407 moveto
-373 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2414 moveto
-378 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2419 moveto
-386 2421 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-432 2425 moveto
-340 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2237 moveto
-651 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 2252 moveto
-562 2377 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2425 moveto
-560 2204 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-652 2204 moveto
-652 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2237 moveto
-562 2252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2237 moveto
-614 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2235 moveto
-619 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2230 moveto
-621 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2223 moveto
-619 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2215 moveto
-614 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2210 moveto
-606 2208 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2208 moveto
-599 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2210 moveto
-594 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2215 moveto
-592 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2223 moveto
-594 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2230 moveto
-599 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2235 moveto
-606 2237 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2204 moveto
-652 2204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2392 moveto
-562 2377 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2421 moveto
-614 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2419 moveto
-619 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2414 moveto
-621 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2407 moveto
-619 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2399 moveto
-614 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2394 moveto
-606 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2392 moveto
-599 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2394 moveto
-594 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2399 moveto
-592 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2407 moveto
-594 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2414 moveto
-599 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2419 moveto
-606 2421 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-652 2425 moveto
-560 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2237 moveto
-871 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-783 2252 moveto
-783 2377 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2425 moveto
-781 2204 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-873 2204 moveto
-873 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2237 moveto
-783 2252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2237 moveto
-834 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2235 moveto
-840 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2230 moveto
-842 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2223 moveto
-840 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2215 moveto
-834 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2210 moveto
-827 2208 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2208 moveto
-820 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2210 moveto
-814 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2215 moveto
-812 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2223 moveto
-814 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2230 moveto
-820 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2235 moveto
-827 2237 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2204 moveto
-873 2204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2392 moveto
-783 2377 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2421 moveto
-834 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2419 moveto
-840 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2414 moveto
-842 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2407 moveto
-840 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2399 moveto
-834 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2394 moveto
-827 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2392 moveto
-820 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2394 moveto
-814 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2399 moveto
-812 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2407 moveto
-814 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2414 moveto
-820 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2419 moveto
-827 2421 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-873 2425 moveto
-781 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 1906 moveto
-209 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-121 1921 moveto
-121 2046 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2094 moveto
-119 1873 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-211 1873 moveto
-211 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 1906 moveto
-121 1921 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 1906 moveto
-172 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 1904 moveto
-178 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 1899 moveto
-180 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 1891 moveto
-178 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 1884 moveto
-172 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 1878 moveto
-165 1876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 1876 moveto
-158 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 1878 moveto
-152 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 1884 moveto
-150 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 1891 moveto
-152 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 1899 moveto
-158 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 1904 moveto
-165 1906 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 1873 moveto
-211 1873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2061 moveto
-121 2046 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2090 moveto
-172 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2088 moveto
-178 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2083 moveto
-180 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2075 moveto
-178 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2068 moveto
-172 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2063 moveto
-165 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2061 moveto
-158 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2063 moveto
-152 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2068 moveto
-150 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2075 moveto
-152 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2083 moveto
-158 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2088 moveto
-165 2090 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-211 2094 moveto
-119 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 1906 moveto
-430 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-342 1921 moveto
-342 2046 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2094 moveto
-340 1873 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-432 1873 moveto
-432 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 1906 moveto
-342 1921 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 1906 moveto
-393 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 1904 moveto
-398 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 1899 moveto
-400 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 1891 moveto
-398 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 1884 moveto
-393 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 1878 moveto
-386 1876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 1876 moveto
-378 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 1878 moveto
-373 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 1884 moveto
-371 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 1891 moveto
-373 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 1899 moveto
-378 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 1904 moveto
-386 1906 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 1873 moveto
-432 1873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2061 moveto
-342 2046 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2090 moveto
-393 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2088 moveto
-398 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2083 moveto
-400 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2075 moveto
-398 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2068 moveto
-393 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2063 moveto
-386 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2061 moveto
-378 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2063 moveto
-373 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2068 moveto
-371 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2075 moveto
-373 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2083 moveto
-378 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2088 moveto
-386 2090 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-432 2094 moveto
-340 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 1906 moveto
-651 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 1921 moveto
-562 2046 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2094 moveto
-560 1873 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-652 1873 moveto
-652 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 1906 moveto
-562 1921 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 1906 moveto
-614 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 1904 moveto
-619 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 1899 moveto
-621 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 1891 moveto
-619 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 1884 moveto
-614 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 1878 moveto
-606 1876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 1876 moveto
-599 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 1878 moveto
-594 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 1884 moveto
-592 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 1891 moveto
-594 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 1899 moveto
-599 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 1904 moveto
-606 1906 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 1873 moveto
-652 1873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2061 moveto
-562 2046 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2090 moveto
-614 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2088 moveto
-619 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2083 moveto
-621 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2075 moveto
-619 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2068 moveto
-614 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2063 moveto
-606 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2061 moveto
-599 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2063 moveto
-594 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2068 moveto
-592 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2075 moveto
-594 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2083 moveto
-599 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2088 moveto
-606 2090 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-652 2094 moveto
-560 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 1906 moveto
-871 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-783 1921 moveto
-783 2046 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2094 moveto
-781 1873 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-873 1873 moveto
-873 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 1906 moveto
-783 1921 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 1906 moveto
-834 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 1904 moveto
-840 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 1899 moveto
-842 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 1891 moveto
-840 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 1884 moveto
-834 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 1878 moveto
-827 1876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 1876 moveto
-820 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 1878 moveto
-814 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 1884 moveto
-812 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 1891 moveto
-814 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 1899 moveto
-820 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 1904 moveto
-827 1906 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 1873 moveto
-873 1873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2061 moveto
-783 2046 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2090 moveto
-834 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2088 moveto
-840 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2083 moveto
-842 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2075 moveto
-840 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2068 moveto
-834 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2063 moveto
-827 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2061 moveto
-820 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2063 moveto
-814 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2068 moveto
-812 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2075 moveto
-814 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2083 moveto
-820 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2088 moveto
-827 2090 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-873 2094 moveto
-781 2094 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-876 2900 moveto
-934 2900 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-876 3055 moveto
-934 3055 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-925 2919 moveto
-925 3036 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-928 2919 moveto
-922 2919 lineto
-925 2900 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-928 3036 moveto
-922 3036 lineto
-925 3055 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-945 2965 moveto
-948 2968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-948 2968 moveto
-948 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-948 2974 moveto
-945 2977 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-945 2977 moveto
-942 2977 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-942 2977 moveto
-939 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-939 2974 moveto
-939 2968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-939 2968 moveto
-936 2965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-936 2965 moveto
-930 2965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-930 2965 moveto
-930 2977 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-945 2984 moveto
-948 2987 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-948 2987 moveto
-930 2987 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-930 2984 moveto
-930 2990 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-871 3059 moveto
-871 3173 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-783 3045 moveto
-783 3173 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-853 3164 moveto
-801 3164 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-853 3161 moveto
-853 3167 lineto
-871 3164 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-801 3161 moveto
-801 3167 lineto
-783 3164 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-815 3144 moveto
-818 3141 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-818 3141 moveto
-818 3159 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-815 3159 moveto
-821 3159 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-827 3144 moveto
-830 3141 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-830 3141 moveto
-836 3141 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-836 3141 moveto
-839 3144 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-839 3144 moveto
-839 3147 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-839 3147 moveto
-836 3150 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-836 3150 moveto
-830 3150 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-830 3150 moveto
-827 3153 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-827 3153 moveto
-827 3159 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-827 3159 moveto
-839 3159 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-834 2794 moveto
-830 2852 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-825 2918 moveto
-823 2937 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-841 2803 moveto
-845 2800 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-845 2800 moveto
-851 2800 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-851 2800 moveto
-854 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-854 2803 moveto
-853 2810 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-853 2810 moveto
-850 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-850 2812 moveto
-844 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-844 2812 moveto
-841 2809 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-841 2809 moveto
-841 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-838 2801 moveto
-856 2811 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-842 2830 moveto
-843 2818 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-843 2818 moveto
-855 2828 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-855 2828 moveto
-836 2827 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-826 2900 moveto
-828 2871 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-828 2919 moveto
-821 2918 lineto
-826 2900 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-833 2853 moveto
-827 2852 lineto
-828 2871 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-568 578 moveto
-598 656 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-619 712 moveto
-626 729 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-578 583 moveto
-580 579 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-580 579 moveto
-585 577 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-585 577 moveto
-589 578 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-589 578 moveto
-591 584 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-591 584 moveto
-590 588 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-590 588 moveto
-584 590 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-584 590 moveto
-580 588 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-580 588 moveto
-578 583 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-574 582 moveto
-595 584 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-595 593 moveto
-599 594 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-599 594 moveto
-601 600 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-601 600 moveto
-599 604 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-599 604 moveto
-596 605 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-596 605 moveto
-592 603 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-592 603 moveto
-591 601 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-592 603 moveto
-591 607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-591 607 moveto
-588 609 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-588 609 moveto
-584 607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-584 607 moveto
-582 601 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-582 601 moveto
-583 597 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-587 615 moveto
-590 614 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-604 616 moveto
-608 617 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-608 617 moveto
-610 623 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-610 623 moveto
-608 627 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-608 627 moveto
-605 628 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-605 628 moveto
-601 626 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-601 626 moveto
-599 621 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-599 621 moveto
-595 619 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-595 619 moveto
-589 621 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-589 621 moveto
-594 633 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-613 695 moveto
-604 673 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-622 711 moveto
-617 713 lineto
-613 695 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-601 655 moveto
-595 657 lineto
-604 673 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-708 554 moveto
-708 649 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-707 917 moveto
-707 935 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-716 562 moveto
-719 559 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-719 559 moveto
-725 559 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-725 559 moveto
-728 562 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 562 moveto
-728 568 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 568 moveto
-725 571 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-725 571 moveto
-719 571 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-719 571 moveto
-716 568 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-716 568 moveto
-716 562 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 560 moveto
-731 569 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 577 moveto
-731 580 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 580 moveto
-731 586 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 586 moveto
-728 589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 589 moveto
-725 589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-725 589 moveto
-722 586 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-722 586 moveto
-722 583 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-722 586 moveto
-719 589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-719 589 moveto
-716 589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-716 589 moveto
-712 586 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 586 moveto
-712 580 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 580 moveto
-716 577 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 596 moveto
-731 599 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 599 moveto
-712 599 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 596 moveto
-712 602 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 608 moveto
-715 608 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 614 moveto
-731 617 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 617 moveto
-731 623 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 623 moveto
-728 626 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 626 moveto
-725 626 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-725 626 moveto
-722 623 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-722 623 moveto
-722 620 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-722 623 moveto
-719 626 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-719 626 moveto
-715 626 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 626 moveto
-712 623 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 623 moveto
-712 617 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 617 moveto
-715 614 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-707 898 moveto
-708 668 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-710 917 moveto
-704 917 lineto
-707 898 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-711 649 moveto
-705 649 lineto
-708 668 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-93 583 moveto
-141 651 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-176 700 moveto
-187 715 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-104 585 moveto
-105 581 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-105 581 moveto
-110 577 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-110 577 moveto
-114 578 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-114 578 moveto
-118 583 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-118 583 moveto
-117 587 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-117 587 moveto
-112 591 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-112 591 moveto
-108 590 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-108 590 moveto
-104 585 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-101 586 moveto
-121 582 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 590 moveto
-127 591 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-127 591 moveto
-131 596 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-131 596 moveto
-130 600 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-130 600 moveto
-127 602 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-127 602 moveto
-123 601 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 601 moveto
-121 599 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 601 moveto
-122 606 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-122 606 moveto
-120 608 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-120 608 moveto
-116 607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-116 607 moveto
-112 602 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-112 602 moveto
-113 597 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-121 614 moveto
-123 613 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 610 moveto
-141 611 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-141 611 moveto
-145 616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-145 616 moveto
-144 620 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-144 620 moveto
-142 622 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-142 622 moveto
-137 621 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 621 moveto
-134 616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-134 616 moveto
-130 616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-130 616 moveto
-125 619 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-125 619 moveto
-132 629 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-165 685 moveto
-152 666 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-179 698 moveto
-174 702 lineto
-165 685 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-144 649 moveto
-139 653 lineto
-152 666 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-266 536 moveto
-266 637 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-266 928 moveto
-266 947 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 544 moveto
-277 541 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 541 moveto
-283 541 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 541 moveto
-286 544 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 544 moveto
-286 550 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 550 moveto
-283 553 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 553 moveto
-277 553 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 553 moveto
-274 550 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 550 moveto
-274 544 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-270 542 moveto
-289 551 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 559 moveto
-289 562 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 562 moveto
-289 568 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 568 moveto
-286 571 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 571 moveto
-283 571 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 571 moveto
-280 568 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-280 568 moveto
-280 565 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-280 568 moveto
-277 571 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 571 moveto
-274 571 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 571 moveto
-270 568 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-270 568 moveto
-270 562 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-270 562 moveto
-274 559 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 590 moveto
-277 578 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 578 moveto
-289 587 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 587 moveto
-271 587 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 596 moveto
-274 596 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 602 moveto
-271 605 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 605 moveto
-271 611 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 611 moveto
-274 614 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 614 moveto
-280 614 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-280 614 moveto
-283 611 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 611 moveto
-283 602 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 602 moveto
-289 602 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 602 moveto
-289 614 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-266 910 moveto
-266 656 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-269 928 moveto
-263 928 lineto
-266 910 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-269 637 moveto
-263 637 lineto
-266 656 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-374 895 moveto
-374 1026 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-159 895 moveto
-159 1026 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-355 1016 moveto
-177 1016 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-355 1013 moveto
-355 1019 lineto
-374 1016 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-177 1013 moveto
-177 1019 lineto
-159 1016 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-239 996 moveto
-242 993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-242 993 moveto
-248 993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-248 993 moveto
-251 996 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-251 996 moveto
-251 1000 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-251 1000 moveto
-248 1003 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-248 1003 moveto
-242 1003 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-242 1003 moveto
-239 1006 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-239 1006 moveto
-239 1012 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-239 1012 moveto
-251 1012 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 1012 moveto
-263 1012 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-263 1012 moveto
-269 1006 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-269 1006 moveto
-269 996 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-269 996 moveto
-266 993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-266 993 moveto
-260 993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 993 moveto
-257 996 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-257 996 moveto
-257 1000 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-257 1000 moveto
-260 1003 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 1003 moveto
-269 1003 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-275 1012 moveto
-275 1009 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-281 996 moveto
-284 993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-284 993 moveto
-291 993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-291 993 moveto
-294 996 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-294 996 moveto
-294 1000 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-294 1000 moveto
-291 1003 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-291 1003 moveto
-284 1003 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-284 1003 moveto
-281 1006 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-281 1006 moveto
-281 1012 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-281 1012 moveto
-294 1012 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-807 887 moveto
-807 1034 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-609 887 moveto
-609 1034 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-788 1025 moveto
-627 1025 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-788 1022 moveto
-788 1028 lineto
-807 1025 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-627 1022 moveto
-627 1028 lineto
-609 1025 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-680 1005 moveto
-683 1002 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-683 1002 moveto
-689 1002 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 1002 moveto
-692 1005 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-692 1005 moveto
-692 1008 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-692 1008 moveto
-689 1011 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 1011 moveto
-683 1011 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-683 1011 moveto
-680 1014 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-680 1014 moveto
-680 1020 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-680 1020 moveto
-692 1020 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-698 1011 moveto
-708 1011 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 1011 moveto
-711 1014 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-711 1014 moveto
-711 1017 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-711 1017 moveto
-708 1020 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 1020 moveto
-701 1020 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-701 1020 moveto
-698 1017 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-698 1017 moveto
-698 1008 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-698 1008 moveto
-705 1002 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-705 1002 moveto
-708 1002 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-717 1020 moveto
-717 1017 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-726 1020 moveto
-729 1020 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-729 1020 moveto
-735 1014 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-735 1014 moveto
-735 1005 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-735 1005 moveto
-732 1002 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-732 1002 moveto
-726 1002 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-726 1002 moveto
-723 1005 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-723 1005 moveto
-723 1008 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-723 1008 moveto
-726 1011 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-726 1011 moveto
-735 1011 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-778 2915 moveto
-733 2915 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-778 3040 moveto
-733 3040 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-742 2933 moveto
-742 3022 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-745 2933 moveto
-739 2933 lineto
-742 2915 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-745 3022 moveto
-739 3022 lineto
-742 3040 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-762 2965 moveto
-765 2968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-765 2968 moveto
-747 2968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-747 2965 moveto
-747 2971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-765 2977 moveto
-765 2990 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-765 2990 moveto
-747 2981 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-823 3070 moveto
-682 3070 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-823 2885 moveto
-682 2885 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-691 3051 moveto
-691 2904 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-694 3051 moveto
-688 3051 lineto
-691 3070 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-694 2904 moveto
-688 2904 lineto
-691 2885 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-711 2962 moveto
-714 2965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-714 2965 moveto
-714 2971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-714 2971 moveto
-711 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-711 2974 moveto
-708 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 2974 moveto
-705 2971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-705 2971 moveto
-705 2965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-705 2965 moveto
-702 2962 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-702 2962 moveto
-696 2962 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-696 2962 moveto
-696 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-699 2981 moveto
-696 2984 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-696 2984 moveto
-696 2990 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-696 2990 moveto
-699 2993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-699 2993 moveto
-705 2993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-705 2993 moveto
-708 2990 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 2990 moveto
-708 2981 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 2981 moveto
-714 2981 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-714 2981 moveto
-714 2993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-211 2862 moveto
-211 2820 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-340 2862 moveto
-340 2820 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-229 2829 moveto
-321 2829 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-229 2826 moveto
-229 2832 lineto
-211 2829 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-321 2826 moveto
-321 2832 lineto
-340 2829 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-251 2809 moveto
-254 2806 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-254 2806 moveto
-254 2825 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-251 2825 moveto
-257 2825 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-263 2806 moveto
-275 2806 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-275 2806 moveto
-266 2825 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-281 2825 moveto
-281 2822 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-288 2822 moveto
-291 2825 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-291 2825 moveto
-297 2825 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-297 2825 moveto
-300 2822 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-300 2822 moveto
-300 2815 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-300 2815 moveto
-297 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-297 2812 moveto
-288 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-288 2812 moveto
-288 2806 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-288 2806 moveto
-300 2806 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-436 2757 moveto
-478 2757 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-436 2867 moveto
-478 2867 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-469 2775 moveto
-469 2849 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-472 2775 moveto
-466 2775 lineto
-469 2757 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-472 2849 moveto
-466 2849 lineto
-469 2867 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-489 2799 moveto
-492 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-492 2803 moveto
-473 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-473 2799 moveto
-473 2806 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-477 2812 moveto
-473 2815 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-473 2815 moveto
-473 2821 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-473 2821 moveto
-477 2824 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-477 2824 moveto
-483 2824 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-483 2824 moveto
-486 2821 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-486 2821 moveto
-486 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-486 2812 moveto
-492 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-492 2812 moveto
-492 2824 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-457 1296 moveto
-475 1295 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-475 1295 moveto
-492 1289 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-492 1289 moveto
-508 1281 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-508 1281 moveto
-522 1269 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-522 1269 moveto
-533 1255 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-533 1255 moveto
-542 1239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-542 1239 moveto
-547 1222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-547 1222 moveto
-549 1204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-549 1204 moveto
-547 1186 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-547 1186 moveto
-542 1169 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-542 1169 moveto
-533 1153 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-533 1153 moveto
-522 1139 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-522 1139 moveto
-508 1128 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-508 1128 moveto
-492 1119 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-492 1119 moveto
-475 1114 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-475 1114 moveto
-457 1112 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-457 1112 moveto
-439 1114 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-439 1114 moveto
-422 1119 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-422 1119 moveto
-406 1128 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-406 1128 moveto
-392 1139 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-392 1139 moveto
-380 1153 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-380 1153 moveto
-372 1169 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-372 1169 moveto
-367 1186 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-367 1186 moveto
-365 1204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-365 1204 moveto
-367 1222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-367 1222 moveto
-372 1239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-372 1239 moveto
-380 1255 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-380 1255 moveto
-392 1269 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-392 1269 moveto
-406 1281 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-406 1281 moveto
-422 1289 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-422 1289 moveto
-439 1295 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-439 1295 moveto
-457 1296 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-343 1109 moveto
-571 1109 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-571 1300 moveto
-343 1300 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 1300 moveto
-343 1109 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-365 1293 moveto
-372 1291 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-372 1291 moveto
-378 1285 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 1285 moveto
-380 1278 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-380 1278 moveto
-378 1271 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 1271 moveto
-372 1265 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-372 1265 moveto
-365 1263 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-365 1263 moveto
-358 1265 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-358 1265 moveto
-352 1271 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-352 1271 moveto
-350 1278 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-350 1278 moveto
-352 1285 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-352 1285 moveto
-358 1291 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-358 1291 moveto
-365 1293 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-571 1109 moveto
-571 1300 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-549 1145 moveto
-556 1143 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-556 1143 moveto
-562 1138 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 1138 moveto
-564 1131 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-564 1131 moveto
-562 1123 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 1123 moveto
-556 1118 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-556 1118 moveto
-549 1116 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-549 1116 moveto
-542 1118 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-542 1118 moveto
-536 1123 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-536 1123 moveto
-534 1131 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-534 1131 moveto
-536 1138 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-536 1138 moveto
-542 1143 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-542 1143 moveto
-549 1145 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-338 1109 moveto
-247 1109 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-338 1300 moveto
-247 1300 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-256 1127 moveto
-256 1282 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-259 1127 moveto
-253 1127 lineto
-256 1109 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-259 1282 moveto
-253 1282 lineto
-256 1300 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-276 1189 moveto
-279 1192 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-279 1192 moveto
-279 1198 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-279 1198 moveto
-276 1201 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-276 1201 moveto
-273 1201 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-273 1201 moveto
-270 1198 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-270 1198 moveto
-270 1192 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-270 1192 moveto
-267 1189 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-267 1189 moveto
-260 1189 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 1189 moveto
-260 1201 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-270 1207 moveto
-270 1217 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-270 1217 moveto
-267 1220 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-267 1220 moveto
-264 1220 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-264 1220 moveto
-260 1217 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 1217 moveto
-260 1210 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 1210 moveto
-264 1207 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-264 1207 moveto
-273 1207 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-273 1207 moveto
-279 1213 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-279 1213 moveto
-279 1217 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-576 1109 moveto
-641 1109 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-568 1131 moveto
-641 1131 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-632 1090 moveto
-632 1072 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-632 1149 moveto
-632 1167 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-632 1109 moveto
-632 1131 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-635 1090 moveto
-629 1090 lineto
-632 1109 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-635 1149 moveto
-629 1149 lineto
-632 1131 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-652 1113 moveto
-655 1116 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-655 1116 moveto
-655 1123 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-655 1123 moveto
-652 1126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-652 1126 moveto
-648 1126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-648 1126 moveto
-645 1123 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-645 1123 moveto
-645 1120 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-645 1123 moveto
-642 1126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-642 1126 moveto
-639 1126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-639 1126 moveto
-636 1123 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-636 1123 moveto
-636 1116 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-636 1116 moveto
-639 1113 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-457 1017 moveto
-457 1094 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-457 1315 moveto
-457 1333 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-465 1025 moveto
-468 1022 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-468 1022 moveto
-474 1022 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-474 1022 moveto
-477 1025 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-477 1025 moveto
-477 1031 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-477 1031 moveto
-474 1034 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-474 1034 moveto
-468 1034 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-468 1034 moveto
-465 1031 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-465 1031 moveto
-465 1025 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-462 1023 moveto
-480 1032 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-477 1040 moveto
-480 1043 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-480 1043 moveto
-480 1049 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-480 1049 moveto
-477 1052 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-477 1052 moveto
-474 1052 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-474 1052 moveto
-471 1049 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-471 1049 moveto
-471 1043 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-471 1043 moveto
-468 1040 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-468 1040 moveto
-462 1040 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-462 1040 moveto
-462 1052 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-465 1059 moveto
-462 1062 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-462 1062 moveto
-462 1068 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-462 1068 moveto
-465 1071 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-465 1071 moveto
-471 1071 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-471 1071 moveto
-474 1068 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-474 1068 moveto
-474 1059 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-474 1059 moveto
-480 1059 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-480 1059 moveto
-480 1071 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-457 1296 moveto
-457 1112 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-460 1315 moveto
-454 1315 lineto
-457 1296 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-460 1094 moveto
-454 1094 lineto
-457 1112 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-526 1042 moveto
-541 1099 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-557 1163 moveto
-562 1181 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-536 1048 moveto
-538 1044 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-538 1044 moveto
-544 1042 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-544 1042 moveto
-547 1045 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-547 1045 moveto
-549 1050 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-549 1050 moveto
-547 1054 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-547 1054 moveto
-541 1056 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-541 1056 moveto
-537 1054 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-537 1054 moveto
-536 1048 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-532 1047 moveto
-552 1051 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-545 1074 moveto
-542 1062 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-542 1062 moveto
-556 1068 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-556 1068 moveto
-539 1072 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-553 1145 moveto
-545 1116 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-560 1162 moveto
-554 1163 lineto
-553 1145 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-544 1098 moveto
-538 1099 lineto
-545 1116 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-571 1305 moveto
-571 1391 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-343 1305 moveto
-343 1391 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-553 1382 moveto
-361 1382 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-553 1378 moveto
-553 1385 lineto
-571 1382 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-361 1378 moveto
-361 1385 lineto
-343 1382 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-445 1362 moveto
-448 1359 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-448 1359 moveto
-454 1359 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-454 1359 moveto
-457 1362 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-457 1362 moveto
-457 1365 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-457 1365 moveto
-454 1368 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-454 1368 moveto
-451 1368 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-454 1368 moveto
-457 1371 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-457 1371 moveto
-457 1374 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-457 1374 moveto
-454 1377 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-454 1377 moveto
-448 1377 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-448 1377 moveto
-445 1374 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-463 1362 moveto
-466 1359 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-466 1359 moveto
-466 1377 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-463 1377 moveto
-469 1377 lineto
-stroke
-pgsave restore
-showpage
-%%Trailer
-%%Pages: 1
-%%EOF
diff --git a/doc/aicback4lrc.ps b/doc/aicback4lrc.ps
deleted file mode 100644 (file)
index 4fbef9b..0000000
+++ /dev/null
@@ -1,8888 +0,0 @@
-%!PS-Adobe-3.0
-%%Creator: Wine PostScript Driver
-%%Title: H:\src\aic-1.1.0\doc\aicback4lrc.dwg
-%%BoundingBox: 18 36 576 805
-%%Pages: (atend)
-%%EndComments
-%%BeginProlog
-/tmpmtrx matrix def
-/hatch {
-  pathbbox
-  /b exch def /r exch def /t exch def /l exch def /gap 32 def
-  l cvi gap idiv gap mul
-  gap
-  r cvi gap idiv gap mul
-  {t moveto 0 b t sub rlineto}
-  for
-} bind def
-/B {pop pop pop pop} def
-/havetype42gdir {version cvi 2015 ge} bind def
-%%EndProlog
-%%BeginSetup
-mark {
-%%BeginFeature: *PageSize A4
-<</PageSize[595 842]/ImagingBBox null>>setpagedevice
-%%EndFeature
-} stopped cleartomark
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-/pgsave save def
-72 300 div 72 300 div scale
-75 3358 translate
-1 -1 scale
-0 rotate
-%%EndPageSetup
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-9 10 moveto
-9 3198 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-9 3198 moveto
-950 3198 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-950 3198 moveto
-950 10 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-950 10 moveto
-9 10 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 229 moveto
-133 453 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 475 moveto
-378 475 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-400 453 moveto
-400 229 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 207 moveto
-155 207 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-266 455 moveto
-286 453 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-286 453 moveto
-305 448 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 448 moveto
-323 440 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-323 440 moveto
-339 428 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-339 428 moveto
-353 414 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-353 414 moveto
-365 398 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 398 moveto
-373 380 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 380 moveto
-378 361 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 361 moveto
-380 341 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 341 moveto
-378 321 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-378 321 moveto
-373 302 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 302 moveto
-365 284 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 284 moveto
-353 268 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-353 268 moveto
-339 254 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-339 254 moveto
-323 242 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-323 242 moveto
-305 234 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 234 moveto
-286 229 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-286 229 moveto
-266 227 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-266 227 moveto
-246 229 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-246 229 moveto
-227 234 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-227 234 moveto
-209 242 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-209 242 moveto
-193 254 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 254 moveto
-179 268 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-179 268 moveto
-168 284 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-168 284 moveto
-159 302 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-159 302 moveto
-154 321 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-154 321 moveto
-152 341 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-152 341 moveto
-154 361 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-154 361 moveto
-159 380 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-159 380 moveto
-168 398 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-168 398 moveto
-179 414 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-179 414 moveto
-193 428 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 428 moveto
-209 440 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-209 440 moveto
-227 448 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-227 448 moveto
-246 453 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-246 453 moveto
-266 455 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-159 245 moveto
-165 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 244 moveto
-169 239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 239 moveto
-170 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-170 233 moveto
-169 228 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 228 moveto
-165 223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 223 moveto
-159 222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-159 222 moveto
-153 223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 223 moveto
-148 228 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 228 moveto
-147 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 233 moveto
-148 239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 239 moveto
-153 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 244 moveto
-159 245 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-159 460 moveto
-165 459 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 459 moveto
-169 454 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 454 moveto
-170 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-170 449 moveto
-169 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 443 moveto
-165 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 438 moveto
-159 437 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-159 437 moveto
-153 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 438 moveto
-148 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 443 moveto
-147 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 449 moveto
-148 454 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-148 454 moveto
-153 459 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 459 moveto
-159 460 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 460 moveto
-379 459 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 459 moveto
-384 454 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 454 moveto
-385 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 449 moveto
-384 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 443 moveto
-379 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 438 moveto
-374 437 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 437 moveto
-368 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 438 moveto
-363 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 443 moveto
-362 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-362 449 moveto
-363 454 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 454 moveto
-368 459 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 459 moveto
-374 460 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 245 moveto
-379 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 244 moveto
-384 239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 239 moveto
-385 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 233 moveto
-384 228 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-384 228 moveto
-379 223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 223 moveto
-374 222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 222 moveto
-368 223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 223 moveto
-363 228 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 228 moveto
-362 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-362 233 moveto
-363 239 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 239 moveto
-368 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-368 244 moveto
-374 245 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-378 475 moveto
-386 473 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-386 473 moveto
-393 468 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-393 468 moveto
-398 461 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-398 461 moveto
-400 453 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 453 moveto
-134 461 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-134 461 moveto
-139 468 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-139 468 moveto
-146 473 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-146 473 moveto
-155 475 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 207 moveto
-146 209 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-146 209 moveto
-139 214 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-139 214 moveto
-134 221 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-134 221 moveto
-133 229 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-400 229 moveto
-398 221 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-398 221 moveto
-393 214 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-393 214 moveto
-386 209 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-386 209 moveto
-378 207 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-586 230 moveto
-586 452 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-597 463 moveto
-818 463 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-829 452 moveto
-829 230 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-818 219 moveto
-597 219 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-609 254 moveto
-614 252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 252 moveto
-619 248 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 248 moveto
-620 242 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-620 242 moveto
-619 236 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 236 moveto
-614 232 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 232 moveto
-609 230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 230 moveto
-603 232 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 232 moveto
-598 236 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 236 moveto
-597 242 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-597 242 moveto
-598 248 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 248 moveto
-603 252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 252 moveto
-609 254 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 452 moveto
-614 450 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 450 moveto
-619 446 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 446 moveto
-620 440 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-620 440 moveto
-619 434 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 434 moveto
-614 430 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 430 moveto
-609 428 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-609 428 moveto
-603 430 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 430 moveto
-598 434 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 434 moveto
-597 440 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-597 440 moveto
-598 446 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-598 446 moveto
-603 450 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-603 450 moveto
-609 452 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 452 moveto
-812 450 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 450 moveto
-817 446 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 446 moveto
-818 440 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-818 440 moveto
-817 434 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 434 moveto
-812 430 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 430 moveto
-807 428 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 428 moveto
-801 430 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 430 moveto
-796 434 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 434 moveto
-795 440 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-795 440 moveto
-796 446 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 446 moveto
-801 450 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 450 moveto
-807 452 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 254 moveto
-812 252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 252 moveto
-817 248 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 248 moveto
-818 242 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-818 242 moveto
-817 236 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-817 236 moveto
-812 232 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 232 moveto
-807 230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 230 moveto
-801 232 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 232 moveto
-796 236 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 236 moveto
-795 242 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-795 242 moveto
-796 248 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 248 moveto
-801 252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-801 252 moveto
-807 254 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-708 443 moveto
-728 441 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-728 441 moveto
-747 436 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-747 436 moveto
-764 426 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-764 426 moveto
-780 413 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-780 413 moveto
-793 398 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-793 398 moveto
-802 380 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-802 380 moveto
-808 361 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-808 361 moveto
-810 341 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-810 341 moveto
-808 321 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-808 321 moveto
-802 302 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-802 302 moveto
-793 284 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-793 284 moveto
-780 269 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-780 269 moveto
-764 256 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-764 256 moveto
-747 246 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-747 246 moveto
-728 241 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-728 241 moveto
-708 239 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-708 239 moveto
-688 241 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 241 moveto
-668 246 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-668 246 moveto
-651 256 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-651 256 moveto
-635 269 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 269 moveto
-623 284 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-623 284 moveto
-613 302 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 302 moveto
-607 321 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-607 321 moveto
-605 341 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 341 moveto
-607 361 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-607 361 moveto
-613 380 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 380 moveto
-623 398 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-623 398 moveto
-635 413 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 413 moveto
-651 426 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-651 426 moveto
-668 436 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-668 436 moveto
-688 441 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 441 moveto
-708 443 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-266 468 moveto
-288 466 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-288 466 moveto
-310 460 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-310 460 moveto
-330 451 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-330 451 moveto
-348 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-348 438 moveto
-363 423 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 423 moveto
-376 405 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-376 405 moveto
-385 384 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 384 moveto
-391 363 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-391 363 moveto
-393 341 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 341 moveto
-391 319 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-391 319 moveto
-385 298 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-385 298 moveto
-376 277 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-376 277 moveto
-363 259 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-363 259 moveto
-348 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-348 244 moveto
-330 231 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-330 231 moveto
-310 222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-310 222 moveto
-288 216 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-288 216 moveto
-266 214 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-266 214 moveto
-244 216 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-244 216 moveto
-223 222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-223 222 moveto
-203 231 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-203 231 moveto
-185 244 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-185 244 moveto
-169 259 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 259 moveto
-156 277 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-156 277 moveto
-147 298 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 298 moveto
-141 319 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-141 319 moveto
-139 341 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-139 341 moveto
-141 363 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-141 363 moveto
-147 384 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-147 384 moveto
-156 405 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-156 405 moveto
-169 423 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-169 423 moveto
-185 438 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-185 438 moveto
-203 451 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-203 451 moveto
-223 460 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-223 460 moveto
-244 466 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-244 466 moveto
-266 468 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-708 456 moveto
-728 455 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-728 455 moveto
-747 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-747 449 moveto
-765 441 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-765 441 moveto
-782 429 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-782 429 moveto
-796 415 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 415 moveto
-807 399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 399 moveto
-816 380 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-816 380 moveto
-821 361 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-821 361 moveto
-823 341 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-823 341 moveto
-821 321 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-821 321 moveto
-816 302 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-816 302 moveto
-807 283 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-807 283 moveto
-796 267 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-796 267 moveto
-782 253 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-782 253 moveto
-765 241 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-765 241 moveto
-747 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-747 233 moveto
-728 227 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-728 227 moveto
-708 226 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-708 226 moveto
-688 227 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-688 227 moveto
-668 233 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-668 233 moveto
-650 241 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-650 241 moveto
-634 253 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-634 253 moveto
-619 267 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 267 moveto
-608 283 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-608 283 moveto
-599 302 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 302 moveto
-594 321 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 321 moveto
-592 341 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 341 moveto
-594 361 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 361 moveto
-599 380 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 380 moveto
-608 399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-608 399 moveto
-619 415 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 415 moveto
-634 429 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-634 429 moveto
-650 441 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-650 441 moveto
-668 449 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-668 449 moveto
-688 455 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-688 455 moveto
-708 456 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-861 237 moveto
-845 237 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 237 moveto
-842 240 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 240 moveto
-842 246 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 246 moveto
-845 249 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 249 moveto
-861 249 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 255 moveto
-861 267 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 261 moveto
-842 261 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 283 moveto
-851 286 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 286 moveto
-842 286 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 286 moveto
-842 277 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 277 moveto
-845 274 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 274 moveto
-858 274 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 274 moveto
-861 277 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 277 moveto
-861 286 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 314 moveto
-845 310 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 310 moveto
-858 310 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 310 moveto
-861 314 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 314 moveto
-861 317 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 317 moveto
-858 320 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 320 moveto
-845 320 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 320 moveto
-842 317 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 317 moveto
-842 314 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 326 moveto
-861 329 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 329 moveto
-842 329 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 326 moveto
-842 332 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 341 moveto
-845 338 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 338 moveto
-848 338 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 338 moveto
-851 341 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 341 moveto
-851 347 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 347 moveto
-854 350 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 350 moveto
-858 350 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 350 moveto
-861 347 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 347 moveto
-861 341 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 341 moveto
-858 338 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 338 moveto
-854 338 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 338 moveto
-851 341 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 347 moveto
-848 350 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 350 moveto
-845 350 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 350 moveto
-842 347 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 347 moveto
-842 341 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 375 moveto
-861 378 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 378 moveto
-861 384 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 384 moveto
-858 387 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 387 moveto
-854 387 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 387 moveto
-851 384 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 384 moveto
-851 378 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 378 moveto
-848 375 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 375 moveto
-842 375 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 375 moveto
-842 387 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 393 moveto
-861 396 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 396 moveto
-861 403 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-861 403 moveto
-858 406 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-858 406 moveto
-854 406 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-854 406 moveto
-851 403 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 403 moveto
-851 399 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 403 moveto
-848 406 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 406 moveto
-845 406 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-845 406 moveto
-842 403 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 403 moveto
-842 396 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-842 396 moveto
-845 393 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 238 moveto
-419 238 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 238 moveto
-416 241 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 241 moveto
-416 247 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 247 moveto
-419 251 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 251 moveto
-434 251 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 257 moveto
-434 269 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 263 moveto
-416 263 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 284 moveto
-425 287 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 287 moveto
-416 287 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 287 moveto
-416 278 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 278 moveto
-419 275 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 275 moveto
-431 275 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 275 moveto
-434 278 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 278 moveto
-434 287 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 315 moveto
-419 312 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 312 moveto
-431 312 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 312 moveto
-434 315 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 315 moveto
-434 318 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 318 moveto
-431 321 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 321 moveto
-419 321 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 321 moveto
-416 318 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 318 moveto
-416 315 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 327 moveto
-434 330 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 330 moveto
-434 336 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 336 moveto
-431 340 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 340 moveto
-428 340 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 340 moveto
-425 336 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 336 moveto
-425 330 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 330 moveto
-422 327 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 327 moveto
-416 327 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 327 moveto
-416 340 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 349 moveto
-419 346 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 346 moveto
-431 346 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 346 moveto
-434 349 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 349 moveto
-434 352 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 352 moveto
-431 355 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 355 moveto
-419 355 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 355 moveto
-416 352 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 352 moveto
-416 349 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 379 moveto
-434 382 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 382 moveto
-434 389 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 389 moveto
-431 392 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 392 moveto
-428 392 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 392 moveto
-425 389 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 389 moveto
-425 382 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 382 moveto
-422 379 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 379 moveto
-416 379 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 379 moveto
-416 392 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 401 moveto
-419 398 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 398 moveto
-422 398 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 398 moveto
-425 401 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 401 moveto
-425 407 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 407 moveto
-428 410 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 410 moveto
-431 410 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 410 moveto
-434 407 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 407 moveto
-434 401 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-434 401 moveto
-431 398 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-431 398 moveto
-428 398 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-428 398 moveto
-425 401 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-425 407 moveto
-422 410 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-422 410 moveto
-419 410 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 410 moveto
-416 407 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 407 moveto
-416 401 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-829 230 moveto
-828 225 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-828 225 moveto
-824 221 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-824 221 moveto
-818 219 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-818 463 moveto
-824 461 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-824 461 moveto
-828 457 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-828 457 moveto
-829 452 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-586 452 moveto
-587 457 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-587 457 moveto
-591 461 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-591 461 moveto
-597 463 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-597 219 moveto
-591 221 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-591 221 moveto
-587 225 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-587 225 moveto
-586 230 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 905 moveto
-377 905 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-377 661 moveto
-155 661 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-266 885 moveto
-286 883 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-286 883 moveto
-305 877 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 877 moveto
-323 868 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-323 868 moveto
-338 855 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-338 855 moveto
-351 840 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-351 840 moveto
-361 822 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-361 822 moveto
-366 803 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-366 803 moveto
-368 783 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-368 783 moveto
-366 763 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-366 763 moveto
-361 744 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-361 744 moveto
-351 726 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-351 726 moveto
-338 710 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-338 710 moveto
-323 698 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-323 698 moveto
-305 688 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 688 moveto
-286 682 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-286 682 moveto
-266 680 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-266 680 moveto
-246 682 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-246 682 moveto
-227 688 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-227 688 moveto
-209 698 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-209 698 moveto
-194 710 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-194 710 moveto
-181 726 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-181 726 moveto
-172 744 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-172 744 moveto
-166 763 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-166 763 moveto
-164 783 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-164 783 moveto
-166 803 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-166 803 moveto
-172 822 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-172 822 moveto
-181 840 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-181 840 moveto
-194 855 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-194 855 moveto
-209 868 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-209 868 moveto
-227 877 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-227 877 moveto
-246 883 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-246 883 moveto
-266 885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-266 898 moveto
-286 896 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-286 896 moveto
-305 891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-305 891 moveto
-324 883 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-324 883 moveto
-340 871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-340 871 moveto
-354 857 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-354 857 moveto
-366 840 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-366 840 moveto
-374 822 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 822 moveto
-379 803 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 803 moveto
-381 783 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-381 783 moveto
-379 763 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-379 763 moveto
-374 743 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-374 743 moveto
-366 725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-366 725 moveto
-354 709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-354 709 moveto
-340 695 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-340 695 moveto
-324 683 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-324 683 moveto
-305 675 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-305 675 moveto
-286 669 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-286 669 moveto
-266 668 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-266 668 moveto
-246 669 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-246 669 moveto
-227 675 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-227 675 moveto
-209 683 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-209 683 moveto
-192 695 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-192 695 moveto
-178 709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 709 moveto
-166 725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-166 725 moveto
-158 743 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 743 moveto
-153 763 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 763 moveto
-151 783 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-151 783 moveto
-153 803 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-153 803 moveto
-158 822 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 822 moveto
-166 840 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-166 840 moveto
-178 857 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 857 moveto
-192 871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-192 871 moveto
-209 883 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-209 883 moveto
-227 891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-227 891 moveto
-246 896 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-246 896 moveto
-266 898 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-144 672 moveto
-144 894 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-167 696 moveto
-173 694 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-173 694 moveto
-177 690 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-177 690 moveto
-179 684 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-179 684 moveto
-177 678 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-177 678 moveto
-173 674 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-173 674 moveto
-167 672 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-167 672 moveto
-161 674 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-161 674 moveto
-157 678 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-157 678 moveto
-155 684 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-155 684 moveto
-157 690 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-157 690 moveto
-161 694 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-161 694 moveto
-167 696 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-155 661 moveto
-150 662 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-150 662 moveto
-146 667 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-146 667 moveto
-144 672 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-167 894 moveto
-173 892 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-173 892 moveto
-177 888 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-177 888 moveto
-179 882 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-179 882 moveto
-177 876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-177 876 moveto
-173 872 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-173 872 moveto
-167 870 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-167 870 moveto
-161 872 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-161 872 moveto
-157 876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-157 876 moveto
-155 882 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-155 882 moveto
-157 888 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-157 888 moveto
-161 892 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-161 892 moveto
-167 894 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-144 894 moveto
-146 899 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-146 899 moveto
-150 903 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-150 903 moveto
-155 905 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 894 moveto
-388 672 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-419 679 moveto
-404 679 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-404 679 moveto
-401 682 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 682 moveto
-401 688 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 688 moveto
-404 691 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-404 691 moveto
-419 691 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 697 moveto
-419 709 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 703 moveto
-401 703 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 725 moveto
-410 728 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 728 moveto
-401 728 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 728 moveto
-401 719 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 719 moveto
-404 715 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-404 715 moveto
-416 715 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 715 moveto
-419 719 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 719 moveto
-419 728 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 755 moveto
-404 752 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-404 752 moveto
-416 752 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 752 moveto
-419 755 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 755 moveto
-419 758 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 758 moveto
-416 762 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 762 moveto
-404 762 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-404 762 moveto
-401 758 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 758 moveto
-401 755 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 768 moveto
-419 771 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 771 moveto
-401 771 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 768 moveto
-401 774 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 783 moveto
-404 780 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-404 780 moveto
-407 780 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-407 780 moveto
-410 783 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 783 moveto
-410 789 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 789 moveto
-413 792 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-413 792 moveto
-416 792 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 792 moveto
-419 789 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 789 moveto
-419 783 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 783 moveto
-416 780 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 780 moveto
-413 780 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-413 780 moveto
-410 783 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 789 moveto
-407 792 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-407 792 moveto
-404 792 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-404 792 moveto
-401 789 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 789 moveto
-401 783 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 817 moveto
-419 820 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 820 moveto
-419 826 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 826 moveto
-416 829 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 829 moveto
-413 829 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-413 829 moveto
-410 826 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 826 moveto
-410 820 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 820 moveto
-407 817 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-407 817 moveto
-401 817 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 817 moveto
-401 829 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 835 moveto
-419 838 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 838 moveto
-419 844 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-419 844 moveto
-416 847 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-416 847 moveto
-413 847 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-413 847 moveto
-410 844 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 844 moveto
-410 841 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-410 844 moveto
-407 847 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-407 847 moveto
-404 847 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-404 847 moveto
-401 844 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 844 moveto
-401 838 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-401 838 moveto
-404 835 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-365 696 moveto
-371 694 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 694 moveto
-375 690 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-375 690 moveto
-377 684 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-377 684 moveto
-375 678 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-375 678 moveto
-371 674 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 674 moveto
-365 672 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-365 672 moveto
-359 674 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-359 674 moveto
-355 678 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-355 678 moveto
-353 684 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-353 684 moveto
-355 690 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-355 690 moveto
-359 694 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-359 694 moveto
-365 696 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-388 672 moveto
-386 667 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-386 667 moveto
-382 662 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-382 662 moveto
-377 661 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-365 894 moveto
-371 892 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 892 moveto
-375 888 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-375 888 moveto
-377 882 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-377 882 moveto
-375 876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-375 876 moveto
-371 872 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 872 moveto
-365 870 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-365 870 moveto
-359 872 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-359 872 moveto
-355 876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-355 876 moveto
-353 882 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-353 882 moveto
-355 888 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-355 888 moveto
-359 892 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-359 892 moveto
-365 894 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-377 905 moveto
-382 903 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-382 903 moveto
-386 899 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-386 899 moveto
-388 894 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-594 680 moveto
-594 885 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 896 moveto
-810 896 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-821 885 moveto
-821 680 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-810 669 moveto
-605 669 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-708 873 moveto
-725 872 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-725 872 moveto
-742 867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-742 867 moveto
-758 858 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-758 858 moveto
-772 847 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-772 847 moveto
-783 833 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-783 833 moveto
-791 818 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-791 818 moveto
-796 801 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-796 801 moveto
-798 783 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-798 783 moveto
-796 765 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-796 765 moveto
-791 748 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-791 748 moveto
-783 733 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-783 733 moveto
-772 719 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-772 719 moveto
-758 708 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-758 708 moveto
-742 699 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-742 699 moveto
-725 694 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-725 694 moveto
-708 692 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-708 692 moveto
-690 694 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-690 694 moveto
-673 699 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 699 moveto
-657 708 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-657 708 moveto
-644 719 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-644 719 moveto
-632 733 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-632 733 moveto
-624 748 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-624 748 moveto
-619 765 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-619 765 moveto
-617 783 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-617 783 moveto
-619 801 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-619 801 moveto
-624 818 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-624 818 moveto
-632 833 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-632 833 moveto
-644 847 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-644 847 moveto
-657 858 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-657 858 moveto
-673 867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 867 moveto
-690 872 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-690 872 moveto
-708 873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-708 886 moveto
-728 884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-728 884 moveto
-747 878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-747 878 moveto
-765 869 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-765 869 moveto
-781 856 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-781 856 moveto
-794 840 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-794 840 moveto
-803 822 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-803 822 moveto
-809 803 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-809 803 moveto
-811 783 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-811 783 moveto
-809 763 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-809 763 moveto
-803 743 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-803 743 moveto
-794 725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-794 725 moveto
-781 710 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-781 710 moveto
-765 697 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-765 697 moveto
-747 687 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-747 687 moveto
-728 681 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-728 681 moveto
-708 679 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-708 679 moveto
-687 681 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-687 681 moveto
-668 687 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-668 687 moveto
-650 697 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-650 697 moveto
-634 710 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-634 710 moveto
-622 725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-622 725 moveto
-612 743 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-612 743 moveto
-606 763 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 763 moveto
-604 783 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-604 783 moveto
-606 803 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 803 moveto
-612 822 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-612 822 moveto
-622 840 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-622 840 moveto
-634 856 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-634 856 moveto
-650 869 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-650 869 moveto
-668 878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-668 878 moveto
-687 884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-687 884 moveto
-708 886 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-617 704 moveto
-623 703 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-623 703 moveto
-628 699 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-628 699 moveto
-629 693 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-629 693 moveto
-628 687 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-628 687 moveto
-623 682 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-623 682 moveto
-617 681 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-617 681 moveto
-612 682 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-612 682 moveto
-607 687 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-607 687 moveto
-606 693 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 693 moveto
-607 699 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-607 699 moveto
-612 703 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-612 703 moveto
-617 704 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-617 885 moveto
-623 883 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-623 883 moveto
-628 879 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-628 879 moveto
-629 873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-629 873 moveto
-628 867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-628 867 moveto
-623 863 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-623 863 moveto
-617 861 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-617 861 moveto
-612 863 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-612 863 moveto
-607 867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-607 867 moveto
-606 873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 873 moveto
-607 879 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-607 879 moveto
-612 883 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-612 883 moveto
-617 885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-798 885 moveto
-804 883 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-804 883 moveto
-808 879 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-808 879 moveto
-809 873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-809 873 moveto
-808 867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-808 867 moveto
-804 863 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-804 863 moveto
-798 861 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-798 861 moveto
-792 863 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-792 863 moveto
-788 867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-788 867 moveto
-786 873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-786 873 moveto
-788 879 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-788 879 moveto
-792 883 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-792 883 moveto
-798 885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-798 704 moveto
-804 703 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-804 703 moveto
-808 699 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-808 699 moveto
-809 693 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-809 693 moveto
-808 687 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-808 687 moveto
-804 682 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-804 682 moveto
-798 681 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-798 681 moveto
-792 682 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-792 682 moveto
-788 687 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-788 687 moveto
-786 693 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-786 693 moveto
-788 699 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-788 699 moveto
-792 703 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-792 703 moveto
-798 704 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-821 680 moveto
-819 675 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-819 675 moveto
-815 671 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-815 671 moveto
-810 669 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-810 896 moveto
-815 895 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-815 895 moveto
-819 891 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-819 891 moveto
-821 885 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 669 moveto
-600 671 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-600 671 moveto
-596 675 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-596 675 moveto
-594 680 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-594 885 moveto
-596 891 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-596 891 moveto
-600 895 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-600 895 moveto
-605 896 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-851 692 moveto
-835 692 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-835 692 moveto
-832 696 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 696 moveto
-832 702 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 702 moveto
-835 705 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-835 705 moveto
-851 705 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 711 moveto
-851 723 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 717 moveto
-832 717 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-841 739 moveto
-841 742 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-841 742 moveto
-832 742 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 742 moveto
-832 732 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 732 moveto
-835 729 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-835 729 moveto
-848 729 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 729 moveto
-851 732 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 732 moveto
-851 742 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 769 moveto
-835 766 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-835 766 moveto
-848 766 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 766 moveto
-851 769 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 769 moveto
-851 772 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 772 moveto
-848 775 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 775 moveto
-835 775 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-835 775 moveto
-832 772 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 772 moveto
-832 769 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 781 moveto
-851 785 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 785 moveto
-832 785 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 781 moveto
-832 788 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-841 794 moveto
-841 803 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-841 803 moveto
-838 806 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-838 806 moveto
-835 806 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-835 806 moveto
-832 803 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 803 moveto
-832 797 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 797 moveto
-835 794 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-835 794 moveto
-844 794 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-844 794 moveto
-851 800 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 800 moveto
-851 803 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 831 moveto
-851 834 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 834 moveto
-832 834 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 831 moveto
-832 837 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 846 moveto
-832 849 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-832 849 moveto
-838 855 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-838 855 moveto
-848 855 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 855 moveto
-851 852 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 852 moveto
-851 846 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-851 846 moveto
-848 843 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-848 843 moveto
-844 843 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-844 843 moveto
-841 846 lineto
-stroke
-1.00 0.00 0.00 setrgbcolor
-841 846 moveto
-841 855 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2900 moveto
-209 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-121 2915 moveto
-121 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 3088 moveto
-119 2867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-211 2867 moveto
-211 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2900 moveto
-121 2915 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2900 moveto
-172 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2898 moveto
-178 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2893 moveto
-180 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2885 moveto
-178 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2878 moveto
-172 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2873 moveto
-165 2871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2871 moveto
-158 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2873 moveto
-152 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2878 moveto
-150 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2885 moveto
-152 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2893 moveto
-158 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2898 moveto
-165 2900 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2867 moveto
-211 2867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 3055 moveto
-121 3040 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 3084 moveto
-172 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 3082 moveto
-178 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 3077 moveto
-180 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 3070 moveto
-178 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 3062 moveto
-172 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 3057 moveto
-165 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 3055 moveto
-158 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 3057 moveto
-152 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 3062 moveto
-150 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 3070 moveto
-152 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 3077 moveto
-158 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 3082 moveto
-165 3084 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-211 3088 moveto
-119 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2900 moveto
-430 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-342 2915 moveto
-342 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 3088 moveto
-340 2867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-432 2867 moveto
-432 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2900 moveto
-342 2915 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2900 moveto
-393 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2898 moveto
-398 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2893 moveto
-400 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2885 moveto
-398 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2878 moveto
-393 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2873 moveto
-386 2871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2871 moveto
-378 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2873 moveto
-373 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2878 moveto
-371 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2885 moveto
-373 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2893 moveto
-378 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2898 moveto
-386 2900 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2867 moveto
-432 2867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 3055 moveto
-342 3040 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 3084 moveto
-393 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 3082 moveto
-398 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 3077 moveto
-400 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 3070 moveto
-398 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 3062 moveto
-393 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 3057 moveto
-386 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 3055 moveto
-378 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 3057 moveto
-373 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 3062 moveto
-371 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 3070 moveto
-373 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 3077 moveto
-378 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 3082 moveto
-386 3084 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-432 3088 moveto
-340 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2900 moveto
-651 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 2915 moveto
-562 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 3088 moveto
-560 2867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-652 2867 moveto
-652 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2900 moveto
-562 2915 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2900 moveto
-614 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2898 moveto
-619 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2893 moveto
-621 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2885 moveto
-619 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2878 moveto
-614 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2873 moveto
-606 2871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2871 moveto
-599 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2873 moveto
-594 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2878 moveto
-592 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2885 moveto
-594 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2893 moveto
-599 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2898 moveto
-606 2900 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2867 moveto
-652 2867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 3055 moveto
-562 3040 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 3084 moveto
-614 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 3082 moveto
-619 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 3077 moveto
-621 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 3070 moveto
-619 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 3062 moveto
-614 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 3057 moveto
-606 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 3055 moveto
-599 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 3057 moveto
-594 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 3062 moveto
-592 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 3070 moveto
-594 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 3077 moveto
-599 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 3082 moveto
-606 3084 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-652 3088 moveto
-560 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2900 moveto
-871 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-783 2915 moveto
-783 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 3088 moveto
-781 2867 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-873 2867 moveto
-873 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2900 moveto
-783 2915 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2900 moveto
-834 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2898 moveto
-840 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2893 moveto
-842 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2885 moveto
-840 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2878 moveto
-834 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2873 moveto
-827 2871 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2871 moveto
-820 2873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2873 moveto
-814 2878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2878 moveto
-812 2885 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2885 moveto
-814 2893 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2893 moveto
-820 2898 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2898 moveto
-827 2900 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2867 moveto
-873 2867 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 3055 moveto
-783 3040 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 3084 moveto
-834 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 3082 moveto
-840 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 3077 moveto
-842 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 3070 moveto
-840 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 3062 moveto
-834 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 3057 moveto
-827 3055 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 3055 moveto
-820 3057 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 3057 moveto
-814 3062 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 3062 moveto
-812 3070 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 3070 moveto
-814 3077 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 3077 moveto
-820 3082 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 3082 moveto
-827 3084 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-873 3088 moveto
-781 3088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2569 moveto
-209 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-121 2583 moveto
-121 2709 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2757 moveto
-119 2536 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-211 2536 moveto
-211 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2569 moveto
-121 2583 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2569 moveto
-172 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2567 moveto
-178 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2561 moveto
-180 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2554 moveto
-178 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2547 moveto
-172 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2541 moveto
-165 2539 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2539 moveto
-158 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2541 moveto
-152 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2547 moveto
-150 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2554 moveto
-152 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2561 moveto
-158 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2567 moveto
-165 2569 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2536 moveto
-211 2536 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2723 moveto
-121 2709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2753 moveto
-172 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2751 moveto
-178 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2745 moveto
-180 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2738 moveto
-178 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2731 moveto
-172 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2725 moveto
-165 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2723 moveto
-158 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2725 moveto
-152 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2731 moveto
-150 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2738 moveto
-152 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2745 moveto
-158 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2751 moveto
-165 2753 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-211 2757 moveto
-119 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2569 moveto
-430 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-342 2583 moveto
-342 2709 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2757 moveto
-340 2536 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-432 2536 moveto
-432 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2569 moveto
-342 2583 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2569 moveto
-393 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2567 moveto
-398 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2561 moveto
-400 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2554 moveto
-398 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2547 moveto
-393 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2541 moveto
-386 2539 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2539 moveto
-378 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2541 moveto
-373 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2547 moveto
-371 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2554 moveto
-373 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2561 moveto
-378 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2567 moveto
-386 2569 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2536 moveto
-432 2536 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2723 moveto
-342 2709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2753 moveto
-393 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2751 moveto
-398 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2745 moveto
-400 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2738 moveto
-398 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2731 moveto
-393 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2725 moveto
-386 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2723 moveto
-378 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2725 moveto
-373 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2731 moveto
-371 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2738 moveto
-373 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2745 moveto
-378 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2751 moveto
-386 2753 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-432 2757 moveto
-340 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2569 moveto
-651 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 2583 moveto
-562 2709 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2757 moveto
-560 2536 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-652 2536 moveto
-652 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2569 moveto
-562 2583 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2569 moveto
-614 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2567 moveto
-619 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2561 moveto
-621 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2554 moveto
-619 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2547 moveto
-614 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2541 moveto
-606 2539 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2539 moveto
-599 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2541 moveto
-594 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2547 moveto
-592 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2554 moveto
-594 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2561 moveto
-599 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2567 moveto
-606 2569 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2536 moveto
-652 2536 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2723 moveto
-562 2709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2753 moveto
-614 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2751 moveto
-619 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2745 moveto
-621 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2738 moveto
-619 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2731 moveto
-614 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2725 moveto
-606 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2723 moveto
-599 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2725 moveto
-594 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2731 moveto
-592 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2738 moveto
-594 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2745 moveto
-599 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2751 moveto
-606 2753 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-652 2757 moveto
-560 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2569 moveto
-871 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-783 2583 moveto
-783 2709 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2757 moveto
-781 2536 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-873 2536 moveto
-873 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2569 moveto
-783 2583 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2569 moveto
-834 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2567 moveto
-840 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2561 moveto
-842 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2554 moveto
-840 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2547 moveto
-834 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2541 moveto
-827 2539 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2539 moveto
-820 2541 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2541 moveto
-814 2547 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2547 moveto
-812 2554 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2554 moveto
-814 2561 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2561 moveto
-820 2567 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2567 moveto
-827 2569 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2536 moveto
-873 2536 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2723 moveto
-783 2709 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2753 moveto
-834 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2751 moveto
-840 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2745 moveto
-842 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2738 moveto
-840 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2731 moveto
-834 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2725 moveto
-827 2723 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2723 moveto
-820 2725 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2725 moveto
-814 2731 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2731 moveto
-812 2738 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2738 moveto
-814 2745 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2745 moveto
-820 2751 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2751 moveto
-827 2753 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-873 2757 moveto
-781 2757 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2237 moveto
-209 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-121 2252 moveto
-121 2377 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2425 moveto
-119 2204 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-211 2204 moveto
-211 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2237 moveto
-121 2252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2237 moveto
-172 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2235 moveto
-178 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2230 moveto
-180 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2223 moveto
-178 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2215 moveto
-172 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2210 moveto
-165 2208 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2208 moveto
-158 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2210 moveto
-152 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2215 moveto
-150 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2223 moveto
-152 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2230 moveto
-158 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2235 moveto
-165 2237 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2204 moveto
-211 2204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2392 moveto
-121 2377 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2421 moveto
-172 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2419 moveto
-178 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2414 moveto
-180 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2407 moveto
-178 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2399 moveto
-172 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2394 moveto
-165 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2392 moveto
-158 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2394 moveto
-152 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2399 moveto
-150 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2407 moveto
-152 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2414 moveto
-158 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2419 moveto
-165 2421 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-211 2425 moveto
-119 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2237 moveto
-430 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-342 2252 moveto
-342 2377 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2425 moveto
-340 2204 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-432 2204 moveto
-432 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2237 moveto
-342 2252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2237 moveto
-393 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2235 moveto
-398 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2230 moveto
-400 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2223 moveto
-398 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2215 moveto
-393 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2210 moveto
-386 2208 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2208 moveto
-378 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2210 moveto
-373 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2215 moveto
-371 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2223 moveto
-373 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2230 moveto
-378 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2235 moveto
-386 2237 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2204 moveto
-432 2204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2392 moveto
-342 2377 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2421 moveto
-393 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2419 moveto
-398 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2414 moveto
-400 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2407 moveto
-398 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2399 moveto
-393 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2394 moveto
-386 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2392 moveto
-378 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2394 moveto
-373 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2399 moveto
-371 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2407 moveto
-373 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2414 moveto
-378 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2419 moveto
-386 2421 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-432 2425 moveto
-340 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2237 moveto
-651 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 2252 moveto
-562 2377 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2425 moveto
-560 2204 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-652 2204 moveto
-652 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2237 moveto
-562 2252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2237 moveto
-614 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2235 moveto
-619 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2230 moveto
-621 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2223 moveto
-619 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2215 moveto
-614 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2210 moveto
-606 2208 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2208 moveto
-599 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2210 moveto
-594 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2215 moveto
-592 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2223 moveto
-594 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2230 moveto
-599 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2235 moveto
-606 2237 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2204 moveto
-652 2204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2392 moveto
-562 2377 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2421 moveto
-614 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2419 moveto
-619 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2414 moveto
-621 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2407 moveto
-619 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2399 moveto
-614 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2394 moveto
-606 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2392 moveto
-599 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2394 moveto
-594 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2399 moveto
-592 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2407 moveto
-594 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2414 moveto
-599 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2419 moveto
-606 2421 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-652 2425 moveto
-560 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2237 moveto
-871 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-783 2252 moveto
-783 2377 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2425 moveto
-781 2204 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-873 2204 moveto
-873 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2237 moveto
-783 2252 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2237 moveto
-834 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2235 moveto
-840 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2230 moveto
-842 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2223 moveto
-840 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2215 moveto
-834 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2210 moveto
-827 2208 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2208 moveto
-820 2210 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2210 moveto
-814 2215 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2215 moveto
-812 2223 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2223 moveto
-814 2230 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2230 moveto
-820 2235 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2235 moveto
-827 2237 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2204 moveto
-873 2204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2392 moveto
-783 2377 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2421 moveto
-834 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2419 moveto
-840 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2414 moveto
-842 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2407 moveto
-840 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2399 moveto
-834 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2394 moveto
-827 2392 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2392 moveto
-820 2394 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2394 moveto
-814 2399 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2399 moveto
-812 2407 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2407 moveto
-814 2414 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2414 moveto
-820 2419 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2419 moveto
-827 2421 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-873 2425 moveto
-781 2425 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 1906 moveto
-209 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-121 1921 moveto
-121 2046 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 2094 moveto
-119 1873 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-211 1873 moveto
-211 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 1906 moveto
-121 1921 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 1906 moveto
-172 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 1904 moveto
-178 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 1899 moveto
-180 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 1891 moveto
-178 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 1884 moveto
-172 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 1878 moveto
-165 1876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 1876 moveto
-158 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 1878 moveto
-152 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 1884 moveto
-150 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 1891 moveto
-152 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 1899 moveto
-158 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 1904 moveto
-165 1906 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-119 1873 moveto
-211 1873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-209 2061 moveto
-121 2046 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2090 moveto
-172 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2088 moveto
-178 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2083 moveto
-180 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-180 2075 moveto
-178 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-178 2068 moveto
-172 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-172 2063 moveto
-165 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-165 2061 moveto
-158 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2063 moveto
-152 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2068 moveto
-150 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2075 moveto
-152 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-152 2083 moveto
-158 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-158 2088 moveto
-165 2090 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-211 2094 moveto
-119 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 1906 moveto
-430 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-342 1921 moveto
-342 2046 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 2094 moveto
-340 1873 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-432 1873 moveto
-432 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 1906 moveto
-342 1921 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 1906 moveto
-393 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 1904 moveto
-398 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 1899 moveto
-400 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 1891 moveto
-398 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 1884 moveto
-393 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 1878 moveto
-386 1876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 1876 moveto
-378 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 1878 moveto
-373 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 1884 moveto
-371 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 1891 moveto
-373 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 1899 moveto
-378 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 1904 moveto
-386 1906 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-340 1873 moveto
-432 1873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-430 2061 moveto
-342 2046 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2090 moveto
-393 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2088 moveto
-398 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2083 moveto
-400 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-400 2075 moveto
-398 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-398 2068 moveto
-393 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-393 2063 moveto
-386 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-386 2061 moveto
-378 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2063 moveto
-373 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2068 moveto
-371 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 2075 moveto
-373 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-373 2083 moveto
-378 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-378 2088 moveto
-386 2090 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-432 2094 moveto
-340 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 1906 moveto
-651 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-562 1921 moveto
-562 2046 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 2094 moveto
-560 1873 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-652 1873 moveto
-652 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 1906 moveto
-562 1921 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 1906 moveto
-614 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 1904 moveto
-619 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 1899 moveto
-621 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 1891 moveto
-619 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 1884 moveto
-614 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 1878 moveto
-606 1876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 1876 moveto
-599 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 1878 moveto
-594 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 1884 moveto
-592 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 1891 moveto
-594 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 1899 moveto
-599 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 1904 moveto
-606 1906 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-560 1873 moveto
-652 1873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-651 2061 moveto
-562 2046 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2090 moveto
-614 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2088 moveto
-619 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2083 moveto
-621 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-621 2075 moveto
-619 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-619 2068 moveto
-614 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-614 2063 moveto
-606 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-606 2061 moveto
-599 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2063 moveto
-594 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2068 moveto
-592 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-592 2075 moveto
-594 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-594 2083 moveto
-599 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-599 2088 moveto
-606 2090 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-652 2094 moveto
-560 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 1906 moveto
-871 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-783 1921 moveto
-783 2046 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 2094 moveto
-781 1873 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-873 1873 moveto
-873 2094 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 1906 moveto
-783 1921 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 1906 moveto
-834 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 1904 moveto
-840 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 1899 moveto
-842 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 1891 moveto
-840 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 1884 moveto
-834 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 1878 moveto
-827 1876 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 1876 moveto
-820 1878 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 1878 moveto
-814 1884 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 1884 moveto
-812 1891 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 1891 moveto
-814 1899 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 1899 moveto
-820 1904 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 1904 moveto
-827 1906 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-781 1873 moveto
-873 1873 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-871 2061 moveto
-783 2046 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2090 moveto
-834 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2088 moveto
-840 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2083 moveto
-842 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-842 2075 moveto
-840 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-840 2068 moveto
-834 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-834 2063 moveto
-827 2061 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-827 2061 moveto
-820 2063 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2063 moveto
-814 2068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2068 moveto
-812 2075 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-812 2075 moveto
-814 2083 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-814 2083 moveto
-820 2088 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-820 2088 moveto
-827 2090 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-873 2094 moveto
-781 2094 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-876 2900 moveto
-926 2900 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-876 3055 moveto
-926 3055 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-917 2919 moveto
-917 3036 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-920 2919 moveto
-914 2919 lineto
-917 2900 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-920 3036 moveto
-914 3036 lineto
-917 3055 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-937 2965 moveto
-940 2968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-940 2968 moveto
-940 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-940 2974 moveto
-937 2977 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-937 2977 moveto
-934 2977 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-934 2977 moveto
-931 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-931 2974 moveto
-931 2968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-931 2968 moveto
-927 2965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-927 2965 moveto
-921 2965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-921 2965 moveto
-921 2977 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-937 2984 moveto
-940 2987 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-940 2987 moveto
-921 2987 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-921 2984 moveto
-921 2990 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-778 2915 moveto
-709 2915 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-778 3040 moveto
-709 3040 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 2933 moveto
-718 3022 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-721 2933 moveto
-715 2933 lineto
-718 2915 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-721 3022 moveto
-715 3022 lineto
-718 3040 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-738 2965 moveto
-741 2968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-741 2968 moveto
-723 2968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-723 2965 moveto
-723 2971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-741 2977 moveto
-741 2990 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-741 2990 moveto
-723 2981 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-783 3045 moveto
-783 3179 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-871 3059 moveto
-871 3179 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-801 3170 moveto
-853 3170 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-801 3167 moveto
-801 3173 lineto
-783 3170 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-853 3167 moveto
-853 3173 lineto
-871 3170 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-815 3150 moveto
-818 3147 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-818 3147 moveto
-818 3166 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-815 3166 moveto
-821 3166 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-827 3150 moveto
-830 3147 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-830 3147 moveto
-836 3147 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-836 3147 moveto
-839 3150 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-839 3150 moveto
-839 3153 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-839 3153 moveto
-836 3156 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-836 3156 moveto
-830 3156 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-830 3156 moveto
-827 3160 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-827 3160 moveto
-827 3166 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-827 3166 moveto
-839 3166 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-823 2885 moveto
-663 2885 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-823 3070 moveto
-663 3070 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-672 2904 moveto
-672 3051 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-675 2904 moveto
-669 2904 lineto
-672 2885 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-675 3051 moveto
-669 3051 lineto
-672 3070 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-692 2962 moveto
-695 2965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-695 2965 moveto
-695 2971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-695 2971 moveto
-692 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-692 2974 moveto
-689 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 2974 moveto
-686 2971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-686 2971 moveto
-686 2965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-686 2965 moveto
-683 2962 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-683 2962 moveto
-677 2962 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-677 2962 moveto
-677 2974 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-680 2981 moveto
-677 2984 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-677 2984 moveto
-677 2990 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-677 2990 moveto
-680 2993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-680 2993 moveto
-686 2993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-686 2993 moveto
-689 2990 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 2990 moveto
-689 2981 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 2981 moveto
-695 2981 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-695 2981 moveto
-695 2993 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-848 2796 moveto
-835 2853 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-820 2918 moveto
-815 2936 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-854 2806 moveto
-857 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-857 2803 moveto
-863 2805 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-863 2805 moveto
-866 2808 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-866 2808 moveto
-864 2814 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-864 2814 moveto
-861 2817 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-861 2817 moveto
-855 2815 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-855 2815 moveto
-852 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-852 2812 moveto
-854 2806 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-851 2803 moveto
-867 2817 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-850 2833 moveto
-853 2821 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-853 2821 moveto
-863 2833 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-863 2833 moveto
-845 2829 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-824 2900 moveto
-830 2871 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-823 2918 moveto
-817 2917 lineto
-824 2900 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-838 2854 moveto
-832 2852 lineto
-830 2871 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-696 1532 moveto
-703 1530 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-703 1530 moveto
-709 1525 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-709 1525 moveto
-711 1517 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-711 1517 moveto
-709 1510 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-709 1510 moveto
-703 1505 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-703 1505 moveto
-696 1503 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-696 1503 moveto
-689 1505 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-689 1505 moveto
-683 1510 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-683 1510 moveto
-681 1517 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-681 1517 moveto
-683 1525 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-683 1525 moveto
-689 1530 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-689 1530 moveto
-696 1532 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-667 1473 moveto
-255 1473 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-678 1562 moveto
-244 1562 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-667 1473 moveto
-678 1562 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-244 1562 moveto
-255 1473 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-225 1532 moveto
-233 1530 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-233 1530 moveto
-238 1525 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-238 1525 moveto
-240 1517 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-240 1517 moveto
-238 1510 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-238 1510 moveto
-233 1505 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-233 1505 moveto
-225 1503 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-225 1503 moveto
-218 1505 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-218 1505 moveto
-212 1510 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-212 1510 moveto
-210 1517 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-210 1517 moveto
-212 1525 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-212 1525 moveto
-218 1530 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-218 1530 moveto
-225 1532 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-696 1701 moveto
-703 1699 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-703 1699 moveto
-709 1693 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-709 1693 moveto
-711 1686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-711 1686 moveto
-709 1679 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-709 1679 moveto
-703 1673 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-703 1673 moveto
-696 1671 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-696 1671 moveto
-689 1673 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-689 1673 moveto
-683 1679 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-683 1679 moveto
-681 1686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-681 1686 moveto
-683 1693 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-683 1693 moveto
-689 1699 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-689 1699 moveto
-696 1701 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-667 1642 moveto
-255 1642 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-678 1730 moveto
-244 1730 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-667 1642 moveto
-678 1730 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-244 1730 moveto
-255 1642 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-225 1701 moveto
-233 1699 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-233 1699 moveto
-238 1693 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-238 1693 moveto
-240 1686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-240 1686 moveto
-238 1679 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-238 1679 moveto
-233 1673 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-233 1673 moveto
-225 1671 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-225 1671 moveto
-218 1673 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-218 1673 moveto
-212 1679 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-212 1679 moveto
-210 1686 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-210 1686 moveto
-212 1693 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-212 1693 moveto
-218 1699 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-218 1699 moveto
-225 1701 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-696 1513 moveto
-696 1403 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-225 1513 moveto
-225 1403 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-678 1413 moveto
-244 1413 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-678 1410 moveto
-678 1416 lineto
-696 1413 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-244 1410 moveto
-244 1416 lineto
-225 1413 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-451 1399 moveto
-460 1399 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-460 1399 moveto
-463 1402 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-463 1402 moveto
-463 1405 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-463 1405 moveto
-460 1408 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-460 1408 moveto
-454 1408 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-454 1408 moveto
-451 1405 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-451 1405 moveto
-451 1396 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-451 1396 moveto
-457 1390 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-457 1390 moveto
-460 1390 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-481 1402 moveto
-469 1402 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-469 1402 moveto
-478 1390 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-478 1390 moveto
-478 1408 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-667 1469 moveto
-667 1438 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-255 1469 moveto
-255 1438 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-648 1447 moveto
-273 1447 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-648 1444 moveto
-648 1450 lineto
-667 1447 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-273 1444 moveto
-273 1450 lineto
-255 1447 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-451 1440 moveto
-454 1443 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-454 1443 moveto
-461 1443 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-461 1443 moveto
-464 1440 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-464 1440 moveto
-464 1434 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-464 1434 moveto
-461 1431 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-461 1431 moveto
-451 1431 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-451 1431 moveto
-451 1424 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-451 1424 moveto
-464 1424 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-470 1434 moveto
-479 1434 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-479 1434 moveto
-482 1437 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-482 1437 moveto
-482 1440 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-482 1440 moveto
-479 1443 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-479 1443 moveto
-473 1443 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-473 1443 moveto
-470 1440 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-470 1440 moveto
-470 1431 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-470 1431 moveto
-476 1424 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-476 1424 moveto
-479 1424 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-678 1566 moveto
-678 1621 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-244 1566 moveto
-244 1621 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-659 1612 moveto
-262 1612 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-659 1609 moveto
-659 1615 lineto
-678 1612 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-262 1609 moveto
-262 1615 lineto
-244 1612 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-445 1605 moveto
-448 1608 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-448 1608 moveto
-455 1608 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-455 1608 moveto
-458 1605 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-458 1605 moveto
-458 1598 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-458 1598 moveto
-455 1595 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-455 1595 moveto
-445 1595 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-445 1595 moveto
-445 1589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-445 1589 moveto
-458 1589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-467 1608 moveto
-470 1608 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-470 1608 moveto
-476 1602 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-476 1602 moveto
-476 1592 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-476 1592 moveto
-473 1589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-473 1589 moveto
-467 1589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-467 1589 moveto
-464 1592 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-464 1592 moveto
-464 1595 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-464 1595 moveto
-467 1598 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-467 1598 moveto
-476 1598 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-239 1562 moveto
-123 1562 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-250 1473 moveto
-123 1473 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-132 1543 moveto
-132 1492 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-135 1543 moveto
-129 1543 lineto
-132 1562 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-135 1492 moveto
-129 1492 lineto
-132 1473 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-152 1504 moveto
-155 1507 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-155 1507 moveto
-137 1507 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 1504 moveto
-137 1510 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-152 1516 moveto
-155 1519 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-155 1519 moveto
-155 1525 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-155 1525 moveto
-152 1528 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-152 1528 moveto
-149 1528 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-149 1528 moveto
-146 1525 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-146 1525 moveto
-146 1519 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-146 1519 moveto
-143 1516 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-143 1516 moveto
-137 1516 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 1516 moveto
-137 1528 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-737 1599 moveto
-711 1547 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-681 1488 moveto
-673 1471 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-729 1567 moveto
-731 1563 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 1563 moveto
-736 1560 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-736 1560 moveto
-740 1562 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-740 1562 moveto
-743 1567 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-743 1567 moveto
-742 1571 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-742 1571 moveto
-736 1574 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-736 1574 moveto
-732 1573 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-732 1573 moveto
-729 1567 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-726 1567 moveto
-746 1567 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-744 1590 moveto
-739 1579 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-739 1579 moveto
-754 1582 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-754 1582 moveto
-737 1590 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-690 1504 moveto
-703 1531 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-684 1486 moveto
-679 1489 lineto
-690 1504 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-714 1546 moveto
-708 1548 lineto
-703 1531 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-93 141 moveto
-141 209 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-176 258 moveto
-187 273 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-104 143 moveto
-105 139 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-105 139 moveto
-110 135 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-110 135 moveto
-114 136 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-114 136 moveto
-118 141 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-118 141 moveto
-117 145 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-117 145 moveto
-112 149 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-112 149 moveto
-108 148 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-108 148 moveto
-104 143 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-101 144 moveto
-121 140 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 148 moveto
-127 149 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-127 149 moveto
-131 154 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-131 154 moveto
-130 158 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-130 158 moveto
-128 160 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-128 160 moveto
-123 160 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 160 moveto
-121 157 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 160 moveto
-123 164 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 164 moveto
-120 166 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-120 166 moveto
-116 165 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-116 165 moveto
-112 160 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-112 160 moveto
-113 156 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-121 172 moveto
-124 171 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 169 moveto
-141 169 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-141 169 moveto
-145 174 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-145 174 moveto
-144 179 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-144 179 moveto
-142 180 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-142 180 moveto
-137 180 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 180 moveto
-134 175 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-134 175 moveto
-130 174 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-130 174 moveto
-125 177 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-125 177 moveto
-132 187 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-165 243 moveto
-152 224 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-179 256 moveto
-174 260 lineto
-165 243 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-144 207 moveto
-139 211 lineto
-152 224 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-529 162 moveto
-587 221 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-630 263 moveto
-643 276 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-540 162 moveto
-540 158 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-540 158 moveto
-544 153 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-544 153 moveto
-548 153 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-548 153 moveto
-553 158 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-553 158 moveto
-553 162 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-553 162 moveto
-548 166 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-548 166 moveto
-544 166 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-544 166 moveto
-540 162 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-536 163 moveto
-556 156 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-559 164 moveto
-564 164 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-564 164 moveto
-568 168 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-568 168 moveto
-568 173 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-568 173 moveto
-566 175 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-566 175 moveto
-561 175 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-561 175 moveto
-559 173 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-561 175 moveto
-561 179 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-561 179 moveto
-559 181 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-559 181 moveto
-555 181 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-555 181 moveto
-551 177 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-551 177 moveto
-551 173 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-561 188 moveto
-564 186 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-577 181 moveto
-581 181 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-581 181 moveto
-585 186 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-585 186 moveto
-585 190 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-585 190 moveto
-583 192 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-583 192 moveto
-579 192 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-579 192 moveto
-574 188 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-574 188 moveto
-570 188 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-570 188 moveto
-566 192 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-566 192 moveto
-574 201 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-617 250 moveto
-600 234 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-632 261 moveto
-628 266 lineto
-617 250 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-589 218 moveto
-585 223 lineto
-600 234 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-545 606 moveto
-598 669 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-637 716 moveto
-649 730 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-556 607 moveto
-556 602 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-556 602 moveto
-561 599 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-561 599 moveto
-565 599 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-565 599 moveto
-569 604 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-569 604 moveto
-569 608 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-569 608 moveto
-564 612 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-564 612 moveto
-560 611 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-560 611 moveto
-556 607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-553 608 moveto
-573 603 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-575 611 moveto
-580 611 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-580 611 moveto
-583 616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-583 616 moveto
-583 620 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-583 620 moveto
-581 622 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-581 622 moveto
-576 622 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-576 622 moveto
-574 619 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-576 622 moveto
-576 626 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-576 626 moveto
-574 628 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-574 628 moveto
-569 628 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-569 628 moveto
-565 623 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-565 623 moveto
-566 619 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-575 635 moveto
-578 633 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-591 630 moveto
-595 630 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-595 630 moveto
-599 635 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-599 635 moveto
-599 639 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-599 639 moveto
-596 641 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-596 641 moveto
-592 641 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-592 641 moveto
-588 636 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-588 636 moveto
-584 635 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-584 635 moveto
-579 639 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-579 639 moveto
-587 649 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-625 702 moveto
-610 684 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-639 714 moveto
-634 718 lineto
-625 702 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-600 667 moveto
-596 671 lineto
-610 684 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-708 92 moveto
-708 207 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 475 moveto
-708 493 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 100 moveto
-718 97 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 97 moveto
-724 97 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 97 moveto
-728 100 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 100 moveto
-728 106 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 106 moveto
-724 109 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 109 moveto
-718 109 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 109 moveto
-715 106 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 106 moveto
-715 100 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 99 moveto
-731 108 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 115 moveto
-731 119 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 119 moveto
-731 125 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 125 moveto
-728 128 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 128 moveto
-724 128 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 128 moveto
-721 125 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 125 moveto
-721 122 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 125 moveto
-718 128 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 128 moveto
-715 128 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 128 moveto
-712 125 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 125 moveto
-712 119 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 119 moveto
-715 115 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 134 moveto
-731 137 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 137 moveto
-712 137 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 134 moveto
-712 140 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 146 moveto
-715 146 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 152 moveto
-731 155 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 155 moveto
-731 161 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 161 moveto
-728 165 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 165 moveto
-724 165 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 165 moveto
-721 161 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 161 moveto
-721 158 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 161 moveto
-718 165 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 165 moveto
-715 165 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 165 moveto
-712 161 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 161 moveto
-712 155 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 155 moveto
-715 152 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 456 moveto
-708 226 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-711 475 moveto
-704 475 lineto
-708 456 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-711 207 moveto
-705 207 lineto
-708 226 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-708 566 moveto
-708 661 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 905 moveto
-708 923 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 574 moveto
-718 570 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 570 moveto
-724 570 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 570 moveto
-728 574 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 574 moveto
-728 580 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 580 moveto
-724 583 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 583 moveto
-718 583 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 583 moveto
-715 580 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 580 moveto
-715 574 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 572 moveto
-731 581 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 589 moveto
-731 592 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 592 moveto
-731 598 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 598 moveto
-728 601 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 601 moveto
-724 601 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 601 moveto
-721 598 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 598 moveto
-721 592 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 592 moveto
-718 589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 589 moveto
-712 589 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 589 moveto
-712 601 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 610 moveto
-715 607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 607 moveto
-718 607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 607 moveto
-721 610 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 610 moveto
-721 616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 616 moveto
-724 620 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 620 moveto
-728 620 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 620 moveto
-731 616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 616 moveto
-731 610 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 610 moveto
-728 607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 607 moveto
-724 607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-724 607 moveto
-721 610 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-721 616 moveto
-718 620 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-718 620 moveto
-715 620 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-715 620 moveto
-712 616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 616 moveto
-712 610 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 626 moveto
-715 626 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-728 632 moveto
-731 635 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-731 635 moveto
-712 635 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-712 632 moveto
-712 638 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 886 moveto
-708 679 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-711 905 moveto
-704 905 lineto
-708 886 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-711 661 moveto
-705 661 lineto
-708 679 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-266 94 moveto
-266 196 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-266 486 moveto
-266 505 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 102 moveto
-277 99 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 99 moveto
-283 99 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 99 moveto
-286 102 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 102 moveto
-286 108 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 108 moveto
-283 111 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 111 moveto
-277 111 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 111 moveto
-274 108 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 108 moveto
-274 102 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 100 moveto
-289 110 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 117 moveto
-289 120 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 120 moveto
-289 127 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 127 moveto
-286 130 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 130 moveto
-283 130 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 130 moveto
-280 127 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-280 127 moveto
-280 123 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-280 127 moveto
-277 130 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 130 moveto
-274 130 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 130 moveto
-271 127 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 127 moveto
-271 120 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 120 moveto
-274 117 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 148 moveto
-277 136 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-277 136 moveto
-289 145 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 145 moveto
-271 145 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 154 moveto
-274 154 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 160 moveto
-271 163 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 163 moveto
-271 169 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-271 169 moveto
-274 173 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-274 173 moveto
-280 173 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-280 173 moveto
-283 169 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 169 moveto
-283 160 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-283 160 moveto
-289 160 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 160 moveto
-289 173 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-266 468 moveto
-266 214 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-269 486 moveto
-263 486 lineto
-266 468 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-269 196 moveto
-263 196 lineto
-266 214 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-374 453 moveto
-374 554 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-159 453 moveto
-159 554 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-355 545 moveto
-177 545 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-355 542 moveto
-355 548 lineto
-374 545 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-177 542 moveto
-177 548 lineto
-159 545 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-239 525 moveto
-242 522 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-242 522 moveto
-248 522 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-248 522 moveto
-251 525 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-251 525 moveto
-251 528 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-251 528 moveto
-248 531 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-248 531 moveto
-242 531 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-242 531 moveto
-239 534 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-239 534 moveto
-239 540 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-239 540 moveto
-251 540 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 540 moveto
-263 540 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-263 540 moveto
-269 534 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-269 534 moveto
-269 525 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-269 525 moveto
-266 522 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-266 522 moveto
-260 522 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 522 moveto
-257 525 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-257 525 moveto
-257 528 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-257 528 moveto
-260 531 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-260 531 moveto
-269 531 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-275 540 moveto
-275 537 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-281 525 moveto
-284 522 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-284 522 moveto
-291 522 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-291 522 moveto
-294 525 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-294 525 moveto
-294 528 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-294 528 moveto
-291 531 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-291 531 moveto
-284 531 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-284 531 moveto
-281 534 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-281 534 moveto
-281 540 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-281 540 moveto
-294 540 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-798 878 moveto
-798 985 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-617 878 moveto
-617 985 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-779 976 moveto
-636 976 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-779 973 moveto
-779 979 lineto
-798 976 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-636 973 moveto
-636 979 lineto
-617 976 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-680 956 moveto
-683 953 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-683 953 moveto
-689 953 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 953 moveto
-692 956 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-692 956 moveto
-692 959 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-692 959 moveto
-689 962 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 962 moveto
-683 962 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-683 962 moveto
-680 965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-680 965 moveto
-680 971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-680 971 moveto
-692 971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-711 965 moveto
-698 965 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-698 965 moveto
-708 953 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 953 moveto
-708 971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-717 971 moveto
-717 968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-723 968 moveto
-726 971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-726 971 moveto
-732 971 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-732 971 moveto
-735 968 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-735 968 moveto
-735 962 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-735 962 moveto
-732 959 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-732 959 moveto
-723 959 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-723 959 moveto
-723 953 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-723 953 moveto
-735 953 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-807 445 moveto
-807 537 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-609 445 moveto
-609 537 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-788 528 moveto
-627 528 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-788 525 moveto
-788 531 lineto
-807 528 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-627 525 moveto
-627 531 lineto
-609 528 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-680 508 moveto
-683 505 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-683 505 moveto
-689 505 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 505 moveto
-692 508 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-692 508 moveto
-692 511 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-692 511 moveto
-689 514 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-689 514 moveto
-683 514 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-683 514 moveto
-680 517 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-680 517 moveto
-680 523 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-680 523 moveto
-692 523 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-698 514 moveto
-708 514 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 514 moveto
-711 517 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-711 517 moveto
-711 520 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-711 520 moveto
-708 523 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-708 523 moveto
-701 523 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-701 523 moveto
-698 520 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-698 520 moveto
-698 511 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-698 511 moveto
-705 505 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-705 505 moveto
-708 505 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-717 523 moveto
-717 520 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-726 523 moveto
-729 523 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-729 523 moveto
-735 517 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-735 517 moveto
-735 508 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-735 508 moveto
-732 505 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-732 505 moveto
-726 505 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-726 505 moveto
-723 508 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-723 508 moveto
-723 511 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-723 511 moveto
-726 514 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-726 514 moveto
-735 514 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-114 2757 moveto
-75 2757 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-114 2867 moveto
-75 2867 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-84 2775 moveto
-84 2849 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-87 2775 moveto
-81 2775 lineto
-84 2757 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-87 2849 moveto
-81 2849 lineto
-84 2867 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-104 2799 moveto
-107 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-107 2803 moveto
-89 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-89 2799 moveto
-89 2806 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-92 2812 moveto
-89 2815 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-89 2815 moveto
-89 2821 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-89 2821 moveto
-92 2824 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-92 2824 moveto
-98 2824 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-98 2824 moveto
-101 2821 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-101 2821 moveto
-101 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-101 2812 moveto
-107 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-107 2812 moveto
-107 2824 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-211 2862 moveto
-211 2822 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-340 2862 moveto
-340 2822 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-229 2832 moveto
-321 2832 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-229 2828 moveto
-229 2835 lineto
-211 2832 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-321 2828 moveto
-321 2835 lineto
-340 2832 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-251 2812 moveto
-254 2809 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-254 2809 moveto
-254 2827 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-251 2827 moveto
-257 2827 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-263 2809 moveto
-275 2809 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-275 2809 moveto
-266 2827 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-281 2827 moveto
-281 2824 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-288 2824 moveto
-291 2827 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-291 2827 moveto
-297 2827 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-297 2827 moveto
-300 2824 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-300 2824 moveto
-300 2818 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-300 2818 moveto
-297 2815 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-297 2815 moveto
-288 2815 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-288 2815 moveto
-288 2809 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-288 2809 moveto
-300 2809 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-303 1109 moveto
-260 1109 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-303 1300 moveto
-260 1300 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-269 1127 moveto
-269 1282 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-272 1127 moveto
-266 1127 lineto
-269 1109 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-272 1282 moveto
-266 1282 lineto
-269 1300 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-289 1189 moveto
-292 1192 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-292 1192 moveto
-292 1198 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-292 1198 moveto
-289 1201 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-289 1201 moveto
-286 1201 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 1201 moveto
-282 1198 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-282 1198 moveto
-282 1192 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-282 1192 moveto
-279 1189 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-279 1189 moveto
-273 1189 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-273 1189 moveto
-273 1201 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-282 1207 moveto
-282 1217 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-282 1217 moveto
-279 1220 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-279 1220 moveto
-276 1220 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-276 1220 moveto
-273 1217 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-273 1217 moveto
-273 1210 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-273 1210 moveto
-276 1207 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-276 1207 moveto
-286 1207 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 1207 moveto
-292 1213 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-292 1213 moveto
-292 1217 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-536 1104 moveto
-536 947 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-308 1104 moveto
-308 947 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-517 957 moveto
-326 957 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-517 954 moveto
-517 960 lineto
-536 957 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-326 954 moveto
-326 960 lineto
-308 957 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-413 937 moveto
-416 934 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-416 934 moveto
-422 934 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-422 934 moveto
-426 937 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-426 937 moveto
-426 940 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-426 940 moveto
-422 943 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-422 943 moveto
-419 943 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-422 943 moveto
-426 946 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-426 946 moveto
-426 949 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-426 949 moveto
-422 952 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-422 952 moveto
-416 952 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-416 952 moveto
-413 949 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-432 937 moveto
-435 934 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-435 934 moveto
-435 952 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-432 952 moveto
-438 952 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-221 1517 moveto
-165 1517 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-221 1473 moveto
-165 1473 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-175 1536 moveto
-175 1554 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-175 1455 moveto
-175 1436 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-175 1517 moveto
-175 1473 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-178 1536 moveto
-172 1536 lineto
-175 1517 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-178 1455 moveto
-172 1455 lineto
-175 1473 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-188 1489 moveto
-188 1498 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-188 1498 moveto
-185 1501 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-185 1501 moveto
-182 1501 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-182 1501 moveto
-179 1498 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-179 1498 moveto
-179 1492 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-179 1492 moveto
-182 1489 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-182 1489 moveto
-192 1489 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-192 1489 moveto
-198 1495 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-198 1495 moveto
-198 1498 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-827 3074 moveto
-827 3136 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-783 3045 moveto
-783 3136 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-846 3126 moveto
-864 3126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-765 3126 moveto
-746 3126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-827 3126 moveto
-783 3126 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-846 3123 moveto
-846 3129 lineto
-827 3126 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-765 3123 moveto
-765 3129 lineto
-783 3126 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-799 3113 moveto
-808 3113 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-808 3113 moveto
-811 3116 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-811 3116 moveto
-811 3119 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-811 3119 moveto
-808 3122 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-808 3122 moveto
-802 3122 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-802 3122 moveto
-799 3119 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-799 3119 moveto
-799 3109 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-799 3109 moveto
-805 3103 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-805 3103 moveto
-808 3103 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-422 1017 moveto
-422 1094 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-422 1315 moveto
-422 1333 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-429 1025 moveto
-433 1022 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-433 1022 moveto
-439 1022 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-439 1022 moveto
-442 1025 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-442 1025 moveto
-442 1031 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-442 1031 moveto
-439 1034 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-439 1034 moveto
-433 1034 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-433 1034 moveto
-429 1031 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-429 1031 moveto
-429 1025 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-426 1023 moveto
-445 1032 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-442 1040 moveto
-445 1043 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-445 1043 moveto
-445 1049 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-445 1049 moveto
-442 1052 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-442 1052 moveto
-439 1052 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-439 1052 moveto
-436 1049 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-436 1049 moveto
-436 1043 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-436 1043 moveto
-433 1040 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-433 1040 moveto
-426 1040 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-426 1040 moveto
-426 1052 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-429 1059 moveto
-426 1062 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-426 1062 moveto
-426 1068 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-426 1068 moveto
-429 1071 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-429 1071 moveto
-436 1071 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-436 1071 moveto
-439 1068 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-439 1068 moveto
-439 1059 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-439 1059 moveto
-445 1059 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-445 1059 moveto
-445 1071 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-422 1296 moveto
-422 1112 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-425 1315 moveto
-419 1315 lineto
-422 1296 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-425 1094 moveto
-419 1094 lineto
-422 1112 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-540 1109 moveto
-585 1109 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-533 1131 moveto
-585 1131 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-576 1090 moveto
-576 1072 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-576 1149 moveto
-576 1167 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-576 1109 moveto
-576 1131 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-579 1090 moveto
-573 1090 lineto
-576 1109 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-579 1149 moveto
-573 1149 lineto
-576 1131 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-596 1113 moveto
-599 1117 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-599 1117 moveto
-599 1123 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-599 1123 moveto
-596 1126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-596 1126 moveto
-593 1126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-593 1126 moveto
-590 1123 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-590 1123 moveto
-590 1120 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-590 1123 moveto
-587 1126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-587 1126 moveto
-584 1126 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-584 1126 moveto
-581 1123 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-581 1123 moveto
-581 1117 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-581 1117 moveto
-584 1113 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-476 1047 moveto
-500 1100 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-527 1161 moveto
-535 1178 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-486 1051 moveto
-488 1047 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 1047 moveto
-494 1045 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-494 1045 moveto
-498 1046 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-498 1046 moveto
-500 1052 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-500 1052 moveto
-499 1056 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-499 1056 moveto
-493 1058 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-493 1058 moveto
-489 1057 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-489 1057 moveto
-486 1051 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-483 1051 moveto
-504 1052 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-501 1075 moveto
-496 1064 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-496 1064 moveto
-510 1067 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-510 1067 moveto
-494 1075 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-520 1144 moveto
-508 1117 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-530 1160 moveto
-525 1162 lineto
-520 1144 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-503 1099 moveto
-497 1102 lineto
-508 1117 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-422 1296 moveto
-440 1295 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-440 1295 moveto
-457 1289 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-457 1289 moveto
-473 1281 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-473 1281 moveto
-487 1269 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-487 1269 moveto
-498 1255 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-498 1255 moveto
-507 1240 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-507 1240 moveto
-512 1222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-512 1222 moveto
-514 1204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-514 1204 moveto
-512 1186 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-512 1186 moveto
-507 1169 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-507 1169 moveto
-498 1153 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-498 1153 moveto
-487 1139 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-487 1139 moveto
-473 1128 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-473 1128 moveto
-457 1119 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-457 1119 moveto
-440 1114 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-440 1114 moveto
-422 1112 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-422 1112 moveto
-404 1114 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-404 1114 moveto
-387 1119 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-387 1119 moveto
-371 1128 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 1128 moveto
-357 1139 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-357 1139 moveto
-345 1153 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-345 1153 moveto
-337 1169 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-337 1169 moveto
-332 1186 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-332 1186 moveto
-330 1204 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-330 1204 moveto
-332 1222 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-332 1222 moveto
-337 1240 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-337 1240 moveto
-345 1255 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-345 1255 moveto
-357 1269 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-357 1269 moveto
-371 1281 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-371 1281 moveto
-387 1289 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-387 1289 moveto
-404 1295 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-404 1295 moveto
-422 1296 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-308 1109 moveto
-536 1109 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-536 1300 moveto
-308 1300 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-308 1300 moveto
-308 1109 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-330 1293 moveto
-337 1291 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-337 1291 moveto
-343 1285 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-343 1285 moveto
-345 1278 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-345 1278 moveto
-343 1271 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-343 1271 moveto
-337 1265 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-337 1265 moveto
-330 1263 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-330 1263 moveto
-322 1265 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-322 1265 moveto
-317 1271 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-317 1271 moveto
-315 1278 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-315 1278 moveto
-317 1285 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-317 1285 moveto
-322 1291 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-322 1291 moveto
-330 1293 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-536 1109 moveto
-536 1300 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-514 1145 moveto
-521 1143 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-521 1143 moveto
-527 1138 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-527 1138 moveto
-528 1131 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-528 1131 moveto
-527 1123 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-527 1123 moveto
-521 1118 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-521 1118 moveto
-514 1116 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-514 1116 moveto
-506 1118 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-506 1118 moveto
-501 1123 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-501 1123 moveto
-499 1131 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-499 1131 moveto
-501 1138 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-501 1138 moveto
-506 1143 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-506 1143 moveto
-514 1145 lineto
-stroke
-pgsave restore
-showpage
-%%Trailer
-%%Pages: 1
-%%EOF
diff --git a/doc/aicconn.ps b/doc/aicconn.ps
deleted file mode 100644 (file)
index 6bb72f3..0000000
+++ /dev/null
@@ -1,6114 +0,0 @@
-%!
-/inch {72 mul} def
-
-/mils
-{
-1000 div inch
-} def
-
-/setcoords
-{
-8269 mils 0 translate
-90 rotate
-0.451036 0.451036 scale
-} def
-
-/box {
-exch dup 0 rlineto
-exch 0 exch rlineto
-neg 0 rlineto
-closepath
-stroke
-} def
-/fbox {
-exch dup 0 rlineto
-exch 0 exch rlineto
-neg 0 rlineto
-closepath
-fill
-} def
-
-
-setcoords
-
-2 setlinecap
-
-% Translate origin to the right place...
--2093 mils -71084 mils translate
-
-gsave
-gsave
-gsave
-newpath
-3400 mils 72000 mils moveto
-26700 mils 72000 mils lineto
-stroke
-grestore
-gsave
-newpath
-26700 mils 72000 mils moveto
-26700 mils 88500 mils lineto
-stroke
-grestore
-gsave
-newpath
-26700 mils 88500 mils moveto
-3400 mils 88500 mils lineto
-stroke
-grestore
-gsave
-newpath
-3400 mils 88500 mils moveto
-3400 mils 72000 mils lineto
-stroke
-grestore
-grestore
-
-
-gsave
-newpath
-22600 mils 72600 mils moveto
-22600 mils 72000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19200 mils 72400 mils moveto
-(FILE:) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-22700 mils 72400 mils moveto
-(REVISION:) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-22700 mils 72100 mils moveto
-(DRAWN BY: ) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19200 mils 72100 mils moveto
-(PAGE) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20900 mils 72100 mils moveto
-(OF) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19200 mils 72700 mils moveto
-(TITLE) show
-grestore
-
-gsave
-gsave
-newpath
-19100 mils 72000 mils moveto
-26700 mils 72000 mils lineto
-stroke
-grestore
-gsave
-newpath
-26700 mils 72000 mils moveto
-26700 mils 73400 mils lineto
-stroke
-grestore
-gsave
-newpath
-26700 mils 73400 mils moveto
-19100 mils 73400 mils lineto
-stroke
-grestore
-gsave
-newpath
-19100 mils 73400 mils moveto
-19100 mils 72000 mils lineto
-stroke
-grestore
-grestore
-
-gsave
-newpath
-19100 mils 72600 mils moveto
-26700 mils 72600 mils lineto
-stroke
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-20100 mils 72400 mils moveto
-(aicconn.sch) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-20300 mils 72100 mils moveto
-(3) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21700 mils 72100 mils moveto
-(3) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-19800 mils 72700 mils moveto
-(Actuator Interface Card - Edge Connector) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23600 mils 72400 mils moveto
-(1.1.0) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21500 mils 73200 mils moveto
-(Universidade Federal do Rio Grande do Sul) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21700 mils 73000 mils moveto
-(Departamento de Engenharia Eletrica) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-23600 mils 72100 mils moveto
-(Walter Fetter Lages & Fernando Pessutto) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12900 mils 86800 mils moveto
-12600 mils 86800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 86850 mils moveto
-(A1) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 86400 mils moveto
-12600 mils 86400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 86450 mils moveto
-(A2) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 86000 mils moveto
-12600 mils 86000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 86050 mils moveto
-(A3) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 85600 mils moveto
-12600 mils 85600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 85650 mils moveto
-(A4) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 85200 mils moveto
-12600 mils 85200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 85250 mils moveto
-(A5) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 84800 mils moveto
-12600 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 84850 mils moveto
-(A6) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 84400 mils moveto
-12900 mils 84400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 84450 mils moveto
-(A7) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 84000 mils moveto
-12600 mils 84000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 84050 mils moveto
-(A8) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 83600 mils moveto
-12600 mils 83600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12600 mils 83650 mils moveto
-(A9) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 83200 mils moveto
-12600 mils 83200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 83250 mils moveto
-(A10) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 82800 mils moveto
-12600 mils 82800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 82850 mils moveto
-(A11) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 82400 mils moveto
-12900 mils 82400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 82450 mils moveto
-(A12) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 82000 mils moveto
-12600 mils 82000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 82050 mils moveto
-(A13) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 81600 mils moveto
-12900 mils 81600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 81650 mils moveto
-(A14) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 81200 mils moveto
-12600 mils 81200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 81250 mils moveto
-(A15) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 80800 mils moveto
-12900 mils 80800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 80850 mils moveto
-(A16) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 80400 mils moveto
-12600 mils 80400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 80450 mils moveto
-(A17) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 80000 mils moveto
-12900 mils 80000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 80050 mils moveto
-(A18) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 79600 mils moveto
-12600 mils 79600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 79650 mils moveto
-(A19) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 79200 mils moveto
-12900 mils 79200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 79250 mils moveto
-(A20) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 78800 mils moveto
-12600 mils 78800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 78850 mils moveto
-(A21) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 78400 mils moveto
-12900 mils 78400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 78450 mils moveto
-(A22) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 78000 mils moveto
-12600 mils 78000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 78050 mils moveto
-(A23) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 77600 mils moveto
-12900 mils 77600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 77650 mils moveto
-(A24) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 77200 mils moveto
-12600 mils 77200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 77250 mils moveto
-(A25) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 76800 mils moveto
-12900 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 76850 mils moveto
-(A26) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 76400 mils moveto
-12600 mils 76400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 76450 mils moveto
-(A27) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 76000 mils moveto
-12900 mils 76000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 76050 mils moveto
-(A28) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 75600 mils moveto
-12600 mils 75600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 75650 mils moveto
-(A29) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 75200 mils moveto
-12900 mils 75200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 75250 mils moveto
-(A30) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12900 mils 74800 mils moveto
-12600 mils 74800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 74850 mils moveto
-(A31) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-12600 mils 74400 mils moveto
-12900 mils 74400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 74450 mils moveto
-(A32) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 86800 mils moveto
-16200 mils 86800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 86850 mils moveto
-(B1) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 86600 mils moveto
-16200 mils 86600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 86650 mils moveto
-(C1) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 86400 mils moveto
-16200 mils 86400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 86450 mils moveto
-(B2) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 86200 mils moveto
-16200 mils 86200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 86250 mils moveto
-(C2) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 86000 mils moveto
-16200 mils 86000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 86050 mils moveto
-(B3) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 85800 mils moveto
-16200 mils 85800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 85850 mils moveto
-(C3) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 85600 mils moveto
-16200 mils 85600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 85650 mils moveto
-(B4) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 85400 mils moveto
-16200 mils 85400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 85450 mils moveto
-(C4) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 85200 mils moveto
-16200 mils 85200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 85250 mils moveto
-(B5) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 85000 mils moveto
-16200 mils 85000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 85050 mils moveto
-(C5) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 84800 mils moveto
-16200 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 84850 mils moveto
-(B6) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 84600 mils moveto
-16200 mils 84600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 84650 mils moveto
-(C6) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 84400 mils moveto
-15900 mils 84400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 84450 mils moveto
-(B7) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 84200 mils moveto
-16200 mils 84200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 84250 mils moveto
-(C7) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 84000 mils moveto
-15900 mils 84000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 84050 mils moveto
-(B8) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 83800 mils moveto
-16200 mils 83800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 83850 mils moveto
-(C8) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 83600 mils moveto
-15900 mils 83600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 83650 mils moveto
-(B9) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 83400 mils moveto
-16200 mils 83400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 83450 mils moveto
-(C9) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 83200 mils moveto
-15900 mils 83200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 83250 mils moveto
-(B10) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 83000 mils moveto
-15900 mils 83000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 83050 mils moveto
-(C10) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 82800 mils moveto
-16200 mils 82800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 82850 mils moveto
-(B11) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 82600 mils moveto
-15900 mils 82600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 82650 mils moveto
-(C11) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 82400 mils moveto
-16200 mils 82400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 82450 mils moveto
-(B12) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 82200 mils moveto
-15900 mils 82200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 82250 mils moveto
-(C12) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 82000 mils moveto
-16200 mils 82000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 82050 mils moveto
-(B13) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 81800 mils moveto
-15900 mils 81800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 81850 mils moveto
-(C13) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 81600 mils moveto
-16200 mils 81600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 81650 mils moveto
-(B14) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 81400 mils moveto
-15900 mils 81400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 81450 mils moveto
-(C14) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 81200 mils moveto
-16200 mils 81200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 81250 mils moveto
-(B15) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 81000 mils moveto
-15900 mils 81000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 81050 mils moveto
-(C15) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 80800 mils moveto
-16200 mils 80800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 80850 mils moveto
-(B16) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 80600 mils moveto
-15900 mils 80600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 80650 mils moveto
-(C16) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 80400 mils moveto
-16200 mils 80400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 80450 mils moveto
-(B17) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 80200 mils moveto
-15900 mils 80200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 80250 mils moveto
-(C17) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 80000 mils moveto
-16200 mils 80000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 80050 mils moveto
-(B18) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 79800 mils moveto
-15900 mils 79800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 79850 mils moveto
-(C18) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 79600 mils moveto
-16200 mils 79600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 79650 mils moveto
-(B19) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 79400 mils moveto
-15900 mils 79400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 79450 mils moveto
-(C19) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 79200 mils moveto
-16200 mils 79200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 79250 mils moveto
-(B20) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 79000 mils moveto
-15900 mils 79000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 79050 mils moveto
-(C20) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 78800 mils moveto
-16200 mils 78800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 78850 mils moveto
-(B21) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 78600 mils moveto
-15900 mils 78600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 78650 mils moveto
-(C21) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 78400 mils moveto
-16200 mils 78400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 78450 mils moveto
-(B22) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 78200 mils moveto
-15900 mils 78200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 78250 mils moveto
-(C22) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 78000 mils moveto
-16200 mils 78000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 78050 mils moveto
-(B23) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 77800 mils moveto
-15900 mils 77800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 77850 mils moveto
-(C23) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 77600 mils moveto
-16200 mils 77600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 77650 mils moveto
-(B24) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 77400 mils moveto
-15900 mils 77400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 77450 mils moveto
-(C24) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 77200 mils moveto
-16200 mils 77200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 77250 mils moveto
-(B25) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 77000 mils moveto
-15900 mils 77000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 77050 mils moveto
-(C25) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 76800 mils moveto
-16200 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 76850 mils moveto
-(B26) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 76600 mils moveto
-15900 mils 76600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 76650 mils moveto
-(C26) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 76400 mils moveto
-16200 mils 76400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 76450 mils moveto
-(B27) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 76200 mils moveto
-16200 mils 76200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 76250 mils moveto
-(C27) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 76000 mils moveto
-15900 mils 76000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 76050 mils moveto
-(B28) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 75800 mils moveto
-16200 mils 75800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 75850 mils moveto
-(C28) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 75600 mils moveto
-15900 mils 75600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 75650 mils moveto
-(B29) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 75400 mils moveto
-16200 mils 75400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 75450 mils moveto
-(C29) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 75200 mils moveto
-15900 mils 75200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 75250 mils moveto
-(B30) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 75000 mils moveto
-16200 mils 75000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 75050 mils moveto
-(C30) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 74800 mils moveto
-15900 mils 74800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 74850 mils moveto
-(B31) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 74600 mils moveto
-16200 mils 74600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 74650 mils moveto
-(C31) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-16200 mils 74400 mils moveto
-15900 mils 74400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 74450 mils moveto
-(B32) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-15900 mils 74200 mils moveto
-16200 mils 74200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16000 mils 74250 mils moveto
-(C32) show
-grestore
-
-
-
-
-gsave
-gsave
-newpath
-12900 mils 74100 mils moveto
-15900 mils 74100 mils lineto
-stroke
-grestore
-gsave
-newpath
-15900 mils 74100 mils moveto
-15900 mils 87000 mils lineto
-stroke
-grestore
-gsave
-newpath
-15900 mils 87000 mils moveto
-12900 mils 87000 mils lineto
-stroke
-grestore
-gsave
-newpath
-12900 mils 87000 mils moveto
-12900 mils 74100 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-13000 mils 87100 mils moveto
-(DIN 41612C-96) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-15900 mils (J15) stringwidth pop
--1 mul add
-87100 mils
-moveto
-(J15) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 86800 mils moveto
-11600 mils 86800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11100 mils 86900 mils moveto
-11000 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 86800 mils moveto
-11100 mils 86700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 86800 mils moveto
-11500 mils 86700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 86900 mils moveto
-11600 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 86900 mils moveto
-11100 mils 86900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 86700 mils moveto
-11100 mils 86700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (CANL0) stringwidth pop
--1 mul add
-86800 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANL0) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 86200 mils moveto
-17200 mils 86200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17700 mils 86300 mils moveto
-17800 mils 86200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 86200 mils moveto
-17700 mils 86100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 86200 mils moveto
-17300 mils 86100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 86300 mils moveto
-17200 mils 86200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 86300 mils moveto
-17700 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 86100 mils moveto
-17700 mils 86100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 86200 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANH0) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 86000 mils moveto
-12600 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 86800 mils moveto
-12600 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 86200 mils moveto
-16200 mils 86200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 85400 mils moveto
-16200 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 86000 mils moveto
-11600 mils 86000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11100 mils 86100 mils moveto
-11000 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 86000 mils moveto
-11100 mils 85900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 86000 mils moveto
-11500 mils 85900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 86100 mils moveto
-11600 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 86100 mils moveto
-11100 mils 86100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 85900 mils moveto
-11100 mils 85900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (CANL1) stringwidth pop
--1 mul add
-86000 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANL1) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 85400 mils moveto
-17200 mils 85400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17700 mils 85500 mils moveto
-17800 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 85400 mils moveto
-17700 mils 85300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 85400 mils moveto
-17300 mils 85300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 85500 mils moveto
-17200 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 85500 mils moveto
-17700 mils 85500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 85300 mils moveto
-17700 mils 85300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 85400 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANH1) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 85200 mils moveto
-11600 mils 85200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 85300 mils moveto
-11600 mils 85100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 85300 mils moveto
-11100 mils 85300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 85300 mils moveto
-11000 mils 85200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 85200 mils moveto
-11100 mils 85100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 85100 mils moveto
-11600 mils 85100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (CHA) stringwidth pop
--1 mul add
-85200 mils
-10.000000
-.5 mul -1 mul add moveto
-(CHA) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 85200 mils moveto
-11800 mils 85200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 84600 mils moveto
-17200 mils 84600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 84700 mils moveto
-17200 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 84700 mils moveto
-17700 mils 84700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 84700 mils moveto
-17800 mils 84600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 84600 mils moveto
-17700 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 84500 mils moveto
-17200 mils 84500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 84600 mils
-10.000000
-.5 mul -1 mul add moveto
-(CHB) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 84600 mils moveto
-17000 mils 84600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 84400 mils moveto
-17200 mils 84400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 84500 mils moveto
-17200 mils 84300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 84500 mils moveto
-17700 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 84500 mils moveto
-17800 mils 84400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 84400 mils moveto
-17700 mils 84300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 84300 mils moveto
-17200 mils 84300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 84400 mils
-10.000000
-.5 mul -1 mul add moveto
-(INDEX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 84400 mils moveto
-16200 mils 84400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 85000 mils moveto
-17000 mils 85000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 84800 mils moveto
-12600 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 86400 mils moveto
-12600 mils 86400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 85600 mils moveto
-12600 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 86600 mils moveto
-17000 mils 86600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 85800 mils moveto
-16200 mils 85800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 84400 mils moveto
-12600 mils 84400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 86800 mils moveto
-17000 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 86400 mils moveto
-16200 mils 86400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 86000 mils moveto
-17000 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 85600 mils moveto
-16200 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 85200 mils moveto
-17000 mils 85200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 84800 mils moveto
-16200 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 84200 mils moveto
-16200 mils 84200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 76400 mils moveto
-17200 mils 76400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 76500 mils moveto
-17200 mils 76300 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-17200 mils 76500 mils moveto
-17800 mils 76500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 76500 mils moveto
-17800 mils 76300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 76300 mils moveto
-17200 mils 76300 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 76400 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 76200 mils moveto
-17200 mils 76200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 76300 mils moveto
-17200 mils 76100 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-17200 mils 76300 mils moveto
-17800 mils 76300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 76300 mils moveto
-17800 mils 76100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 76100 mils moveto
-17200 mils 76100 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 76200 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 78400 mils moveto
-17000 mils 78400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 78200 mils moveto
-16200 mils 78200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 76400 mils moveto
-17000 mils 76400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 76200 mils moveto
-16200 mils 76200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 74800 mils moveto
-17000 mils 74800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 74600 mils moveto
-16200 mils 74600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 77600 mils moveto
-16200 mils 77600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 77400 mils moveto
-16200 mils 77400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 74200 mils moveto
-16200 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 74400 mils moveto
-16200 mils 74400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75600 mils moveto
-17200 mils 75600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 75700 mils moveto
-17200 mils 75500 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-17200 mils 75700 mils moveto
-17800 mils 75700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75700 mils moveto
-17800 mils 75500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75500 mils moveto
-17200 mils 75500 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 75600 mils
-10.000000
-.5 mul -1 mul add moveto
-(+12V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75400 mils moveto
-17200 mils 75400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 75500 mils moveto
-17200 mils 75300 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-17200 mils 75500 mils moveto
-17800 mils 75500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75500 mils moveto
-17800 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75300 mils moveto
-17200 mils 75300 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 75400 mils
-10.000000
-.5 mul -1 mul add moveto
-(+12V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75600 mils moveto
-16200 mils 75600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75400 mils moveto
-16200 mils 75400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 76000 mils moveto
-17200 mils 76000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 76100 mils moveto
-17200 mils 75900 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-17200 mils 76100 mils moveto
-17800 mils 76100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 76100 mils moveto
-17800 mils 75900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75900 mils moveto
-17200 mils 75900 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 76000 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vcc) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75800 mils moveto
-17200 mils 75800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 75900 mils moveto
-17200 mils 75700 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-17200 mils 75900 mils moveto
-17800 mils 75900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75900 mils moveto
-17800 mils 75700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75700 mils moveto
-17200 mils 75700 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 75800 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vcc) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 76000 mils moveto
-16200 mils 76000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75800 mils moveto
-16200 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75200 mils moveto
-17200 mils 75200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 75300 mils moveto
-17200 mils 75100 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-17200 mils 75300 mils moveto
-17800 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75300 mils moveto
-17800 mils 75100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75100 mils moveto
-17200 mils 75100 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 75200 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75000 mils moveto
-17200 mils 75000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 75100 mils moveto
-17200 mils 74900 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-17200 mils 75100 mils moveto
-17800 mils 75100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 75100 mils moveto
-17800 mils 74900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 74900 mils moveto
-17200 mils 74900 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 75000 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 75200 mils moveto
-17000 mils 75200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 75000 mils moveto
-16200 mils 75000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 78000 mils moveto
-17000 mils 78000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 78100 mils moveto
-17800 mils 77900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 78100 mils moveto
-17300 mils 78100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 78100 mils moveto
-17200 mils 78000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 78000 mils moveto
-17300 mils 77900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77900 mils moveto
-17800 mils 77900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 78000 mils
-10.000000
-.5 mul -1 mul add moveto
-(/RELEASE) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 77800 mils moveto
-17000 mils 77800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 77900 mils moveto
-17800 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 77900 mils moveto
-17300 mils 77900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77900 mils moveto
-17200 mils 77800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 77800 mils moveto
-17300 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77700 mils moveto
-17800 mils 77700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 77800 mils
-10.000000
-.5 mul -1 mul add moveto
-(/RELEASE) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 78000 mils moveto
-17000 mils 78000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 77800 mils moveto
-16200 mils 77800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 77200 mils moveto
-17000 mils 77200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 77200 mils moveto
-17000 mils 77200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 77300 mils moveto
-17800 mils 77100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 77300 mils moveto
-17300 mils 77300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77300 mils moveto
-17200 mils 77200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 77200 mils moveto
-17300 mils 77100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77100 mils moveto
-17800 mils 77100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 77200 mils
-10.000000
-.5 mul -1 mul add moveto
-(MOTOR+) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 77000 mils moveto
-17000 mils 77000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 77100 mils moveto
-17800 mils 76900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 77100 mils moveto
-17300 mils 77100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77100 mils moveto
-17200 mils 77000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 77000 mils moveto
-17300 mils 76900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 76900 mils moveto
-17800 mils 76900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 77000 mils
-10.000000
-.5 mul -1 mul add moveto
-(MOTOR+) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 77000 mils moveto
-17000 mils 77000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 76800 mils moveto
-17000 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 76900 mils moveto
-17800 mils 76700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 76900 mils moveto
-17300 mils 76900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 76900 mils moveto
-17200 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 76800 mils moveto
-17300 mils 76700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 76700 mils moveto
-17800 mils 76700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 76800 mils
-10.000000
-.5 mul -1 mul add moveto
-(MOTOR-) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 76800 mils moveto
-17000 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 76600 mils moveto
-17000 mils 76600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 76700 mils moveto
-17800 mils 76500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 76700 mils moveto
-17300 mils 76700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 76700 mils moveto
-17200 mils 76600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 76600 mils moveto
-17300 mils 76500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 76500 mils moveto
-17800 mils 76500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 76600 mils
-10.000000
-.5 mul -1 mul add moveto
-(MOTOR-) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 76600 mils moveto
-17000 mils 76600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 74600 mils moveto
-17200 mils 74600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 74700 mils moveto
-17200 mils 74500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 74700 mils moveto
-17700 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74700 mils moveto
-17800 mils 74600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 74600 mils moveto
-17700 mils 74500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74500 mils moveto
-17200 mils 74500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 74600 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 74800 mils moveto
-17200 mils 74800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 74900 mils moveto
-17200 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 74900 mils moveto
-17700 mils 74900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74900 mils moveto
-17800 mils 74800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 74800 mils moveto
-17700 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74700 mils moveto
-17200 mils 74700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 74800 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 74400 mils moveto
-17200 mils 74400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 74500 mils moveto
-17200 mils 74300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 74500 mils moveto
-17700 mils 74500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74500 mils moveto
-17800 mils 74400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 74400 mils moveto
-17700 mils 74300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74300 mils moveto
-17200 mils 74300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 74400 mils
-10.000000
-.5 mul -1 mul add moveto
-(+24V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 74200 mils moveto
-17200 mils 74200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 74300 mils moveto
-17200 mils 74100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 74300 mils moveto
-17700 mils 74300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74300 mils moveto
-17800 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 74200 mils moveto
-17700 mils 74100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74100 mils moveto
-17200 mils 74100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 74200 mils
-10.000000
-.5 mul -1 mul add moveto
-(+24V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 78400 mils moveto
-17000 mils 78400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 78500 mils moveto
-17800 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 78500 mils moveto
-17300 mils 78500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 78500 mils moveto
-17200 mils 78400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 78400 mils moveto
-17300 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 78300 mils moveto
-17800 mils 78300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 78400 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 78200 mils moveto
-17000 mils 78200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 78300 mils moveto
-17800 mils 78100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 78300 mils moveto
-17300 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 78300 mils moveto
-17200 mils 78200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 78200 mils moveto
-17300 mils 78100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 78100 mils moveto
-17800 mils 78100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 78200 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 77600 mils moveto
-17000 mils 77600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 77700 mils moveto
-17800 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 77700 mils moveto
-17300 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77700 mils moveto
-17200 mils 77600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 77600 mils moveto
-17300 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77500 mils moveto
-17800 mils 77500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 77600 mils
-10.000000
-.5 mul -1 mul add moveto
-(+24V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 77400 mils moveto
-17000 mils 77400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 77500 mils moveto
-17800 mils 77300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 77500 mils moveto
-17300 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77500 mils moveto
-17200 mils 77400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 77400 mils moveto
-17300 mils 77300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 77300 mils moveto
-17800 mils 77300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 77400 mils
-10.000000
-.5 mul -1 mul add moveto
-(+24V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 85200 mils moveto
-17000 mils 85200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 85300 mils moveto
-17800 mils 85100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 85300 mils moveto
-17300 mils 85300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 85300 mils moveto
-17200 mils 85200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 85200 mils moveto
-17300 mils 85100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 85100 mils moveto
-17800 mils 85100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 85200 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 84800 mils moveto
-17000 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 84900 mils moveto
-17800 mils 84700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 84900 mils moveto
-17300 mils 84900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 84900 mils moveto
-17200 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 84800 mils moveto
-17300 mils 84700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 84700 mils moveto
-17800 mils 84700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 84800 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 85000 mils moveto
-17000 mils 85000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 85100 mils moveto
-17800 mils 84900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 85100 mils moveto
-17300 mils 85100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 85100 mils moveto
-17200 mils 85000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 85000 mils moveto
-17300 mils 84900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 84900 mils moveto
-17800 mils 84900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 85000 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vcc) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 84200 mils moveto
-17000 mils 84200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17800 mils 84300 mils moveto
-17800 mils 84100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 84300 mils moveto
-17300 mils 84300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 84300 mils moveto
-17200 mils 84200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 84200 mils moveto
-17300 mils 84100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17300 mils 84100 mils moveto
-17800 mils 84100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 84200 mils
-10.000000
-.5 mul -1 mul add moveto
-(+24V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 86400 mils moveto
-17200 mils 86400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 86500 mils moveto
-17200 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 86500 mils moveto
-17700 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 86500 mils moveto
-17800 mils 86400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 86400 mils moveto
-17700 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 86300 mils moveto
-17200 mils 86300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 86400 mils
-10.000000
-.5 mul -1 mul add moveto
-(GNDCAN0) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 86800 mils moveto
-17200 mils 86800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 86900 mils moveto
-17200 mils 86700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 86900 mils moveto
-17700 mils 86900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 86900 mils moveto
-17800 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 86800 mils moveto
-17700 mils 86700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 86700 mils moveto
-17200 mils 86700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 86800 mils
-10.000000
-.5 mul -1 mul add moveto
-(GNDCAN0) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 86600 mils moveto
-17200 mils 86600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 86700 mils moveto
-17200 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 86700 mils moveto
-17700 mils 86700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 86700 mils moveto
-17800 mils 86600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 86600 mils moveto
-17700 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 86500 mils moveto
-17200 mils 86500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 86600 mils
-10.000000
-.5 mul -1 mul add moveto
-(VCAN0) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 86000 mils moveto
-17200 mils 86000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 86100 mils moveto
-17200 mils 85900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 86100 mils moveto
-17700 mils 86100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 86100 mils moveto
-17800 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 86000 mils moveto
-17700 mils 85900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 85900 mils moveto
-17200 mils 85900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 86000 mils
-10.000000
-.5 mul -1 mul add moveto
-(GNDCAN1) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 85800 mils moveto
-17200 mils 85800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 85900 mils moveto
-17200 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 85900 mils moveto
-17700 mils 85900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 85900 mils moveto
-17800 mils 85800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 85800 mils moveto
-17700 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 85700 mils moveto
-17200 mils 85700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 85800 mils
-10.000000
-.5 mul -1 mul add moveto
-(VCAN1) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-17000 mils 85600 mils moveto
-17200 mils 85600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-17200 mils 85700 mils moveto
-17200 mils 85500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17200 mils 85700 mils moveto
-17700 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 85700 mils moveto
-17800 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17800 mils 85600 mils moveto
-17700 mils 85500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 85500 mils moveto
-17200 mils 85500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17900 mils 85600 mils
-10.000000
-.5 mul -1 mul add moveto
-(GNDCAN1) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 86400 mils moveto
-11600 mils 86400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 86500 mils moveto
-11600 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 86500 mils moveto
-11100 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 86500 mils moveto
-11000 mils 86400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 86400 mils moveto
-11100 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 86300 mils moveto
-11600 mils 86300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (VCAN0) stringwidth pop
--1 mul add
-86400 mils
-10.000000
-.5 mul -1 mul add moveto
-(VCAN0) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 85600 mils moveto
-11600 mils 85600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 85700 mils moveto
-11600 mils 85500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 85700 mils moveto
-11100 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 85700 mils moveto
-11000 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 85600 mils moveto
-11100 mils 85500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 85500 mils moveto
-11600 mils 85500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (VCAN1) stringwidth pop
--1 mul add
-85600 mils
-10.000000
-.5 mul -1 mul add moveto
-(VCAN1) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11600 mils 84800 mils moveto
-11800 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11000 mils 84900 mils moveto
-11000 mils 84700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 84900 mils moveto
-11500 mils 84900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 84900 mils moveto
-11600 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 84800 mils moveto
-11500 mils 84700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 84700 mils moveto
-11000 mils 84700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (Vcc) stringwidth pop
--1 mul add
-84800 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vcc) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11600 mils 84400 mils moveto
-11800 mils 84400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11000 mils 84500 mils moveto
-11000 mils 84300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 84500 mils moveto
-11500 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 84500 mils moveto
-11600 mils 84400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 84400 mils moveto
-11500 mils 84300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 84300 mils moveto
-11000 mils 84300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (GND) stringwidth pop
--1 mul add
-84400 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11600 mils 78400 mils moveto
-11800 mils 78400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11000 mils 78500 mils moveto
-11000 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 78500 mils moveto
-11500 mils 78500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 78500 mils moveto
-11600 mils 78400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 78400 mils moveto
-11500 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 78300 mils moveto
-11000 mils 78300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (GND) stringwidth pop
--1 mul add
-78400 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 78400 mils moveto
-11800 mils 78400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11600 mils 78000 mils moveto
-11800 mils 78000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11000 mils 78100 mils moveto
-11000 mils 77900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 78100 mils moveto
-11500 mils 78100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 78100 mils moveto
-11600 mils 78000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 78000 mils moveto
-11500 mils 77900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 77900 mils moveto
-11000 mils 77900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (/RELEASE) stringwidth pop
--1 mul add
-78000 mils
-10.000000
-.5 mul -1 mul add moveto
-(/RELEASE) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 78000 mils moveto
-11800 mils 78000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11600 mils 77600 mils moveto
-11800 mils 77600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11000 mils 77700 mils moveto
-11000 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 77700 mils moveto
-11500 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 77700 mils moveto
-11600 mils 77600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 77600 mils moveto
-11500 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 77500 mils moveto
-11000 mils 77500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (+24V) stringwidth pop
--1 mul add
-77600 mils
-10.000000
-.5 mul -1 mul add moveto
-(+24V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 77600 mils moveto
-12600 mils 77600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11600 mils 77200 mils moveto
-11800 mils 77200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11000 mils 77300 mils moveto
-11000 mils 77100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 77300 mils moveto
-11500 mils 77300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 77300 mils moveto
-11600 mils 77200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 77200 mils moveto
-11500 mils 77100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 77100 mils moveto
-11000 mils 77100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (MOTOR+) stringwidth pop
--1 mul add
-77200 mils
-10.000000
-.5 mul -1 mul add moveto
-(MOTOR+) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 77200 mils moveto
-11800 mils 77200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11600 mils 76800 mils moveto
-11800 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11000 mils 76900 mils moveto
-11000 mils 76700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 76900 mils moveto
-11500 mils 76900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 76900 mils moveto
-11600 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 76800 mils moveto
-11500 mils 76700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11500 mils 76700 mils moveto
-11000 mils 76700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (MOTOR-) stringwidth pop
--1 mul add
-76800 mils
-10.000000
-.5 mul -1 mul add moveto
-(MOTOR-) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 76800 mils moveto
-11800 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 76400 mils moveto
-11600 mils 76400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 76500 mils moveto
-11600 mils 76300 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-11600 mils 76500 mils moveto
-11000 mils 76500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 76500 mils moveto
-11000 mils 76300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 76300 mils moveto
-11600 mils 76300 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (GND) stringwidth pop
--1 mul add
-76400 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 76400 mils moveto
-11800 mils 76400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 76000 mils moveto
-11600 mils 76000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 76100 mils moveto
-11600 mils 75900 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-11600 mils 76100 mils moveto
-11000 mils 76100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 76100 mils moveto
-11000 mils 75900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 75900 mils moveto
-11600 mils 75900 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (Vcc) stringwidth pop
--1 mul add
-76000 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vcc) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 76000 mils moveto
-12600 mils 76000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 75600 mils moveto
-11600 mils 75600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 75700 mils moveto
-11600 mils 75500 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-11600 mils 75700 mils moveto
-11000 mils 75700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 75700 mils moveto
-11000 mils 75500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 75500 mils moveto
-11600 mils 75500 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (+12V) stringwidth pop
--1 mul add
-75600 mils
-10.000000
-.5 mul -1 mul add moveto
-(+12V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 75600 mils moveto
-12600 mils 75600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 75200 mils moveto
-11600 mils 75200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 75300 mils moveto
-11600 mils 75100 mils lineto
-stroke
-grestore
-
-
-
-
-gsave
-newpath
-11600 mils 75300 mils moveto
-11000 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 75300 mils moveto
-11000 mils 75100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 75100 mils moveto
-11600 mils 75100 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (GND) stringwidth pop
--1 mul add
-75200 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 75200 mils moveto
-11800 mils 75200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 74800 mils moveto
-11600 mils 74800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 74900 mils moveto
-11600 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 74900 mils moveto
-11100 mils 74900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 74900 mils moveto
-11000 mils 74800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 74800 mils moveto
-11100 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 74700 mils moveto
-11600 mils 74700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (GND) stringwidth pop
--1 mul add
-74800 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 74800 mils moveto
-11800 mils 74800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 74400 mils moveto
-11600 mils 74400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 74500 mils moveto
-11600 mils 74300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 74500 mils moveto
-11100 mils 74500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 74500 mils moveto
-11000 mils 74400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 74400 mils moveto
-11100 mils 74300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 74300 mils moveto
-11600 mils 74300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (+24V) stringwidth pop
--1 mul add
-74400 mils
-10.000000
-.5 mul -1 mul add moveto
-(+24V) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 74400 mils moveto
-12600 mils 74400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-11800 mils 84000 mils moveto
-11600 mils 84000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-11600 mils 84100 mils moveto
-11600 mils 83900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11600 mils 84100 mils moveto
-11100 mils 84100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 84100 mils moveto
-11000 mils 84000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 84000 mils moveto
-11100 mils 83900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11100 mils 83900 mils moveto
-11600 mils 83900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10900 mils (RESET) stringwidth pop
--1 mul add
-84000 mils
-10.000000
-.5 mul -1 mul add moveto
-(RESET) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12600 mils 84000 mils moveto
-11800 mils 84000 mils lineto
-stroke
-grestore
-
-
-showpage
diff --git a/doc/aicpannelc.ps b/doc/aicpannelc.ps
deleted file mode 100644 (file)
index 262f131..0000000
+++ /dev/null
@@ -1,7873 +0,0 @@
-%!PS-Adobe-3.0
-%%Creator: Wine PostScript Driver
-%%Title: H:\src\aic-1.1.0\doc\aicpannelc.dwg
-%%BoundingBox: 18 36 576 805
-%%Pages: (atend)
-%%EndComments
-%%BeginProlog
-/tmpmtrx matrix def
-/hatch {
-  pathbbox
-  /b exch def /r exch def /t exch def /l exch def /gap 32 def
-  l cvi gap idiv gap mul
-  gap
-  r cvi gap idiv gap mul
-  {t moveto 0 b t sub rlineto}
-  for
-} bind def
-/B {pop pop pop pop} def
-/havetype42gdir {version cvi 2015 ge} bind def
-%%EndProlog
-%%BeginSetup
-mark {
-%%BeginFeature: *PageSize A4
-<</PageSize[595 842]/ImagingBBox null>>setpagedevice
-%%EndFeature
-} stopped cleartomark
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-/pgsave save def
-72 300 div 72 300 div scale
-75 3358 translate
-1 -1 scale
-0 rotate
-%%EndPageSetup
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-20 3007 moveto
-20 3198 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-20 3198 moveto
-20 3007 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-20 3007 moveto
-95 3007 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3007 moveto
-95 3198 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3198 moveto
-20 3198 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-28 3068 moveto
-28 3113 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-44 3113 moveto
-44 3068 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-32 3123 moveto
-34 3122 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-34 3122 moveto
-35 3119 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-35 3119 moveto
-34 3116 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-34 3116 moveto
-32 3115 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-32 3115 moveto
-29 3116 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-29 3116 moveto
-28 3119 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-28 3119 moveto
-29 3122 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-29 3122 moveto
-32 3123 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-44 3123 moveto
-46 3122 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-46 3122 moveto
-47 3119 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-47 3119 moveto
-46 3116 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-46 3116 moveto
-44 3115 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-44 3115 moveto
-41 3116 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-41 3116 moveto
-40 3119 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-40 3119 moveto
-41 3122 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-41 3122 moveto
-44 3123 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-32 3135 moveto
-34 3135 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-34 3135 moveto
-35 3132 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-35 3132 moveto
-34 3130 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-34 3130 moveto
-32 3129 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-32 3129 moveto
-30 3130 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-30 3130 moveto
-29 3132 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-29 3132 moveto
-30 3135 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-30 3135 moveto
-32 3135 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-20 3172 moveto
-95 3172 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-20 3176 moveto
-95 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-20 3191 moveto
-95 3191 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3172 moveto
-95 3173 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3172 moveto
-95 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3172 moveto
-93 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3172 moveto
-90 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3172 moveto
-88 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3172 moveto
-85 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3172 moveto
-82 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-75 3172 moveto
-79 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-72 3172 moveto
-77 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-70 3172 moveto
-74 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-67 3172 moveto
-71 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-64 3172 moveto
-69 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-62 3172 moveto
-66 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-59 3172 moveto
-63 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-56 3172 moveto
-61 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-53 3172 moveto
-58 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-51 3172 moveto
-55 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-48 3172 moveto
-53 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-45 3172 moveto
-50 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-43 3172 moveto
-47 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-40 3172 moveto
-44 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-37 3172 moveto
-42 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-35 3172 moveto
-39 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-32 3172 moveto
-36 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-29 3172 moveto
-34 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-27 3172 moveto
-31 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-24 3172 moveto
-28 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-21 3172 moveto
-26 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-20 3174 moveto
-23 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3176 moveto
-95 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3177 moveto
-95 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3178 moveto
-95 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3179 moveto
-95 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3180 moveto
-95 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3181 moveto
-95 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3182 moveto
-95 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3183 moveto
-95 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3184 moveto
-95 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3185 moveto
-95 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3186 moveto
-95 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3186 moveto
-95 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3187 moveto
-95 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3188 moveto
-95 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3189 moveto
-95 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-95 3190 moveto
-95 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3176 moveto
-94 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3177 moveto
-94 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3178 moveto
-94 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3179 moveto
-94 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3180 moveto
-94 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3181 moveto
-94 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3182 moveto
-94 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3183 moveto
-94 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3184 moveto
-94 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3185 moveto
-94 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3186 moveto
-94 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3187 moveto
-94 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3188 moveto
-94 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3189 moveto
-94 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-94 3190 moveto
-94 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3176 moveto
-93 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3177 moveto
-93 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3178 moveto
-93 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3179 moveto
-93 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3180 moveto
-93 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3181 moveto
-93 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3182 moveto
-93 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3183 moveto
-93 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3184 moveto
-93 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3185 moveto
-93 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3186 moveto
-93 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3186 moveto
-93 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3187 moveto
-93 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3188 moveto
-93 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3189 moveto
-93 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-93 3190 moveto
-93 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3176 moveto
-92 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3177 moveto
-92 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3178 moveto
-92 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3179 moveto
-92 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3180 moveto
-92 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3181 moveto
-92 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3182 moveto
-92 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3183 moveto
-92 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3184 moveto
-92 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3185 moveto
-92 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3186 moveto
-92 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3187 moveto
-92 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3188 moveto
-92 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3189 moveto
-92 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-92 3190 moveto
-92 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3176 moveto
-91 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3177 moveto
-91 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3178 moveto
-91 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3179 moveto
-91 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3180 moveto
-91 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3181 moveto
-91 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3182 moveto
-91 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3183 moveto
-91 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3184 moveto
-91 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3185 moveto
-91 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3186 moveto
-91 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3186 moveto
-91 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3187 moveto
-91 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3188 moveto
-91 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3189 moveto
-91 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-91 3190 moveto
-91 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3176 moveto
-90 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3177 moveto
-90 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3178 moveto
-90 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3179 moveto
-90 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3180 moveto
-90 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3181 moveto
-90 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3182 moveto
-90 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3183 moveto
-90 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3184 moveto
-90 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3185 moveto
-90 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3186 moveto
-90 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3187 moveto
-90 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3188 moveto
-90 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3189 moveto
-90 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-90 3190 moveto
-90 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3176 moveto
-89 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3177 moveto
-89 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3178 moveto
-89 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3179 moveto
-89 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3180 moveto
-89 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3181 moveto
-89 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3182 moveto
-89 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3183 moveto
-89 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3184 moveto
-89 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3185 moveto
-89 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3186 moveto
-89 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3186 moveto
-89 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3187 moveto
-89 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3188 moveto
-89 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3189 moveto
-89 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-89 3190 moveto
-89 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3176 moveto
-88 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3177 moveto
-88 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3178 moveto
-88 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3179 moveto
-88 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3180 moveto
-88 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3181 moveto
-88 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3182 moveto
-88 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3183 moveto
-88 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3184 moveto
-88 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3185 moveto
-88 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3186 moveto
-88 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3187 moveto
-88 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3188 moveto
-88 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3189 moveto
-88 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-88 3190 moveto
-88 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3176 moveto
-87 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3177 moveto
-87 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3178 moveto
-87 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3179 moveto
-87 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3180 moveto
-87 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3181 moveto
-87 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3182 moveto
-87 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3183 moveto
-87 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3184 moveto
-87 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3185 moveto
-87 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3186 moveto
-87 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3186 moveto
-87 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3187 moveto
-87 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3188 moveto
-87 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3189 moveto
-87 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-87 3190 moveto
-87 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3176 moveto
-86 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3177 moveto
-86 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3178 moveto
-86 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3179 moveto
-86 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3180 moveto
-86 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3181 moveto
-86 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3182 moveto
-86 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3183 moveto
-86 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3184 moveto
-86 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3185 moveto
-86 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3186 moveto
-86 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3187 moveto
-86 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3188 moveto
-86 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3189 moveto
-86 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-86 3190 moveto
-86 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3176 moveto
-85 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3177 moveto
-85 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3178 moveto
-85 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3179 moveto
-85 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3180 moveto
-85 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3181 moveto
-85 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3182 moveto
-85 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3183 moveto
-85 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3184 moveto
-85 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3185 moveto
-85 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3186 moveto
-85 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3186 moveto
-85 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3187 moveto
-85 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3188 moveto
-85 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3189 moveto
-85 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-85 3190 moveto
-85 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3176 moveto
-84 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3177 moveto
-84 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3178 moveto
-84 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3179 moveto
-84 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3180 moveto
-84 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3181 moveto
-84 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3182 moveto
-84 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3183 moveto
-84 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3184 moveto
-84 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3185 moveto
-84 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3186 moveto
-84 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3187 moveto
-84 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3188 moveto
-84 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3189 moveto
-84 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-84 3190 moveto
-84 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3176 moveto
-83 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3177 moveto
-83 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3178 moveto
-83 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3179 moveto
-83 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3180 moveto
-83 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3181 moveto
-83 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3182 moveto
-83 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3183 moveto
-83 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3184 moveto
-83 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3185 moveto
-83 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3186 moveto
-83 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3186 moveto
-83 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3187 moveto
-83 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3188 moveto
-83 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3189 moveto
-83 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-83 3190 moveto
-83 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3176 moveto
-82 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3177 moveto
-82 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3178 moveto
-82 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3179 moveto
-82 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3180 moveto
-82 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3181 moveto
-82 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3182 moveto
-82 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3183 moveto
-82 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3184 moveto
-82 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3185 moveto
-82 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3186 moveto
-82 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3187 moveto
-82 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3188 moveto
-82 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3189 moveto
-82 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-82 3190 moveto
-82 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3176 moveto
-81 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3177 moveto
-81 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3178 moveto
-81 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3179 moveto
-81 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3180 moveto
-81 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3181 moveto
-81 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3182 moveto
-81 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3183 moveto
-81 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3184 moveto
-81 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3185 moveto
-81 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3186 moveto
-81 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3186 moveto
-81 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3187 moveto
-81 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3188 moveto
-81 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3189 moveto
-81 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-81 3190 moveto
-81 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3176 moveto
-80 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3177 moveto
-80 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3178 moveto
-80 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3179 moveto
-80 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3180 moveto
-80 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3181 moveto
-80 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3182 moveto
-80 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3183 moveto
-80 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3184 moveto
-80 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3185 moveto
-80 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3186 moveto
-80 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3187 moveto
-80 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3188 moveto
-80 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3189 moveto
-80 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3190 moveto
-80 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3176 moveto
-80 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3177 moveto
-80 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3178 moveto
-80 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3179 moveto
-80 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3180 moveto
-80 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3181 moveto
-80 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3182 moveto
-80 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3183 moveto
-80 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3184 moveto
-80 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3185 moveto
-80 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3186 moveto
-80 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3186 moveto
-80 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3187 moveto
-80 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3188 moveto
-80 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3189 moveto
-80 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-80 3190 moveto
-80 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3176 moveto
-79 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3177 moveto
-79 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3178 moveto
-79 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3179 moveto
-79 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3180 moveto
-79 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3181 moveto
-79 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3182 moveto
-79 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3183 moveto
-79 3183 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3184 moveto
-79 3184 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3185 moveto
-79 3185 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3186 moveto
-79 3186 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3187 moveto
-79 3187 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3188 moveto
-79 3188 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3189 moveto
-79 3189 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-79 3190 moveto
-79 3190 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3176 moveto
-78 3176 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3177 moveto
-78 3177 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3178 moveto
-78 3178 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3179 moveto
-78 3179 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3180 moveto
-78 3180 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3181 moveto
-78 3181 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3182 moveto
-78 3182 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-78 3183 moveto
-78 3183 lineto
-stroke
-%!PS-Adobe-3.0
-%%Creator: Wine PostScript Driver
-%%Title: H:\src\aic-1.1.0\doc\aicpannelc.dwg
-%%BoundingBox: 18 36 576 805
-%%Pages: (atend)
-%%EndComments
-%%BeginProlog
-/tmpmtrx matrix def
-/hatch {
-  pathbbox
-  /b exch def /r exch def /t exch def /l exch def /gap 32 def
-  l cvi gap idiv gap mul
-  gap
-  r cvi gap idiv gap mul
-  {t moveto 0 b t sub rlineto}
-  for
-} bind def
-/B {pop pop pop pop} def
-/havetype42gdir {version cvi 2015 ge} bind def
-%%EndProlog
-%%BeginSetup
-mark {
-%%BeginFeature: *PageSize A4
-<</PageSize[595 842]/ImagingBBox null>>setpagedevice
-%%EndFeature
-} stopped cleartomark
-%%EndSetup
-%%Page: 1 1
-%%BeginPageSetup
-/pgsave save def
-72 300 div 72 300 div scale
-75 3358 translate
-1 -1 scale
-0 rotate
-%%EndPageSetup
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-103 1687 moveto
-103 3198 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-103 3198 moveto
-103 1687 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-103 1687 moveto
-693 1687 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-693 1687 moveto
-693 3198 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-693 3198 moveto
-103 3198 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-162 2171 moveto
-162 2525 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-292 2525 moveto
-292 2171 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-191 2602 moveto
-201 2600 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-201 2600 moveto
-209 2596 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-209 2596 moveto
-215 2590 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-215 2590 moveto
-219 2582 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-219 2582 moveto
-221 2572 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-221 2572 moveto
-219 2563 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-219 2563 moveto
-215 2555 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-215 2555 moveto
-209 2549 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-209 2549 moveto
-201 2544 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-201 2544 moveto
-191 2543 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-191 2543 moveto
-182 2544 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-182 2544 moveto
-174 2549 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-174 2549 moveto
-168 2555 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-168 2555 moveto
-163 2563 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-163 2563 moveto
-162 2572 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-162 2572 moveto
-163 2582 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-163 2582 moveto
-168 2590 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-168 2590 moveto
-174 2596 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-174 2596 moveto
-182 2600 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-182 2600 moveto
-191 2602 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-286 2602 moveto
-295 2600 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-295 2600 moveto
-303 2596 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-303 2596 moveto
-310 2590 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-310 2590 moveto
-314 2582 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-314 2582 moveto
-315 2572 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-315 2572 moveto
-314 2563 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-314 2563 moveto
-310 2555 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-310 2555 moveto
-303 2549 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-303 2549 moveto
-295 2544 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-295 2544 moveto
-286 2543 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-286 2543 moveto
-277 2544 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-277 2544 moveto
-269 2549 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-269 2549 moveto
-262 2555 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-262 2555 moveto
-258 2563 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-258 2563 moveto
-256 2572 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-256 2572 moveto
-258 2582 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-258 2582 moveto
-262 2590 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-262 2590 moveto
-269 2596 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-269 2596 moveto
-277 2600 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-277 2600 moveto
-286 2602 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-191 2702 moveto
-200 2700 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-200 2700 moveto
-208 2695 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-208 2695 moveto
-213 2688 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-213 2688 moveto
-215 2679 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-215 2679 moveto
-213 2670 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-213 2670 moveto
-208 2662 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-208 2662 moveto
-200 2657 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-200 2657 moveto
-191 2655 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-191 2655 moveto
-182 2657 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-182 2657 moveto
-175 2662 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-175 2662 moveto
-170 2670 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-170 2670 moveto
-168 2679 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-168 2679 moveto
-170 2688 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-170 2688 moveto
-175 2695 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-175 2695 moveto
-182 2700 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-182 2700 moveto
-191 2702 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-3 setlinewidth
-103 2986 moveto
-693 2986 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-103 3021 moveto
-693 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-103 3137 moveto
-693 3137 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-681 2986 moveto
-693 2998 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-660 2986 moveto
-693 3019 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-638 2986 moveto
-673 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-617 2986 moveto
-652 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-596 2986 moveto
-631 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 2986 moveto
-610 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-554 2986 moveto
-588 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-532 2986 moveto
-567 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-511 2986 moveto
-546 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-490 2986 moveto
-525 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-469 2986 moveto
-504 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 2986 moveto
-482 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-426 2986 moveto
-461 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-405 2986 moveto
-440 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-384 2986 moveto
-419 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-363 2986 moveto
-398 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-342 2986 moveto
-376 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 2986 moveto
-355 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-299 2986 moveto
-334 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-278 2986 moveto
-313 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-257 2986 moveto
-292 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-236 2986 moveto
-270 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-214 2986 moveto
-249 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 2986 moveto
-228 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-172 2986 moveto
-207 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-151 2986 moveto
-185 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-129 2986 moveto
-164 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-108 2986 moveto
-143 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-103 3002 moveto
-122 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3021 moveto
-688 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3029 moveto
-688 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3036 moveto
-688 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3044 moveto
-688 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3051 moveto
-688 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3059 moveto
-688 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3066 moveto
-688 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3074 moveto
-688 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3081 moveto
-688 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3089 moveto
-688 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3096 moveto
-688 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3104 moveto
-688 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3111 moveto
-688 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3119 moveto
-688 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3126 moveto
-688 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-688 3134 moveto
-688 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3025 moveto
-680 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3033 moveto
-680 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3040 moveto
-680 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3048 moveto
-680 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3055 moveto
-680 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3063 moveto
-680 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3070 moveto
-680 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3078 moveto
-680 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3085 moveto
-680 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3093 moveto
-680 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3100 moveto
-680 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3108 moveto
-680 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3115 moveto
-680 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3123 moveto
-680 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-680 3130 moveto
-680 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3021 moveto
-673 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3029 moveto
-673 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3036 moveto
-673 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3044 moveto
-673 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3051 moveto
-673 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3059 moveto
-673 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3066 moveto
-673 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3074 moveto
-673 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3081 moveto
-673 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3089 moveto
-673 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3096 moveto
-673 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3104 moveto
-673 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3111 moveto
-673 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3119 moveto
-673 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3126 moveto
-673 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-673 3134 moveto
-673 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3025 moveto
-665 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3033 moveto
-665 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3040 moveto
-665 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3048 moveto
-665 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3055 moveto
-665 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3063 moveto
-665 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3070 moveto
-665 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3078 moveto
-665 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3085 moveto
-665 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3093 moveto
-665 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3100 moveto
-665 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3108 moveto
-665 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3115 moveto
-665 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3123 moveto
-665 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-665 3130 moveto
-665 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3021 moveto
-658 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3029 moveto
-658 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3036 moveto
-658 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3044 moveto
-658 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3051 moveto
-658 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3059 moveto
-658 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3066 moveto
-658 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3074 moveto
-658 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3081 moveto
-658 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3089 moveto
-658 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3096 moveto
-658 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3104 moveto
-658 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3111 moveto
-658 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3119 moveto
-658 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3126 moveto
-658 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-658 3134 moveto
-658 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3025 moveto
-650 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3033 moveto
-650 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3040 moveto
-650 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3048 moveto
-650 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3055 moveto
-650 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3063 moveto
-650 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3070 moveto
-650 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3078 moveto
-650 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3085 moveto
-650 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3093 moveto
-650 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3100 moveto
-650 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3108 moveto
-650 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3115 moveto
-650 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3123 moveto
-650 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-650 3130 moveto
-650 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3021 moveto
-643 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3029 moveto
-643 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3036 moveto
-643 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3044 moveto
-643 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3051 moveto
-643 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3059 moveto
-643 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3066 moveto
-643 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3074 moveto
-643 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3081 moveto
-643 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3089 moveto
-643 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3096 moveto
-643 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3104 moveto
-643 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3111 moveto
-643 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3119 moveto
-643 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3126 moveto
-643 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-643 3134 moveto
-643 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3025 moveto
-635 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3033 moveto
-635 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3040 moveto
-635 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3048 moveto
-635 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3055 moveto
-635 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3063 moveto
-635 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3070 moveto
-635 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3078 moveto
-635 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3085 moveto
-635 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3093 moveto
-635 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3100 moveto
-635 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3108 moveto
-635 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3115 moveto
-635 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3123 moveto
-635 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-635 3130 moveto
-635 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3021 moveto
-628 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3029 moveto
-628 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3036 moveto
-628 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3044 moveto
-628 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3051 moveto
-628 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3059 moveto
-628 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3066 moveto
-628 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3074 moveto
-628 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3081 moveto
-628 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3089 moveto
-628 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3096 moveto
-628 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3104 moveto
-628 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3111 moveto
-628 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3119 moveto
-628 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3126 moveto
-628 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-628 3134 moveto
-628 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3025 moveto
-620 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3033 moveto
-620 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3040 moveto
-620 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3048 moveto
-620 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3055 moveto
-620 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3063 moveto
-620 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3070 moveto
-620 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3078 moveto
-620 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3085 moveto
-620 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3093 moveto
-620 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3100 moveto
-620 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3108 moveto
-620 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3115 moveto
-620 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3123 moveto
-620 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-620 3130 moveto
-620 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3021 moveto
-613 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3029 moveto
-613 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3036 moveto
-613 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3044 moveto
-613 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3051 moveto
-613 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3059 moveto
-613 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3066 moveto
-613 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3074 moveto
-613 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3081 moveto
-613 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3089 moveto
-613 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3096 moveto
-613 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3104 moveto
-613 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3111 moveto
-613 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3119 moveto
-613 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3126 moveto
-613 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-613 3134 moveto
-613 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3025 moveto
-605 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3033 moveto
-605 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3040 moveto
-605 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3048 moveto
-605 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3055 moveto
-605 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3063 moveto
-605 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3070 moveto
-605 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3078 moveto
-605 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3085 moveto
-605 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3093 moveto
-605 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3100 moveto
-605 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3108 moveto
-605 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3115 moveto
-605 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3123 moveto
-605 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-605 3130 moveto
-605 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3021 moveto
-598 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3029 moveto
-598 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3036 moveto
-598 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3044 moveto
-598 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3051 moveto
-598 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3059 moveto
-598 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3066 moveto
-598 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3074 moveto
-598 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3081 moveto
-598 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3089 moveto
-598 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3096 moveto
-598 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3104 moveto
-598 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3111 moveto
-598 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3119 moveto
-598 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3126 moveto
-598 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-598 3134 moveto
-598 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3025 moveto
-590 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3033 moveto
-590 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3040 moveto
-590 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3048 moveto
-590 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3055 moveto
-590 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3063 moveto
-590 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3070 moveto
-590 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3078 moveto
-590 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3085 moveto
-590 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3093 moveto
-590 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3100 moveto
-590 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3108 moveto
-590 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3115 moveto
-590 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3123 moveto
-590 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-590 3130 moveto
-590 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3021 moveto
-583 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3029 moveto
-583 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3036 moveto
-583 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3044 moveto
-583 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3051 moveto
-583 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3059 moveto
-583 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3066 moveto
-583 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3074 moveto
-583 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3081 moveto
-583 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3089 moveto
-583 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3096 moveto
-583 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3104 moveto
-583 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3111 moveto
-583 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3119 moveto
-583 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3126 moveto
-583 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-583 3134 moveto
-583 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3025 moveto
-575 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3033 moveto
-575 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3040 moveto
-575 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3048 moveto
-575 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3055 moveto
-575 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3063 moveto
-575 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3070 moveto
-575 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3078 moveto
-575 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3085 moveto
-575 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3093 moveto
-575 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3100 moveto
-575 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3108 moveto
-575 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3115 moveto
-575 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3123 moveto
-575 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-575 3130 moveto
-575 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3021 moveto
-568 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3029 moveto
-568 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3036 moveto
-568 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3044 moveto
-568 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3051 moveto
-568 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3059 moveto
-568 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3066 moveto
-568 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3074 moveto
-568 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3081 moveto
-568 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3089 moveto
-568 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3096 moveto
-568 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3104 moveto
-568 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3111 moveto
-568 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3119 moveto
-568 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3126 moveto
-568 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-568 3134 moveto
-568 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3025 moveto
-560 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3033 moveto
-560 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3040 moveto
-560 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3048 moveto
-560 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3055 moveto
-560 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3063 moveto
-560 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3070 moveto
-560 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3078 moveto
-560 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3085 moveto
-560 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3093 moveto
-560 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3100 moveto
-560 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3108 moveto
-560 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3115 moveto
-560 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3123 moveto
-560 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-560 3130 moveto
-560 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3021 moveto
-553 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3029 moveto
-553 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3036 moveto
-553 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3044 moveto
-553 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3051 moveto
-553 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3059 moveto
-553 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3066 moveto
-553 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3074 moveto
-553 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3081 moveto
-553 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3089 moveto
-553 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3096 moveto
-553 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3104 moveto
-553 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3111 moveto
-553 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3119 moveto
-553 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3126 moveto
-553 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-553 3134 moveto
-553 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3025 moveto
-545 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3033 moveto
-545 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3040 moveto
-545 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3048 moveto
-545 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3055 moveto
-545 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3063 moveto
-545 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3070 moveto
-545 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3078 moveto
-545 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3085 moveto
-545 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3093 moveto
-545 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3100 moveto
-545 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3108 moveto
-545 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3115 moveto
-545 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3123 moveto
-545 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-545 3130 moveto
-545 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3021 moveto
-538 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3029 moveto
-538 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3036 moveto
-538 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3044 moveto
-538 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3051 moveto
-538 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3059 moveto
-538 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3066 moveto
-538 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3074 moveto
-538 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3081 moveto
-538 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3089 moveto
-538 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3096 moveto
-538 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3104 moveto
-538 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3111 moveto
-538 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3119 moveto
-538 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3126 moveto
-538 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-538 3134 moveto
-538 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3025 moveto
-530 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3033 moveto
-530 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3040 moveto
-530 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3048 moveto
-530 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3055 moveto
-530 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3063 moveto
-530 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3070 moveto
-530 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3078 moveto
-530 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3085 moveto
-530 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3093 moveto
-530 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3100 moveto
-530 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3108 moveto
-530 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3115 moveto
-530 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3123 moveto
-530 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-530 3130 moveto
-530 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3021 moveto
-523 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3029 moveto
-523 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3036 moveto
-523 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3044 moveto
-523 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3051 moveto
-523 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3059 moveto
-523 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3066 moveto
-523 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3074 moveto
-523 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3081 moveto
-523 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3089 moveto
-523 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3096 moveto
-523 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3104 moveto
-523 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3111 moveto
-523 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3119 moveto
-523 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3126 moveto
-523 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-523 3134 moveto
-523 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3025 moveto
-515 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3033 moveto
-515 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3040 moveto
-515 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3048 moveto
-515 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3055 moveto
-515 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3063 moveto
-515 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3070 moveto
-515 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3078 moveto
-515 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3085 moveto
-515 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3093 moveto
-515 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3100 moveto
-515 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3108 moveto
-515 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3115 moveto
-515 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3123 moveto
-515 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-515 3130 moveto
-515 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3021 moveto
-508 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3029 moveto
-508 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3036 moveto
-508 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3044 moveto
-508 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3051 moveto
-508 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3059 moveto
-508 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3066 moveto
-508 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3074 moveto
-508 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3081 moveto
-508 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3089 moveto
-508 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3096 moveto
-508 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3104 moveto
-508 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3111 moveto
-508 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3119 moveto
-508 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3126 moveto
-508 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-508 3134 moveto
-508 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3025 moveto
-500 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3033 moveto
-500 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3040 moveto
-500 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3048 moveto
-500 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3055 moveto
-500 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3063 moveto
-500 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3070 moveto
-500 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3078 moveto
-500 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3085 moveto
-500 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3093 moveto
-500 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3100 moveto
-500 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3108 moveto
-500 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3115 moveto
-500 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3123 moveto
-500 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-500 3130 moveto
-500 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3021 moveto
-493 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3029 moveto
-493 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3036 moveto
-493 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3044 moveto
-493 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3051 moveto
-493 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3059 moveto
-493 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3066 moveto
-493 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3074 moveto
-493 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3081 moveto
-493 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3089 moveto
-493 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3096 moveto
-493 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3104 moveto
-493 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3111 moveto
-493 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3119 moveto
-493 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3126 moveto
-493 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-493 3134 moveto
-493 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3025 moveto
-485 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3033 moveto
-485 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3040 moveto
-485 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3048 moveto
-485 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3055 moveto
-485 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3063 moveto
-485 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3070 moveto
-485 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3078 moveto
-485 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3085 moveto
-485 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3093 moveto
-485 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3100 moveto
-485 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3108 moveto
-485 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3115 moveto
-485 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3123 moveto
-485 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-485 3130 moveto
-485 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3021 moveto
-478 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3029 moveto
-478 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3036 moveto
-478 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3044 moveto
-478 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3051 moveto
-478 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3059 moveto
-478 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3066 moveto
-478 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3074 moveto
-478 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3081 moveto
-478 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3089 moveto
-478 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3096 moveto
-478 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3104 moveto
-478 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3111 moveto
-478 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3119 moveto
-478 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3126 moveto
-478 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-478 3134 moveto
-478 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3025 moveto
-470 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3033 moveto
-470 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3040 moveto
-470 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3048 moveto
-470 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3055 moveto
-470 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3063 moveto
-470 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3070 moveto
-470 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3078 moveto
-470 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3085 moveto
-470 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3093 moveto
-470 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3100 moveto
-470 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3108 moveto
-470 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3115 moveto
-470 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3123 moveto
-470 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-470 3130 moveto
-470 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3021 moveto
-463 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3029 moveto
-463 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3036 moveto
-463 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3044 moveto
-463 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3051 moveto
-463 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3059 moveto
-463 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3066 moveto
-463 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3074 moveto
-463 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3081 moveto
-463 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3089 moveto
-463 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3096 moveto
-463 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3104 moveto
-463 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3111 moveto
-463 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3119 moveto
-463 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3126 moveto
-463 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-463 3134 moveto
-463 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3025 moveto
-455 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3033 moveto
-455 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3040 moveto
-455 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3048 moveto
-455 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3055 moveto
-455 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3063 moveto
-455 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3070 moveto
-455 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3078 moveto
-455 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3085 moveto
-455 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3093 moveto
-455 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3100 moveto
-455 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3108 moveto
-455 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3115 moveto
-455 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3123 moveto
-455 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-455 3130 moveto
-455 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3021 moveto
-448 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3029 moveto
-448 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3036 moveto
-448 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3044 moveto
-448 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3051 moveto
-448 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3059 moveto
-448 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3066 moveto
-448 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3074 moveto
-448 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3081 moveto
-448 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3089 moveto
-448 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3096 moveto
-448 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3104 moveto
-448 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3111 moveto
-448 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3119 moveto
-448 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3126 moveto
-448 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-448 3134 moveto
-448 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3025 moveto
-440 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3033 moveto
-440 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3040 moveto
-440 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3048 moveto
-440 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3055 moveto
-440 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3063 moveto
-440 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3070 moveto
-440 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3078 moveto
-440 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3085 moveto
-440 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3093 moveto
-440 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3100 moveto
-440 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3108 moveto
-440 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3115 moveto
-440 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3123 moveto
-440 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-440 3130 moveto
-440 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3021 moveto
-433 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3029 moveto
-433 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3036 moveto
-433 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3044 moveto
-433 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3051 moveto
-433 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3059 moveto
-433 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3066 moveto
-433 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3074 moveto
-433 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3081 moveto
-433 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3089 moveto
-433 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3096 moveto
-433 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3104 moveto
-433 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3111 moveto
-433 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3119 moveto
-433 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3126 moveto
-433 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-433 3134 moveto
-433 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3025 moveto
-425 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3033 moveto
-425 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3040 moveto
-425 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3048 moveto
-425 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3055 moveto
-425 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3063 moveto
-425 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3070 moveto
-425 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3078 moveto
-425 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3085 moveto
-425 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3093 moveto
-425 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3100 moveto
-425 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3108 moveto
-425 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3115 moveto
-425 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3123 moveto
-425 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-425 3130 moveto
-425 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3021 moveto
-418 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3029 moveto
-418 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3036 moveto
-418 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3044 moveto
-418 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3051 moveto
-418 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3059 moveto
-418 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3066 moveto
-418 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3074 moveto
-418 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3081 moveto
-418 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3089 moveto
-418 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3096 moveto
-418 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3104 moveto
-418 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3111 moveto
-418 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3119 moveto
-418 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3126 moveto
-418 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-418 3134 moveto
-418 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3025 moveto
-410 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3033 moveto
-410 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3040 moveto
-410 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3048 moveto
-410 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3055 moveto
-410 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3063 moveto
-410 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3070 moveto
-410 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3078 moveto
-410 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3085 moveto
-410 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3093 moveto
-410 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3100 moveto
-410 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3108 moveto
-410 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3115 moveto
-410 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3123 moveto
-410 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-410 3130 moveto
-410 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3021 moveto
-403 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3029 moveto
-403 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3036 moveto
-403 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3044 moveto
-403 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3051 moveto
-403 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3059 moveto
-403 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3066 moveto
-403 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3074 moveto
-403 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3081 moveto
-403 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3089 moveto
-403 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3096 moveto
-403 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3104 moveto
-403 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3111 moveto
-403 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3119 moveto
-403 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3126 moveto
-403 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-403 3134 moveto
-403 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3025 moveto
-395 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3033 moveto
-395 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3040 moveto
-395 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3048 moveto
-395 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3055 moveto
-395 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3063 moveto
-395 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3070 moveto
-395 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3078 moveto
-395 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3085 moveto
-395 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3093 moveto
-395 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3100 moveto
-395 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3108 moveto
-395 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3115 moveto
-395 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3123 moveto
-395 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-395 3130 moveto
-395 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3021 moveto
-388 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3029 moveto
-388 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3036 moveto
-388 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3044 moveto
-388 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3051 moveto
-388 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3059 moveto
-388 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3066 moveto
-388 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3074 moveto
-388 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3081 moveto
-388 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3089 moveto
-388 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3096 moveto
-388 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3104 moveto
-388 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3111 moveto
-388 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3119 moveto
-388 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3126 moveto
-388 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-388 3134 moveto
-388 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3025 moveto
-380 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3033 moveto
-380 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3040 moveto
-380 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3048 moveto
-380 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3055 moveto
-380 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3063 moveto
-380 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3070 moveto
-380 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3078 moveto
-380 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3085 moveto
-380 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3093 moveto
-380 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3100 moveto
-380 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3108 moveto
-380 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3115 moveto
-380 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3123 moveto
-380 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-380 3130 moveto
-380 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3021 moveto
-373 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3029 moveto
-373 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3036 moveto
-373 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3044 moveto
-373 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3051 moveto
-373 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3059 moveto
-373 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3066 moveto
-373 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3074 moveto
-373 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3081 moveto
-373 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3089 moveto
-373 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3096 moveto
-373 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3104 moveto
-373 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3111 moveto
-373 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3119 moveto
-373 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3126 moveto
-373 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-373 3134 moveto
-373 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3025 moveto
-365 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3033 moveto
-365 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3040 moveto
-365 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3048 moveto
-365 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3055 moveto
-365 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3063 moveto
-365 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3070 moveto
-365 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3078 moveto
-365 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3085 moveto
-365 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3093 moveto
-365 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3100 moveto
-365 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3108 moveto
-365 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3115 moveto
-365 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3123 moveto
-365 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-365 3130 moveto
-365 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3021 moveto
-358 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3029 moveto
-358 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3036 moveto
-358 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3044 moveto
-358 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3051 moveto
-358 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3059 moveto
-358 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3066 moveto
-358 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3074 moveto
-358 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3081 moveto
-358 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3089 moveto
-358 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3096 moveto
-358 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3104 moveto
-358 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3111 moveto
-358 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3119 moveto
-358 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3126 moveto
-358 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-358 3134 moveto
-358 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3025 moveto
-350 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3033 moveto
-350 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3040 moveto
-350 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3048 moveto
-350 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3055 moveto
-350 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3063 moveto
-350 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3070 moveto
-350 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3078 moveto
-350 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3085 moveto
-350 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3093 moveto
-350 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3100 moveto
-350 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3108 moveto
-350 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3115 moveto
-350 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3123 moveto
-350 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-350 3130 moveto
-350 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3021 moveto
-343 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3029 moveto
-343 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3036 moveto
-343 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3044 moveto
-343 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3051 moveto
-343 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3059 moveto
-343 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3066 moveto
-343 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3074 moveto
-343 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3081 moveto
-343 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3089 moveto
-343 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3096 moveto
-343 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3104 moveto
-343 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3111 moveto
-343 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3119 moveto
-343 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3126 moveto
-343 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-343 3134 moveto
-343 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3025 moveto
-335 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3033 moveto
-335 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3040 moveto
-335 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3048 moveto
-335 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3055 moveto
-335 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3063 moveto
-335 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3070 moveto
-335 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3078 moveto
-335 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3085 moveto
-335 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3093 moveto
-335 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3100 moveto
-335 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3108 moveto
-335 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3115 moveto
-335 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3123 moveto
-335 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-335 3130 moveto
-335 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3021 moveto
-328 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3029 moveto
-328 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3036 moveto
-328 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3044 moveto
-328 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3051 moveto
-328 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3059 moveto
-328 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3066 moveto
-328 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3074 moveto
-328 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3081 moveto
-328 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3089 moveto
-328 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3096 moveto
-328 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3104 moveto
-328 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3111 moveto
-328 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3119 moveto
-328 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3126 moveto
-328 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-328 3134 moveto
-328 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3025 moveto
-320 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3033 moveto
-320 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3040 moveto
-320 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3048 moveto
-320 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3055 moveto
-320 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3063 moveto
-320 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3070 moveto
-320 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3078 moveto
-320 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3085 moveto
-320 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3093 moveto
-320 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3100 moveto
-320 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3108 moveto
-320 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3115 moveto
-320 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3123 moveto
-320 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-320 3130 moveto
-320 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3021 moveto
-313 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3029 moveto
-313 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3036 moveto
-313 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3044 moveto
-313 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3051 moveto
-313 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3059 moveto
-313 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3066 moveto
-313 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3074 moveto
-313 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3081 moveto
-313 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3089 moveto
-313 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3096 moveto
-313 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3104 moveto
-313 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3111 moveto
-313 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3119 moveto
-313 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3126 moveto
-313 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-313 3134 moveto
-313 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3025 moveto
-305 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3033 moveto
-305 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3040 moveto
-305 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3048 moveto
-305 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3055 moveto
-305 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3063 moveto
-305 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3070 moveto
-305 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3078 moveto
-305 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3085 moveto
-305 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3093 moveto
-305 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3100 moveto
-305 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3108 moveto
-305 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3115 moveto
-305 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3123 moveto
-305 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-305 3130 moveto
-305 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3021 moveto
-298 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3029 moveto
-298 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3036 moveto
-298 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3044 moveto
-298 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3051 moveto
-298 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3059 moveto
-298 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3066 moveto
-298 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3074 moveto
-298 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3081 moveto
-298 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3089 moveto
-298 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3096 moveto
-298 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3104 moveto
-298 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3111 moveto
-298 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3119 moveto
-298 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3126 moveto
-298 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-298 3134 moveto
-298 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3025 moveto
-290 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3033 moveto
-290 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3040 moveto
-290 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3048 moveto
-290 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3055 moveto
-290 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3063 moveto
-290 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3070 moveto
-290 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3078 moveto
-290 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3085 moveto
-290 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3093 moveto
-290 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3100 moveto
-290 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3108 moveto
-290 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3115 moveto
-290 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3123 moveto
-290 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-290 3130 moveto
-290 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3021 moveto
-283 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3029 moveto
-283 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3036 moveto
-283 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3044 moveto
-283 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3051 moveto
-283 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3059 moveto
-283 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3066 moveto
-283 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3074 moveto
-283 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3081 moveto
-283 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3089 moveto
-283 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3096 moveto
-283 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3104 moveto
-283 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3111 moveto
-283 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3119 moveto
-283 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3126 moveto
-283 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-283 3134 moveto
-283 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3025 moveto
-275 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3033 moveto
-275 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3040 moveto
-275 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3048 moveto
-275 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3055 moveto
-275 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3063 moveto
-275 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3070 moveto
-275 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3078 moveto
-275 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3085 moveto
-275 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3093 moveto
-275 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3100 moveto
-275 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3108 moveto
-275 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3115 moveto
-275 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3123 moveto
-275 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-275 3130 moveto
-275 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3021 moveto
-268 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3029 moveto
-268 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3036 moveto
-268 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3044 moveto
-268 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3051 moveto
-268 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3059 moveto
-268 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3066 moveto
-268 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3074 moveto
-268 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3081 moveto
-268 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3089 moveto
-268 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3096 moveto
-268 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3104 moveto
-268 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3111 moveto
-268 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3119 moveto
-268 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3126 moveto
-268 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-268 3134 moveto
-268 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3025 moveto
-260 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3033 moveto
-260 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3040 moveto
-260 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3048 moveto
-260 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3055 moveto
-260 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3063 moveto
-260 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3070 moveto
-260 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3078 moveto
-260 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3085 moveto
-260 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3093 moveto
-260 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3100 moveto
-260 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3108 moveto
-260 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3115 moveto
-260 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3123 moveto
-260 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-260 3130 moveto
-260 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3021 moveto
-253 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3029 moveto
-253 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3036 moveto
-253 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3044 moveto
-253 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3051 moveto
-253 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3059 moveto
-253 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3066 moveto
-253 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3074 moveto
-253 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3081 moveto
-253 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3089 moveto
-253 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3096 moveto
-253 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3104 moveto
-253 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3111 moveto
-253 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3119 moveto
-253 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3126 moveto
-253 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-253 3134 moveto
-253 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3025 moveto
-245 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3033 moveto
-245 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3040 moveto
-245 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3048 moveto
-245 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3055 moveto
-245 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3063 moveto
-245 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3070 moveto
-245 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3078 moveto
-245 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3085 moveto
-245 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3093 moveto
-245 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3100 moveto
-245 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3108 moveto
-245 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3115 moveto
-245 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3123 moveto
-245 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-245 3130 moveto
-245 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3021 moveto
-238 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3029 moveto
-238 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3036 moveto
-238 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3044 moveto
-238 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3051 moveto
-238 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3059 moveto
-238 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3066 moveto
-238 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3074 moveto
-238 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3081 moveto
-238 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3089 moveto
-238 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3096 moveto
-238 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3104 moveto
-238 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3111 moveto
-238 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3119 moveto
-238 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3126 moveto
-238 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-238 3134 moveto
-238 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3025 moveto
-230 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3033 moveto
-230 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3040 moveto
-230 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3048 moveto
-230 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3055 moveto
-230 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3063 moveto
-230 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3070 moveto
-230 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3078 moveto
-230 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3085 moveto
-230 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3093 moveto
-230 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3100 moveto
-230 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3108 moveto
-230 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3115 moveto
-230 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3123 moveto
-230 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-230 3130 moveto
-230 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3021 moveto
-223 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3029 moveto
-223 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3036 moveto
-223 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3044 moveto
-223 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3051 moveto
-223 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3059 moveto
-223 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3066 moveto
-223 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3074 moveto
-223 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3081 moveto
-223 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3089 moveto
-223 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3096 moveto
-223 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3104 moveto
-223 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3111 moveto
-223 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3119 moveto
-223 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3126 moveto
-223 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-223 3134 moveto
-223 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3025 moveto
-215 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3033 moveto
-215 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3040 moveto
-215 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3048 moveto
-215 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3055 moveto
-215 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3063 moveto
-215 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3070 moveto
-215 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3078 moveto
-215 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3085 moveto
-215 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3093 moveto
-215 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3100 moveto
-215 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3108 moveto
-215 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3115 moveto
-215 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3123 moveto
-215 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-215 3130 moveto
-215 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3021 moveto
-208 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3029 moveto
-208 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3036 moveto
-208 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3044 moveto
-208 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3051 moveto
-208 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3059 moveto
-208 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3066 moveto
-208 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3074 moveto
-208 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3081 moveto
-208 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3089 moveto
-208 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3096 moveto
-208 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3104 moveto
-208 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3111 moveto
-208 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3119 moveto
-208 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3126 moveto
-208 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-208 3134 moveto
-208 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3025 moveto
-200 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3033 moveto
-200 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3040 moveto
-200 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3048 moveto
-200 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3055 moveto
-200 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3063 moveto
-200 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3070 moveto
-200 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3078 moveto
-200 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3085 moveto
-200 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3093 moveto
-200 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3100 moveto
-200 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3108 moveto
-200 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3115 moveto
-200 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3123 moveto
-200 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-200 3130 moveto
-200 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3021 moveto
-193 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3029 moveto
-193 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3036 moveto
-193 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3044 moveto
-193 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3051 moveto
-193 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3059 moveto
-193 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3066 moveto
-193 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3074 moveto
-193 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3081 moveto
-193 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3089 moveto
-193 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3096 moveto
-193 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3104 moveto
-193 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3111 moveto
-193 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3119 moveto
-193 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3126 moveto
-193 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-193 3134 moveto
-193 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3025 moveto
-185 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3033 moveto
-185 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3040 moveto
-185 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3048 moveto
-185 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3055 moveto
-185 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3063 moveto
-185 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3070 moveto
-185 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3078 moveto
-185 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3085 moveto
-185 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3093 moveto
-185 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3100 moveto
-185 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3108 moveto
-185 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3115 moveto
-185 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3123 moveto
-185 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-185 3130 moveto
-185 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3021 moveto
-178 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3029 moveto
-178 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3036 moveto
-178 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3044 moveto
-178 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3051 moveto
-178 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3059 moveto
-178 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3066 moveto
-178 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3074 moveto
-178 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3081 moveto
-178 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3089 moveto
-178 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3096 moveto
-178 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3104 moveto
-178 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3111 moveto
-178 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3119 moveto
-178 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3126 moveto
-178 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-178 3134 moveto
-178 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3025 moveto
-170 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3033 moveto
-170 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3040 moveto
-170 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3048 moveto
-170 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3055 moveto
-170 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3063 moveto
-170 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3070 moveto
-170 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3078 moveto
-170 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3085 moveto
-170 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3093 moveto
-170 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3100 moveto
-170 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3108 moveto
-170 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3115 moveto
-170 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3123 moveto
-170 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-170 3130 moveto
-170 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3021 moveto
-163 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3029 moveto
-163 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3036 moveto
-163 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3044 moveto
-163 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3051 moveto
-163 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3059 moveto
-163 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3066 moveto
-163 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3074 moveto
-163 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3081 moveto
-163 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3089 moveto
-163 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3096 moveto
-163 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3104 moveto
-163 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3111 moveto
-163 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3119 moveto
-163 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3126 moveto
-163 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-163 3134 moveto
-163 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3025 moveto
-155 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3033 moveto
-155 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3040 moveto
-155 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3048 moveto
-155 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3055 moveto
-155 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3063 moveto
-155 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3070 moveto
-155 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3078 moveto
-155 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3085 moveto
-155 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3093 moveto
-155 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3100 moveto
-155 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3108 moveto
-155 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3115 moveto
-155 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3123 moveto
-155 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-155 3130 moveto
-155 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3021 moveto
-148 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3029 moveto
-148 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3036 moveto
-148 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3044 moveto
-148 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3051 moveto
-148 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3059 moveto
-148 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3066 moveto
-148 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3074 moveto
-148 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3081 moveto
-148 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3089 moveto
-148 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3096 moveto
-148 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3104 moveto
-148 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3111 moveto
-148 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3119 moveto
-148 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3126 moveto
-148 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-148 3134 moveto
-148 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3025 moveto
-140 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3033 moveto
-140 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3040 moveto
-140 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3048 moveto
-140 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3055 moveto
-140 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3063 moveto
-140 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3070 moveto
-140 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3078 moveto
-140 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3085 moveto
-140 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3093 moveto
-140 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3100 moveto
-140 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3108 moveto
-140 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3115 moveto
-140 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3123 moveto
-140 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-140 3130 moveto
-140 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3021 moveto
-133 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3029 moveto
-133 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3036 moveto
-133 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3044 moveto
-133 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3051 moveto
-133 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3059 moveto
-133 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3066 moveto
-133 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3074 moveto
-133 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3081 moveto
-133 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3089 moveto
-133 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3096 moveto
-133 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3104 moveto
-133 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3111 moveto
-133 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3119 moveto
-133 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3126 moveto
-133 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-133 3134 moveto
-133 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3025 moveto
-125 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3033 moveto
-125 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3040 moveto
-125 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3048 moveto
-125 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3055 moveto
-125 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3063 moveto
-125 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3070 moveto
-125 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3078 moveto
-125 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3085 moveto
-125 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3093 moveto
-125 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3100 moveto
-125 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3108 moveto
-125 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3115 moveto
-125 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3123 moveto
-125 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-125 3130 moveto
-125 3130 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3021 moveto
-118 3021 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3029 moveto
-118 3029 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3036 moveto
-118 3036 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3044 moveto
-118 3044 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3051 moveto
-118 3051 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3059 moveto
-118 3059 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3066 moveto
-118 3066 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3074 moveto
-118 3074 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3081 moveto
-118 3081 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3089 moveto
-118 3089 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3096 moveto
-118 3096 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3104 moveto
-118 3104 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3111 moveto
-118 3111 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3119 moveto
-118 3119 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3126 moveto
-118 3126 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-118 3134 moveto
-118 3134 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3025 moveto
-110 3025 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3033 moveto
-110 3033 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3040 moveto
-110 3040 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3048 moveto
-110 3048 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3055 moveto
-110 3055 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3063 moveto
-110 3063 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3070 moveto
-110 3070 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3078 moveto
-110 3078 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3085 moveto
-110 3085 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3093 moveto
-110 3093 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3100 moveto
-110 3100 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3108 moveto
-110 3108 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3115 moveto
-110 3115 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3123 moveto
-110 3123 lineto
-stroke
-0.00 0.00 1.00 setrgbcolor
-110 3130 moveto
-110 3130 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-191 2580 moveto
-191 2652 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-103 2457 moveto
-103 2652 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-162 2637 moveto
-132 2637 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-162 2632 moveto
-162 2642 lineto
-191 2637 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-132 2632 moveto
-132 2642 lineto
-103 2637 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-118 2600 moveto
-137 2600 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 2600 moveto
-123 2630 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-147 2630 moveto
-147 2625 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-157 2625 moveto
-162 2630 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-162 2630 moveto
-172 2630 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-172 2630 moveto
-177 2625 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-177 2625 moveto
-177 2615 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-177 2615 moveto
-172 2610 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-172 2610 moveto
-157 2610 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-157 2610 moveto
-157 2600 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-157 2600 moveto
-177 2600 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-286 2580 moveto
-286 2854 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-191 2580 moveto
-191 2854 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-256 2840 moveto
-221 2840 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-256 2835 moveto
-256 2844 lineto
-286 2840 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-221 2835 moveto
-221 2844 lineto
-191 2840 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-234 2832 moveto
-229 2827 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-229 2827 moveto
-229 2822 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-229 2822 moveto
-234 2817 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-234 2817 moveto
-244 2817 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-244 2817 moveto
-248 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-248 2812 moveto
-248 2808 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-248 2808 moveto
-244 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-244 2803 moveto
-234 2803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-234 2803 moveto
-229 2808 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-229 2808 moveto
-229 2812 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-229 2812 moveto
-234 2817 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-244 2817 moveto
-248 2822 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-248 2822 moveto
-248 2827 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-248 2827 moveto
-244 2832 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-244 2832 moveto
-234 2832 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-9 2713 moveto
-139 2688 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-244 2669 moveto
-273 2663 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-62 2715 moveto
-68 2719 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-68 2719 moveto
-69 2729 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-69 2729 moveto
-65 2735 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-65 2735 moveto
-56 2737 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-56 2737 moveto
-50 2733 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-50 2733 moveto
-48 2723 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-48 2723 moveto
-52 2717 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-52 2717 moveto
-62 2715 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-63 2710 moveto
-54 2742 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-19 2728 moveto
-38 2725 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-38 2725 moveto
-28 2747 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-28 2747 moveto
-22 2718 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-215 2674 moveto
-168 2683 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-245 2674 moveto
-243 2664 lineto
-215 2674 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-140 2693 moveto
-138 2684 lineto
-168 2683 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-24 2485 moveto
-139 2545 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-244 2600 moveto
-270 2613 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-40 2480 moveto
-38 2473 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-38 2473 moveto
-43 2464 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-43 2464 moveto
-49 2462 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-49 2462 moveto
-58 2467 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-58 2467 moveto
-60 2473 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-60 2473 moveto
-55 2482 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-55 2482 moveto
-49 2484 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-49 2484 moveto
-40 2480 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-36 2483 moveto
-62 2464 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-62 2491 moveto
-64 2498 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-64 2498 moveto
-73 2502 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-73 2502 moveto
-79 2500 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-79 2500 moveto
-84 2491 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-84 2491 moveto
-82 2485 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-82 2485 moveto
-69 2478 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-69 2478 moveto
-73 2469 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-73 2469 moveto
-91 2478 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-218 2586 moveto
-165 2559 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-246 2595 moveto
-241 2604 lineto
-218 2586 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-141 2541 moveto
-137 2549 lineto
-165 2559 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-417 2651 moveto
-336 2603 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-235 2542 moveto
-210 2527 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-379 2614 moveto
-377 2607 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-377 2607 moveto
-382 2599 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-382 2599 moveto
-389 2597 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-389 2597 moveto
-397 2602 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-397 2602 moveto
-399 2609 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-399 2609 moveto
-394 2617 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-394 2617 moveto
-387 2619 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-387 2619 moveto
-379 2614 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-374 2617 moveto
-402 2599 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-400 2627 moveto
-401 2633 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-401 2633 moveto
-410 2638 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-410 2638 moveto
-417 2637 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-417 2637 moveto
-422 2628 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-422 2628 moveto
-420 2622 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-420 2622 moveto
-407 2614 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-407 2614 moveto
-412 2605 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-412 2605 moveto
-429 2616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-261 2557 moveto
-311 2588 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-238 2538 moveto
-233 2546 lineto
-261 2557 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-339 2599 moveto
-334 2607 lineto
-311 2588 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-150 1958 moveto
-150 2159 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-150 2159 moveto
-327 2159 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-327 1958 moveto
-150 1958 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-110 1687 moveto
-496 1687 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-346 1958 moveto
-496 1958 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-481 1716 moveto
-481 1929 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 1716 moveto
-476 1716 lineto
-481 1687 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 1929 moveto
-476 1929 lineto
-481 1958 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-513 1798 moveto
-518 1803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 1803 moveto
-518 1813 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 1813 moveto
-513 1818 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-513 1818 moveto
-508 1818 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-508 1818 moveto
-503 1813 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-503 1813 moveto
-503 1803 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-503 1803 moveto
-498 1798 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-498 1798 moveto
-488 1798 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 1798 moveto
-488 1818 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-513 1828 moveto
-518 1832 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 1832 moveto
-518 1842 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 1842 moveto
-513 1847 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-513 1847 moveto
-508 1847 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-508 1847 moveto
-503 1842 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-503 1842 moveto
-503 1837 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-503 1842 moveto
-498 1847 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-498 1847 moveto
-493 1847 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-493 1847 moveto
-488 1842 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 1842 moveto
-488 1832 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 1832 moveto
-493 1828 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-346 2159 moveto
-496 2159 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-481 1988 moveto
-481 2130 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 1988 moveto
-476 1988 lineto
-481 1958 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 2130 moveto
-476 2130 lineto
-481 2159 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-513 2039 moveto
-518 2044 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2044 moveto
-488 2044 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 2039 moveto
-488 2049 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2059 moveto
-518 2078 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2078 moveto
-488 2064 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-150 1951 moveto
-150 1856 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-103 1694 moveto
-103 1886 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-180 1871 moveto
-209 1871 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-73 1871 moveto
-44 1871 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-150 1871 moveto
-103 1871 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-180 1866 moveto
-180 1876 lineto
-150 1871 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-73 1866 moveto
-73 1876 lineto
-103 1871 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-136 1854 moveto
-117 1854 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-117 1854 moveto
-131 1834 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-131 1834 moveto
-131 1864 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-162 2355 moveto
-162 2365 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-103 2443 moveto
-103 2335 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-191 2350 moveto
-221 2350 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-73 2350 moveto
-44 2350 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-162 2350 moveto
-103 2350 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-191 2345 moveto
-191 2355 lineto
-162 2350 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-73 2345 moveto
-73 2355 lineto
-103 2350 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-123 2338 moveto
-127 2343 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-127 2343 moveto
-137 2343 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 2343 moveto
-142 2338 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-142 2338 moveto
-142 2328 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-142 2328 moveto
-137 2323 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-137 2323 moveto
-123 2323 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 2323 moveto
-123 2313 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-123 2313 moveto
-142 2313 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-327 1958 moveto
-327 2159 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-327 1951 moveto
-327 1856 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-150 1951 moveto
-150 1856 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-298 1871 moveto
-180 1871 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-298 1866 moveto
-298 1876 lineto
-327 1871 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-180 1866 moveto
-180 1876 lineto
-150 1871 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-219 1839 moveto
-224 1834 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-224 1834 moveto
-224 1864 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-219 1864 moveto
-229 1864 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-239 1859 moveto
-244 1864 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-244 1864 moveto
-253 1864 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-253 1864 moveto
-258 1859 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-258 1859 moveto
-258 1849 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-258 1849 moveto
-253 1844 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-253 1844 moveto
-239 1844 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-239 1844 moveto
-239 1834 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-239 1834 moveto
-258 1834 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-3 setlinewidth
-292 2525 moveto
-162 2525 lineto
-stroke
-0.00 0.00 0.00 setrgbcolor
-292 2171 moveto
-162 2171 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-299 2525 moveto
-496 2525 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-481 2200 moveto
-481 2496 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 2200 moveto
-476 2200 lineto
-481 2171 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 2496 moveto
-476 2496 lineto
-481 2525 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-513 2326 moveto
-518 2331 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2331 moveto
-518 2341 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2341 moveto
-513 2346 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-513 2346 moveto
-508 2346 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-508 2346 moveto
-503 2341 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-503 2341 moveto
-503 2336 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-503 2341 moveto
-498 2346 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-498 2346 moveto
-493 2346 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-493 2346 moveto
-488 2341 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 2341 moveto
-488 2331 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 2331 moveto
-493 2326 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 2360 moveto
-493 2355 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-493 2355 moveto
-513 2355 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-513 2355 moveto
-518 2360 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2360 moveto
-518 2365 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2365 moveto
-513 2370 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-513 2370 moveto
-493 2370 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-493 2370 moveto
-488 2365 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 2365 moveto
-488 2360 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-293 2572 moveto
-496 2572 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-481 2496 moveto
-481 2466 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-481 2602 moveto
-481 2631 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-481 2525 moveto
-481 2572 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 2496 moveto
-476 2496 lineto
-481 2525 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 2602 moveto
-476 2602 lineto
-481 2572 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-498 2559 moveto
-498 2539 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-498 2539 moveto
-518 2554 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2554 moveto
-488 2554 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-199 2679 moveto
-496 2679 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-481 2602 moveto
-481 2649 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 2602 moveto
-476 2602 lineto
-481 2572 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-486 2649 moveto
-476 2649 lineto
-481 2679 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-488 2621 moveto
-488 2626 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-488 2626 moveto
-498 2635 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-498 2635 moveto
-513 2635 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-513 2635 moveto
-518 2630 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2630 moveto
-518 2621 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-518 2621 moveto
-513 2616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-513 2616 moveto
-508 2616 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-508 2616 moveto
-503 2621 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-503 2621 moveto
-503 2635 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-335 2159 moveto
-549 2159 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-299 2171 moveto
-549 2171 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-534 2130 moveto
-534 2100 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-534 2200 moveto
-534 2255 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-534 2159 moveto
-534 2171 lineto
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-539 2130 moveto
-529 2130 lineto
-534 2159 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-%PolyPolygon
-0.00 1.00 0.00 setrgbcolor
-2 setlinewidth
-539 2200 moveto
-529 2200 lineto
-534 2171 lineto
-closepath
-gsave
-0.00 1.00 0.00 setrgbcolor
-eofill
-grestore
-stroke
-0.00 1.00 0.00 setrgbcolor
-3 setlinewidth
-566 2237 moveto
-571 2242 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-571 2242 moveto
-542 2242 lineto
-stroke
-0.00 1.00 0.00 setrgbcolor
-542 2237 moveto
-542 2247 lineto
-stroke
-pgsave restore
-showpage
-%%Trailer
-%%Pages: 1
-%%EOF
diff --git a/doc/aicpcb.ps b/doc/aicpcb.ps
deleted file mode 100644 (file)
index 122248e..0000000
+++ /dev/null
@@ -1,58490 +0,0 @@
-%!PS-Adobe-3.0
-%%Pages: (atend)
-%%BoundingBox: 0 0 551 565
-%%HiResBoundingBox: 0.000000 0.000000 550.050000 564.050000
-%.........................................
-%%Creator: GNU Ghostscript 707 (pswrite)
-%%CreationDate: 2005/06/01 10:05:16
-%%DocumentData: Clean7Bit
-%%LanguageLevel: 2
-%%EndComments
-%%BeginProlog
-% This copyright applies to everything between here and the %%EndProlog:
-% Copyright (C) 2003 artofcode LLC, Benicia, CA.  All rights reserved.
-%%BeginResource: procset GS_pswrite_2_0_1001
-/GS_pswrite_2_0_1001 80 dict dup begin
-/PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch
-4 index eq and{ pop pop pop}{ PageSize dup  1
-5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec}
-{ pop/setpagedevice where
-{ pop 1 dict dup /PageSize PageSize put setpagedevice}
-{ /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat
-setpage}if}ifelse}ifelse}ifelse} bind def
-/!{bind def}bind def/#{load def}!/N/counttomark #
-/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}!
-/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}!
-/w/setlinewidth #/J/setlinecap #
-/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat #
-/m/moveto #/l/lineto #/c/rcurveto #
-/p{N 2 idiv{N -2 roll rlineto}repeat}!
-/P{N 0 gt{N -2 roll moveto p}if}!
-/h{p closepath}!/H{P closepath}!
-/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}!
-/re{4 -2 roll m exch dup lx exch ly neg lx h}!
-/^{3 index neg 3 index neg}!
-/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}!
-/q/gsave #/Q/grestore #/rf{re fill}!
-/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}!
-/|={pop exch 4 1 roll 3 array astore cvx exch 1 index def exec}!
-/|{exch string readstring |=}!
-/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}!
-/@/currentfile #/${+ @ |}!
-/B{{2 copy string{readstring pop}aload pop 4 array astore cvx
-3 1 roll}repeat pop pop true}!
-/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}!
-/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}!
-/Ic{exch Ix false 3 colorimage}!
-/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>>
-/CCITTFaxDecode filter}!/FX{<</EndOfBlock false F}!
-/X{/ASCII85Decode filter}!/@X{@ X}!/&2{2 index 2 index}!
-/@F{@ &2<<F}!/@C{@X &2 FX}!
-/$X{+ @X |}!/&4{4 index 4 index}!/$F{+ @ &4<<F |}!/$C{+ @X &4 FX |}!
-/IC{3 1 roll 10 dict begin 1{/ImageType/Interpolate/Decode/DataSource
-/ImageMatrix/BitsPerComponent/Height/Width}{exch def}forall
-currentdict end image}!
-/~{@ read {pop} if}!
-end readonly def
-%%EndResource
-/pagesave null def
-%%EndProlog
-%%Page: 1 1
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-K
-0 0 0 0 rf
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-77 73 r5
-885.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-885.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-1238.4 3440.88 43.2 43.2 re
-f
-255 G
-1272.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-993.6 3462.48 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-984.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1648.8 2958.48 43.2 43.2 re
-f
-255 G
-1683 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1396.8 2958.48 43.2 43.2 re
-f
-255 G
-1431 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4294.8 4470.48 43.2 43.2 re
-f
-255 G
-4329 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4302 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4293 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4266 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4257 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4230 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4194 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4185 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4158 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4149 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4122 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4113 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4086 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4077 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4050 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4041 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4014 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4005 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3942 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3933 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3906 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3897 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3834 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3798 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3789 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3762 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3753 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3726 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3717 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3690 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3681 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3654 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3645 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3618 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3609 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3582 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3573 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3546 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3537 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3510 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3501 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3474 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3465 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3438 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3429 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3402 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3393 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3366 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3330 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3321 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3294 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3222 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3213 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3150 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3141 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3078 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3069 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2790 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2781 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2394 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2322 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2313 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2142 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2133 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2070 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2061 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1998 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1989 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1926 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1917 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1854 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1845 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1782 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1773 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1710 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1638 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1629 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4582.8 4528.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4575.6 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-3009.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-3002.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1425.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1418.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1396.8 3174.48 43.2 43.2 re
-f
-255 G
-1431 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2692.8 3174.48 43.2 43.2 re
-f
-255 G
-2727 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2998.8 3552.48 43.2 43.2 re
-f
-255 G
-3033 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 5226.48 43.2 43.2 re
-f
-255 G
-1071 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5212.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 4996.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 4996.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-931.68 5284.08 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 5284.08 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-931.68 4959.36 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 4959.36 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-993.6 5341.68 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 5341.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-993.6 4901.76 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 4901.76 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-2728.8 3552.48 43.2 43.2 re
-f
-255 G
-2763 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2844 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4564.8 5226.48 43.2 43.2 re
-f
-255 G
-4599 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 4121.28 57.5999 57.5999 re
-f
-255 G
-4637.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4564.8 4794.48 43.2 43.2 re
-f
-255 G
-4599 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4456.8 4290.48 43.2 43.2 re
-f
-255 G
-4491 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4716 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-799.199 3696.48 50.3999 50.3999 re
-f
-255 G
-839.52 3721.68 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-849.6 3594.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-839.52 3594.24 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-920.16 3756.96 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3756.96 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-920.16 3558.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3558.24 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-3826.8 3264.48 43.2 43.2 re
-f
-255 G
-3861 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 3286.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2566.8 3498.48 43.2 43.2 re
-f
-255 G
-2601 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 5190.48 43.2 43.2 re
-f
-255 G
-3663 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2800.8 3768.48 43.2 43.2 re
-f
-255 G
-2835 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2772 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5104.8 5298.48 43.2 43.2 re
-f
-255 G
-5139 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5241.6 2944.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2944.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-4215.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3934.8 2976.48 43.2 43.2 re
-f
-255 G
-3969 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 2998.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1242 3624.48 43.2 43.2 re
-f
-255 G
-1276.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-997.2 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-988.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2422.8 3786.48 43.2 43.2 re
-f
-255 G
-2457 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4503.6 3041.28 57.5999 57.5999 re
-f
-255 G
-4547.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4489.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4475.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3967.2 3638.88 50.3999 50.3999 re
-f
-255 G
-4007.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1648.8 3336.48 43.2 43.2 re
-f
-255 G
-1683 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1159.2 3260.88 50.3999 50.3999 re
-f
-255 G
-1199.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1281.6 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1271.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2962.8 5190.48 43.2 43.2 re
-f
-255 G
-2997 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3006 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2997 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4258.8 4128.48 43.2 43.2 re
-f
-255 G
-4293 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4374 4150.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4365 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1018.8 3264.48 43.2 43.2 re
-f
-255 G
-1053 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1062 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1053 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3967.2 4052.88 50.3999 50.3999 re
-f
-255 G
-4007.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-993.6 3916.08 43.2 43.2 re
-f
-255 G
-1027.8 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1027.8 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1029.6 4769.28 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4769.28 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1029.6 4092.48 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4092.48 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1047.6 4574.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4574.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4538.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4538.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4502.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4502.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4466.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4466.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4430.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4430.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4394.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4394.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4358.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4358.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4322.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4322.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-997.199 4261.68 50.3999 50.3999 re
-f
-255 G
-1037.52 4286.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2422.8 3948.48 43.2 43.2 re
-f
-255 G
-2457 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1414.8 3732.48 43.2 43.2 re
-f
-255 G
-1449 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1458 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3427.2 4160.88 50.3999 50.3999 re
-f
-255 G
-3467.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4186.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2692.8 2958.48 43.2 43.2 re
-f
-255 G
-2727 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2170.8 5226.48 43.2 43.2 re
-f
-255 G
-2205 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4215.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-820.8 3916.08 43.2 43.2 re
-f
-255 G
-855 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-864 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-855 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1540.8 3174.48 43.2 43.2 re
-f
-255 G
-1575 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1584 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1575 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 5190.48 43.2 43.2 re
-f
-255 G
-4455 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 5226.48 43.2 43.2 re
-f
-255 G
-3303 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 4794.48 43.2 43.2 re
-f
-255 G
-3951 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 4758.48 43.2 43.2 re
-f
-255 G
-4311 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 4758.48 43.2 43.2 re
-f
-255 G
-3807 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 5190.48 43.2 43.2 re
-f
-255 G
-3807 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 5226.48 43.2 43.2 re
-f
-255 G
-3951 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 5190.48 43.2 43.2 re
-f
-255 G
-4311 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 4758.48 43.2 43.2 re
-f
-255 G
-4455 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 4794.48 43.2 43.2 re
-f
-255 G
-3303 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 4758.48 43.2 43.2 re
-f
-255 G
-3663 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3387.6 3041.28 57.5999 57.5999 re
-f
-255 G
-3431.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3373.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3359.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3301.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3287.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2548.8 3174.48 43.2 43.2 re
-f
-255 G
-2583 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2592 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2818.8 5190.48 43.2 43.2 re
-f
-255 G
-2853 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3978 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4482 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4473 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3294 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 4060.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4060.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3780 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3771 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4500 4078.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4491 4078.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-5112 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5103 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4536 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4527 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4752 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4176 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4608 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3348 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3339 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4032 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1710 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2160 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2151 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2772 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2808 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2394 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2260.8 3592.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 3592.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3528 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4230 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2718 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3672 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1908 3466.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3466.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1368 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1980 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2412 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3042 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1008 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-999 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3952.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3945.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4906.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4899.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5032.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5032.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4312.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4305.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5032.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5025.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4744.8 5194.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4737.6 5194.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3384 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1918.8 5068.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1911.6 5068.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3970.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3970.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2854.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2847.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4240.8 5500.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4233.6 5500.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3880.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3873.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5410.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5410.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5104.8 5518.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5097.6 5518.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4060.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4053.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4384.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4377.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4834.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4827.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4438.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4431.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1846.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1839.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2188.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2181.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 5176.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 5176.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 4852.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 4852.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4096.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4089.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 5212.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 5212.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4132.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4125.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 3952.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 3952.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 5446.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 5446.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2412 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1126.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1119.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4636.8 3610.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4629.6 3610.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1234.8 3016.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1227.6 3016.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1756.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1749.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2260.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1980 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2124 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1828.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1821.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3844.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3837.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3808.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3801.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2314.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2307.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2530.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2764.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2757.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1486.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1479.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1594.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1587.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2458.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2451.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4708.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4708.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2772 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2962.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1900.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1893.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2026.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2019.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2034 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2602.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1990.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1983.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4258.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4258.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2710.8 4276.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2703.6 4276.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1522.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1515.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2782.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2775.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2134.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2127.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3034.8 3844.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3027.6 3844.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2548.8 4060.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2541.6 4060.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 4006.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 4006.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3250.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3243.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3214.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3207.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2890.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2883.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2098.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2091.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2080.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2073.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4402.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4402.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4438.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4438.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3538.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3531.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2844 3718.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3718.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2530.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3898.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3891.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3834 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3772.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3765.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3934.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3927.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2638.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2631.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2818.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2811.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2962.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3070.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3063.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2592 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3142.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3135.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1216.8 4600.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1209.6 4600.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1321.2 4506.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1314 4506.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3682.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3675.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3322.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3315.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3358.8 4114.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3351.6 4114.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3394.8 4186.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3387.6 4186.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1198.8 3718.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1191.6 3718.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3430.8 3700.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3423.6 3700.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2044.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2037.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3790.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3790.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3232.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3232.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4258.8 3304.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4251.6 3304.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2476.8 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2469.6 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3466.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3466.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-799.2 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-792 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1386 3826.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3826.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-993.6 3811.68 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-986.4 3811.68 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1094.4 3462.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1087.2 3462.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4716 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3366 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-7.2 w
-1 J
-77 73 r5
-853.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-853.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4564.8 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-2977.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1393.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 5284.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 4959.36 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 5341.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 4901.76 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3721.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3594.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3756.96 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3558.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2944.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4543.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4471.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1195.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1267.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4769.28 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4092.48 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4574.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4538.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4502.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4466.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4430.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4394.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4358.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4322.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4286.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3427.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3355.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3283.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-14.4 w
-K
-752.4 5626.08 0 -2834.64 S
-752.4 2791.44 4536 0 S
-5288.4 2791.44 0 2834.64 S
-5288.4 5626.08 -4536 0 S
-1044 3462.48 -72 0 S
-1260 3462.48 -72 0 S
-1188 3498.48 0 -72 S
-1044 3498.48 144 0 S
-1044 3426.48 0 72 S
-1188 3426.48 -144 0 S
-5.76 w
-1173.6 3448.08 -14.4 0 S
-1159.2 3448.08 -3.6 3.6 S
-1155.6 3451.68 0 7.2 S
-1159.2 3462.48 -3.6 -3.6 S
-1170 3462.48 -10.8 0 S
-1170 3448.08 0 28.8 S
-1170 3462.48 -14.4 14.4 S
-1142.64 3476.88 -7.2 0 S
-1139.04 3448.08 0 28.8 S
-1146.24 3455.28 -7.2 -7.2 S
-1122.48 3476.88 -7.2 0 S
-1118.88 3448.08 0 28.8 S
-1126.08 3455.28 -7.2 -7.2 S
-7.2 w
-1634.4 3124.08 0 108 S
-1634.4 2944.08 0 108 S
-2498.4 3232.08 -864 0 S
-2498.4 2944.08 0 288 S
-1634.4 2944.08 864 0 S
-1634.4 3052.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-1706.4 3102.48 0 -25.2 S
-1706.4 3077.28 3.6 -3.6 S
-1710 3073.68 7.2 0 S
-1717.2 3073.68 3.6 3.6 S
-1720.8 3102.48 0 -25.2 S
-1730.16 3073.68 14.4 14.4 S
-1744.56 3098.88 0 -10.8 S
-1740.96 3102.48 3.6 -3.6 S
-1733.76 3102.48 7.2 0 S
-1730.16 3098.88 3.6 3.6 S
-1730.16 3098.88 0 -7.2 S
-1730.16 3091.68 3.6 -3.6 S
-1733.76 3088.08 10.8 0 S
-7.2 w
-1454.4 2980.08 m
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-S
-5.76 w
-1306.8 2936.88 -10.8 0 S
-1310.4 2933.28 -3.6 3.6 S
-1310.4 2911.68 0 21.6 S
-1310.4 2911.68 -3.6 -3.6 S
-1306.8 2908.08 -10.8 0 S
-1286.64 2911.68 -3.6 -3.6 S
-1283.04 2908.08 -7.2 0 S
-1275.84 2908.08 -3.6 3.6 S
-1272.24 2911.68 0 21.6 S
-1275.84 2936.88 -3.6 -3.6 S
-1283.04 2936.88 -7.2 0 S
-1286.64 2933.28 -3.6 3.6 S
-1283.04 2922.48 -10.8 0 S
-14.4 w
-4604.4 4438.08 0 208.8 S
-1328.4 4438.08 3276 0 S
-1328.4 4646.88 0 -208.8 S
-4604.4 4646.88 -3276 0 S
-5.76 w
-4604.4 4394.88 0 25.2 S
-4604.4 4420.08 -3.6 3.6 S
-4600.8 4423.68 -7.2 0 S
-4593.6 4423.68 -3.6 -3.6 S
-4590 4394.88 0 25.2 S
-4577.04 4423.68 -7.2 0 S
-4573.44 4394.88 0 28.8 S
-4580.64 4402.08 -7.2 -7.2 S
-7.2 w
-1454.4 3196.08 m
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-S
-5.76 w
-1306.8 3152.88 -10.8 0 S
-1310.4 3149.28 -3.6 3.6 S
-1310.4 3127.68 0 21.6 S
-1310.4 3127.68 -3.6 -3.6 S
-1306.8 3124.08 -10.8 0 S
-1286.64 3124.08 -14.4 0 S
-1286.64 3124.08 0 14.4 S
-1286.64 3138.48 -3.6 -3.6 S
-1283.04 3134.88 -7.2 0 S
-1275.84 3134.88 -3.6 3.6 S
-1272.24 3138.48 0 10.8 S
-1275.84 3152.88 -3.6 -3.6 S
-1283.04 3152.88 -7.2 0 S
-1286.64 3149.28 -3.6 3.6 S
-7.2 w
-2678.4 3196.08 m
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-S
-5.76 w
-2826 3239.28 10.8 0 S
-2822.4 3242.88 3.6 -3.6 S
-2822.4 3264.48 0 -21.6 S
-2822.4 3264.48 3.6 3.6 S
-2826 3268.08 10.8 0 S
-2856.96 3268.08 3.6 -3.6 S
-2849.76 3268.08 7.2 0 S
-2846.16 3264.48 3.6 3.6 S
-2846.16 3264.48 0 -21.6 S
-2846.16 3242.88 3.6 -3.6 S
-2856.96 3253.68 3.6 -3.6 S
-2846.16 3253.68 10.8 0 S
-2849.76 3239.28 7.2 0 S
-2856.96 3239.28 3.6 3.6 S
-2860.56 3250.08 0 -7.2 S
-7.2 w
-2984.4 3718.08 0 108 S
-2984.4 3538.08 0 108 S
-3272.4 3826.08 -288 0 S
-3272.4 3538.08 0 288 S
-2984.4 3538.08 288 0 S
-2984.4 3646.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3056.4 3696.48 0 -25.2 S
-3056.4 3671.28 3.6 -3.6 S
-3060 3667.68 7.2 0 S
-3067.2 3667.68 3.6 3.6 S
-3070.8 3696.48 0 -25.2 S
-3083.76 3667.68 7.2 0 S
-3087.36 3696.48 0 -28.8 S
-3080.16 3689.28 7.2 7.2 S
-3100.32 3671.28 3.6 -3.6 S
-3100.32 3692.88 0 -21.6 S
-3100.32 3692.88 3.6 3.6 S
-3103.92 3696.48 7.2 0 S
-3111.12 3696.48 3.6 -3.6 S
-3114.72 3692.88 0 -21.6 S
-3111.12 3667.68 3.6 3.6 S
-3103.92 3667.68 7.2 0 S
-3100.32 3674.88 14.4 14.4 S
-14.4 w
-1184.4 5350.32 -612 0 S
-572.4 5350.32 0 -457.2 S
-572.4 4893.12 612 0 S
-1184.4 4893.12 0 457.2 S
-5.76 w
-1184.4 4849.92 -10.8 0 S
-1173.6 4849.92 0 25.2 S
-1177.2 4878.72 -3.6 -3.6 S
-1180.8 4878.72 -3.6 0 S
-1184.4 4875.12 -3.6 3.6 S
-1164.24 4853.52 -3.6 -3.6 S
-1160.64 4849.92 -10.8 0 S
-1149.84 4849.92 -3.6 3.6 S
-1146.24 4853.52 0 7.2 S
-1164.24 4878.72 -18 -18 S
-1164.24 4878.72 -18 0 S
-7.2 w
-2714.4 3574.08 m
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-S
-5.76 w
-2862 3617.28 10.8 0 S
-2858.4 3620.88 3.6 -3.6 S
-2858.4 3642.48 0 -21.6 S
-2858.4 3642.48 3.6 3.6 S
-2862 3646.08 10.8 0 S
-2885.76 3617.28 7.2 0 S
-2889.36 3646.08 0 -28.8 S
-2882.16 3638.88 7.2 7.2 S
-2902.32 3620.88 3.6 -3.6 S
-2902.32 3642.48 0 -21.6 S
-2902.32 3642.48 3.6 3.6 S
-2905.92 3646.08 7.2 0 S
-2913.12 3646.08 3.6 -3.6 S
-2916.72 3642.48 0 -21.6 S
-2913.12 3617.28 3.6 3.6 S
-2905.92 3617.28 7.2 0 S
-2902.32 3624.48 14.4 14.4 S
-7.2 w
-4550.4 5392.08 0 108 S
-4550.4 5212.08 0 108 S
-4838.4 5500.08 -288 0 S
-4838.4 5212.08 0 288 S
-4550.4 5212.08 288 0 S
-4550.4 5320.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-4622.4 5370.48 0 -25.2 S
-4622.4 5345.28 3.6 -3.6 S
-4626 5341.68 7.2 0 S
-4633.2 5341.68 3.6 3.6 S
-4636.8 5370.48 0 -25.2 S
-4646.16 5356.08 14.4 14.4 S
-4646.16 5356.08 18 0 S
-4660.56 5370.48 0 -28.8 S
-14.4 w
-4550.4 4236.48 288 0 S
-4838.4 4236.48 0 -129.6 S
-4838.4 4106.88 -288 0 S
-4550.4 4106.88 0 129.6 S
-4550.4 4236.48 288 0 S
-4838.4 4236.48 0 -43.2 S
-4838.4 4193.28 -288 0 S
-4550.4 4193.28 0 43.2 S
-7.2 w
-4644 4236.48 0 -43.2 S
-4744.8 4236.48 0 -43.2 S
-5.76 w
-4550.4 4283.28 0 -21.6 S
-4550.4 4283.28 3.6 3.6 S
-4554 4286.88 7.2 0 S
-4561.2 4286.88 3.6 -3.6 S
-4564.8 4283.28 0 -21.6 S
-4561.2 4258.08 3.6 3.6 S
-4554 4258.08 7.2 0 S
-4550.4 4261.68 3.6 -3.6 S
-4557.6 4265.28 7.2 -7.2 S
-4574.16 4286.88 14.4 0 S
-4574.16 4286.88 0 -14.4 S
-4574.16 4272.48 3.6 3.6 S
-4577.76 4276.08 7.2 0 S
-4584.96 4276.08 3.6 -3.6 S
-4588.56 4272.48 0 -10.8 S
-4584.96 4258.08 3.6 3.6 S
-4577.76 4258.08 7.2 0 S
-4574.16 4261.68 3.6 -3.6 S
-7.2 w
-4550.4 4960.08 0 108 S
-4550.4 4780.08 0 108 S
-4838.4 5068.08 -288 0 S
-4838.4 4780.08 0 288 S
-4550.4 4780.08 288 0 S
-4550.4 4888.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-4622.4 4938.48 0 -25.2 S
-4622.4 4913.28 3.6 -3.6 S
-4626 4909.68 7.2 0 S
-4633.2 4909.68 3.6 3.6 S
-4636.8 4938.48 0 -25.2 S
-4646.16 4938.48 14.4 0 S
-4646.16 4938.48 0 -14.4 S
-4646.16 4924.08 3.6 3.6 S
-4649.76 4927.68 7.2 0 S
-4656.96 4927.68 3.6 -3.6 S
-4660.56 4924.08 0 -10.8 S
-4656.96 4909.68 3.6 3.6 S
-4649.76 4909.68 7.2 0 S
-4646.16 4913.28 3.6 -3.6 S
-7.2 w
-4478.4 4312.08 72 0 S
-4622.4 4312.08 72 0 S
-4550.4 4312.08 72 36 S
-4622.4 4348.08 0 -72 S
-4622.4 4276.08 -72 36 S
-4550.4 4348.08 0 -72 S
-5.76 w
-4640.4 4348.08 0 -28.8 S
-4651.2 4348.08 3.6 -3.6 S
-4654.8 4344.48 0 -21.6 S
-4651.2 4319.28 3.6 3.6 S
-4636.8 4319.28 14.4 0 S
-4636.8 4348.08 14.4 0 S
-4664.16 4319.28 18 18 S
-4682.16 4348.08 0 -10.8 S
-4664.16 4348.08 18 0 S
-14.4 w
-4550.4 3642.48 288 0 S
-4838.4 3642.48 0 -129.6 S
-4838.4 3512.88 -288 0 S
-4550.4 3512.88 0 129.6 S
-4550.4 3642.48 288 0 S
-4838.4 3642.48 0 -43.2 S
-4838.4 3599.28 -288 0 S
-4550.4 3599.28 0 43.2 S
-7.2 w
-4644 3642.48 0 -43.2 S
-4744.8 3642.48 0 -43.2 S
-5.76 w
-4550.4 3689.28 0 -21.6 S
-4550.4 3689.28 3.6 3.6 S
-4554 3692.88 7.2 0 S
-4561.2 3692.88 3.6 -3.6 S
-4564.8 3689.28 0 -21.6 S
-4561.2 3664.08 3.6 3.6 S
-4554 3664.08 7.2 0 S
-4550.4 3667.68 3.6 -3.6 S
-4557.6 3671.28 7.2 -7.2 S
-4574.16 3689.28 3.6 3.6 S
-4577.76 3692.88 7.2 0 S
-4584.96 3692.88 3.6 -3.6 S
-4588.56 3689.28 0 -21.6 S
-4584.96 3664.08 3.6 3.6 S
-4577.76 3664.08 7.2 0 S
-4574.16 3667.68 3.6 -3.6 S
-4577.76 3678.48 10.8 0 S
-14.4 w
-488.88 3615.12 263.52 -7.2 S
-488.88 3700.08 0 -84.96 S
-752.4 3707.28 -263.52 -7.2 S
-851.76 3558.24 0 198.72 S
-752.4 3558.24 185.76 0 S
-752.4 3756.96 0 -198.72 S
-938.16 3756.96 -185.76 0 S
-5.76 w
-909.36 3657.6 3.6 -3.6 S
-898.56 3657.6 10.8 0 S
-894.96 3654 3.6 3.6 S
-894.96 3654 0 -7.2 S
-894.96 3646.8 3.6 -3.6 S
-898.56 3643.2 10.8 0 S
-909.36 3643.2 3.6 -3.6 S
-912.96 3639.6 0 -7.2 S
-909.36 3628.8 3.6 3.6 S
-898.56 3628.8 10.8 0 S
-894.96 3632.4 3.6 -3.6 S
-925.92 3628.8 7.2 0 S
-929.52 3657.6 0 -28.8 S
-922.32 3650.4 7.2 7.2 S
-14.4 w
-3722.4 2890.08 -756 0 S
-3722.4 2890.08 0 468 S
-3722.4 3358.08 -36 0 S
-3686.4 3358.08 0 -396 S
-3686.4 2962.08 -144 0 S
-3542.4 2962.08 0 396 S
-3542.4 3358.08 -36 0 S
-3506.4 3358.08 0 -396 S
-3506.4 2962.08 -324 0 S
-2966.4 2890.08 0 468 S
-2966.4 3358.08 36 0 S
-3002.4 3358.08 0 -396 S
-3002.4 2962.08 144 0 S
-3146.4 2962.08 0 396 S
-3146.4 3358.08 36 0 S
-3182.4 3358.08 0 -396 S
-7.2 w
-3794.4 3286.08 m
-0 -59.65 48.35 -108 108 -108 c
-59.65 0 108 48.35 108 108 c
-0 59.65 -48.35 108 -108 108 c
--59.65 0 -108 -48.35 -108 -108 c
-S
-5.76 w
-4014 3365.28 10.8 0 S
-4010.4 3368.88 3.6 -3.6 S
-4010.4 3390.48 0 -21.6 S
-4010.4 3390.48 3.6 3.6 S
-4014 3394.08 10.8 0 S
-4034.16 3390.48 3.6 3.6 S
-4037.76 3394.08 10.8 0 S
-4048.56 3394.08 3.6 -3.6 S
-4052.16 3390.48 0 -7.2 S
-4034.16 3365.28 18 18 S
-4034.16 3365.28 18 0 S
-14.4 w
-2552.4 3592.08 0 144 S
-2552.4 3736.08 72 0 S
-2624.4 3736.08 0 -144 S
-2624.4 3592.08 -72 0 S
-2588.4 3520.08 0 72 S
-2588.4 3736.08 0 72 S
-5.76 w
-2574 3606.48 0 14.4 S
-2574 3620.88 3.6 3.6 S
-2577.6 3624.48 7.2 0 S
-2588.4 3620.88 -3.6 3.6 S
-2588.4 3610.08 0 10.8 S
-2574 3610.08 28.8 0 S
-2588.4 3610.08 14.4 14.4 S
-2602.8 3637.44 0 7.2 S
-2574 3641.04 28.8 0 S
-2581.2 3633.84 -7.2 7.2 S
-2599.2 3654 3.6 3.6 S
-2577.6 3654 21.6 0 S
-2577.6 3654 -3.6 3.6 S
-2574 3657.6 0 7.2 S
-2574 3664.8 3.6 3.6 S
-2577.6 3668.4 21.6 0 S
-2602.8 3664.8 -3.6 3.6 S
-2602.8 3657.6 0 7.2 S
-2595.6 3654 -14.4 14.4 S
-14.4 w
-3614.4 5284.08 0 144 S
-3614.4 5428.08 72 0 S
-3686.4 5428.08 0 -144 S
-3686.4 5284.08 -72 0 S
-3650.4 5212.08 0 72 S
-3650.4 5428.08 0 72 S
-5.76 w
-3636 5298.48 0 14.4 S
-3636 5312.88 3.6 3.6 S
-3639.6 5316.48 7.2 0 S
-3650.4 5312.88 -3.6 3.6 S
-3650.4 5302.08 0 10.8 S
-3636 5302.08 28.8 0 S
-3650.4 5302.08 14.4 14.4 S
-3639.6 5325.84 -3.6 3.6 S
-3636 5329.44 0 7.2 S
-3636 5336.64 3.6 3.6 S
-3639.6 5340.24 21.6 0 S
-3664.8 5336.64 -3.6 3.6 S
-3664.8 5329.44 0 7.2 S
-3661.2 5325.84 3.6 3.6 S
-3650.4 5329.44 0 10.8 S
-7.2 w
-2858.4 3790.08 m
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-S
-5.76 w
-2710.8 3746.88 -10.8 0 S
-2714.4 3743.28 -3.6 3.6 S
-2714.4 3721.68 0 21.6 S
-2714.4 3721.68 -3.6 -3.6 S
-2710.8 3718.08 -10.8 0 S
-2690.64 3746.88 -14.4 -14.4 S
-2676.24 3721.68 0 10.8 S
-2679.84 3718.08 -3.6 3.6 S
-2687.04 3718.08 -7.2 0 S
-2690.64 3721.68 -3.6 -3.6 S
-2690.64 3721.68 0 7.2 S
-2690.64 3728.88 -3.6 3.6 S
-2687.04 3732.48 -10.8 0 S
-14.4 w
-5486.4 5464.08 -129.6 0 S
-5486.4 2944.08 0 2520 S
-5356.8 2944.08 129.6 0 S
-5194.8 3030.48 0 2347.2 S
-5194.8 5377.68 -68.4 0 S
-7.2 w
-5356.8 5377.68 -162 0 S
-5356.8 5464.08 0 -86.4 S
-14.4 w
-5356.8 5536.08 0 -72 S
-5126.4 5536.08 230.4 0 S
-5126.4 5377.68 0 158.4 S
-5356.8 2872.08 -230.4 0 S
-5356.8 2944.08 0 -72 S
-7.2 w
-5356.8 3030.48 0 -86.4 S
-5194.8 3030.48 162 0 S
-14.4 w
-5126.4 3030.48 68.4 0 S
-5126.4 2872.08 0 158.4 S
-28.8 w
-4982.4 5320.08 198 0 S
-4982.4 5248.08 198 0 S
-4982.4 5176.08 198 0 S
-4982.4 5104.08 198 0 S
-4982.4 5032.08 198 0 S
-4982.4 4960.08 198 0 S
-4982.4 4888.08 198 0 S
-4982.4 4816.08 198 0 S
-4982.4 4744.08 198 0 S
-4982.4 4672.08 198 0 S
-4982.4 4600.08 198 0 S
-4982.4 4528.08 198 0 S
-4982.4 4456.08 198 0 S
-4982.4 4384.08 198 0 S
-4982.4 4312.08 198 0 S
-4982.4 4240.08 198 0 S
-4982.4 4168.08 198 0 S
-4982.4 4096.08 198 0 S
-4982.4 4024.08 198 0 S
-4982.4 3952.08 198 0 S
-4982.4 3880.08 198 0 S
-4982.4 3808.08 198 0 S
-4982.4 3736.08 198 0 S
-4982.4 3664.08 198 0 S
-4982.4 3592.08 198 0 S
-4982.4 3520.08 198 0 S
-4982.4 3448.08 198 0 S
-4982.4 3376.08 198 0 S
-4982.4 3304.08 198 0 S
-4982.4 3232.08 198 0 S
-4982.4 3160.08 198 0 S
-4982.4 3088.08 198 0 S
-11.52 w
-5198.4 3174.48 0 21.6 S
-5198.4 3196.08 50.4 0 S
-5256 3188.88 -7.2 7.2 S
-5256 3181.68 0 7.2 S
-5248.8 3174.48 7.2 7.2 S
-5256 3222 0 14.4 S
-5198.4 3229.2 57.6 0 S
-5212.8 3214.8 -14.4 14.4 S
-5198.4 3255.12 0 28.8 S
-5198.4 3255.12 28.8 0 S
-5227.2 3255.12 -7.2 7.2 S
-5220 3262.32 0 14.4 S
-5220 3276.72 7.2 7.2 S
-5227.2 3283.92 21.6 0 S
-5256 3276.72 -7.2 7.2 S
-5256 3262.32 0 14.4 S
-5248.8 3255.12 7.2 7.2 S
-14.4 w
-4172.4 3642.48 288 0 S
-4460.4 3642.48 0 -129.6 S
-4460.4 3512.88 -288 0 S
-4172.4 3512.88 0 129.6 S
-4172.4 3642.48 288 0 S
-4460.4 3642.48 0 -43.2 S
-4460.4 3599.28 -288 0 S
-4172.4 3599.28 0 43.2 S
-7.2 w
-4266 3642.48 0 -43.2 S
-4366.8 3642.48 0 -43.2 S
-5.76 w
-4172.4 3689.28 0 -21.6 S
-4172.4 3689.28 3.6 3.6 S
-4176 3692.88 7.2 0 S
-4183.2 3692.88 3.6 -3.6 S
-4186.8 3689.28 0 -21.6 S
-4183.2 3664.08 3.6 3.6 S
-4176 3664.08 7.2 0 S
-4172.4 3667.68 3.6 -3.6 S
-4179.6 3671.28 7.2 -7.2 S
-4196.16 3678.48 14.4 14.4 S
-4196.16 3678.48 18 0 S
-4210.56 3692.88 0 -28.8 S
-7.2 w
-4010.4 2998.08 m
-0 59.65 -48.35 108 -108 108 c
--59.65 0 -108 -48.35 -108 -108 c
-0 -59.65 48.35 -108 108 -108 c
-59.65 0 108 48.35 108 108 c
-S
-5.76 w
-3790.8 2918.88 -10.8 0 S
-3794.4 2915.28 -3.6 3.6 S
-3794.4 2893.68 0 21.6 S
-3794.4 2893.68 -3.6 -3.6 S
-3790.8 2890.08 -10.8 0 S
-3767.04 2918.88 -7.2 0 S
-3763.44 2890.08 0 28.8 S
-3770.64 2897.28 -7.2 -7.2 S
-14.4 w
-1191.6 3610.08 -144 0 S
-1047.6 3610.08 0 72 S
-1047.6 3682.08 144 0 S
-1191.6 3682.08 0 -72 S
-1263.6 3646.08 -72 0 S
-1047.6 3646.08 -72 0 S
-5.76 w
-1177.2 3631.68 -14.4 0 S
-1162.8 3631.68 -3.6 3.6 S
-1159.2 3635.28 0 7.2 S
-1162.8 3646.08 -3.6 -3.6 S
-1173.6 3646.08 -10.8 0 S
-1173.6 3631.68 0 28.8 S
-1173.6 3646.08 -14.4 14.4 S
-1146.24 3660.48 -7.2 0 S
-1142.64 3631.68 0 28.8 S
-1149.84 3638.88 -7.2 -7.2 S
-1129.68 3635.28 -3.6 -3.6 S
-1126.08 3631.68 -10.8 0 S
-1115.28 3631.68 -3.6 3.6 S
-1111.68 3635.28 0 7.2 S
-1129.68 3660.48 -18 -18 S
-1129.68 3660.48 -18 0 S
-14.4 w
-4838.4 2890.08 -756 0 S
-4838.4 2890.08 0 468 S
-4838.4 3358.08 -36 0 S
-4802.4 3358.08 0 -396 S
-4802.4 2962.08 -144 0 S
-4658.4 2962.08 0 396 S
-4658.4 3358.08 -36 0 S
-4622.4 3358.08 0 -396 S
-4622.4 2962.08 -324 0 S
-4082.4 2890.08 0 468 S
-4082.4 3358.08 36 0 S
-4118.4 3358.08 0 -396 S
-4118.4 2962.08 144 0 S
-4262.4 2962.08 0 396 S
-4262.4 3358.08 36 0 S
-4298.4 3358.08 0 -396 S
-2480.4 3736.08 0 -144 S
-2480.4 3592.08 -72 0 S
-2408.4 3592.08 0 144 S
-2408.4 3736.08 72 0 S
-2444.4 3808.08 0 -72 S
-2444.4 3592.08 0 -72 S
-5.76 w
-2458.8 3721.68 0 -14.4 S
-2458.8 3707.28 -3.6 -3.6 S
-2455.2 3703.68 -7.2 0 S
-2444.4 3707.28 3.6 -3.6 S
-2444.4 3718.08 0 -10.8 S
-2458.8 3718.08 -28.8 0 S
-2444.4 3718.08 -14.4 -14.4 S
-2430 3694.32 14.4 -14.4 S
-2455.2 3679.92 -10.8 0 S
-2458.8 3683.52 -3.6 -3.6 S
-2458.8 3690.72 0 -7.2 S
-2455.2 3694.32 3.6 -3.6 S
-2455.2 3694.32 -7.2 0 S
-2448 3694.32 -3.6 -3.6 S
-2444.4 3690.72 0 -10.8 S
-7.2 w
-4410 2983.68 0 43.2 S
-4510.8 2983.68 0 43.2 S
-14.4 w
-4604.4 3026.88 0 -43.2 S
-4316.4 3026.88 288 0 S
-4316.4 2983.68 0 43.2 S
-4604.4 2983.68 -288 0 S
-4604.4 3113.28 0 -129.6 S
-4316.4 3113.28 288 0 S
-4316.4 2983.68 0 129.6 S
-4604.4 2983.68 -288 0 S
-5.76 w
-4604.4 2933.28 0 25.2 S
-4604.4 2958.48 -3.6 3.6 S
-4600.8 2962.08 -7.2 0 S
-4593.6 2962.08 -3.6 -3.6 S
-4590 2933.28 0 25.2 S
-4580.64 2936.88 -3.6 -3.6 S
-4577.04 2933.28 -7.2 0 S
-4569.84 2933.28 -3.6 3.6 S
-4566.24 2936.88 0 21.6 S
-4569.84 2962.08 -3.6 -3.6 S
-4577.04 2962.08 -7.2 0 S
-4580.64 2958.48 -3.6 3.6 S
-4577.04 2947.68 -10.8 0 S
-7.2 w
-4082.4 3664.08 m
-0 99.41 -80.59 180 -180 180 c
--99.41 0 -180 -80.59 -180 -180 c
-0 -99.41 80.59 -180 180 -180 c
-99.41 0 180 80.59 180 180 c
-S
-5.76 w
-3718.8 3512.88 -10.8 0 S
-3722.4 3509.28 -3.6 3.6 S
-3722.4 3487.68 0 21.6 S
-3722.4 3487.68 -3.6 -3.6 S
-3718.8 3484.08 -10.8 0 S
-3698.64 3509.28 -3.6 3.6 S
-3698.64 3502.08 0 7.2 S
-3698.64 3502.08 -3.6 -3.6 S
-3695.04 3498.48 -7.2 0 S
-3687.84 3498.48 -3.6 3.6 S
-3684.24 3502.08 0 7.2 S
-3687.84 3512.88 -3.6 -3.6 S
-3695.04 3512.88 -7.2 0 S
-3698.64 3494.88 -3.6 3.6 S
-3698.64 3487.68 0 7.2 S
-3698.64 3487.68 -3.6 -3.6 S
-3695.04 3484.08 -7.2 0 S
-3687.84 3484.08 -3.6 3.6 S
-3684.24 3487.68 0 7.2 S
-3687.84 3498.48 -3.6 -3.6 S
-7.2 w
-1634.4 3502.08 0 108 S
-1634.4 3322.08 0 108 S
-1922.4 3610.08 -288 0 S
-1922.4 3322.08 0 288 S
-1634.4 3322.08 288 0 S
-1634.4 3430.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-1706.4 3480.48 0 -25.2 S
-1706.4 3455.28 3.6 -3.6 S
-1710 3451.68 7.2 0 S
-1717.2 3451.68 3.6 3.6 S
-1720.8 3480.48 0 -25.2 S
-1733.76 3451.68 7.2 0 S
-1737.36 3480.48 0 -28.8 S
-1730.16 3473.28 7.2 7.2 S
-1753.92 3451.68 7.2 0 S
-1757.52 3480.48 0 -28.8 S
-1750.32 3473.28 7.2 7.2 S
-7.2 w
-1220.4 3250.08 0 72 S
-1148.4 3250.08 72 0 S
-14.4 w
-1292.4 3322.08 -144 0 S
-1292.4 3250.08 0 72 S
-1148.4 3250.08 144 0 S
-1148.4 3322.08 0 -72 S
-5.76 w
-1335.6 3322.08 0 -10.8 S
-1335.6 3311.28 -25.2 0 S
-1306.8 3314.88 3.6 -3.6 S
-1306.8 3318.48 0 -3.6 S
-1310.4 3322.08 -3.6 -3.6 S
-1335.6 3298.32 -28.8 0 S
-1335.6 3301.92 0 -14.4 S
-1335.6 3287.52 -3.6 -3.6 S
-1332 3283.92 -7.2 0 S
-1321.2 3287.52 3.6 -3.6 S
-1321.2 3298.32 0 -10.8 S
-1332 3274.56 3.6 -3.6 S
-1335.6 3270.96 0 -10.8 S
-1335.6 3260.16 -3.6 -3.6 S
-1332 3256.56 -7.2 0 S
-1306.8 3274.56 18 -18 S
-1306.8 3274.56 0 -18 S
-14.4 w
-2948.4 5284.08 0 144 S
-2948.4 5428.08 72 0 S
-3020.4 5428.08 0 -144 S
-3020.4 5284.08 -72 0 S
-2984.4 5212.08 0 72 S
-2984.4 5428.08 0 72 S
-5.76 w
-2970 5298.48 0 14.4 S
-2970 5312.88 3.6 3.6 S
-2973.6 5316.48 7.2 0 S
-2984.4 5312.88 -3.6 3.6 S
-2984.4 5302.08 0 10.8 S
-2970 5302.08 28.8 0 S
-2984.4 5302.08 14.4 14.4 S
-2998.8 5329.44 0 7.2 S
-2970 5333.04 28.8 0 S
-2977.2 5325.84 -7.2 7.2 S
-2984.4 5346 -14.4 14.4 S
-2984.4 5346 0 18 S
-2970 5360.4 28.8 0 S
-7.2 w
-4244.4 4150.08 m
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-S
-5.76 w
-4392 4193.28 10.8 0 S
-4388.4 4196.88 3.6 -3.6 S
-4388.4 4218.48 0 -21.6 S
-4388.4 4218.48 3.6 3.6 S
-4392 4222.08 10.8 0 S
-4415.76 4193.28 7.2 0 S
-4419.36 4222.08 0 -28.8 S
-4412.16 4214.88 7.2 7.2 S
-4435.92 4193.28 7.2 0 S
-4439.52 4222.08 0 -28.8 S
-4432.32 4214.88 7.2 7.2 S
-14.4 w
-4550.4 3984.48 288 0 S
-4838.4 3984.48 0 -129.6 S
-4838.4 3854.88 -288 0 S
-4550.4 3854.88 0 129.6 S
-4550.4 3984.48 288 0 S
-4838.4 3984.48 0 -43.2 S
-4838.4 3941.28 -288 0 S
-4550.4 3941.28 0 43.2 S
-7.2 w
-4644 3984.48 0 -43.2 S
-4744.8 3984.48 0 -43.2 S
-5.76 w
-4550.4 4031.28 0 -21.6 S
-4550.4 4031.28 3.6 3.6 S
-4554 4034.88 7.2 0 S
-4561.2 4034.88 3.6 -3.6 S
-4564.8 4031.28 0 -21.6 S
-4561.2 4006.08 3.6 3.6 S
-4554 4006.08 7.2 0 S
-4550.4 4009.68 3.6 -3.6 S
-4557.6 4013.28 7.2 -7.2 S
-4577.76 4006.08 7.2 0 S
-4581.36 4034.88 0 -28.8 S
-4574.16 4027.68 7.2 7.2 S
-7.2 w
-1040.4 3286.08 0 -72 S
-1040.4 3142.08 0 -72 S
-1040.4 3214.08 36 -72 S
-1076.4 3142.08 -72 0 S
-1004.4 3142.08 36 72 S
-1076.4 3214.08 -72 0 S
-5.76 w
-1076.4 3124.08 -28.8 0 S
-1076.4 3113.28 -3.6 -3.6 S
-1072.8 3109.68 -21.6 0 S
-1047.6 3113.28 3.6 -3.6 S
-1047.6 3127.68 0 -14.4 S
-1076.4 3127.68 0 -14.4 S
-1072.8 3100.32 3.6 -3.6 S
-1076.4 3096.72 0 -7.2 S
-1076.4 3089.52 -3.6 -3.6 S
-1072.8 3085.92 -21.6 0 S
-1047.6 3089.52 3.6 -3.6 S
-1047.6 3096.72 0 -7.2 S
-1051.2 3100.32 -3.6 -3.6 S
-1062 3096.72 0 -10.8 S
-7.2 w
-4082.4 4078.08 m
-0 99.41 -80.59 180 -180 180 c
--99.41 0 -180 -80.59 -180 -180 c
-0 -99.41 80.59 -180 180 -180 c
-99.41 0 180 80.59 180 180 c
-S
-5.76 w
-3718.8 3926.88 -10.8 0 S
-3722.4 3923.28 -3.6 3.6 S
-3722.4 3901.68 0 21.6 S
-3722.4 3901.68 -3.6 -3.6 S
-3718.8 3898.08 -10.8 0 S
-3698.64 3926.88 -18 -18 S
-3680.64 3898.08 0 10.8 S
-3698.64 3898.08 -18 0 S
-7.2 w
-964.8 3901.68 m
-0 -27.83 22.56 -50.4 50.4 -50.4 c
-27.83 0 50.4 22.56 50.4 50.4 c
-0 27.83 -22.56 50.4 -50.4 50.4 c
--27.83 0 -50.4 -22.56 -50.4 -50.4 c
-S
-10.8 w
-979.2 3901.68 m
-0 -19.88 16.12 -36 36 -36 c
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
--19.88 0 -36 -16.12 -36 -36 c
-S
-5.76 w
-982.8 3995.28 0 -28.8 S
-993.6 3995.28 3.6 -3.6 S
-997.2 3991.68 0 -21.6 S
-993.6 3966.48 3.6 3.6 S
-979.2 3966.48 14.4 0 S
-979.2 3995.28 14.4 0 S
-1006.56 3966.48 14.4 14.4 S
-1020.96 3991.68 0 -10.8 S
-1017.36 3995.28 3.6 -3.6 S
-1010.16 3995.28 7.2 0 S
-1006.56 3991.68 3.6 3.6 S
-1006.56 3991.68 0 -7.2 S
-1006.56 3984.48 3.6 -3.6 S
-1010.16 3980.88 10.8 0 S
-14.4 w
-1022.4 4286.88 -201.6 0 S
-950.4 4322.88 -129.6 0 S
-1022.4 4358.88 -201.6 0 S
-950.4 4394.88 -129.6 0 S
-1022.4 4430.88 -201.6 0 S
-950.4 4466.88 -129.6 0 S
-1022.4 4502.88 -201.6 0 S
-950.4 4538.88 -129.6 0 S
-1022.4 4574.88 -201.6 0 S
-7.2 w
-676.8 4171.68 0 518.4 S
-14.4 w
-820.8 4171.68 -144 0 S
-820.8 4690.08 0 -518.4 S
-676.8 4690.08 144 0 S
-460.8 4214.88 0 432 S
-655.2 4214.88 -194.4 0 S
-7.2 w
-655.2 4646.88 0 -432 S
-14.4 w
-460.8 4646.88 194.4 0 S
-7.2 w
-655.2 4135.68 21.6 0 S
-655.2 4049.28 21.6 0 S
-655.2 4726.08 21.6 0 S
-655.2 4812.48 21.6 0 S
-655.2 4006.08 0 849.6 S
-676.8 4006.08 -21.6 0 S
-676.8 4855.68 0 -849.6 S
-655.2 4855.68 21.6 0 S
-5.76 w
-734.4 4625.28 0 -10.8 S
-734.4 4614.48 -25.2 0 S
-705.6 4618.08 3.6 -3.6 S
-705.6 4621.68 0 -3.6 S
-709.2 4625.28 -3.6 -3.6 S
-705.6 4605.12 14.4 -14.4 S
-730.8 4590.72 -10.8 0 S
-734.4 4594.32 -3.6 -3.6 S
-734.4 4601.52 0 -7.2 S
-730.8 4605.12 3.6 -3.6 S
-730.8 4605.12 -7.2 0 S
-723.6 4605.12 -3.6 -3.6 S
-720 4601.52 0 -10.8 S
-7.2 w
-2408.4 4114.08 0 108 S
-2408.4 3934.08 0 108 S
-3272.4 4222.08 -864 0 S
-3272.4 3934.08 0 288 S
-2408.4 3934.08 864 0 S
-2408.4 4042.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-2480.4 4092.48 0 -25.2 S
-2480.4 4067.28 3.6 -3.6 S
-2484 4063.68 7.2 0 S
-2491.2 4063.68 3.6 3.6 S
-2494.8 4092.48 0 -25.2 S
-2504.16 4067.28 3.6 -3.6 S
-2504.16 4074.48 0 -7.2 S
-2504.16 4074.48 3.6 3.6 S
-2507.76 4078.08 7.2 0 S
-2514.96 4078.08 3.6 -3.6 S
-2518.56 4074.48 0 -7.2 S
-2514.96 4063.68 3.6 3.6 S
-2507.76 4063.68 7.2 0 S
-2504.16 4081.68 3.6 -3.6 S
-2504.16 4088.88 0 -7.2 S
-2504.16 4088.88 3.6 3.6 S
-2507.76 4092.48 7.2 0 S
-2514.96 4092.48 3.6 -3.6 S
-2518.56 4088.88 0 -7.2 S
-2514.96 4078.08 3.6 3.6 S
-7.2 w
-1400.4 4006.08 0 216 S
-1400.4 3718.08 0 216 S
-2264.4 4222.08 -864 0 S
-2264.4 3718.08 0 504 S
-1400.4 3718.08 864 0 S
-1400.4 3934.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-1472.4 3984.48 0 -25.2 S
-1472.4 3959.28 3.6 -3.6 S
-1476 3955.68 7.2 0 S
-1483.2 3955.68 3.6 3.6 S
-1486.8 3984.48 0 -25.2 S
-1506.96 3984.48 3.6 -3.6 S
-1499.76 3984.48 7.2 0 S
-1496.16 3980.88 3.6 3.6 S
-1496.16 3980.88 0 -21.6 S
-1496.16 3959.28 3.6 -3.6 S
-1506.96 3970.08 3.6 -3.6 S
-1496.16 3970.08 10.8 0 S
-1499.76 3955.68 7.2 0 S
-1506.96 3955.68 3.6 3.6 S
-1510.56 3966.48 0 -7.2 S
-14.4 w
-3416.4 4222.08 0 -288 S
-3416.4 3934.08 144 0 S
-3560.4 3934.08 0 288 S
-3560.4 4222.08 -144 0 S
-7.2 w
-3416.4 4150.08 72 0 S
-3488.4 4150.08 0 72 S
-5.76 w
-3603.6 4222.08 0 -10.8 S
-3603.6 4211.28 -25.2 0 S
-3574.8 4214.88 3.6 -3.6 S
-3574.8 4218.48 0 -3.6 S
-3578.4 4222.08 -3.6 -3.6 S
-3603.6 4198.32 -28.8 0 S
-3603.6 4201.92 0 -14.4 S
-3603.6 4187.52 -3.6 -3.6 S
-3600 4183.92 -7.2 0 S
-3589.2 4187.52 3.6 -3.6 S
-3589.2 4198.32 0 -10.8 S
-3574.8 4170.96 0 -7.2 S
-3603.6 4167.36 -28.8 0 S
-3596.4 4174.56 7.2 -7.2 S
-7.2 w
-2678.4 2980.08 m
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-S
-5.76 w
-2826 3023.28 10.8 0 S
-2822.4 3026.88 3.6 -3.6 S
-2822.4 3048.48 0 -21.6 S
-2822.4 3048.48 3.6 3.6 S
-2826 3052.08 10.8 0 S
-2846.16 3037.68 14.4 14.4 S
-2846.16 3037.68 18 0 S
-2860.56 3052.08 0 -28.8 S
-7.2 w
-2156.4 5392.08 0 108 S
-2156.4 5212.08 0 108 S
-2732.4 5500.08 -576 0 S
-2732.4 5212.08 0 288 S
-2156.4 5212.08 576 0 S
-2156.4 5320.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-2228.4 5370.48 0 -25.2 S
-2228.4 5345.28 3.6 -3.6 S
-2232 5341.68 7.2 0 S
-2239.2 5341.68 3.6 3.6 S
-2242.8 5370.48 0 -25.2 S
-2252.16 5341.68 18 18 S
-2270.16 5370.48 0 -10.8 S
-2252.16 5370.48 18 0 S
-14.4 w
-4172.4 3984.48 288 0 S
-4460.4 3984.48 0 -129.6 S
-4460.4 3854.88 -288 0 S
-4172.4 3854.88 0 129.6 S
-4172.4 3984.48 288 0 S
-4460.4 3984.48 0 -43.2 S
-4460.4 3941.28 -288 0 S
-4172.4 3941.28 0 43.2 S
-7.2 w
-4266 3984.48 0 -43.2 S
-4366.8 3984.48 0 -43.2 S
-5.76 w
-4172.4 4031.28 0 -21.6 S
-4172.4 4031.28 3.6 3.6 S
-4176 4034.88 7.2 0 S
-4183.2 4034.88 3.6 -3.6 S
-4186.8 4031.28 0 -21.6 S
-4183.2 4006.08 3.6 3.6 S
-4176 4006.08 7.2 0 S
-4172.4 4009.68 3.6 -3.6 S
-4179.6 4013.28 7.2 -7.2 S
-4196.16 4031.28 3.6 3.6 S
-4199.76 4034.88 10.8 0 S
-4210.56 4034.88 3.6 -3.6 S
-4214.16 4031.28 0 -7.2 S
-4196.16 4006.08 18 18 S
-4196.16 4006.08 18 0 S
-10.8 w
-806.4 3901.68 m
-0 -19.88 16.12 -36 36 -36 c
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
--19.88 0 -36 -16.12 -36 -36 c
-S
-7.2 w
-792 3901.68 m
-0 -27.83 22.56 -50.4 50.4 -50.4 c
-27.83 0 50.4 22.56 50.4 50.4 c
-0 27.83 -22.56 50.4 -50.4 50.4 c
--27.83 0 -50.4 -22.56 -50.4 -50.4 c
-S
-5.76 w
-810 3995.28 0 -28.8 S
-820.8 3995.28 3.6 -3.6 S
-824.4 3991.68 0 -21.6 S
-820.8 3966.48 3.6 3.6 S
-806.4 3966.48 14.4 0 S
-806.4 3995.28 14.4 0 S
-837.36 3966.48 7.2 0 S
-840.96 3995.28 0 -28.8 S
-833.76 3988.08 7.2 7.2 S
-853.92 3970.08 3.6 -3.6 S
-853.92 3991.68 0 -21.6 S
-853.92 3991.68 3.6 3.6 S
-857.52 3995.28 7.2 0 S
-864.72 3995.28 3.6 -3.6 S
-868.32 3991.68 0 -21.6 S
-864.72 3966.48 3.6 3.6 S
-857.52 3966.48 7.2 0 S
-853.92 3973.68 14.4 14.4 S
-7.2 w
-1598.4 3124.08 -72 0 S
-1526.4 3052.08 36 72 S
-1598.4 3052.08 -72 0 S
-1562.4 3124.08 36 -72 S
-1562.4 3052.08 0 -72 S
-1562.4 3196.08 0 -72 S
-5.76 w
-1598.4 3034.08 -28.8 0 S
-1598.4 3023.28 -3.6 -3.6 S
-1594.8 3019.68 -21.6 0 S
-1569.6 3023.28 3.6 -3.6 S
-1569.6 3037.68 0 -14.4 S
-1598.4 3037.68 0 -14.4 S
-1569.6 3006.72 0 -7.2 S
-1598.4 3003.12 -28.8 0 S
-1591.2 3010.32 7.2 -7.2 S
-14.4 w
-4406.4 5284.08 0 144 S
-4406.4 5428.08 72 0 S
-4478.4 5428.08 0 -144 S
-4478.4 5284.08 -72 0 S
-4442.4 5212.08 0 72 S
-4442.4 5428.08 0 72 S
-5.76 w
-4428 5298.48 0 14.4 S
-4428 5312.88 3.6 3.6 S
-4431.6 5316.48 7.2 0 S
-4442.4 5312.88 -3.6 3.6 S
-4442.4 5302.08 0 10.8 S
-4428 5302.08 28.8 0 S
-4442.4 5302.08 14.4 14.4 S
-4442.4 5325.84 -14.4 14.4 S
-4442.4 5325.84 0 18 S
-4428 5340.24 28.8 0 S
-7.2 w
-3254.4 5392.08 0 108 S
-3254.4 5212.08 0 108 S
-3542.4 5500.08 -288 0 S
-3542.4 5212.08 0 288 S
-3254.4 5212.08 288 0 S
-3254.4 5320.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3326.4 5370.48 0 -25.2 S
-3326.4 5345.28 3.6 -3.6 S
-3330 5341.68 7.2 0 S
-3337.2 5341.68 3.6 3.6 S
-3340.8 5370.48 0 -25.2 S
-3353.76 5341.68 7.2 0 S
-3357.36 5370.48 0 -28.8 S
-3350.16 5363.28 7.2 7.2 S
-3370.32 5366.88 3.6 3.6 S
-3373.92 5370.48 7.2 0 S
-3381.12 5370.48 3.6 -3.6 S
-3384.72 5366.88 0 -21.6 S
-3381.12 5341.68 3.6 3.6 S
-3373.92 5341.68 7.2 0 S
-3370.32 5345.28 3.6 -3.6 S
-3373.92 5356.08 10.8 0 S
-7.2 w
-3902.4 4960.08 0 108 S
-3902.4 4780.08 0 108 S
-4190.4 5068.08 -288 0 S
-4190.4 4780.08 0 288 S
-3902.4 4780.08 288 0 S
-3902.4 4888.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3974.4 4938.48 0 -25.2 S
-3974.4 4913.28 3.6 -3.6 S
-3978 4909.68 7.2 0 S
-3985.2 4909.68 3.6 3.6 S
-3988.8 4938.48 0 -25.2 S
-4001.76 4909.68 7.2 0 S
-4005.36 4938.48 0 -28.8 S
-3998.16 4931.28 7.2 7.2 S
-4018.32 4924.08 14.4 14.4 S
-4018.32 4924.08 18 0 S
-4032.72 4938.48 0 -28.8 S
-14.4 w
-4262.4 4852.08 0 144 S
-4262.4 4996.08 72 0 S
-4334.4 4996.08 0 -144 S
-4334.4 4852.08 -72 0 S
-4298.4 4780.08 0 72 S
-4298.4 4996.08 0 72 S
-5.76 w
-4284 4866.48 0 14.4 S
-4284 4880.88 3.6 3.6 S
-4287.6 4884.48 7.2 0 S
-4298.4 4880.88 -3.6 3.6 S
-4298.4 4870.08 0 10.8 S
-4284 4870.08 28.8 0 S
-4298.4 4870.08 14.4 14.4 S
-4284 4893.84 0 14.4 S
-4284 4893.84 14.4 0 S
-4298.4 4893.84 -3.6 3.6 S
-4294.8 4897.44 0 7.2 S
-4294.8 4904.64 3.6 3.6 S
-4298.4 4908.24 10.8 0 S
-4312.8 4904.64 -3.6 3.6 S
-4312.8 4897.44 0 7.2 S
-4309.2 4893.84 3.6 3.6 S
-14.4 w
-3758.4 4852.08 0 144 S
-3758.4 4996.08 72 0 S
-3830.4 4996.08 0 -144 S
-3830.4 4852.08 -72 0 S
-3794.4 4780.08 0 72 S
-3794.4 4996.08 0 72 S
-5.76 w
-3780 4866.48 0 14.4 S
-3780 4880.88 3.6 3.6 S
-3783.6 4884.48 7.2 0 S
-3794.4 4880.88 -3.6 3.6 S
-3794.4 4870.08 0 10.8 S
-3780 4870.08 28.8 0 S
-3794.4 4870.08 14.4 14.4 S
-3780 4904.64 3.6 3.6 S
-3780 4897.44 0 7.2 S
-3783.6 4893.84 -3.6 3.6 S
-3783.6 4893.84 21.6 0 S
-3805.2 4893.84 3.6 3.6 S
-3794.4 4904.64 3.6 3.6 S
-3794.4 4893.84 0 10.8 S
-3808.8 4897.44 0 7.2 S
-3808.8 4904.64 -3.6 3.6 S
-3798 4908.24 7.2 0 S
-14.4 w
-3758.4 5284.08 0 144 S
-3758.4 5428.08 72 0 S
-3830.4 5428.08 0 -144 S
-3830.4 5284.08 -72 0 S
-3794.4 5212.08 0 72 S
-3794.4 5428.08 0 72 S
-5.76 w
-3780 5298.48 0 14.4 S
-3780 5312.88 3.6 3.6 S
-3783.6 5316.48 7.2 0 S
-3794.4 5312.88 -3.6 3.6 S
-3794.4 5302.08 0 10.8 S
-3780 5302.08 28.8 0 S
-3794.4 5302.08 14.4 14.4 S
-3783.6 5325.84 -3.6 3.6 S
-3780 5329.44 0 10.8 S
-3780 5340.24 3.6 3.6 S
-3783.6 5343.84 7.2 0 S
-3808.8 5325.84 -18 18 S
-3808.8 5325.84 0 18 S
-7.2 w
-3902.4 5392.08 0 108 S
-3902.4 5212.08 0 108 S
-4190.4 5500.08 -288 0 S
-4190.4 5212.08 0 288 S
-3902.4 5212.08 288 0 S
-3902.4 5320.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3974.4 5370.48 0 -25.2 S
-3974.4 5345.28 3.6 -3.6 S
-3978 5341.68 7.2 0 S
-3985.2 5341.68 3.6 3.6 S
-3988.8 5370.48 0 -25.2 S
-4001.76 5341.68 7.2 0 S
-4005.36 5370.48 0 -28.8 S
-3998.16 5363.28 7.2 7.2 S
-4018.32 5366.88 3.6 3.6 S
-4021.92 5370.48 10.8 0 S
-4032.72 5370.48 3.6 -3.6 S
-4036.32 5366.88 0 -7.2 S
-4018.32 5341.68 18 18 S
-4018.32 5341.68 18 0 S
-14.4 w
-4262.4 5284.08 0 144 S
-4262.4 5428.08 72 0 S
-4334.4 5428.08 0 -144 S
-4334.4 5284.08 -72 0 S
-4298.4 5212.08 0 72 S
-4298.4 5428.08 0 72 S
-5.76 w
-4284 5298.48 0 14.4 S
-4284 5312.88 3.6 3.6 S
-4287.6 5316.48 7.2 0 S
-4298.4 5312.88 -3.6 3.6 S
-4298.4 5302.08 0 10.8 S
-4284 5302.08 28.8 0 S
-4298.4 5302.08 14.4 14.4 S
-4312.8 5329.44 0 7.2 S
-4284 5333.04 28.8 0 S
-4291.2 5325.84 -7.2 7.2 S
-14.4 w
-4406.4 4852.08 0 144 S
-4406.4 4996.08 72 0 S
-4478.4 4996.08 0 -144 S
-4478.4 4852.08 -72 0 S
-4442.4 4780.08 0 72 S
-4442.4 4996.08 0 72 S
-5.76 w
-4428 4866.48 0 14.4 S
-4428 4880.88 3.6 3.6 S
-4431.6 4884.48 7.2 0 S
-4442.4 4880.88 -3.6 3.6 S
-4442.4 4870.08 0 10.8 S
-4428 4870.08 28.8 0 S
-4442.4 4870.08 14.4 14.4 S
-4453.2 4893.84 3.6 3.6 S
-4446 4893.84 7.2 0 S
-4446 4893.84 -3.6 3.6 S
-4442.4 4897.44 0 7.2 S
-4442.4 4904.64 3.6 3.6 S
-4446 4908.24 7.2 0 S
-4456.8 4904.64 -3.6 3.6 S
-4456.8 4897.44 0 7.2 S
-4438.8 4893.84 3.6 3.6 S
-4431.6 4893.84 7.2 0 S
-4431.6 4893.84 -3.6 3.6 S
-4428 4897.44 0 7.2 S
-4428 4904.64 3.6 3.6 S
-4431.6 4908.24 7.2 0 S
-4442.4 4904.64 -3.6 3.6 S
-7.2 w
-3254.4 4960.08 0 108 S
-3254.4 4780.08 0 108 S
-3542.4 5068.08 -288 0 S
-3542.4 4780.08 0 288 S
-3254.4 4780.08 288 0 S
-3254.4 4888.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3326.4 4938.48 0 -25.2 S
-3326.4 4913.28 3.6 -3.6 S
-3330 4909.68 7.2 0 S
-3337.2 4909.68 3.6 3.6 S
-3340.8 4938.48 0 -25.2 S
-3353.76 4909.68 7.2 0 S
-3357.36 4938.48 0 -28.8 S
-3350.16 4931.28 7.2 7.2 S
-3370.32 4938.48 14.4 0 S
-3370.32 4938.48 0 -14.4 S
-3370.32 4924.08 3.6 3.6 S
-3373.92 4927.68 7.2 0 S
-3381.12 4927.68 3.6 -3.6 S
-3384.72 4924.08 0 -10.8 S
-3381.12 4909.68 3.6 3.6 S
-3373.92 4909.68 7.2 0 S
-3370.32 4913.28 3.6 -3.6 S
-14.4 w
-3614.4 4852.08 0 144 S
-3614.4 4996.08 72 0 S
-3686.4 4996.08 0 -144 S
-3686.4 4852.08 -72 0 S
-3650.4 4780.08 0 72 S
-3650.4 4996.08 0 72 S
-5.76 w
-3636 4866.48 0 14.4 S
-3636 4880.88 3.6 3.6 S
-3639.6 4884.48 7.2 0 S
-3650.4 4880.88 -3.6 3.6 S
-3650.4 4870.08 0 10.8 S
-3636 4870.08 28.8 0 S
-3650.4 4870.08 14.4 14.4 S
-3664.8 4893.84 -18 18 S
-3636 4911.84 10.8 0 S
-3636 4893.84 0 18 S
-7.2 w
-3294 2983.68 0 43.2 S
-3394.8 2983.68 0 43.2 S
-14.4 w
-3488.4 3026.88 0 -43.2 S
-3200.4 3026.88 288 0 S
-3200.4 2983.68 0 43.2 S
-3488.4 2983.68 -288 0 S
-3488.4 3113.28 0 -129.6 S
-3200.4 3113.28 288 0 S
-3200.4 2983.68 0 129.6 S
-3488.4 2983.68 -288 0 S
-5.76 w
-3488.4 2933.28 0 25.2 S
-3488.4 2958.48 -3.6 3.6 S
-3484.8 2962.08 -7.2 0 S
-3477.6 2962.08 -3.6 -3.6 S
-3474 2933.28 0 25.2 S
-3464.64 2936.88 -3.6 -3.6 S
-3461.04 2933.28 -10.8 0 S
-3450.24 2933.28 -3.6 3.6 S
-3446.64 2936.88 0 7.2 S
-3464.64 2962.08 -18 -18 S
-3464.64 2962.08 -18 0 S
-7.2 w
-2606.4 3124.08 -72 0 S
-2534.4 3052.08 36 72 S
-2606.4 3052.08 -72 0 S
-2570.4 3124.08 36 -72 S
-2570.4 3052.08 0 -72 S
-2570.4 3196.08 0 -72 S
-5.76 w
-2606.4 3034.08 -28.8 0 S
-2606.4 3023.28 -3.6 -3.6 S
-2602.8 3019.68 -21.6 0 S
-2577.6 3023.28 3.6 -3.6 S
-2577.6 3037.68 0 -14.4 S
-2606.4 3037.68 0 -14.4 S
-2602.8 3010.32 3.6 -3.6 S
-2606.4 3006.72 0 -10.8 S
-2606.4 2995.92 -3.6 -3.6 S
-2602.8 2992.32 -7.2 0 S
-2577.6 3010.32 18 -18 S
-2577.6 3010.32 0 -18 S
-14.4 w
-2804.4 5284.08 0 144 S
-2804.4 5428.08 72 0 S
-2876.4 5428.08 0 -144 S
-2876.4 5284.08 -72 0 S
-2840.4 5212.08 0 72 S
-2840.4 5428.08 0 72 S
-5.76 w
-2826 5298.48 0 14.4 S
-2826 5312.88 3.6 3.6 S
-2829.6 5316.48 7.2 0 S
-2840.4 5312.88 -3.6 3.6 S
-2840.4 5302.08 0 10.8 S
-2826 5302.08 28.8 0 S
-2840.4 5302.08 14.4 14.4 S
-2854.8 5329.44 0 7.2 S
-2826 5333.04 28.8 0 S
-2833.2 5325.84 -7.2 7.2 S
-2829.6 5346 -3.6 3.6 S
-2826 5349.6 0 7.2 S
-2826 5356.8 3.6 3.6 S
-2829.6 5360.4 21.6 0 S
-2854.8 5356.8 -3.6 3.6 S
-2854.8 5349.6 0 7.2 S
-2851.2 5346 3.6 3.6 S
-2840.4 5349.6 0 10.8 S
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Page: 2 2
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Page: 3 3
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-14.4 w
-1 J
-K
-752.4 5626.08 0 -2834.64 S
-752.4 2791.44 4536 0 S
-5288.4 2791.44 0 2834.64 S
-5288.4 5626.08 -4536 0 S
-1044 3462.48 -72 0 S
-1260 3462.48 -72 0 S
-1188 3498.48 0 -72 S
-1044 3498.48 144 0 S
-1044 3426.48 0 72 S
-1188 3426.48 -144 0 S
-5.76 w
-1173.6 3448.08 -14.4 0 S
-1159.2 3448.08 -3.6 3.6 S
-1155.6 3451.68 0 7.2 S
-1159.2 3462.48 -3.6 -3.6 S
-1170 3462.48 -10.8 0 S
-1170 3448.08 0 28.8 S
-1170 3462.48 -14.4 14.4 S
-1142.64 3476.88 -7.2 0 S
-1139.04 3448.08 0 28.8 S
-1146.24 3455.28 -7.2 -7.2 S
-1122.48 3476.88 -7.2 0 S
-1118.88 3448.08 0 28.8 S
-1126.08 3455.28 -7.2 -7.2 S
-7.2 w
-1634.4 3124.08 0 108 S
-1634.4 2944.08 0 108 S
-2498.4 3232.08 -864 0 S
-2498.4 2944.08 0 288 S
-1634.4 2944.08 864 0 S
-1634.4 3052.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-1706.4 3102.48 0 -25.2 S
-1706.4 3077.28 3.6 -3.6 S
-1710 3073.68 7.2 0 S
-1717.2 3073.68 3.6 3.6 S
-1720.8 3102.48 0 -25.2 S
-1730.16 3073.68 14.4 14.4 S
-1744.56 3098.88 0 -10.8 S
-1740.96 3102.48 3.6 -3.6 S
-1733.76 3102.48 7.2 0 S
-1730.16 3098.88 3.6 3.6 S
-1730.16 3098.88 0 -7.2 S
-1730.16 3091.68 3.6 -3.6 S
-1733.76 3088.08 10.8 0 S
-7.2 w
-1454.4 2980.08 m
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-S
-5.76 w
-1306.8 2936.88 -10.8 0 S
-1310.4 2933.28 -3.6 3.6 S
-1310.4 2911.68 0 21.6 S
-1310.4 2911.68 -3.6 -3.6 S
-1306.8 2908.08 -10.8 0 S
-1286.64 2911.68 -3.6 -3.6 S
-1283.04 2908.08 -7.2 0 S
-1275.84 2908.08 -3.6 3.6 S
-1272.24 2911.68 0 21.6 S
-1275.84 2936.88 -3.6 -3.6 S
-1283.04 2936.88 -7.2 0 S
-1286.64 2933.28 -3.6 3.6 S
-1283.04 2922.48 -10.8 0 S
-14.4 w
-4604.4 4438.08 0 208.8 S
-1328.4 4438.08 3276 0 S
-1328.4 4646.88 0 -208.8 S
-4604.4 4646.88 -3276 0 S
-5.76 w
-4604.4 4394.88 0 25.2 S
-4604.4 4420.08 -3.6 3.6 S
-4600.8 4423.68 -7.2 0 S
-4593.6 4423.68 -3.6 -3.6 S
-4590 4394.88 0 25.2 S
-4577.04 4423.68 -7.2 0 S
-4573.44 4394.88 0 28.8 S
-4580.64 4402.08 -7.2 -7.2 S
-7.2 w
-1454.4 3196.08 m
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-S
-5.76 w
-1306.8 3152.88 -10.8 0 S
-1310.4 3149.28 -3.6 3.6 S
-1310.4 3127.68 0 21.6 S
-1310.4 3127.68 -3.6 -3.6 S
-1306.8 3124.08 -10.8 0 S
-1286.64 3124.08 -14.4 0 S
-1286.64 3124.08 0 14.4 S
-1286.64 3138.48 -3.6 -3.6 S
-1283.04 3134.88 -7.2 0 S
-1275.84 3134.88 -3.6 3.6 S
-1272.24 3138.48 0 10.8 S
-1275.84 3152.88 -3.6 -3.6 S
-1283.04 3152.88 -7.2 0 S
-1286.64 3149.28 -3.6 3.6 S
-7.2 w
-2678.4 3196.08 m
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-S
-5.76 w
-2826 3239.28 10.8 0 S
-2822.4 3242.88 3.6 -3.6 S
-2822.4 3264.48 0 -21.6 S
-2822.4 3264.48 3.6 3.6 S
-2826 3268.08 10.8 0 S
-2856.96 3268.08 3.6 -3.6 S
-2849.76 3268.08 7.2 0 S
-2846.16 3264.48 3.6 3.6 S
-2846.16 3264.48 0 -21.6 S
-2846.16 3242.88 3.6 -3.6 S
-2856.96 3253.68 3.6 -3.6 S
-2846.16 3253.68 10.8 0 S
-2849.76 3239.28 7.2 0 S
-2856.96 3239.28 3.6 3.6 S
-2860.56 3250.08 0 -7.2 S
-7.2 w
-2984.4 3718.08 0 108 S
-2984.4 3538.08 0 108 S
-3272.4 3826.08 -288 0 S
-3272.4 3538.08 0 288 S
-2984.4 3538.08 288 0 S
-2984.4 3646.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3056.4 3696.48 0 -25.2 S
-3056.4 3671.28 3.6 -3.6 S
-3060 3667.68 7.2 0 S
-3067.2 3667.68 3.6 3.6 S
-3070.8 3696.48 0 -25.2 S
-3083.76 3667.68 7.2 0 S
-3087.36 3696.48 0 -28.8 S
-3080.16 3689.28 7.2 7.2 S
-3100.32 3671.28 3.6 -3.6 S
-3100.32 3692.88 0 -21.6 S
-3100.32 3692.88 3.6 3.6 S
-3103.92 3696.48 7.2 0 S
-3111.12 3696.48 3.6 -3.6 S
-3114.72 3692.88 0 -21.6 S
-3111.12 3667.68 3.6 3.6 S
-3103.92 3667.68 7.2 0 S
-3100.32 3674.88 14.4 14.4 S
-14.4 w
-1184.4 5350.32 -612 0 S
-572.4 5350.32 0 -457.2 S
-572.4 4893.12 612 0 S
-1184.4 4893.12 0 457.2 S
-5.76 w
-1184.4 4849.92 -10.8 0 S
-1173.6 4849.92 0 25.2 S
-1177.2 4878.72 -3.6 -3.6 S
-1180.8 4878.72 -3.6 0 S
-1184.4 4875.12 -3.6 3.6 S
-1164.24 4853.52 -3.6 -3.6 S
-1160.64 4849.92 -10.8 0 S
-1149.84 4849.92 -3.6 3.6 S
-1146.24 4853.52 0 7.2 S
-1164.24 4878.72 -18 -18 S
-1164.24 4878.72 -18 0 S
-7.2 w
-2714.4 3574.08 m
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-S
-5.76 w
-2862 3617.28 10.8 0 S
-2858.4 3620.88 3.6 -3.6 S
-2858.4 3642.48 0 -21.6 S
-2858.4 3642.48 3.6 3.6 S
-2862 3646.08 10.8 0 S
-2885.76 3617.28 7.2 0 S
-2889.36 3646.08 0 -28.8 S
-2882.16 3638.88 7.2 7.2 S
-2902.32 3620.88 3.6 -3.6 S
-2902.32 3642.48 0 -21.6 S
-2902.32 3642.48 3.6 3.6 S
-2905.92 3646.08 7.2 0 S
-2913.12 3646.08 3.6 -3.6 S
-2916.72 3642.48 0 -21.6 S
-2913.12 3617.28 3.6 3.6 S
-2905.92 3617.28 7.2 0 S
-2902.32 3624.48 14.4 14.4 S
-7.2 w
-4550.4 5392.08 0 108 S
-4550.4 5212.08 0 108 S
-4838.4 5500.08 -288 0 S
-4838.4 5212.08 0 288 S
-4550.4 5212.08 288 0 S
-4550.4 5320.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-4622.4 5370.48 0 -25.2 S
-4622.4 5345.28 3.6 -3.6 S
-4626 5341.68 7.2 0 S
-4633.2 5341.68 3.6 3.6 S
-4636.8 5370.48 0 -25.2 S
-4646.16 5356.08 14.4 14.4 S
-4646.16 5356.08 18 0 S
-4660.56 5370.48 0 -28.8 S
-14.4 w
-4550.4 4236.48 288 0 S
-4838.4 4236.48 0 -129.6 S
-4838.4 4106.88 -288 0 S
-4550.4 4106.88 0 129.6 S
-4550.4 4236.48 288 0 S
-4838.4 4236.48 0 -43.2 S
-4838.4 4193.28 -288 0 S
-4550.4 4193.28 0 43.2 S
-7.2 w
-4644 4236.48 0 -43.2 S
-4744.8 4236.48 0 -43.2 S
-5.76 w
-4550.4 4283.28 0 -21.6 S
-4550.4 4283.28 3.6 3.6 S
-4554 4286.88 7.2 0 S
-4561.2 4286.88 3.6 -3.6 S
-4564.8 4283.28 0 -21.6 S
-4561.2 4258.08 3.6 3.6 S
-4554 4258.08 7.2 0 S
-4550.4 4261.68 3.6 -3.6 S
-4557.6 4265.28 7.2 -7.2 S
-4574.16 4286.88 14.4 0 S
-4574.16 4286.88 0 -14.4 S
-4574.16 4272.48 3.6 3.6 S
-4577.76 4276.08 7.2 0 S
-4584.96 4276.08 3.6 -3.6 S
-4588.56 4272.48 0 -10.8 S
-4584.96 4258.08 3.6 3.6 S
-4577.76 4258.08 7.2 0 S
-4574.16 4261.68 3.6 -3.6 S
-7.2 w
-4550.4 4960.08 0 108 S
-4550.4 4780.08 0 108 S
-4838.4 5068.08 -288 0 S
-4838.4 4780.08 0 288 S
-4550.4 4780.08 288 0 S
-4550.4 4888.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-4622.4 4938.48 0 -25.2 S
-4622.4 4913.28 3.6 -3.6 S
-4626 4909.68 7.2 0 S
-4633.2 4909.68 3.6 3.6 S
-4636.8 4938.48 0 -25.2 S
-4646.16 4938.48 14.4 0 S
-4646.16 4938.48 0 -14.4 S
-4646.16 4924.08 3.6 3.6 S
-4649.76 4927.68 7.2 0 S
-4656.96 4927.68 3.6 -3.6 S
-4660.56 4924.08 0 -10.8 S
-4656.96 4909.68 3.6 3.6 S
-4649.76 4909.68 7.2 0 S
-4646.16 4913.28 3.6 -3.6 S
-7.2 w
-4478.4 4312.08 72 0 S
-4622.4 4312.08 72 0 S
-4550.4 4312.08 72 36 S
-4622.4 4348.08 0 -72 S
-4622.4 4276.08 -72 36 S
-4550.4 4348.08 0 -72 S
-5.76 w
-4640.4 4348.08 0 -28.8 S
-4651.2 4348.08 3.6 -3.6 S
-4654.8 4344.48 0 -21.6 S
-4651.2 4319.28 3.6 3.6 S
-4636.8 4319.28 14.4 0 S
-4636.8 4348.08 14.4 0 S
-4664.16 4319.28 18 18 S
-4682.16 4348.08 0 -10.8 S
-4664.16 4348.08 18 0 S
-14.4 w
-4550.4 3642.48 288 0 S
-4838.4 3642.48 0 -129.6 S
-4838.4 3512.88 -288 0 S
-4550.4 3512.88 0 129.6 S
-4550.4 3642.48 288 0 S
-4838.4 3642.48 0 -43.2 S
-4838.4 3599.28 -288 0 S
-4550.4 3599.28 0 43.2 S
-7.2 w
-4644 3642.48 0 -43.2 S
-4744.8 3642.48 0 -43.2 S
-5.76 w
-4550.4 3689.28 0 -21.6 S
-4550.4 3689.28 3.6 3.6 S
-4554 3692.88 7.2 0 S
-4561.2 3692.88 3.6 -3.6 S
-4564.8 3689.28 0 -21.6 S
-4561.2 3664.08 3.6 3.6 S
-4554 3664.08 7.2 0 S
-4550.4 3667.68 3.6 -3.6 S
-4557.6 3671.28 7.2 -7.2 S
-4574.16 3689.28 3.6 3.6 S
-4577.76 3692.88 7.2 0 S
-4584.96 3692.88 3.6 -3.6 S
-4588.56 3689.28 0 -21.6 S
-4584.96 3664.08 3.6 3.6 S
-4577.76 3664.08 7.2 0 S
-4574.16 3667.68 3.6 -3.6 S
-4577.76 3678.48 10.8 0 S
-14.4 w
-488.88 3615.12 263.52 -7.2 S
-488.88 3700.08 0 -84.96 S
-752.4 3707.28 -263.52 -7.2 S
-851.76 3558.24 0 198.72 S
-752.4 3558.24 185.76 0 S
-752.4 3756.96 0 -198.72 S
-938.16 3756.96 -185.76 0 S
-5.76 w
-909.36 3657.6 3.6 -3.6 S
-898.56 3657.6 10.8 0 S
-894.96 3654 3.6 3.6 S
-894.96 3654 0 -7.2 S
-894.96 3646.8 3.6 -3.6 S
-898.56 3643.2 10.8 0 S
-909.36 3643.2 3.6 -3.6 S
-912.96 3639.6 0 -7.2 S
-909.36 3628.8 3.6 3.6 S
-898.56 3628.8 10.8 0 S
-894.96 3632.4 3.6 -3.6 S
-925.92 3628.8 7.2 0 S
-929.52 3657.6 0 -28.8 S
-922.32 3650.4 7.2 7.2 S
-14.4 w
-3722.4 2890.08 -756 0 S
-3722.4 2890.08 0 468 S
-3722.4 3358.08 -36 0 S
-3686.4 3358.08 0 -396 S
-3686.4 2962.08 -144 0 S
-3542.4 2962.08 0 396 S
-3542.4 3358.08 -36 0 S
-3506.4 3358.08 0 -396 S
-3506.4 2962.08 -324 0 S
-2966.4 2890.08 0 468 S
-2966.4 3358.08 36 0 S
-3002.4 3358.08 0 -396 S
-3002.4 2962.08 144 0 S
-3146.4 2962.08 0 396 S
-3146.4 3358.08 36 0 S
-3182.4 3358.08 0 -396 S
-7.2 w
-3794.4 3286.08 m
-0 -59.65 48.35 -108 108 -108 c
-59.65 0 108 48.35 108 108 c
-0 59.65 -48.35 108 -108 108 c
--59.65 0 -108 -48.35 -108 -108 c
-S
-5.76 w
-4014 3365.28 10.8 0 S
-4010.4 3368.88 3.6 -3.6 S
-4010.4 3390.48 0 -21.6 S
-4010.4 3390.48 3.6 3.6 S
-4014 3394.08 10.8 0 S
-4034.16 3390.48 3.6 3.6 S
-4037.76 3394.08 10.8 0 S
-4048.56 3394.08 3.6 -3.6 S
-4052.16 3390.48 0 -7.2 S
-4034.16 3365.28 18 18 S
-4034.16 3365.28 18 0 S
-14.4 w
-2552.4 3592.08 0 144 S
-2552.4 3736.08 72 0 S
-2624.4 3736.08 0 -144 S
-2624.4 3592.08 -72 0 S
-2588.4 3520.08 0 72 S
-2588.4 3736.08 0 72 S
-5.76 w
-2574 3606.48 0 14.4 S
-2574 3620.88 3.6 3.6 S
-2577.6 3624.48 7.2 0 S
-2588.4 3620.88 -3.6 3.6 S
-2588.4 3610.08 0 10.8 S
-2574 3610.08 28.8 0 S
-2588.4 3610.08 14.4 14.4 S
-2602.8 3637.44 0 7.2 S
-2574 3641.04 28.8 0 S
-2581.2 3633.84 -7.2 7.2 S
-2599.2 3654 3.6 3.6 S
-2577.6 3654 21.6 0 S
-2577.6 3654 -3.6 3.6 S
-2574 3657.6 0 7.2 S
-2574 3664.8 3.6 3.6 S
-2577.6 3668.4 21.6 0 S
-2602.8 3664.8 -3.6 3.6 S
-2602.8 3657.6 0 7.2 S
-2595.6 3654 -14.4 14.4 S
-14.4 w
-3614.4 5284.08 0 144 S
-3614.4 5428.08 72 0 S
-3686.4 5428.08 0 -144 S
-3686.4 5284.08 -72 0 S
-3650.4 5212.08 0 72 S
-3650.4 5428.08 0 72 S
-5.76 w
-3636 5298.48 0 14.4 S
-3636 5312.88 3.6 3.6 S
-3639.6 5316.48 7.2 0 S
-3650.4 5312.88 -3.6 3.6 S
-3650.4 5302.08 0 10.8 S
-3636 5302.08 28.8 0 S
-3650.4 5302.08 14.4 14.4 S
-3639.6 5325.84 -3.6 3.6 S
-3636 5329.44 0 7.2 S
-3636 5336.64 3.6 3.6 S
-3639.6 5340.24 21.6 0 S
-3664.8 5336.64 -3.6 3.6 S
-3664.8 5329.44 0 7.2 S
-3661.2 5325.84 3.6 3.6 S
-3650.4 5329.44 0 10.8 S
-7.2 w
-2858.4 3790.08 m
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-S
-5.76 w
-2710.8 3746.88 -10.8 0 S
-2714.4 3743.28 -3.6 3.6 S
-2714.4 3721.68 0 21.6 S
-2714.4 3721.68 -3.6 -3.6 S
-2710.8 3718.08 -10.8 0 S
-2690.64 3746.88 -14.4 -14.4 S
-2676.24 3721.68 0 10.8 S
-2679.84 3718.08 -3.6 3.6 S
-2687.04 3718.08 -7.2 0 S
-2690.64 3721.68 -3.6 -3.6 S
-2690.64 3721.68 0 7.2 S
-2690.64 3728.88 -3.6 3.6 S
-2687.04 3732.48 -10.8 0 S
-14.4 w
-5486.4 5464.08 -129.6 0 S
-5486.4 2944.08 0 2520 S
-5356.8 2944.08 129.6 0 S
-5194.8 3030.48 0 2347.2 S
-5194.8 5377.68 -68.4 0 S
-7.2 w
-5356.8 5377.68 -162 0 S
-5356.8 5464.08 0 -86.4 S
-14.4 w
-5356.8 5536.08 0 -72 S
-5126.4 5536.08 230.4 0 S
-5126.4 5377.68 0 158.4 S
-5356.8 2872.08 -230.4 0 S
-5356.8 2944.08 0 -72 S
-7.2 w
-5356.8 3030.48 0 -86.4 S
-5194.8 3030.48 162 0 S
-14.4 w
-5126.4 3030.48 68.4 0 S
-5126.4 2872.08 0 158.4 S
-28.8 w
-4982.4 5320.08 198 0 S
-4982.4 5248.08 198 0 S
-4982.4 5176.08 198 0 S
-4982.4 5104.08 198 0 S
-4982.4 5032.08 198 0 S
-4982.4 4960.08 198 0 S
-4982.4 4888.08 198 0 S
-4982.4 4816.08 198 0 S
-4982.4 4744.08 198 0 S
-4982.4 4672.08 198 0 S
-4982.4 4600.08 198 0 S
-4982.4 4528.08 198 0 S
-4982.4 4456.08 198 0 S
-4982.4 4384.08 198 0 S
-4982.4 4312.08 198 0 S
-4982.4 4240.08 198 0 S
-4982.4 4168.08 198 0 S
-4982.4 4096.08 198 0 S
-4982.4 4024.08 198 0 S
-4982.4 3952.08 198 0 S
-4982.4 3880.08 198 0 S
-4982.4 3808.08 198 0 S
-4982.4 3736.08 198 0 S
-4982.4 3664.08 198 0 S
-4982.4 3592.08 198 0 S
-4982.4 3520.08 198 0 S
-4982.4 3448.08 198 0 S
-4982.4 3376.08 198 0 S
-4982.4 3304.08 198 0 S
-4982.4 3232.08 198 0 S
-4982.4 3160.08 198 0 S
-4982.4 3088.08 198 0 S
-11.52 w
-5198.4 3174.48 0 21.6 S
-5198.4 3196.08 50.4 0 S
-5256 3188.88 -7.2 7.2 S
-5256 3181.68 0 7.2 S
-5248.8 3174.48 7.2 7.2 S
-5256 3222 0 14.4 S
-5198.4 3229.2 57.6 0 S
-5212.8 3214.8 -14.4 14.4 S
-5198.4 3255.12 0 28.8 S
-5198.4 3255.12 28.8 0 S
-5227.2 3255.12 -7.2 7.2 S
-5220 3262.32 0 14.4 S
-5220 3276.72 7.2 7.2 S
-5227.2 3283.92 21.6 0 S
-5256 3276.72 -7.2 7.2 S
-5256 3262.32 0 14.4 S
-5248.8 3255.12 7.2 7.2 S
-14.4 w
-4172.4 3642.48 288 0 S
-4460.4 3642.48 0 -129.6 S
-4460.4 3512.88 -288 0 S
-4172.4 3512.88 0 129.6 S
-4172.4 3642.48 288 0 S
-4460.4 3642.48 0 -43.2 S
-4460.4 3599.28 -288 0 S
-4172.4 3599.28 0 43.2 S
-7.2 w
-4266 3642.48 0 -43.2 S
-4366.8 3642.48 0 -43.2 S
-5.76 w
-4172.4 3689.28 0 -21.6 S
-4172.4 3689.28 3.6 3.6 S
-4176 3692.88 7.2 0 S
-4183.2 3692.88 3.6 -3.6 S
-4186.8 3689.28 0 -21.6 S
-4183.2 3664.08 3.6 3.6 S
-4176 3664.08 7.2 0 S
-4172.4 3667.68 3.6 -3.6 S
-4179.6 3671.28 7.2 -7.2 S
-4196.16 3678.48 14.4 14.4 S
-4196.16 3678.48 18 0 S
-4210.56 3692.88 0 -28.8 S
-7.2 w
-4010.4 2998.08 m
-0 59.65 -48.35 108 -108 108 c
--59.65 0 -108 -48.35 -108 -108 c
-0 -59.65 48.35 -108 108 -108 c
-59.65 0 108 48.35 108 108 c
-S
-5.76 w
-3790.8 2918.88 -10.8 0 S
-3794.4 2915.28 -3.6 3.6 S
-3794.4 2893.68 0 21.6 S
-3794.4 2893.68 -3.6 -3.6 S
-3790.8 2890.08 -10.8 0 S
-3767.04 2918.88 -7.2 0 S
-3763.44 2890.08 0 28.8 S
-3770.64 2897.28 -7.2 -7.2 S
-14.4 w
-1191.6 3610.08 -144 0 S
-1047.6 3610.08 0 72 S
-1047.6 3682.08 144 0 S
-1191.6 3682.08 0 -72 S
-1263.6 3646.08 -72 0 S
-1047.6 3646.08 -72 0 S
-5.76 w
-1177.2 3631.68 -14.4 0 S
-1162.8 3631.68 -3.6 3.6 S
-1159.2 3635.28 0 7.2 S
-1162.8 3646.08 -3.6 -3.6 S
-1173.6 3646.08 -10.8 0 S
-1173.6 3631.68 0 28.8 S
-1173.6 3646.08 -14.4 14.4 S
-1146.24 3660.48 -7.2 0 S
-1142.64 3631.68 0 28.8 S
-1149.84 3638.88 -7.2 -7.2 S
-1129.68 3635.28 -3.6 -3.6 S
-1126.08 3631.68 -10.8 0 S
-1115.28 3631.68 -3.6 3.6 S
-1111.68 3635.28 0 7.2 S
-1129.68 3660.48 -18 -18 S
-1129.68 3660.48 -18 0 S
-14.4 w
-4838.4 2890.08 -756 0 S
-4838.4 2890.08 0 468 S
-4838.4 3358.08 -36 0 S
-4802.4 3358.08 0 -396 S
-4802.4 2962.08 -144 0 S
-4658.4 2962.08 0 396 S
-4658.4 3358.08 -36 0 S
-4622.4 3358.08 0 -396 S
-4622.4 2962.08 -324 0 S
-4082.4 2890.08 0 468 S
-4082.4 3358.08 36 0 S
-4118.4 3358.08 0 -396 S
-4118.4 2962.08 144 0 S
-4262.4 2962.08 0 396 S
-4262.4 3358.08 36 0 S
-4298.4 3358.08 0 -396 S
-2480.4 3736.08 0 -144 S
-2480.4 3592.08 -72 0 S
-2408.4 3592.08 0 144 S
-2408.4 3736.08 72 0 S
-2444.4 3808.08 0 -72 S
-2444.4 3592.08 0 -72 S
-5.76 w
-2458.8 3721.68 0 -14.4 S
-2458.8 3707.28 -3.6 -3.6 S
-2455.2 3703.68 -7.2 0 S
-2444.4 3707.28 3.6 -3.6 S
-2444.4 3718.08 0 -10.8 S
-2458.8 3718.08 -28.8 0 S
-2444.4 3718.08 -14.4 -14.4 S
-2430 3694.32 14.4 -14.4 S
-2455.2 3679.92 -10.8 0 S
-2458.8 3683.52 -3.6 -3.6 S
-2458.8 3690.72 0 -7.2 S
-2455.2 3694.32 3.6 -3.6 S
-2455.2 3694.32 -7.2 0 S
-2448 3694.32 -3.6 -3.6 S
-2444.4 3690.72 0 -10.8 S
-7.2 w
-4410 2983.68 0 43.2 S
-4510.8 2983.68 0 43.2 S
-14.4 w
-4604.4 3026.88 0 -43.2 S
-4316.4 3026.88 288 0 S
-4316.4 2983.68 0 43.2 S
-4604.4 2983.68 -288 0 S
-4604.4 3113.28 0 -129.6 S
-4316.4 3113.28 288 0 S
-4316.4 2983.68 0 129.6 S
-4604.4 2983.68 -288 0 S
-5.76 w
-4604.4 2933.28 0 25.2 S
-4604.4 2958.48 -3.6 3.6 S
-4600.8 2962.08 -7.2 0 S
-4593.6 2962.08 -3.6 -3.6 S
-4590 2933.28 0 25.2 S
-4580.64 2936.88 -3.6 -3.6 S
-4577.04 2933.28 -7.2 0 S
-4569.84 2933.28 -3.6 3.6 S
-4566.24 2936.88 0 21.6 S
-4569.84 2962.08 -3.6 -3.6 S
-4577.04 2962.08 -7.2 0 S
-4580.64 2958.48 -3.6 3.6 S
-4577.04 2947.68 -10.8 0 S
-7.2 w
-4082.4 3664.08 m
-0 99.41 -80.59 180 -180 180 c
--99.41 0 -180 -80.59 -180 -180 c
-0 -99.41 80.59 -180 180 -180 c
-99.41 0 180 80.59 180 180 c
-S
-5.76 w
-3718.8 3512.88 -10.8 0 S
-3722.4 3509.28 -3.6 3.6 S
-3722.4 3487.68 0 21.6 S
-3722.4 3487.68 -3.6 -3.6 S
-3718.8 3484.08 -10.8 0 S
-3698.64 3509.28 -3.6 3.6 S
-3698.64 3502.08 0 7.2 S
-3698.64 3502.08 -3.6 -3.6 S
-3695.04 3498.48 -7.2 0 S
-3687.84 3498.48 -3.6 3.6 S
-3684.24 3502.08 0 7.2 S
-3687.84 3512.88 -3.6 -3.6 S
-3695.04 3512.88 -7.2 0 S
-3698.64 3494.88 -3.6 3.6 S
-3698.64 3487.68 0 7.2 S
-3698.64 3487.68 -3.6 -3.6 S
-3695.04 3484.08 -7.2 0 S
-3687.84 3484.08 -3.6 3.6 S
-3684.24 3487.68 0 7.2 S
-3687.84 3498.48 -3.6 -3.6 S
-7.2 w
-1634.4 3502.08 0 108 S
-1634.4 3322.08 0 108 S
-1922.4 3610.08 -288 0 S
-1922.4 3322.08 0 288 S
-1634.4 3322.08 288 0 S
-1634.4 3430.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-1706.4 3480.48 0 -25.2 S
-1706.4 3455.28 3.6 -3.6 S
-1710 3451.68 7.2 0 S
-1717.2 3451.68 3.6 3.6 S
-1720.8 3480.48 0 -25.2 S
-1733.76 3451.68 7.2 0 S
-1737.36 3480.48 0 -28.8 S
-1730.16 3473.28 7.2 7.2 S
-1753.92 3451.68 7.2 0 S
-1757.52 3480.48 0 -28.8 S
-1750.32 3473.28 7.2 7.2 S
-7.2 w
-1220.4 3250.08 0 72 S
-1148.4 3250.08 72 0 S
-14.4 w
-1292.4 3322.08 -144 0 S
-1292.4 3250.08 0 72 S
-1148.4 3250.08 144 0 S
-1148.4 3322.08 0 -72 S
-5.76 w
-1335.6 3322.08 0 -10.8 S
-1335.6 3311.28 -25.2 0 S
-1306.8 3314.88 3.6 -3.6 S
-1306.8 3318.48 0 -3.6 S
-1310.4 3322.08 -3.6 -3.6 S
-1335.6 3298.32 -28.8 0 S
-1335.6 3301.92 0 -14.4 S
-1335.6 3287.52 -3.6 -3.6 S
-1332 3283.92 -7.2 0 S
-1321.2 3287.52 3.6 -3.6 S
-1321.2 3298.32 0 -10.8 S
-1332 3274.56 3.6 -3.6 S
-1335.6 3270.96 0 -10.8 S
-1335.6 3260.16 -3.6 -3.6 S
-1332 3256.56 -7.2 0 S
-1306.8 3274.56 18 -18 S
-1306.8 3274.56 0 -18 S
-14.4 w
-2948.4 5284.08 0 144 S
-2948.4 5428.08 72 0 S
-3020.4 5428.08 0 -144 S
-3020.4 5284.08 -72 0 S
-2984.4 5212.08 0 72 S
-2984.4 5428.08 0 72 S
-5.76 w
-2970 5298.48 0 14.4 S
-2970 5312.88 3.6 3.6 S
-2973.6 5316.48 7.2 0 S
-2984.4 5312.88 -3.6 3.6 S
-2984.4 5302.08 0 10.8 S
-2970 5302.08 28.8 0 S
-2984.4 5302.08 14.4 14.4 S
-2998.8 5329.44 0 7.2 S
-2970 5333.04 28.8 0 S
-2977.2 5325.84 -7.2 7.2 S
-2984.4 5346 -14.4 14.4 S
-2984.4 5346 0 18 S
-2970 5360.4 28.8 0 S
-7.2 w
-4244.4 4150.08 m
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-S
-5.76 w
-4392 4193.28 10.8 0 S
-4388.4 4196.88 3.6 -3.6 S
-4388.4 4218.48 0 -21.6 S
-4388.4 4218.48 3.6 3.6 S
-4392 4222.08 10.8 0 S
-4415.76 4193.28 7.2 0 S
-4419.36 4222.08 0 -28.8 S
-4412.16 4214.88 7.2 7.2 S
-4435.92 4193.28 7.2 0 S
-4439.52 4222.08 0 -28.8 S
-4432.32 4214.88 7.2 7.2 S
-14.4 w
-4550.4 3984.48 288 0 S
-4838.4 3984.48 0 -129.6 S
-4838.4 3854.88 -288 0 S
-4550.4 3854.88 0 129.6 S
-4550.4 3984.48 288 0 S
-4838.4 3984.48 0 -43.2 S
-4838.4 3941.28 -288 0 S
-4550.4 3941.28 0 43.2 S
-7.2 w
-4644 3984.48 0 -43.2 S
-4744.8 3984.48 0 -43.2 S
-5.76 w
-4550.4 4031.28 0 -21.6 S
-4550.4 4031.28 3.6 3.6 S
-4554 4034.88 7.2 0 S
-4561.2 4034.88 3.6 -3.6 S
-4564.8 4031.28 0 -21.6 S
-4561.2 4006.08 3.6 3.6 S
-4554 4006.08 7.2 0 S
-4550.4 4009.68 3.6 -3.6 S
-4557.6 4013.28 7.2 -7.2 S
-4577.76 4006.08 7.2 0 S
-4581.36 4034.88 0 -28.8 S
-4574.16 4027.68 7.2 7.2 S
-7.2 w
-1040.4 3286.08 0 -72 S
-1040.4 3142.08 0 -72 S
-1040.4 3214.08 36 -72 S
-1076.4 3142.08 -72 0 S
-1004.4 3142.08 36 72 S
-1076.4 3214.08 -72 0 S
-5.76 w
-1076.4 3124.08 -28.8 0 S
-1076.4 3113.28 -3.6 -3.6 S
-1072.8 3109.68 -21.6 0 S
-1047.6 3113.28 3.6 -3.6 S
-1047.6 3127.68 0 -14.4 S
-1076.4 3127.68 0 -14.4 S
-1072.8 3100.32 3.6 -3.6 S
-1076.4 3096.72 0 -7.2 S
-1076.4 3089.52 -3.6 -3.6 S
-1072.8 3085.92 -21.6 0 S
-1047.6 3089.52 3.6 -3.6 S
-1047.6 3096.72 0 -7.2 S
-1051.2 3100.32 -3.6 -3.6 S
-1062 3096.72 0 -10.8 S
-7.2 w
-4082.4 4078.08 m
-0 99.41 -80.59 180 -180 180 c
--99.41 0 -180 -80.59 -180 -180 c
-0 -99.41 80.59 -180 180 -180 c
-99.41 0 180 80.59 180 180 c
-S
-5.76 w
-3718.8 3926.88 -10.8 0 S
-3722.4 3923.28 -3.6 3.6 S
-3722.4 3901.68 0 21.6 S
-3722.4 3901.68 -3.6 -3.6 S
-3718.8 3898.08 -10.8 0 S
-3698.64 3926.88 -18 -18 S
-3680.64 3898.08 0 10.8 S
-3698.64 3898.08 -18 0 S
-7.2 w
-964.8 3901.68 m
-0 -27.83 22.56 -50.4 50.4 -50.4 c
-27.83 0 50.4 22.56 50.4 50.4 c
-0 27.83 -22.56 50.4 -50.4 50.4 c
--27.83 0 -50.4 -22.56 -50.4 -50.4 c
-S
-10.8 w
-979.2 3901.68 m
-0 -19.88 16.12 -36 36 -36 c
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
--19.88 0 -36 -16.12 -36 -36 c
-S
-5.76 w
-982.8 3995.28 0 -28.8 S
-993.6 3995.28 3.6 -3.6 S
-997.2 3991.68 0 -21.6 S
-993.6 3966.48 3.6 3.6 S
-979.2 3966.48 14.4 0 S
-979.2 3995.28 14.4 0 S
-1006.56 3966.48 14.4 14.4 S
-1020.96 3991.68 0 -10.8 S
-1017.36 3995.28 3.6 -3.6 S
-1010.16 3995.28 7.2 0 S
-1006.56 3991.68 3.6 3.6 S
-1006.56 3991.68 0 -7.2 S
-1006.56 3984.48 3.6 -3.6 S
-1010.16 3980.88 10.8 0 S
-14.4 w
-1022.4 4286.88 -201.6 0 S
-950.4 4322.88 -129.6 0 S
-1022.4 4358.88 -201.6 0 S
-950.4 4394.88 -129.6 0 S
-1022.4 4430.88 -201.6 0 S
-950.4 4466.88 -129.6 0 S
-1022.4 4502.88 -201.6 0 S
-950.4 4538.88 -129.6 0 S
-1022.4 4574.88 -201.6 0 S
-7.2 w
-676.8 4171.68 0 518.4 S
-14.4 w
-820.8 4171.68 -144 0 S
-820.8 4690.08 0 -518.4 S
-676.8 4690.08 144 0 S
-460.8 4214.88 0 432 S
-655.2 4214.88 -194.4 0 S
-7.2 w
-655.2 4646.88 0 -432 S
-14.4 w
-460.8 4646.88 194.4 0 S
-7.2 w
-655.2 4135.68 21.6 0 S
-655.2 4049.28 21.6 0 S
-655.2 4726.08 21.6 0 S
-655.2 4812.48 21.6 0 S
-655.2 4006.08 0 849.6 S
-676.8 4006.08 -21.6 0 S
-676.8 4855.68 0 -849.6 S
-655.2 4855.68 21.6 0 S
-5.76 w
-734.4 4625.28 0 -10.8 S
-734.4 4614.48 -25.2 0 S
-705.6 4618.08 3.6 -3.6 S
-705.6 4621.68 0 -3.6 S
-709.2 4625.28 -3.6 -3.6 S
-705.6 4605.12 14.4 -14.4 S
-730.8 4590.72 -10.8 0 S
-734.4 4594.32 -3.6 -3.6 S
-734.4 4601.52 0 -7.2 S
-730.8 4605.12 3.6 -3.6 S
-730.8 4605.12 -7.2 0 S
-723.6 4605.12 -3.6 -3.6 S
-720 4601.52 0 -10.8 S
-7.2 w
-2408.4 4114.08 0 108 S
-2408.4 3934.08 0 108 S
-3272.4 4222.08 -864 0 S
-3272.4 3934.08 0 288 S
-2408.4 3934.08 864 0 S
-2408.4 4042.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-2480.4 4092.48 0 -25.2 S
-2480.4 4067.28 3.6 -3.6 S
-2484 4063.68 7.2 0 S
-2491.2 4063.68 3.6 3.6 S
-2494.8 4092.48 0 -25.2 S
-2504.16 4067.28 3.6 -3.6 S
-2504.16 4074.48 0 -7.2 S
-2504.16 4074.48 3.6 3.6 S
-2507.76 4078.08 7.2 0 S
-2514.96 4078.08 3.6 -3.6 S
-2518.56 4074.48 0 -7.2 S
-2514.96 4063.68 3.6 3.6 S
-2507.76 4063.68 7.2 0 S
-2504.16 4081.68 3.6 -3.6 S
-2504.16 4088.88 0 -7.2 S
-2504.16 4088.88 3.6 3.6 S
-2507.76 4092.48 7.2 0 S
-2514.96 4092.48 3.6 -3.6 S
-2518.56 4088.88 0 -7.2 S
-2514.96 4078.08 3.6 3.6 S
-7.2 w
-1400.4 4006.08 0 216 S
-1400.4 3718.08 0 216 S
-2264.4 4222.08 -864 0 S
-2264.4 3718.08 0 504 S
-1400.4 3718.08 864 0 S
-1400.4 3934.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-1472.4 3984.48 0 -25.2 S
-1472.4 3959.28 3.6 -3.6 S
-1476 3955.68 7.2 0 S
-1483.2 3955.68 3.6 3.6 S
-1486.8 3984.48 0 -25.2 S
-1506.96 3984.48 3.6 -3.6 S
-1499.76 3984.48 7.2 0 S
-1496.16 3980.88 3.6 3.6 S
-1496.16 3980.88 0 -21.6 S
-1496.16 3959.28 3.6 -3.6 S
-1506.96 3970.08 3.6 -3.6 S
-1496.16 3970.08 10.8 0 S
-1499.76 3955.68 7.2 0 S
-1506.96 3955.68 3.6 3.6 S
-1510.56 3966.48 0 -7.2 S
-14.4 w
-3416.4 4222.08 0 -288 S
-3416.4 3934.08 144 0 S
-3560.4 3934.08 0 288 S
-3560.4 4222.08 -144 0 S
-7.2 w
-3416.4 4150.08 72 0 S
-3488.4 4150.08 0 72 S
-5.76 w
-3603.6 4222.08 0 -10.8 S
-3603.6 4211.28 -25.2 0 S
-3574.8 4214.88 3.6 -3.6 S
-3574.8 4218.48 0 -3.6 S
-3578.4 4222.08 -3.6 -3.6 S
-3603.6 4198.32 -28.8 0 S
-3603.6 4201.92 0 -14.4 S
-3603.6 4187.52 -3.6 -3.6 S
-3600 4183.92 -7.2 0 S
-3589.2 4187.52 3.6 -3.6 S
-3589.2 4198.32 0 -10.8 S
-3574.8 4170.96 0 -7.2 S
-3603.6 4167.36 -28.8 0 S
-3596.4 4174.56 7.2 -7.2 S
-7.2 w
-2678.4 2980.08 m
-0 -39.76 32.24 -72 72 -72 c
-39.76 0 72 32.24 72 72 c
-0 39.76 -32.24 72 -72 72 c
--39.76 0 -72 -32.24 -72 -72 c
-S
-5.76 w
-2826 3023.28 10.8 0 S
-2822.4 3026.88 3.6 -3.6 S
-2822.4 3048.48 0 -21.6 S
-2822.4 3048.48 3.6 3.6 S
-2826 3052.08 10.8 0 S
-2846.16 3037.68 14.4 14.4 S
-2846.16 3037.68 18 0 S
-2860.56 3052.08 0 -28.8 S
-7.2 w
-2156.4 5392.08 0 108 S
-2156.4 5212.08 0 108 S
-2732.4 5500.08 -576 0 S
-2732.4 5212.08 0 288 S
-2156.4 5212.08 576 0 S
-2156.4 5320.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-2228.4 5370.48 0 -25.2 S
-2228.4 5345.28 3.6 -3.6 S
-2232 5341.68 7.2 0 S
-2239.2 5341.68 3.6 3.6 S
-2242.8 5370.48 0 -25.2 S
-2252.16 5341.68 18 18 S
-2270.16 5370.48 0 -10.8 S
-2252.16 5370.48 18 0 S
-14.4 w
-4172.4 3984.48 288 0 S
-4460.4 3984.48 0 -129.6 S
-4460.4 3854.88 -288 0 S
-4172.4 3854.88 0 129.6 S
-4172.4 3984.48 288 0 S
-4460.4 3984.48 0 -43.2 S
-4460.4 3941.28 -288 0 S
-4172.4 3941.28 0 43.2 S
-7.2 w
-4266 3984.48 0 -43.2 S
-4366.8 3984.48 0 -43.2 S
-5.76 w
-4172.4 4031.28 0 -21.6 S
-4172.4 4031.28 3.6 3.6 S
-4176 4034.88 7.2 0 S
-4183.2 4034.88 3.6 -3.6 S
-4186.8 4031.28 0 -21.6 S
-4183.2 4006.08 3.6 3.6 S
-4176 4006.08 7.2 0 S
-4172.4 4009.68 3.6 -3.6 S
-4179.6 4013.28 7.2 -7.2 S
-4196.16 4031.28 3.6 3.6 S
-4199.76 4034.88 10.8 0 S
-4210.56 4034.88 3.6 -3.6 S
-4214.16 4031.28 0 -7.2 S
-4196.16 4006.08 18 18 S
-4196.16 4006.08 18 0 S
-10.8 w
-806.4 3901.68 m
-0 -19.88 16.12 -36 36 -36 c
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
--19.88 0 -36 -16.12 -36 -36 c
-S
-7.2 w
-792 3901.68 m
-0 -27.83 22.56 -50.4 50.4 -50.4 c
-27.83 0 50.4 22.56 50.4 50.4 c
-0 27.83 -22.56 50.4 -50.4 50.4 c
--27.83 0 -50.4 -22.56 -50.4 -50.4 c
-S
-5.76 w
-810 3995.28 0 -28.8 S
-820.8 3995.28 3.6 -3.6 S
-824.4 3991.68 0 -21.6 S
-820.8 3966.48 3.6 3.6 S
-806.4 3966.48 14.4 0 S
-806.4 3995.28 14.4 0 S
-837.36 3966.48 7.2 0 S
-840.96 3995.28 0 -28.8 S
-833.76 3988.08 7.2 7.2 S
-853.92 3970.08 3.6 -3.6 S
-853.92 3991.68 0 -21.6 S
-853.92 3991.68 3.6 3.6 S
-857.52 3995.28 7.2 0 S
-864.72 3995.28 3.6 -3.6 S
-868.32 3991.68 0 -21.6 S
-864.72 3966.48 3.6 3.6 S
-857.52 3966.48 7.2 0 S
-853.92 3973.68 14.4 14.4 S
-7.2 w
-1598.4 3124.08 -72 0 S
-1526.4 3052.08 36 72 S
-1598.4 3052.08 -72 0 S
-1562.4 3124.08 36 -72 S
-1562.4 3052.08 0 -72 S
-1562.4 3196.08 0 -72 S
-5.76 w
-1598.4 3034.08 -28.8 0 S
-1598.4 3023.28 -3.6 -3.6 S
-1594.8 3019.68 -21.6 0 S
-1569.6 3023.28 3.6 -3.6 S
-1569.6 3037.68 0 -14.4 S
-1598.4 3037.68 0 -14.4 S
-1569.6 3006.72 0 -7.2 S
-1598.4 3003.12 -28.8 0 S
-1591.2 3010.32 7.2 -7.2 S
-14.4 w
-4406.4 5284.08 0 144 S
-4406.4 5428.08 72 0 S
-4478.4 5428.08 0 -144 S
-4478.4 5284.08 -72 0 S
-4442.4 5212.08 0 72 S
-4442.4 5428.08 0 72 S
-5.76 w
-4428 5298.48 0 14.4 S
-4428 5312.88 3.6 3.6 S
-4431.6 5316.48 7.2 0 S
-4442.4 5312.88 -3.6 3.6 S
-4442.4 5302.08 0 10.8 S
-4428 5302.08 28.8 0 S
-4442.4 5302.08 14.4 14.4 S
-4442.4 5325.84 -14.4 14.4 S
-4442.4 5325.84 0 18 S
-4428 5340.24 28.8 0 S
-7.2 w
-3254.4 5392.08 0 108 S
-3254.4 5212.08 0 108 S
-3542.4 5500.08 -288 0 S
-3542.4 5212.08 0 288 S
-3254.4 5212.08 288 0 S
-3254.4 5320.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3326.4 5370.48 0 -25.2 S
-3326.4 5345.28 3.6 -3.6 S
-3330 5341.68 7.2 0 S
-3337.2 5341.68 3.6 3.6 S
-3340.8 5370.48 0 -25.2 S
-3353.76 5341.68 7.2 0 S
-3357.36 5370.48 0 -28.8 S
-3350.16 5363.28 7.2 7.2 S
-3370.32 5366.88 3.6 3.6 S
-3373.92 5370.48 7.2 0 S
-3381.12 5370.48 3.6 -3.6 S
-3384.72 5366.88 0 -21.6 S
-3381.12 5341.68 3.6 3.6 S
-3373.92 5341.68 7.2 0 S
-3370.32 5345.28 3.6 -3.6 S
-3373.92 5356.08 10.8 0 S
-7.2 w
-3902.4 4960.08 0 108 S
-3902.4 4780.08 0 108 S
-4190.4 5068.08 -288 0 S
-4190.4 4780.08 0 288 S
-3902.4 4780.08 288 0 S
-3902.4 4888.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3974.4 4938.48 0 -25.2 S
-3974.4 4913.28 3.6 -3.6 S
-3978 4909.68 7.2 0 S
-3985.2 4909.68 3.6 3.6 S
-3988.8 4938.48 0 -25.2 S
-4001.76 4909.68 7.2 0 S
-4005.36 4938.48 0 -28.8 S
-3998.16 4931.28 7.2 7.2 S
-4018.32 4924.08 14.4 14.4 S
-4018.32 4924.08 18 0 S
-4032.72 4938.48 0 -28.8 S
-14.4 w
-4262.4 4852.08 0 144 S
-4262.4 4996.08 72 0 S
-4334.4 4996.08 0 -144 S
-4334.4 4852.08 -72 0 S
-4298.4 4780.08 0 72 S
-4298.4 4996.08 0 72 S
-5.76 w
-4284 4866.48 0 14.4 S
-4284 4880.88 3.6 3.6 S
-4287.6 4884.48 7.2 0 S
-4298.4 4880.88 -3.6 3.6 S
-4298.4 4870.08 0 10.8 S
-4284 4870.08 28.8 0 S
-4298.4 4870.08 14.4 14.4 S
-4284 4893.84 0 14.4 S
-4284 4893.84 14.4 0 S
-4298.4 4893.84 -3.6 3.6 S
-4294.8 4897.44 0 7.2 S
-4294.8 4904.64 3.6 3.6 S
-4298.4 4908.24 10.8 0 S
-4312.8 4904.64 -3.6 3.6 S
-4312.8 4897.44 0 7.2 S
-4309.2 4893.84 3.6 3.6 S
-14.4 w
-3758.4 4852.08 0 144 S
-3758.4 4996.08 72 0 S
-3830.4 4996.08 0 -144 S
-3830.4 4852.08 -72 0 S
-3794.4 4780.08 0 72 S
-3794.4 4996.08 0 72 S
-5.76 w
-3780 4866.48 0 14.4 S
-3780 4880.88 3.6 3.6 S
-3783.6 4884.48 7.2 0 S
-3794.4 4880.88 -3.6 3.6 S
-3794.4 4870.08 0 10.8 S
-3780 4870.08 28.8 0 S
-3794.4 4870.08 14.4 14.4 S
-3780 4904.64 3.6 3.6 S
-3780 4897.44 0 7.2 S
-3783.6 4893.84 -3.6 3.6 S
-3783.6 4893.84 21.6 0 S
-3805.2 4893.84 3.6 3.6 S
-3794.4 4904.64 3.6 3.6 S
-3794.4 4893.84 0 10.8 S
-3808.8 4897.44 0 7.2 S
-3808.8 4904.64 -3.6 3.6 S
-3798 4908.24 7.2 0 S
-14.4 w
-3758.4 5284.08 0 144 S
-3758.4 5428.08 72 0 S
-3830.4 5428.08 0 -144 S
-3830.4 5284.08 -72 0 S
-3794.4 5212.08 0 72 S
-3794.4 5428.08 0 72 S
-5.76 w
-3780 5298.48 0 14.4 S
-3780 5312.88 3.6 3.6 S
-3783.6 5316.48 7.2 0 S
-3794.4 5312.88 -3.6 3.6 S
-3794.4 5302.08 0 10.8 S
-3780 5302.08 28.8 0 S
-3794.4 5302.08 14.4 14.4 S
-3783.6 5325.84 -3.6 3.6 S
-3780 5329.44 0 10.8 S
-3780 5340.24 3.6 3.6 S
-3783.6 5343.84 7.2 0 S
-3808.8 5325.84 -18 18 S
-3808.8 5325.84 0 18 S
-7.2 w
-3902.4 5392.08 0 108 S
-3902.4 5212.08 0 108 S
-4190.4 5500.08 -288 0 S
-4190.4 5212.08 0 288 S
-3902.4 5212.08 288 0 S
-3902.4 5320.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3974.4 5370.48 0 -25.2 S
-3974.4 5345.28 3.6 -3.6 S
-3978 5341.68 7.2 0 S
-3985.2 5341.68 3.6 3.6 S
-3988.8 5370.48 0 -25.2 S
-4001.76 5341.68 7.2 0 S
-4005.36 5370.48 0 -28.8 S
-3998.16 5363.28 7.2 7.2 S
-4018.32 5366.88 3.6 3.6 S
-4021.92 5370.48 10.8 0 S
-4032.72 5370.48 3.6 -3.6 S
-4036.32 5366.88 0 -7.2 S
-4018.32 5341.68 18 18 S
-4018.32 5341.68 18 0 S
-14.4 w
-4262.4 5284.08 0 144 S
-4262.4 5428.08 72 0 S
-4334.4 5428.08 0 -144 S
-4334.4 5284.08 -72 0 S
-4298.4 5212.08 0 72 S
-4298.4 5428.08 0 72 S
-5.76 w
-4284 5298.48 0 14.4 S
-4284 5312.88 3.6 3.6 S
-4287.6 5316.48 7.2 0 S
-4298.4 5312.88 -3.6 3.6 S
-4298.4 5302.08 0 10.8 S
-4284 5302.08 28.8 0 S
-4298.4 5302.08 14.4 14.4 S
-4312.8 5329.44 0 7.2 S
-4284 5333.04 28.8 0 S
-4291.2 5325.84 -7.2 7.2 S
-14.4 w
-4406.4 4852.08 0 144 S
-4406.4 4996.08 72 0 S
-4478.4 4996.08 0 -144 S
-4478.4 4852.08 -72 0 S
-4442.4 4780.08 0 72 S
-4442.4 4996.08 0 72 S
-5.76 w
-4428 4866.48 0 14.4 S
-4428 4880.88 3.6 3.6 S
-4431.6 4884.48 7.2 0 S
-4442.4 4880.88 -3.6 3.6 S
-4442.4 4870.08 0 10.8 S
-4428 4870.08 28.8 0 S
-4442.4 4870.08 14.4 14.4 S
-4453.2 4893.84 3.6 3.6 S
-4446 4893.84 7.2 0 S
-4446 4893.84 -3.6 3.6 S
-4442.4 4897.44 0 7.2 S
-4442.4 4904.64 3.6 3.6 S
-4446 4908.24 7.2 0 S
-4456.8 4904.64 -3.6 3.6 S
-4456.8 4897.44 0 7.2 S
-4438.8 4893.84 3.6 3.6 S
-4431.6 4893.84 7.2 0 S
-4431.6 4893.84 -3.6 3.6 S
-4428 4897.44 0 7.2 S
-4428 4904.64 3.6 3.6 S
-4431.6 4908.24 7.2 0 S
-4442.4 4904.64 -3.6 3.6 S
-7.2 w
-3254.4 4960.08 0 108 S
-3254.4 4780.08 0 108 S
-3542.4 5068.08 -288 0 S
-3542.4 4780.08 0 288 S
-3254.4 4780.08 288 0 S
-3254.4 4888.08 m
-19.88 0 36 16.12 36 36 c
-0 19.88 -16.12 36 -36 36 c
-S
-5.76 w
-3326.4 4938.48 0 -25.2 S
-3326.4 4913.28 3.6 -3.6 S
-3330 4909.68 7.2 0 S
-3337.2 4909.68 3.6 3.6 S
-3340.8 4938.48 0 -25.2 S
-3353.76 4909.68 7.2 0 S
-3357.36 4938.48 0 -28.8 S
-3350.16 4931.28 7.2 7.2 S
-3370.32 4938.48 14.4 0 S
-3370.32 4938.48 0 -14.4 S
-3370.32 4924.08 3.6 3.6 S
-3373.92 4927.68 7.2 0 S
-3381.12 4927.68 3.6 -3.6 S
-3384.72 4924.08 0 -10.8 S
-3381.12 4909.68 3.6 3.6 S
-3373.92 4909.68 7.2 0 S
-3370.32 4913.28 3.6 -3.6 S
-14.4 w
-3614.4 4852.08 0 144 S
-3614.4 4996.08 72 0 S
-3686.4 4996.08 0 -144 S
-3686.4 4852.08 -72 0 S
-3650.4 4780.08 0 72 S
-3650.4 4996.08 0 72 S
-5.76 w
-3636 4866.48 0 14.4 S
-3636 4880.88 3.6 3.6 S
-3639.6 4884.48 7.2 0 S
-3650.4 4880.88 -3.6 3.6 S
-3650.4 4870.08 0 10.8 S
-3636 4870.08 28.8 0 S
-3650.4 4870.08 14.4 14.4 S
-3664.8 4893.84 -18 18 S
-3636 4911.84 10.8 0 S
-3636 4893.84 0 18 S
-7.2 w
-3294 2983.68 0 43.2 S
-3394.8 2983.68 0 43.2 S
-14.4 w
-3488.4 3026.88 0 -43.2 S
-3200.4 3026.88 288 0 S
-3200.4 2983.68 0 43.2 S
-3488.4 2983.68 -288 0 S
-3488.4 3113.28 0 -129.6 S
-3200.4 3113.28 288 0 S
-3200.4 2983.68 0 129.6 S
-3488.4 2983.68 -288 0 S
-5.76 w
-3488.4 2933.28 0 25.2 S
-3488.4 2958.48 -3.6 3.6 S
-3484.8 2962.08 -7.2 0 S
-3477.6 2962.08 -3.6 -3.6 S
-3474 2933.28 0 25.2 S
-3464.64 2936.88 -3.6 -3.6 S
-3461.04 2933.28 -10.8 0 S
-3450.24 2933.28 -3.6 3.6 S
-3446.64 2936.88 0 7.2 S
-3464.64 2962.08 -18 -18 S
-3464.64 2962.08 -18 0 S
-7.2 w
-2606.4 3124.08 -72 0 S
-2534.4 3052.08 36 72 S
-2606.4 3052.08 -72 0 S
-2570.4 3124.08 36 -72 S
-2570.4 3052.08 0 -72 S
-2570.4 3196.08 0 -72 S
-5.76 w
-2606.4 3034.08 -28.8 0 S
-2606.4 3023.28 -3.6 -3.6 S
-2602.8 3019.68 -21.6 0 S
-2577.6 3023.28 3.6 -3.6 S
-2577.6 3037.68 0 -14.4 S
-2606.4 3037.68 0 -14.4 S
-2602.8 3010.32 3.6 -3.6 S
-2606.4 3006.72 0 -10.8 S
-2606.4 2995.92 -3.6 -3.6 S
-2602.8 2992.32 -7.2 0 S
-2577.6 3010.32 18 -18 S
-2577.6 3010.32 0 -18 S
-14.4 w
-2804.4 5284.08 0 144 S
-2804.4 5428.08 72 0 S
-2876.4 5428.08 0 -144 S
-2876.4 5284.08 -72 0 S
-2840.4 5212.08 0 72 S
-2840.4 5428.08 0 72 S
-5.76 w
-2826 5298.48 0 14.4 S
-2826 5312.88 3.6 3.6 S
-2829.6 5316.48 7.2 0 S
-2840.4 5312.88 -3.6 3.6 S
-2840.4 5302.08 0 10.8 S
-2826 5302.08 28.8 0 S
-2840.4 5302.08 14.4 14.4 S
-2854.8 5329.44 0 7.2 S
-2826 5333.04 28.8 0 S
-2833.2 5325.84 -7.2 7.2 S
-2829.6 5346 -3.6 3.6 S
-2826 5349.6 0 7.2 S
-2826 5356.8 3.6 3.6 S
-2829.6 5360.4 21.6 0 S
-2854.8 5356.8 -3.6 3.6 S
-2854.8 5349.6 0 7.2 S
-2851.2 5346 3.6 3.6 S
-2840.4 5349.6 0 10.8 S
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Page: 4 4
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-7.2 w
-1 J
-56 93 207 rG
-1076.4 4502.88 -54 0 S
-1080 4506.48 -3.6 -3.6 S
-1306.8 4506.48 -226.8 0 S
-1076.4 4358.88 -54 0 S
-1083.6 4366.08 -7.2 -7.2 S
-1202.4 4366.08 -118.8 0 S
-3794.4 3610.08 828 0 S
-3776.4 3592.08 18 18 S
-3740.4 3592.08 36 0 S
-3722.4 3610.08 18 -18 S
-2948.4 3610.08 774 0 S
-2624.4 5050.08 -216 0 S
-2606.4 3826.08 -18 -18 S
-2858.4 3826.08 -252 0 S
-2750.4 4240.08 -468 0 S
-2804.4 4186.08 -54 54 S
-2282.4 3862.08 -342 0 S
-1886.4 3628.08 126 0 S
-2696.4 3862.08 252 0 S
-2804.4 5086.08 -324 0 S
-2408.4 3862.08 288 0 S
-2372.4 3826.08 36 36 S
-2138.4 4906.08 36 -36 S
-1796.4 4906.08 342 0 S
-2336.4 4870.08 36 36 S
-2174.4 4870.08 162 0 S
-1724.4 4708.08 450 0 S
-2372.4 4690.08 36 36 S
-2192.4 4690.08 180 0 S
-2174.4 4708.08 18 -18 S
-1652.4 4636.08 792 0 S
-1580.4 4942.08 1008 0 S
-1544.4 4762.08 972 0 S
-1472.4 4672.08 1080 0 S
-2552.4 4672.08 198 0 S
-2516.4 4762.08 144 0 S
-2480.4 4798.08 108 0 S
-2300.4 4906.08 -108 0 S
-2336.4 4726.08 -108 0 S
-2264.4 4798.08 72 0 S
-4280.4 4420.08 -1962 0 S
-5090.4 4852.08 36 -36 S
-1256.4 4852.08 3834 0 S
-4892.4 5284.08 -2232 0 S
-4892.4 5284.08 0 0 S
-4856.4 4726.08 -2304 0 S
-4856.4 5032.08 54 0 S
-4820.4 4996.08 36 36 S
-4694.4 4996.08 126 0 S
-4658.4 5032.08 36 -36 S
-4748.4 5212.08 -18 -18 S
-5090.4 5212.08 -342 0 S
-5126.4 5176.08 -36 36 S
-4694.4 5410.08 216 0 S
-4658.4 5446.08 36 -36 S
-4658.4 5464.08 0 -18 S
-4748.4 5518.08 342 0 S
-4730.4 5500.08 18 18 S
-4730.4 5464.08 0 36 S
-18 w
-5036.4 5374.08 -882 0 S
-5054.4 5356.08 -18 18 S
-5054.4 5320.08 0 36 S
-7.2 w
-2660.4 5284.08 -36 -36 S
-18 w
-4982.4 5320.08 -1620 0 S
-4514.4 4888.08 468 0 S
-4910.4 4924.08 180 0 S
-5090.4 4996.08 36 -36 S
-5018.4 4996.08 72 0 S
-986.4 2836.08 360 0 S
-32.4 w
-3956.4 2998.08 0 54 S
-7.2 w
-2876.4 3574.08 18 0 S
-28.8 w
-5126.4 3088.08 -144 0 S
-18 w
-5090.4 5284.08 36 -36 S
-5018.4 5284.08 72 0 S
-4982.4 5320.08 36 -36 S
-32.4 w
-4676.4 4078.08 18 -18 S
-3992.4 4078.08 684 0 S
-4694.4 3664.08 -702 0 S
-4838.4 3736.08 144 0 S
-4982.4 3376.08 -1710 0 S
-4982.4 3304.08 -666 0 S
-4982.4 3592.08 -144 0 S
-4982.4 3664.08 -288 0 S
-4316.4 3448.08 450 0 S
-4982.4 3520.08 -180 0 S
-4802.4 3520.08 -36 36 S
-4766.4 3790.08 -450 0 S
-7.2 w
-2840.4 3610.08 36 -36 S
-2894.4 3574.08 36 36 S
-2930.4 3610.08 18 0 S
-2588.4 4384.08 1332 0 S
-2246.4 3592.08 18 18 S
-3380.4 3448.08 -18 18 S
-3362.4 3466.08 -558 0 S
-2264.4 3610.08 576 0 S
-2804.4 3466.08 -18 0 S
-32.4 w
-4388.4 3070.08 -972 0 S
-4964.4 3070.08 -432 0 S
-4982.4 3088.08 -18 -18 S
-5126.4 3808.08 -144 0 S
-5126.4 3736.08 -144 0 S
-5126.4 3664.08 -144 0 S
-5126.4 3592.08 -144 0 S
-5126.4 3520.08 -144 0 S
-5126.4 3448.08 -144 0 S
-5126.4 3376.08 -144 0 S
-5126.4 3304.08 -144 0 S
-18 w
-5018.4 5140.08 72 0 S
-5090.4 5140.08 36 -36 S
-5018.4 5140.08 -1692 0 S
-4982.4 5176.08 0 -36 S
-4154.4 5032.08 432 0 S
-5054.4 5104.08 -36 -36 S
-5018.4 5068.08 -108 0 S
-4910.4 5068.08 -36 0 S
-4874.4 5068.08 -36 36 S
-4838.4 5104.08 -234 0 S
-4604.4 5104.08 -18 -18 S
-4586.4 5086.08 0 -54 S
-5018.4 4996.08 -144 0 S
-4874.4 4996.08 -18 0 S
-4856.4 4996.08 -18 -18 S
-4838.4 4978.08 -1512 0 S
-3650.4 5068.08 0 -90 S
-3326.4 4978.08 -1890 0 S
-1688.4 4564.08 72 0 S
-1724.4 4492.08 90 0 S
-1724.4 4564.08 0 -72 S
-3272.4 3376.08 -522 0 S
-2156.4 3898.08 594 0 S
-7.2 w
-1868.4 3826.08 504 0 S
-18 w
-2156.4 3898.08 -720 0 S
-28.8 w
-4946.4 3196.08 36 -36 S
-4982.4 3232.08 -36 -36 S
-18 w
-1670.4 3574.08 -306 0 S
-0.72 w
-5288.4 2792.88 -4536 0 S
-18 w
-842.4 4495.68 0 -554.4 S
-0.72 w
-5288.4 5626.08 0 -2833.2 S
-18 w
-838.8 3944.88 -7.2 -7.2 S
-957.6 3577.68 -36 36 S
-4802.4 4942.08 -1332 0 S
-4100.4 4492.08 144 0 S
-4172.4 4564.08 0 -72 S
-4136.4 4564.08 72 0 S
-4910.4 4924.08 -90 0 S
-4820.4 4924.08 -18 18 S
-3470.4 4942.08 -774 0 S
-3290.4 5032.08 0 -54 S
-4982.4 5032.08 0 -36 S
-0.72 w
-752.4 5626.08 4536 0 S
-18 w
-3308.4 5536.08 306 0 S
-3614.4 5536.08 36 -36 S
-3236.4 3574.08 486 0 S
-7.2 w
-2516.4 3754.08 1368 0 S
-18 w
-2588.4 3520.08 180 0 S
-1958.4 2836.08 828 0 S
-2588.4 3520.08 -54 0 S
-2534.4 3520.08 -54 -54 S
-2480.4 3466.08 -576 0 S
-1904.4 3466.08 -18 0 S
-7.2 w
-3020.4 4222.08 18 18 S
-3020.4 4186.08 0 36 S
-3038.4 4240.08 486 0 S
-18 w
-2768.4 3520.08 414 0 S
-3182.4 3520.08 54 54 S
-2822.4 3556.08 0 -36 S
-1346.4 2836.08 612 0 S
-28.8 w
-4910.4 3196.08 36 0 S
-7.2 w
-824.4 3286.08 360 0 S
-18 w
-1418.4 2980.08 252 0 S
-1256.4 3646.08 108 0 S
-2570.4 2980.08 0 -54 S
-1670.4 2926.08 0 36 S
-2714.4 2980.08 0 -54 S
-2102.4 2980.08 0 -54 S
-3416.4 3070.08 0 -144 S
-3416.4 2926.08 -1746 0 S
-7.2 w
-1080 3462.48 -108 0 S
-18 w
-3308.4 5536.08 -432 0 S
-2876.4 5536.08 -36 -36 S
-2984.4 5500.08 0 36 S
-3290.4 5464.08 0 72 S
-7.2 w
-4856.4 5554.08 -414 0 S
-4046.4 5554.08 -252 0 S
-4226.4 5500.08 -144 0 S
-4082.4 5500.08 0 -36 S
-3596.4 5500.08 -18 0 S
-3578.4 5500.08 -144 0 S
-3434.4 5500.08 0 -36 S
-3650.4 5446.08 -54 54 S
-4298.4 5212.08 36 36 S
-4334.4 5248.08 90 0 S
-4424.4 5248.08 162 0 S
-4622.4 4150.08 -270 0 S
-3434.4 5248.08 0 -72 S
-3434.4 5176.08 1008 0 S
-4442.4 5176.08 0 36 S
-4424.4 4690.08 -990 0 S
-3434.4 4888.08 216 0 S
-4586.4 4816.08 -288 0 S
-4298.4 4816.08 0 -36 S
-4298.4 4888.08 -216 0 S
-4820.4 4636.08 -450 0 S
-4118.4 5086.08 -324 0 S
-3794.4 5086.08 0 -18 S
-3938.4 4888.08 -108 0 S
-3866.4 5248.08 -198 0 S
-3668.4 5248.08 -18 -18 S
-3650.4 5230.08 0 -18 S
-3326.4 3970.08 126 0 S
-3092.4 3970.08 36 36 S
-3128.4 4006.08 360 0 S
-3488.4 4006.08 36 -36 S
-3092.4 3790.08 72 0 S
-4190.4 3952.08 252 0 S
-3164.4 3790.08 0 36 S
-3164.4 3826.08 90 90 S
-3254.4 3916.08 900 0 S
-4154.4 3916.08 36 36 S
-2444.4 3808.08 144 0 S
-2570.4 3196.08 144 0 S
-18 w
-2390.4 3124.08 36 0 S
-7.2 w
-2984.4 2890.08 -738 0 S
-1742.4 2890.08 504 0 S
-1112.4 3898.08 144 0 S
-18 w
-1022.4 4582.08 -183.6 0 S
-842.4 4495.68 0 86.4 S
-7.2 w
-1220.4 3016.08 1062 0 S
-2282.4 3016.08 36 -36 S
-1886.4 2980.08 0 36 S
-18 w
-1958.4 3124.08 144 0 S
-7.2 w
-1814.4 3070.08 360 0 S
-1832.4 5248.08 -774 0 S
-1868.4 5212.08 -738 0 S
-1904.4 5068.08 -774 0 S
-1940.4 5176.08 -882 0 S
-5018.4 4420.08 -738 0 S
-18 w
-2012.4 4042.08 144 0 S
-7.2 w
-2588.4 4132.08 -612 0 S
-2660.4 4096.08 -612 0 S
-2246.4 4276.08 450 0 S
-2048.4 4258.08 180 0 S
-2228.4 4258.08 18 18 S
-1508.4 4312.08 1062 0 S
-2570.4 4312.08 198 0 S
-2534.4 4060.08 -306 0 S
-2228.4 4060.08 -18 0 S
-2210.4 4060.08 -18 18 S
-2192.4 4078.08 -90 0 S
-2102.4 4078.08 -18 -18 S
-2084.4 4060.08 -36 0 S
-2048.4 4060.08 -36 36 S
-2012.4 4096.08 -360 0 S
-1940.4 4006.08 414 0 S
-2354.4 4006.08 18 18 S
-2372.4 4024.08 846 0 S
-3218.4 4024.08 18 18 S
-2282.4 3664.08 918 0 S
-1544.4 3628.08 270 0 S
-1814.4 3628.08 36 36 S
-1850.4 3664.08 198 0 S
-2048.4 3664.08 36 -36 S
-2084.4 3628.08 792 0 S
-2084.4 4348.08 108 0 S
-2066.4 5014.08 198 0 S
-2228.4 4492.08 -54 -54 S
-1796.4 4402.08 414 0 S
-2210.4 4402.08 18 18 S
-2174.4 4438.08 -450 0 S
-18 w
-2228.4 3754.08 36 -36 S
-2264.4 3718.08 558 0 S
-3722.4 3574.08 90 0 S
-7.2 w
-2876.4 3628.08 882 0 S
-2858.4 3826.08 144 0 S
-3002.4 3826.08 18 18 S
-3056.4 4078.08 -108 0 S
-18 w
-2426.4 3124.08 144 0 S
-7.2 w
-2174.4 3070.08 954 0 S
-1202.4 4600.08 2430 0 S
-3632.4 4600.08 0 -36 S
-2012.4 4384.08 504 0 S
-2516.4 4384.08 36 -36 S
-2552.4 4348.08 1116 0 S
-1202.4 4366.08 144 0 S
-1346.4 4366.08 648 0 S
-1994.4 4366.08 18 18 S
-3326.4 3430.08 -1296 0 S
-3362.4 3898.08 -36 -36 S
-4244.4 3898.08 -882 0 S
-1418.4 3196.08 252 0 S
-1742.4 3196.08 72 0 S
-2102.4 3196.08 36 -36 S
-2138.4 3160.08 18 0 S
-2156.4 3160.08 522 0 S
-2678.4 3160.08 36 36 S
-2570.4 3196.08 0 -36 S
-2174.4 3196.08 72 0 S
-2318.4 3124.08 36 -36 S
-2750.4 3088.08 18 18 S
-2768.4 3106.08 18 18 S
-2354.4 3088.08 396 0 S
-3308.4 4042.08 144 0 S
-3452.4 4114.08 -108 0 S
-3452.4 4186.08 -72 0 S
-3416.4 3700.08 -486 0 S
-2930.4 3700.08 -18 -18 S
-2912.4 3682.08 -522 0 S
-2390.4 3682.08 -18 18 S
-2372.4 3700.08 -162 0 S
-2210.4 3700.08 -18 18 S
-2192.4 3718.08 -1008 0 S
-1346.4 3196.08 0 36 S
-1346.4 3232.08 2826 0 S
-4172.4 3790.08 144 0 S
-1886.4 3196.08 0 36 S
-1940.4 3340.08 2592 0 S
-4532.4 3898.08 90 0 S
-4244.4 3304.08 -18 18 S
-4226.4 3322.08 -1728 0 S
-2498.4 3322.08 -36 -36 S
-4298.4 3448.08 -918 0 S
-32.4 w
-4982.4 3232.08 0 -72 S
-4982.4 3196.08 -1638 0 S
-28.8 w
-4982.4 3160.08 144 0 S
-5126.4 3160.08 0 72 S
-5126.4 3232.08 -144 0 S
-4982.4 3214.08 144 0 S
-4982.4 3196.08 144 0 S
-4982.4 3178.08 144 0 S
-18 w
-1364.4 3577.68 -406.8 0 S
-0.72 w
-752.4 2792.88 0 2833.2 S
-18 w
-921.6 3613.68 -72 0 S
-849.6 3613.68 -25.2 -25.2 S
-7.2 w
-824.4 3286.08 -39.6 0 S
-18 w
-1357.2 3829.68 -302.4 0 S
-1054.8 3829.68 -39.6 39.6 S
-7.2 w
-846 3858.48 46.8 -46.8 S
-892.8 3811.68 82.8 0 S
-5.76 w
-1004.4 5536.08 0 28.8 S
-1004.4 5536.08 14.4 0 S
-1004.4 5550.48 10.8 0 S
-1031.76 5564.88 10.8 0 S
-1028.16 5561.28 3.6 3.6 S
-1028.16 5554.08 0 7.2 S
-1028.16 5554.08 3.6 -3.6 S
-1031.76 5550.48 7.2 0 S
-1038.96 5550.48 3.6 3.6 S
-1028.16 5557.68 14.4 0 S
-1042.56 5557.68 0 -3.6 S
-1055.52 5554.08 0 10.8 S
-1055.52 5554.08 3.6 -3.6 S
-1059.12 5550.48 7.2 0 S
-1051.92 5550.48 3.6 3.6 S
-1079.28 5554.08 0 10.8 S
-1079.28 5554.08 3.6 -3.6 S
-1082.88 5550.48 3.6 0 S
-1086.48 5550.48 3.6 3.6 S
-1090.08 5554.08 0 10.8 S
-1075.68 5550.48 3.6 3.6 S
-1110.24 5550.48 3.6 3.6 S
-1103.04 5550.48 7.2 0 S
-1099.44 5554.08 3.6 -3.6 S
-1099.44 5554.08 0 7.2 S
-1099.44 5561.28 3.6 3.6 S
-1113.84 5550.48 0 10.8 S
-1113.84 5561.28 3.6 3.6 S
-1103.04 5564.88 7.2 0 S
-1110.24 5564.88 3.6 -3.6 S
-1130.4 5554.08 0 10.8 S
-1130.4 5554.08 3.6 -3.6 S
-1134 5550.48 3.6 0 S
-1137.6 5550.48 3.6 3.6 S
-1141.2 5554.08 0 10.8 S
-1126.8 5550.48 3.6 3.6 S
-1164.96 5536.08 0 28.8 S
-1161.36 5564.88 3.6 -3.6 S
-1154.16 5564.88 7.2 0 S
-1150.56 5561.28 3.6 3.6 S
-1150.56 5554.08 0 7.2 S
-1150.56 5554.08 3.6 -3.6 S
-1154.16 5550.48 7.2 0 S
-1161.36 5550.48 3.6 3.6 S
-1174.32 5554.08 0 7.2 S
-1174.32 5554.08 3.6 -3.6 S
-1177.92 5550.48 7.2 0 S
-1185.12 5550.48 3.6 3.6 S
-1188.72 5554.08 0 7.2 S
-1185.12 5564.88 3.6 -3.6 S
-1177.92 5564.88 7.2 0 S
-1174.32 5561.28 3.6 3.6 S
-1214.64 5536.08 0 28.8 S
-1211.04 5536.08 14.4 0 S
-1225.44 5536.08 3.6 3.6 S
-1229.04 5539.68 0 7.2 S
-1225.44 5550.48 3.6 -3.6 S
-1214.64 5550.48 10.8 0 S
-1242 5564.88 10.8 0 S
-1238.4 5561.28 3.6 3.6 S
-1238.4 5554.08 0 7.2 S
-1238.4 5554.08 3.6 -3.6 S
-1242 5550.48 7.2 0 S
-1249.2 5550.48 3.6 3.6 S
-1238.4 5557.68 14.4 0 S
-1252.8 5557.68 0 -3.6 S
-1265.76 5564.88 10.8 0 S
-1276.56 5564.88 3.6 -3.6 S
-1276.56 5557.68 3.6 3.6 S
-1265.76 5557.68 10.8 0 S
-1262.16 5554.08 3.6 3.6 S
-1262.16 5554.08 3.6 -3.6 S
-1265.76 5550.48 10.8 0 S
-1276.56 5550.48 3.6 3.6 S
-1262.16 5561.28 3.6 3.6 S
-1293.12 5564.88 10.8 0 S
-1303.92 5564.88 3.6 -3.6 S
-1303.92 5557.68 3.6 3.6 S
-1293.12 5557.68 10.8 0 S
-1289.52 5554.08 3.6 3.6 S
-1289.52 5554.08 3.6 -3.6 S
-1293.12 5550.48 10.8 0 S
-1303.92 5550.48 3.6 3.6 S
-1289.52 5561.28 3.6 3.6 S
-1316.88 5550.48 0 10.8 S
-1316.88 5561.28 3.6 3.6 S
-1320.48 5564.88 7.2 0 S
-1327.68 5564.88 3.6 -3.6 S
-1331.28 5550.48 0 10.8 S
-1344.24 5536.08 0 25.2 S
-1344.24 5561.28 3.6 3.6 S
-1340.64 5546.88 7.2 0 S
-1359.36 5536.08 0 25.2 S
-1359.36 5561.28 3.6 3.6 S
-1355.76 5546.88 7.2 0 S
-1370.88 5554.08 0 7.2 S
-1370.88 5554.08 3.6 -3.6 S
-1374.48 5550.48 7.2 0 S
-1381.68 5550.48 3.6 3.6 S
-1385.28 5554.08 0 7.2 S
-1381.68 5564.88 3.6 -3.6 S
-1374.48 5564.88 7.2 0 S
-1370.88 5561.28 3.6 3.6 S
-1004.4 5507.28 3.6 3.6 S
-1004.4 5485.68 3.6 -3.6 S
-1004.4 5485.68 0 21.6 S
-1020.96 5510.88 10.8 0 S
-1017.36 5507.28 3.6 3.6 S
-1017.36 5485.68 0 21.6 S
-1017.36 5485.68 3.6 -3.6 S
-1020.96 5482.08 10.8 0 S
-1041.12 5482.08 3.6 3.6 S
-1044.72 5485.68 0 21.6 S
-1041.12 5510.88 3.6 -3.6 S
-1067.04 5485.68 3.6 -3.6 S
-1070.64 5482.08 10.8 0 S
-1081.44 5482.08 3.6 3.6 S
-1085.04 5485.68 0 7.2 S
-1067.04 5510.88 18 -18 S
-1067.04 5510.88 18 0 S
-1094.4 5507.28 3.6 3.6 S
-1094.4 5485.68 0 21.6 S
-1094.4 5485.68 3.6 -3.6 S
-1098 5482.08 7.2 0 S
-1105.2 5482.08 3.6 3.6 S
-1108.8 5485.68 0 21.6 S
-1105.2 5510.88 3.6 -3.6 S
-1098 5510.88 7.2 0 S
-1094.4 5503.68 14.4 -14.4 S
-1118.16 5507.28 3.6 3.6 S
-1118.16 5485.68 0 21.6 S
-1118.16 5485.68 3.6 -3.6 S
-1121.76 5482.08 7.2 0 S
-1128.96 5482.08 3.6 3.6 S
-1132.56 5485.68 0 21.6 S
-1128.96 5510.88 3.6 -3.6 S
-1121.76 5510.88 7.2 0 S
-1118.16 5503.68 14.4 -14.4 S
-1141.92 5485.68 3.6 -3.6 S
-1145.52 5482.08 7.2 0 S
-1152.72 5482.08 3.6 3.6 S
-1156.32 5485.68 0 21.6 S
-1152.72 5510.88 3.6 -3.6 S
-1145.52 5510.88 7.2 0 S
-1141.92 5507.28 3.6 3.6 S
-1145.52 5496.48 10.8 0 S
-1178.64 5482.08 0 28.8 S
-1178.64 5510.88 10.8 -10.8 S
-1189.44 5500.08 10.8 10.8 S
-1200.24 5482.08 0 28.8 S
-1220.4 5496.48 3.6 3.6 S
-1213.2 5496.48 7.2 0 S
-1209.6 5500.08 3.6 -3.6 S
-1209.6 5500.08 0 7.2 S
-1209.6 5507.28 3.6 3.6 S
-1224 5496.48 0 10.8 S
-1224 5507.28 3.6 3.6 S
-1213.2 5510.88 7.2 0 S
-1220.4 5510.88 3.6 -3.6 S
-1236.96 5482.08 0 25.2 S
-1236.96 5507.28 3.6 3.6 S
-1252.08 5482.08 0 25.2 S
-1252.08 5507.28 3.6 3.6 S
-1248.48 5492.88 7.2 0 S
-1267.2 5510.88 10.8 0 S
-1263.6 5507.28 3.6 3.6 S
-1263.6 5500.08 0 7.2 S
-1263.6 5500.08 3.6 -3.6 S
-1267.2 5496.48 7.2 0 S
-1274.4 5496.48 3.6 3.6 S
-1263.6 5503.68 14.4 0 S
-1278 5503.68 0 -3.6 S
-1290.96 5500.08 0 10.8 S
-1290.96 5500.08 3.6 -3.6 S
-1294.56 5496.48 7.2 0 S
-1287.36 5496.48 3.6 3.6 S
-1324.08 5482.08 0 28.8 S
-1324.08 5482.08 14.4 0 S
-1324.08 5496.48 10.8 0 S
-1351.44 5510.88 10.8 0 S
-1347.84 5507.28 3.6 3.6 S
-1347.84 5500.08 0 7.2 S
-1347.84 5500.08 3.6 -3.6 S
-1351.44 5496.48 7.2 0 S
-1358.64 5496.48 3.6 3.6 S
-1347.84 5503.68 14.4 0 S
-1362.24 5503.68 0 -3.6 S
-1375.2 5482.08 0 25.2 S
-1375.2 5507.28 3.6 3.6 S
-1371.6 5492.88 7.2 0 S
-1390.32 5482.08 0 25.2 S
-1390.32 5507.28 3.6 3.6 S
-1386.72 5492.88 7.2 0 S
-1405.44 5510.88 10.8 0 S
-1401.84 5507.28 3.6 3.6 S
-1401.84 5500.08 0 7.2 S
-1401.84 5500.08 3.6 -3.6 S
-1405.44 5496.48 7.2 0 S
-1412.64 5496.48 3.6 3.6 S
-1401.84 5503.68 14.4 0 S
-1416.24 5503.68 0 -3.6 S
-1429.2 5500.08 0 10.8 S
-1429.2 5500.08 3.6 -3.6 S
-1432.8 5496.48 7.2 0 S
-1425.6 5496.48 3.6 3.6 S
-1462.32 5482.08 0 28.8 S
-1462.32 5510.88 14.4 0 S
-1496.88 5496.48 3.6 3.6 S
-1489.68 5496.48 7.2 0 S
-1486.08 5500.08 3.6 -3.6 S
-1486.08 5500.08 0 7.2 S
-1486.08 5507.28 3.6 3.6 S
-1500.48 5496.48 0 10.8 S
-1500.48 5507.28 3.6 3.6 S
-1489.68 5510.88 7.2 0 S
-1496.88 5510.88 3.6 -3.6 S
-1524.24 5496.48 3.6 3.6 S
-1517.04 5496.48 7.2 0 S
-1513.44 5500.08 3.6 -3.6 S
-1513.44 5500.08 0 7.2 S
-1513.44 5507.28 3.6 3.6 S
-1517.04 5510.88 7.2 0 S
-1524.24 5510.88 3.6 -3.6 S
-1513.44 5518.08 3.6 3.6 S
-1517.04 5521.68 7.2 0 S
-1524.24 5521.68 3.6 -3.6 S
-1527.84 5496.48 0 21.6 S
-1540.8 5510.88 10.8 0 S
-1537.2 5507.28 3.6 3.6 S
-1537.2 5500.08 0 7.2 S
-1537.2 5500.08 3.6 -3.6 S
-1540.8 5496.48 7.2 0 S
-1548 5496.48 3.6 3.6 S
-1537.2 5503.68 14.4 0 S
-1551.6 5503.68 0 -3.6 S
-1564.56 5510.88 10.8 0 S
-1575.36 5510.88 3.6 -3.6 S
-1575.36 5503.68 3.6 3.6 S
-1564.56 5503.68 10.8 0 S
-1560.96 5500.08 3.6 3.6 S
-1560.96 5500.08 3.6 -3.6 S
-1564.56 5496.48 10.8 0 S
-1575.36 5496.48 3.6 3.6 S
-1560.96 5507.28 3.6 3.6 S
-1004.4 5431.68 0 25.2 S
-1004.4 5431.68 3.6 -3.6 S
-1008 5428.08 10.8 0 S
-1018.8 5428.08 3.6 3.6 S
-1022.4 5431.68 0 25.2 S
-1004.4 5442.48 18 0 S
-1031.76 5428.08 7.2 0 S
-1035.36 5428.08 0 28.8 S
-1031.76 5456.88 7.2 0 S
-1051.92 5456.88 10.8 0 S
-1048.32 5453.28 3.6 3.6 S
-1048.32 5431.68 0 21.6 S
-1048.32 5431.68 3.6 -3.6 S
-1051.92 5428.08 10.8 0 S
-1072.08 5442.48 14.4 0 S
-1099.44 5456.88 7.2 0 S
-1103.04 5428.08 0 28.8 S
-1095.84 5435.28 7.2 -7.2 S
-1116 5456.88 3.6 0 S
-1132.56 5456.88 7.2 0 S
-1136.16 5428.08 0 28.8 S
-1128.96 5435.28 7.2 -7.2 S
-1149.12 5456.88 3.6 0 S
-1162.08 5453.28 3.6 3.6 S
-1162.08 5431.68 0 21.6 S
-1162.08 5431.68 3.6 -3.6 S
-1165.68 5428.08 7.2 0 S
-1172.88 5428.08 3.6 3.6 S
-1176.48 5431.68 0 21.6 S
-1172.88 5456.88 3.6 -3.6 S
-1165.68 5456.88 7.2 0 S
-1162.08 5449.68 14.4 -14.4 S
-1018.8 5590.08 3.6 3.6 S
-1008 5590.08 10.8 0 S
-1004.4 5593.68 3.6 -3.6 S
-1004.4 5593.68 0 7.2 S
-1004.4 5600.88 3.6 3.6 S
-1008 5604.48 10.8 0 S
-1018.8 5604.48 3.6 3.6 S
-1022.4 5608.08 0 7.2 S
-1018.8 5618.88 3.6 -3.6 S
-1008 5618.88 10.8 0 S
-1004.4 5615.28 3.6 3.6 S
-1031.76 5593.68 0 21.6 S
-1031.76 5593.68 3.6 -3.6 S
-1035.36 5590.08 7.2 0 S
-1042.56 5590.08 3.6 3.6 S
-1046.16 5593.68 0 21.6 S
-1042.56 5618.88 3.6 -3.6 S
-1035.36 5618.88 7.2 0 S
-1031.76 5615.28 3.6 3.6 S
-1055.52 5590.08 0 28.8 S
-1055.52 5618.88 14.4 0 S
-1082.88 5590.08 0 28.8 S
-1093.68 5590.08 3.6 3.6 S
-1097.28 5593.68 0 21.6 S
-1093.68 5618.88 3.6 -3.6 S
-1079.28 5618.88 14.4 0 S
-1079.28 5590.08 14.4 0 S
-1106.64 5604.48 10.8 0 S
-1106.64 5618.88 14.4 0 S
-1106.64 5590.08 0 28.8 S
-1106.64 5590.08 14.4 0 S
-1130.4 5590.08 14.4 0 S
-1144.8 5590.08 3.6 3.6 S
-1148.4 5593.68 0 7.2 S
-1144.8 5604.48 3.6 -3.6 S
-1134 5604.48 10.8 0 S
-1134 5590.08 0 28.8 S
-1134 5604.48 14.4 14.4 S
-77 73 r5
-885.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-885.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-1238.4 3440.88 43.2 43.2 re
-f
-255 G
-1272.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-993.6 3462.48 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-984.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1648.8 2958.48 43.2 43.2 re
-f
-255 G
-1683 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1396.8 2958.48 43.2 43.2 re
-f
-255 G
-1431 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4294.8 4470.48 43.2 43.2 re
-f
-255 G
-4329 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4302 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4293 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4266 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4257 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4230 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4194 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4185 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4158 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4149 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4122 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4113 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4086 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4077 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4050 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4041 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4014 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4005 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3942 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3933 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3906 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3897 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3834 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3798 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3789 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3762 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3753 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3726 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3717 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3690 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3681 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3654 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3645 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3618 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3609 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3582 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3573 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3546 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3537 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3510 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3501 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3474 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3465 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3438 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3429 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3402 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3393 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3366 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3330 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3321 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3294 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3222 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3213 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3150 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3141 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3078 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3069 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2790 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2781 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2394 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2322 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2313 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2142 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2133 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2070 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2061 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1998 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1989 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1926 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1917 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1854 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1845 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1782 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1773 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1710 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1638 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1629 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4582.8 4528.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4575.6 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-3009.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-3002.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1425.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1418.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1396.8 3174.48 43.2 43.2 re
-f
-255 G
-1431 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2692.8 3174.48 43.2 43.2 re
-f
-255 G
-2727 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2998.8 3552.48 43.2 43.2 re
-f
-255 G
-3033 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 5226.48 43.2 43.2 re
-f
-255 G
-1071 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5212.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 4996.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 4996.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-931.68 5284.08 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 5284.08 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-931.68 4959.36 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 4959.36 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-993.6 5341.68 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 5341.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-993.6 4901.76 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 4901.76 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-2728.8 3552.48 43.2 43.2 re
-f
-255 G
-2763 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2844 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4564.8 5226.48 43.2 43.2 re
-f
-255 G
-4599 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 4121.28 57.5999 57.5999 re
-f
-255 G
-4637.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4564.8 4794.48 43.2 43.2 re
-f
-255 G
-4599 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4456.8 4290.48 43.2 43.2 re
-f
-255 G
-4491 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4716 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-799.199 3696.48 50.3999 50.3999 re
-f
-255 G
-839.52 3721.68 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-849.6 3594.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-839.52 3594.24 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-920.16 3756.96 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3756.96 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-920.16 3558.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3558.24 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-3826.8 3264.48 43.2 43.2 re
-f
-255 G
-3861 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 3286.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2566.8 3498.48 43.2 43.2 re
-f
-255 G
-2601 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 5190.48 43.2 43.2 re
-f
-255 G
-3663 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2800.8 3768.48 43.2 43.2 re
-f
-255 G
-2835 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2772 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5104.8 5298.48 43.2 43.2 re
-f
-255 G
-5139 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5241.6 2944.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2944.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-4215.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3934.8 2976.48 43.2 43.2 re
-f
-255 G
-3969 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 2998.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1242 3624.48 43.2 43.2 re
-f
-255 G
-1276.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-997.2 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-988.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2422.8 3786.48 43.2 43.2 re
-f
-255 G
-2457 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4503.6 3041.28 57.5999 57.5999 re
-f
-255 G
-4547.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4489.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4475.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3967.2 3638.88 50.3999 50.3999 re
-f
-255 G
-4007.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1648.8 3336.48 43.2 43.2 re
-f
-255 G
-1683 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1159.2 3260.88 50.3999 50.3999 re
-f
-255 G
-1199.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1281.6 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1271.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2962.8 5190.48 43.2 43.2 re
-f
-255 G
-2997 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3006 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2997 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4258.8 4128.48 43.2 43.2 re
-f
-255 G
-4293 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4374 4150.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4365 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1018.8 3264.48 43.2 43.2 re
-f
-255 G
-1053 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1062 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1053 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3967.2 4052.88 50.3999 50.3999 re
-f
-255 G
-4007.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-993.6 3916.08 43.2 43.2 re
-f
-255 G
-1027.8 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1027.8 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1029.6 4769.28 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4769.28 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1029.6 4092.48 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4092.48 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1047.6 4574.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4574.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4538.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4538.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4502.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4502.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4466.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4466.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4430.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4430.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4394.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4394.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4358.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4358.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4322.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4322.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-997.199 4261.68 50.3999 50.3999 re
-f
-255 G
-1037.52 4286.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2422.8 3948.48 43.2 43.2 re
-f
-255 G
-2457 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1414.8 3732.48 43.2 43.2 re
-f
-255 G
-1449 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1458 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3427.2 4160.88 50.3999 50.3999 re
-f
-255 G
-3467.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4186.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2692.8 2958.48 43.2 43.2 re
-f
-255 G
-2727 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2170.8 5226.48 43.2 43.2 re
-f
-255 G
-2205 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4215.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-820.8 3916.08 43.2 43.2 re
-f
-255 G
-855 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-864 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-855 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1540.8 3174.48 43.2 43.2 re
-f
-255 G
-1575 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1584 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1575 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 5190.48 43.2 43.2 re
-f
-255 G
-4455 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 5226.48 43.2 43.2 re
-f
-255 G
-3303 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 4794.48 43.2 43.2 re
-f
-255 G
-3951 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 4758.48 43.2 43.2 re
-f
-255 G
-4311 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 4758.48 43.2 43.2 re
-f
-255 G
-3807 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 5190.48 43.2 43.2 re
-f
-255 G
-3807 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 5226.48 43.2 43.2 re
-f
-255 G
-3951 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 5190.48 43.2 43.2 re
-f
-255 G
-4311 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 4758.48 43.2 43.2 re
-f
-255 G
-4455 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 4794.48 43.2 43.2 re
-f
-255 G
-3303 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 4758.48 43.2 43.2 re
-f
-255 G
-3663 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3387.6 3041.28 57.5999 57.5999 re
-f
-255 G
-3431.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3373.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3359.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3301.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3287.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2548.8 3174.48 43.2 43.2 re
-f
-255 G
-2583 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2592 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2818.8 5190.48 43.2 43.2 re
-f
-255 G
-2853 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3978 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4482 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4473 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3294 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 4060.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4060.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3780 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3771 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4500 4078.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4491 4078.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-5112 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5103 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4536 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4527 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4752 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4176 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4608 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3348 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3339 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4032 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1710 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2160 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2151 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2772 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2808 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2394 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2260.8 3592.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 3592.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3528 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4230 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2718 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3672 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1908 3466.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3466.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1368 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1980 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2412 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3042 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1008 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-999 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3952.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3945.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4906.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4899.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5032.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5032.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4312.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4305.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5032.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5025.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4744.8 5194.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4737.6 5194.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3384 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1918.8 5068.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1911.6 5068.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3970.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3970.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2854.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2847.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4240.8 5500.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4233.6 5500.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3880.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3873.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5410.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5410.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5104.8 5518.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5097.6 5518.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4060.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4053.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4384.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4377.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4834.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4827.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4438.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4431.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1846.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1839.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2188.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2181.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 5176.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 5176.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 4852.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 4852.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4096.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4089.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 5212.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 5212.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4132.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4125.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 3952.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 3952.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 5446.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 5446.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2412 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1126.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1119.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4636.8 3610.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4629.6 3610.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1234.8 3016.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1227.6 3016.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1756.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1749.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2260.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1980 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2124 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1828.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1821.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3844.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3837.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3808.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3801.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2314.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2307.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2530.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2764.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2757.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1486.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1479.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1594.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1587.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2458.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2451.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4708.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4708.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2772 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2962.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1900.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1893.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2026.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2019.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2034 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2602.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1990.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1983.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4258.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4258.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2710.8 4276.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2703.6 4276.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1522.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1515.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2782.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2775.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2134.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2127.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3034.8 3844.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3027.6 3844.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2548.8 4060.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2541.6 4060.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 4006.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 4006.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3250.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3243.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3214.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3207.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2890.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2883.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2098.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2091.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2080.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2073.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4402.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4402.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4438.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4438.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3538.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3531.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2844 3718.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3718.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2530.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3898.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3891.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3834 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3772.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3765.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3934.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3927.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2638.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2631.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2818.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2811.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2962.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3070.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3063.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2592 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3142.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3135.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1216.8 4600.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1209.6 4600.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1321.2 4506.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1314 4506.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3682.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3675.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3322.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3315.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3358.8 4114.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3351.6 4114.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3394.8 4186.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3387.6 4186.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1198.8 3718.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1191.6 3718.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3430.8 3700.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3423.6 3700.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2044.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2037.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3790.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3790.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3232.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3232.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4258.8 3304.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4251.6 3304.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2476.8 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2469.6 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3466.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3466.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-799.2 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-792 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1386 3826.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3826.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-993.6 3811.68 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-986.4 3811.68 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1094.4 3462.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1087.2 3462.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4716 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3366 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-7.2 w
-77 73 r5
-853.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-853.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4564.8 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-2977.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1393.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 5284.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 4959.36 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 5341.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 4901.76 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3721.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3594.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3756.96 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3558.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2944.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4543.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4471.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1195.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1267.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4769.28 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4092.48 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4574.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4538.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4502.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4466.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4430.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4394.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4358.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4322.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4286.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3427.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3355.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3283.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Page: 5 5
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-7.2 w
-1 J
-142 32 r3
-1123.2 4430.88 -100.8 0 S
-1184.4 4492.08 -61.2 -61.2 S
-18 w
-932.4 3394.08 0 -504 S
-932.4 3718.08 18 18 S
-932.4 3610.08 0 108 S
-950.4 3592.08 -18 18 S
-950.4 3520.08 0 72 S
-932.4 3502.08 18 18 S
-932.4 3394.08 0 108 S
-0.72 w
-752.4 5626.08 4536 0 S
-7.2 w
-3200.4 3934.08 0 -270 S
-3056.4 3736.08 0 342 S
-3092.4 3700.08 -36 36 S
-3092.4 3574.08 0 126 S
-3020.4 3862.08 0 -18 S
-3020.4 3970.08 0 -108 S
-2300.4 4492.08 -18 -18 S
-1940.4 3862.08 0 -108 S
-2282.4 4222.08 0 -360 S
-2282.4 4474.08 0 -252 S
-2948.4 3862.08 0 108 S
-18 w
-2750.4 3898.08 0 -108 S
-7.2 w
-2336.4 4456.08 0 108 S
-2372.4 4420.08 -36 36 S
-2372.4 4384.08 0 36 S
-2336.4 4348.08 36 36 S
-2336.4 3862.08 0 486 S
-2372.4 3826.08 -36 36 S
-1868.4 3754.08 0 72 S
-1796.4 4546.08 0 360 S
-1814.4 4528.08 -18 18 S
-1832.4 4510.08 -18 18 S
-1832.4 3862.08 0 648 S
-1796.4 3826.08 36 36 S
-1796.4 3754.08 0 72 S
-1724.4 4546.08 0 162 S
-1760.4 4510.08 -36 36 S
-1760.4 3862.08 0 648 S
-1724.4 3826.08 36 36 S
-1724.4 3754.08 0 72 S
-1652.4 4546.08 0 90 S
-1688.4 4510.08 -36 36 S
-1688.4 3862.08 0 648 S
-1652.4 3826.08 36 36 S
-1652.4 3754.08 0 72 S
-1580.4 4474.08 0 468 S
-1598.4 4456.08 -18 18 S
-1616.4 4438.08 -18 18 S
-1616.4 3862.08 0 576 S
-1580.4 3826.08 36 36 S
-1580.4 3754.08 0 72 S
-1544.4 3862.08 0 900 S
-1508.4 3826.08 36 36 S
-1508.4 3754.08 0 72 S
-1436.4 3754.08 0 72 S
-1015.2 3934.08 64.8 -64.8 S
-1080 3869.28 0 -406.8 S
-1436.4 3826.08 36 36 S
-2750.4 4672.08 0 738 S
-2552.4 4564.08 0 108 S
-2750.4 5410.08 -54 54 S
-2516.4 4492.08 0 270 S
-2660.4 5428.08 -36 36 S
-2660.4 4762.08 0 666 S
-2588.4 5428.08 -36 36 S
-2588.4 4798.08 0 630 S
-2480.4 4564.08 0 234 S
-2444.4 4492.08 0 486 S
-2516.4 5428.08 -36 36 S
-2516.4 5050.08 0 378 S
-2444.4 4978.08 72 72 S
-2444.4 5428.08 -36 36 S
-2444.4 5014.08 0 414 S
-2408.4 4978.08 36 36 S
-2408.4 4564.08 0 414 S
-2372.4 4492.08 0 936 S
-2372.4 5428.08 -36 36 S
-2192.4 4906.08 0 342 S
-2300.4 4492.08 0 414 S
-2336.4 4564.08 0 162 S
-2228.4 5428.08 36 36 S
-2228.4 5410.08 0 18 S
-2228.4 4726.08 0 684 S
-2336.4 4798.08 0 450 S
-2264.4 4564.08 0 234 S
-32.4 w
-4766.4 3664.08 72 -72 S
-4766.4 3790.08 0 -126 S
-4766.4 3556.08 0 -108 S
-4316.4 3790.08 0 108 S
-4316.4 3556.08 0 -108 S
-4766.4 3898.08 0 -108 S
-4388.4 3898.08 0 -342 S
-4460.4 3070.08 0 126 S
-3956.4 3286.08 0 -90 S
-3848.4 2998.08 0 198 S
-3344.4 3196.08 0 -126 S
-4694.4 3898.08 0 -828 S
-18 w
-3326.4 5140.08 0 -288 S
-3326.4 4852.08 36 -36 S
-3938.4 5032.08 0 108 S
-4298.4 5068.08 0 72 S
-4730.4 4816.08 -36 36 S
-4694.4 4852.08 0 288 S
-4658.4 4816.08 -36 36 S
-4622.4 4852.08 0 72 S
-4622.4 4924.08 0 72 S
-4622.4 4996.08 -36 36 S
-4010.4 5248.08 0 -126 S
-4010.4 4978.08 0 -162 S
-4010.4 4816.08 0 -162 S
-4010.4 4654.08 18 -18 S
-4028.4 4636.08 0 -144 S
-4010.4 5122.08 -36 -36 S
-3974.4 5086.08 0 -90 S
-3974.4 4996.08 36 -36 S
-2174.4 5464.08 -36 -36 S
-2138.4 5428.08 0 -450 S
-7.2 w
-979.2 3642.48 -3.6 -3.6 S
-18 w
-1688.4 4564.08 0 414 S
-2192.4 5464.08 -18 0 S
-2750.4 3376.08 0 414 S
-2786.4 2980.08 0 -144 S
-2012.4 4186.08 0 -144 S
-32.4 w
-4316.4 3304.08 0 -162 S
-18 w
-2156.4 3898.08 0 -144 S
-2426.4 4186.08 -54 -54 S
-2372.4 4132.08 0 -234 S
-2444.4 4186.08 -18 0 S
-1436.4 3898.08 0 288 S
-1364.4 3826.08 72 72 S
-7.2 w
-1220.4 3430.08 36 36 S
-18 w
-1364.4 3682.08 0 144 S
-3506.4 5032.08 0 -90 S
-4208.4 4564.08 0 378 S
-2696.4 4942.08 0 306 S
-3506.4 5464.08 36 0 S
-3542.4 5464.08 18 -18 S
-3560.4 5446.08 0 -360 S
-3560.4 5086.08 -54 -54 S
-3650.4 5050.08 0 -72 S
-3236.4 5410.08 54 54 S
-3290.4 5032.08 -54 54 S
-3236.4 5086.08 0 324 S
-4388.4 3898.08 0 144 S
-4388.4 4042.08 -108 108 S
-2822.4 3790.08 0 -216 S
-3236.4 3970.08 0 -180 S
-3236.4 3790.08 0 -216 S
-1886.4 3466.08 0 -126 S
-1346.4 2836.08 0 144 S
-1958.4 2980.08 0 -144 S
-2390.4 2980.08 0 -144 S
-3020.4 3790.08 0 -216 S
-3020.4 3574.08 0 -198 S
-2822.4 3574.08 36 -36 S
-2858.4 3538.08 0 -504 S
-2858.4 3034.08 -54 -54 S
-2804.4 2980.08 -18 0 S
-1958.4 3124.08 0 72 S
-7.2 w
-2030.4 3196.08 0 -216 S
-18 w
-2390.4 3196.08 0 -36 S
-7.2 w
-4442.4 4060.08 -90 90 S
-784.8 3682.08 0 -396 S
-0.72 w
-752.4 2792.88 0 2833.2 S
-5288.4 5626.08 0 -2833.2 S
-18 w
-950.4 3736.08 0 54 S
-950.4 3790.08 -18 18 S
-932.4 3808.08 0 36 S
-7.2 w
-2984.4 5212.08 0 -486 S
-2840.4 5212.08 0 72 S
-4802.4 5248.08 54 54 S
-4856.4 5302.08 0 252 S
-4442.4 5554.08 0 -54 S
-3794.4 5554.08 0 -54 S
-4082.4 5248.08 0 72 S
-4082.4 5320.08 -36 36 S
-4046.4 5356.08 0 198 S
-4298.4 5212.08 -72 72 S
-4226.4 5284.08 0 216 S
-3650.4 5212.08 0 234 S
-4442.4 4780.08 -18 -18 S
-4424.4 4762.08 0 -72 S
-3434.4 4690.08 0 126 S
-3434.4 5032.08 0 -144 S
-3650.4 4888.08 0 -108 S
-4298.4 4780.08 0 108 S
-4082.4 4888.08 0 144 S
-4442.4 4996.08 0 72 S
-3524.4 4186.08 0 -216 S
-4802.4 4816.08 18 -18 S
-4820.4 4798.08 0 -162 S
-4370.4 4636.08 0 216 S
-4370.4 4852.08 36 36 S
-4406.4 4888.08 0 54 S
-4406.4 4942.08 36 36 S
-4442.4 4978.08 0 18 S
-4118.4 5014.08 0 18 S
-4118.4 5032.08 0 54 S
-4082.4 4816.08 72 72 S
-4154.4 4888.08 0 90 S
-4154.4 4978.08 -36 36 S
-3974.4 4636.08 0 234 S
-3992.4 4564.08 0 54 S
-3974.4 4870.08 -18 18 S
-3956.4 4888.08 -18 0 S
-3830.4 4888.08 0 90 S
-3830.4 4978.08 18 18 S
-3848.4 4996.08 0 144 S
-3848.4 5140.08 -54 54 S
-3794.4 5194.08 0 18 S
-3992.4 4618.08 -18 18 S
-3866.4 4690.08 0 558 S
-3956.4 4492.08 0 108 S
-3956.4 4600.08 -90 90 S
-3848.4 4564.08 0 72 S
-3848.4 4636.08 -54 54 S
-3794.4 4690.08 0 90 S
-3812.4 4636.08 -90 90 S
-3722.4 4726.08 0 54 S
-3722.4 4780.08 -72 0 S
-3812.4 4492.08 0 144 S
-3380.4 4186.08 0 72 S
-3380.4 4492.08 0 -126 S
-3380.4 4366.08 0 -108 S
-3344.4 4564.08 0 -306 S
-3344.4 4258.08 0 -36 S
-3308.4 4186.08 0 -144 S
-3308.4 4492.08 0 -306 S
-3344.4 4114.08 0 108 S
-3272.4 4564.08 0 -540 S
-3272.4 4024.08 54 -54 S
-4442.4 3952.08 0 108 S
-18 w
-2390.4 3160.08 0 -36 S
-7.2 w
-1112.4 3844.08 0 54 S
-1256.4 3898.08 0 90 S
-1256.4 3286.08 54 54 S
-1310.4 3340.08 0 1080 S
-1886.4 3574.08 0 54 S
-2012.4 3628.08 0 126 S
-2444.4 4114.08 72 72 S
-2444.4 3970.08 0 144 S
-1220.4 3430.08 0 -414 S
-18 w
-932.4 2890.08 54 -54 S
-7.2 w
-1184.4 4492.08 18 18 S
-1742.4 2980.08 0 -90 S
-2246.4 2890.08 0 90 S
-18 w
-2102.4 2980.08 0 144 S
-7.2 w
-1814.4 2980.08 0 90 S
-2174.4 3070.08 0 -90 S
-1832.4 4564.08 0 684 S
-1868.4 4492.08 0 720 S
-1904.4 4564.08 0 504 S
-1940.4 4492.08 0 684 S
-32.4 w
-4388.4 3268.08 72 -72 S
-4388.4 3556.08 0 -288 S
-7.2 w
-2318.4 3628.08 108 -108 S
-2318.4 4420.08 0 -792 S
-5018.4 4852.08 0 -432 S
-5054.4 4888.08 -36 -36 S
-2462.4 3196.08 0 -216 S
-1112.4 3178.08 0 666 S
-1040.4 3106.08 72 72 S
-1040.4 3070.08 0 36 S
-1256.4 3988.08 0 864 S
-18 w
-3362.4 5320.08 0 -72 S
-7.2 w
-4856.4 5140.08 0 72 S
-5018.4 5140.08 -162 0 S
-5018.4 5068.08 0 72 S
-5090.4 5068.08 -72 0 S
-5126.4 5032.08 -36 36 S
-4856.4 5212.08 36 72 S
-2552.4 4726.08 0 522 S
-4856.4 4960.08 0 -234 S
-4982.4 4960.08 -126 0 S
-4910.4 5032.08 72 72 S
-4730.4 5194.08 0 -162 S
-4910.4 5410.08 0 -90 S
-4910.4 5320.08 72 -72 S
-5090.4 5356.08 36 -36 S
-5090.4 5518.08 0 -162 S
-18 w
-4658.4 5302.08 -72 72 S
-4658.4 5248.08 0 54 S
-4586.4 5464.08 0 -90 S
-4154.4 5464.08 0 -90 S
-3938.4 5464.08 0 -144 S
-4298.4 5500.08 0 -180 S
-4730.4 5248.08 0 72 S
-4514.4 4726.08 0 162 S
-4478.4 4690.08 36 36 S
-4478.4 4312.08 0 378 S
-28.8 w
-4766.4 4150.08 126 0 S
-4910.4 4006.08 0 918 S
-18 w
-5054.4 5032.08 0 -72 S
-5054.4 5176.08 0 -72 S
-5054.4 5320.08 0 -72 S
-32.4 w
-4694.4 4312.08 0 -162 S
-4478.4 4312.08 0 -234 S
-3758.4 3376.08 0 -180 S
-3812.4 3430.08 -54 -54 S
-3812.4 3664.08 0 -234 S
-3812.4 4078.08 0 -414 S
-4694.4 4060.08 0 -162 S
-4838.4 3988.08 0 -252 S
-4694.4 4132.08 144 -144 S
-4694.4 4150.08 0 -18 S
-4982.4 3808.08 -72 0 S
-18 w
-5054.4 4960.08 72 -72 S
-32.4 w
-4910.4 3448.08 0 558 S
-4910.4 3448.08 0 -252 S
-4982.4 3448.08 -72 0 S
-3848.4 3286.08 0 90 S
-3272.4 3376.08 0 -306 S
-4316.4 3142.08 72 -72 S
-18 w
-2156.4 3898.08 0 126 S
-7.2 w
-2012.4 3754.08 0 198 S
-2012.4 3952.08 72 72 S
-2084.4 4024.08 0 162 S
-2084.4 3754.08 0 216 S
-2084.4 3970.08 18 18 S
-2102.4 3988.08 0 72 S
-2102.4 4060.08 54 54 S
-2156.4 4114.08 0 72 S
-1832.4 3826.08 0 -144 S
-1832.4 3682.08 54 -54 S
-1868.4 4186.08 0 -324 S
-2588.4 3970.08 0 162 S
-2012.4 4492.08 0 -234 S
-2048.4 4222.08 0 -126 S
-2660.4 3970.08 0 126 S
-2012.4 4258.08 36 -36 S
-2048.4 4564.08 0 -306 S
-2696.4 4276.08 0 -270 S
-2696.4 4006.08 36 -36 S
-1508.4 4186.08 0 126 S
-2768.4 4312.08 0 -306 S
-2768.4 4006.08 36 -36 S
-2120.4 4564.08 0 -252 S
-2534.4 4132.08 0 -72 S
-1652.4 4096.08 0 90 S
-2588.4 4186.08 -54 -54 S
-1868.4 3862.08 -36 -36 S
-3236.4 4042.08 0 144 S
-1976.4 4132.08 0 432 S
-1940.4 4186.08 0 -180 S
-2228.4 3826.08 54 -54 S
-2282.4 3772.08 0 -108 S
-2804.4 4546.08 0 540 S
-2768.4 4510.08 36 36 S
-2228.4 4186.08 0 -360 S
-1580.4 4186.08 0 -324 S
-1580.4 3862.08 -36 -36 S
-1544.4 3826.08 0 -198 S
-2876.4 3628.08 0 342 S
-2156.4 4888.08 -90 90 S
-2066.4 4978.08 0 36 S
-2264.4 5014.08 0 234 S
-2084.4 4186.08 0 162 S
-2192.4 4348.08 0 162 S
-2192.4 4510.08 -18 18 S
-2174.4 4528.08 -18 18 S
-2156.4 4546.08 0 342 S
-2264.4 4456.08 -36 -36 S
-1796.4 4402.08 0 -216 S
-2264.4 4564.08 0 -108 S
-1724.4 4438.08 0 -252 S
-3524.4 4240.08 0 234 S
-2516.4 3970.08 0 -216 S
-3884.4 3754.08 0 738 S
-3776.4 4114.08 0 450 S
-3758.4 3628.08 0 468 S
-3758.4 4096.08 18 18 S
-3920.4 4384.08 0 180 S
-2588.4 4492.08 0 -108 S
-2660.4 4186.08 0 216 S
-2660.4 4402.08 -36 36 S
-2624.4 4438.08 0 54 S
-2624.4 4492.08 0 18 S
-2624.4 4510.08 -36 36 S
-2588.4 4546.08 0 54 S
-2588.4 4600.08 0 54 S
-2588.4 4654.08 36 36 S
-2624.4 4690.08 0 360 S
-2408.4 5050.08 0 198 S
-2480.4 5086.08 0 162 S
-2732.4 4186.08 0 234 S
-2732.4 4420.08 36 36 S
-2768.4 4456.08 0 54 S
-3164.4 3970.08 36 -36 S
-2948.4 4078.08 0 108 S
-3092.4 4186.08 -108 -108 S
-2984.4 4078.08 0 -18 S
-2984.4 4060.08 0 -1170 S
-18 w
-2570.4 3124.08 0 -144 S
-7.2 w
-3128.4 4150.08 36 36 S
-3128.4 3070.08 0 1080 S
-1310.4 4502.88 -3.6 3.6 S
-2246.4 3196.08 0 396 S
-1310.4 4420.08 0 82.8 S
-1202.4 4510.08 0 90 S
-3668.4 4348.08 0 144 S
-2318.4 3196.08 0 -72 S
-2786.4 3124.08 0 72 S
-3416.4 4456.08 0 -756 S
-3452.4 4492.08 -36 -36 S
-1184.4 3718.08 0 -432 S
-2030.4 3430.08 0 -234 S
-3326.4 3862.08 0 -432 S
-4172.4 3232.08 0 558 S
-1814.4 3196.08 126 126 S
-1940.4 3322.08 0 18 S
-4532.4 3340.08 0 558 S
-4244.4 3556.08 0 -252 S
-2462.4 3286.08 0 -90 S
-2786.4 3466.08 0 -270 S
-4622.4 3610.08 0 -54 S
-18 w
-1364.4 3696.48 0 -126 S
-1364.4 3570.48 3.6 -3.6 S
-7.2 w
-824.4 3721.68 -39.6 -39.6 S
-0.72 w
-5288.4 2792.88 -4536 0 S
-18 w
-842.4 3937.68 90 -90 S
-7.2 w
-979.2 3811.68 0 -169.2 S
-18 w
-1436.4 4186.08 0 288 S
-1436.4 4474.08 18 18 S
-1454.4 4492.08 0 72 S
-1454.4 4564.08 -18 18 S
-1436.4 4582.08 0 396 S
-7.2 w
-1472.4 3862.08 0 594 S
-1472.4 4456.08 18 18 S
-1490.4 4474.08 0 180 S
-1490.4 4654.08 -18 18 S
-5.76 w
-1166.4 5446.08 0 -28.8 S
-1166.4 5446.08 14.4 0 S
-1166.4 5431.68 10.8 0 S
-1193.76 5417.28 10.8 0 S
-1190.16 5420.88 3.6 -3.6 S
-1190.16 5428.08 0 -7.2 S
-1190.16 5428.08 3.6 3.6 S
-1193.76 5431.68 7.2 0 S
-1200.96 5431.68 3.6 -3.6 S
-1190.16 5424.48 14.4 0 S
-1204.56 5424.48 0 3.6 S
-1217.52 5428.08 0 -10.8 S
-1217.52 5428.08 3.6 3.6 S
-1221.12 5431.68 7.2 0 S
-1213.92 5431.68 3.6 -3.6 S
-1241.28 5428.08 0 -10.8 S
-1241.28 5428.08 3.6 3.6 S
-1244.88 5431.68 3.6 0 S
-1248.48 5431.68 3.6 -3.6 S
-1252.08 5428.08 0 -10.8 S
-1237.68 5431.68 3.6 -3.6 S
-1272.24 5431.68 3.6 -3.6 S
-1265.04 5431.68 7.2 0 S
-1261.44 5428.08 3.6 3.6 S
-1261.44 5428.08 0 -7.2 S
-1261.44 5420.88 3.6 -3.6 S
-1275.84 5431.68 0 -10.8 S
-1275.84 5420.88 3.6 -3.6 S
-1265.04 5417.28 7.2 0 S
-1272.24 5417.28 3.6 3.6 S
-1292.4 5428.08 0 -10.8 S
-1292.4 5428.08 3.6 3.6 S
-1296 5431.68 3.6 0 S
-1299.6 5431.68 3.6 -3.6 S
-1303.2 5428.08 0 -10.8 S
-1288.8 5431.68 3.6 -3.6 S
-1326.96 5446.08 0 -28.8 S
-1323.36 5417.28 3.6 3.6 S
-1316.16 5417.28 7.2 0 S
-1312.56 5420.88 3.6 -3.6 S
-1312.56 5428.08 0 -7.2 S
-1312.56 5428.08 3.6 3.6 S
-1316.16 5431.68 7.2 0 S
-1323.36 5431.68 3.6 -3.6 S
-1336.32 5428.08 0 -7.2 S
-1336.32 5428.08 3.6 3.6 S
-1339.92 5431.68 7.2 0 S
-1347.12 5431.68 3.6 -3.6 S
-1350.72 5428.08 0 -7.2 S
-1347.12 5417.28 3.6 3.6 S
-1339.92 5417.28 7.2 0 S
-1336.32 5420.88 3.6 -3.6 S
-1376.64 5446.08 0 -28.8 S
-1373.04 5446.08 14.4 0 S
-1387.44 5446.08 3.6 -3.6 S
-1391.04 5442.48 0 -7.2 S
-1387.44 5431.68 3.6 3.6 S
-1376.64 5431.68 10.8 0 S
-1404 5417.28 10.8 0 S
-1400.4 5420.88 3.6 -3.6 S
-1400.4 5428.08 0 -7.2 S
-1400.4 5428.08 3.6 3.6 S
-1404 5431.68 7.2 0 S
-1411.2 5431.68 3.6 -3.6 S
-1400.4 5424.48 14.4 0 S
-1414.8 5424.48 0 3.6 S
-1427.76 5417.28 10.8 0 S
-1438.56 5417.28 3.6 3.6 S
-1438.56 5424.48 3.6 -3.6 S
-1427.76 5424.48 10.8 0 S
-1424.16 5428.08 3.6 -3.6 S
-1424.16 5428.08 3.6 3.6 S
-1427.76 5431.68 10.8 0 S
-1438.56 5431.68 3.6 -3.6 S
-1424.16 5420.88 3.6 -3.6 S
-1455.12 5417.28 10.8 0 S
-1465.92 5417.28 3.6 3.6 S
-1465.92 5424.48 3.6 -3.6 S
-1455.12 5424.48 10.8 0 S
-1451.52 5428.08 3.6 -3.6 S
-1451.52 5428.08 3.6 3.6 S
-1455.12 5431.68 10.8 0 S
-1465.92 5431.68 3.6 -3.6 S
-1451.52 5420.88 3.6 -3.6 S
-1478.88 5431.68 0 -10.8 S
-1478.88 5420.88 3.6 -3.6 S
-1482.48 5417.28 7.2 0 S
-1489.68 5417.28 3.6 3.6 S
-1493.28 5431.68 0 -10.8 S
-1506.24 5446.08 0 -25.2 S
-1506.24 5420.88 3.6 -3.6 S
-1502.64 5435.28 7.2 0 S
-1521.36 5446.08 0 -25.2 S
-1521.36 5420.88 3.6 -3.6 S
-1517.76 5435.28 7.2 0 S
-1532.88 5428.08 0 -7.2 S
-1532.88 5428.08 3.6 3.6 S
-1536.48 5431.68 7.2 0 S
-1543.68 5431.68 3.6 -3.6 S
-1547.28 5428.08 0 -7.2 S
-1543.68 5417.28 3.6 3.6 S
-1536.48 5417.28 7.2 0 S
-1532.88 5420.88 3.6 -3.6 S
-986.4 5474.88 3.6 -3.6 S
-986.4 5496.48 3.6 3.6 S
-986.4 5496.48 0 -21.6 S
-1002.96 5485.68 10.8 0 S
-999.36 5482.08 3.6 3.6 S
-999.36 5482.08 0 -7.2 S
-999.36 5474.88 3.6 -3.6 S
-1002.96 5471.28 10.8 0 S
-1023.12 5500.08 3.6 -3.6 S
-1026.72 5496.48 0 -21.6 S
-1023.12 5471.28 3.6 3.6 S
-1049.04 5496.48 3.6 3.6 S
-1052.64 5500.08 10.8 0 S
-1063.44 5500.08 3.6 -3.6 S
-1067.04 5496.48 0 -7.2 S
-1049.04 5471.28 18 18 S
-1049.04 5471.28 18 0 S
-1076.4 5474.88 3.6 -3.6 S
-1076.4 5496.48 0 -21.6 S
-1076.4 5496.48 3.6 3.6 S
-1080 5500.08 7.2 0 S
-1087.2 5500.08 3.6 -3.6 S
-1090.8 5496.48 0 -21.6 S
-1087.2 5471.28 3.6 3.6 S
-1080 5471.28 7.2 0 S
-1076.4 5478.48 14.4 14.4 S
-1100.16 5474.88 3.6 -3.6 S
-1100.16 5496.48 0 -21.6 S
-1100.16 5496.48 3.6 3.6 S
-1103.76 5500.08 7.2 0 S
-1110.96 5500.08 3.6 -3.6 S
-1114.56 5496.48 0 -21.6 S
-1110.96 5471.28 3.6 3.6 S
-1103.76 5471.28 7.2 0 S
-1100.16 5478.48 14.4 14.4 S
-1123.92 5496.48 3.6 3.6 S
-1127.52 5500.08 7.2 0 S
-1134.72 5500.08 3.6 -3.6 S
-1138.32 5496.48 0 -21.6 S
-1134.72 5471.28 3.6 3.6 S
-1127.52 5471.28 7.2 0 S
-1123.92 5474.88 3.6 -3.6 S
-1127.52 5485.68 10.8 0 S
-1160.64 5500.08 0 -28.8 S
-1160.64 5471.28 10.8 10.8 S
-1171.44 5482.08 10.8 -10.8 S
-1182.24 5500.08 0 -28.8 S
-1202.4 5485.68 3.6 -3.6 S
-1195.2 5485.68 7.2 0 S
-1191.6 5482.08 3.6 3.6 S
-1191.6 5482.08 0 -7.2 S
-1191.6 5474.88 3.6 -3.6 S
-1206 5485.68 0 -10.8 S
-1206 5474.88 3.6 -3.6 S
-1195.2 5471.28 7.2 0 S
-1202.4 5471.28 3.6 3.6 S
-1218.96 5500.08 0 -25.2 S
-1218.96 5474.88 3.6 -3.6 S
-1234.08 5500.08 0 -25.2 S
-1234.08 5474.88 3.6 -3.6 S
-1230.48 5489.28 7.2 0 S
-1249.2 5471.28 10.8 0 S
-1245.6 5474.88 3.6 -3.6 S
-1245.6 5482.08 0 -7.2 S
-1245.6 5482.08 3.6 3.6 S
-1249.2 5485.68 7.2 0 S
-1256.4 5485.68 3.6 -3.6 S
-1245.6 5478.48 14.4 0 S
-1260 5478.48 0 3.6 S
-1272.96 5482.08 0 -10.8 S
-1272.96 5482.08 3.6 3.6 S
-1276.56 5485.68 7.2 0 S
-1269.36 5485.68 3.6 -3.6 S
-1306.08 5500.08 0 -28.8 S
-1306.08 5500.08 14.4 0 S
-1306.08 5485.68 10.8 0 S
-1333.44 5471.28 10.8 0 S
-1329.84 5474.88 3.6 -3.6 S
-1329.84 5482.08 0 -7.2 S
-1329.84 5482.08 3.6 3.6 S
-1333.44 5485.68 7.2 0 S
-1340.64 5485.68 3.6 -3.6 S
-1329.84 5478.48 14.4 0 S
-1344.24 5478.48 0 3.6 S
-1357.2 5500.08 0 -25.2 S
-1357.2 5474.88 3.6 -3.6 S
-1353.6 5489.28 7.2 0 S
-1372.32 5500.08 0 -25.2 S
-1372.32 5474.88 3.6 -3.6 S
-1368.72 5489.28 7.2 0 S
-1387.44 5471.28 10.8 0 S
-1383.84 5474.88 3.6 -3.6 S
-1383.84 5482.08 0 -7.2 S
-1383.84 5482.08 3.6 3.6 S
-1387.44 5485.68 7.2 0 S
-1394.64 5485.68 3.6 -3.6 S
-1383.84 5478.48 14.4 0 S
-1398.24 5478.48 0 3.6 S
-1411.2 5482.08 0 -10.8 S
-1411.2 5482.08 3.6 3.6 S
-1414.8 5485.68 7.2 0 S
-1407.6 5485.68 3.6 -3.6 S
-1444.32 5500.08 0 -28.8 S
-1444.32 5471.28 14.4 0 S
-1478.88 5485.68 3.6 -3.6 S
-1471.68 5485.68 7.2 0 S
-1468.08 5482.08 3.6 3.6 S
-1468.08 5482.08 0 -7.2 S
-1468.08 5474.88 3.6 -3.6 S
-1482.48 5485.68 0 -10.8 S
-1482.48 5474.88 3.6 -3.6 S
-1471.68 5471.28 7.2 0 S
-1478.88 5471.28 3.6 3.6 S
-1506.24 5485.68 3.6 -3.6 S
-1499.04 5485.68 7.2 0 S
-1495.44 5482.08 3.6 3.6 S
-1495.44 5482.08 0 -7.2 S
-1495.44 5474.88 3.6 -3.6 S
-1499.04 5471.28 7.2 0 S
-1506.24 5471.28 3.6 3.6 S
-1495.44 5464.08 3.6 -3.6 S
-1499.04 5460.48 7.2 0 S
-1506.24 5460.48 3.6 3.6 S
-1509.84 5485.68 0 -21.6 S
-1522.8 5471.28 10.8 0 S
-1519.2 5474.88 3.6 -3.6 S
-1519.2 5482.08 0 -7.2 S
-1519.2 5482.08 3.6 3.6 S
-1522.8 5485.68 7.2 0 S
-1530 5485.68 3.6 -3.6 S
-1519.2 5478.48 14.4 0 S
-1533.6 5478.48 0 3.6 S
-1546.56 5471.28 10.8 0 S
-1557.36 5471.28 3.6 3.6 S
-1557.36 5478.48 3.6 -3.6 S
-1546.56 5478.48 10.8 0 S
-1542.96 5482.08 3.6 -3.6 S
-1542.96 5482.08 3.6 3.6 S
-1546.56 5485.68 10.8 0 S
-1557.36 5485.68 3.6 -3.6 S
-1542.96 5474.88 3.6 -3.6 S
-986.4 5550.48 0 -25.2 S
-986.4 5550.48 3.6 3.6 S
-990 5554.08 10.8 0 S
-1000.8 5554.08 3.6 -3.6 S
-1004.4 5550.48 0 -25.2 S
-986.4 5539.68 18 0 S
-1013.76 5554.08 7.2 0 S
-1017.36 5554.08 0 -28.8 S
-1013.76 5525.28 7.2 0 S
-1033.92 5525.28 10.8 0 S
-1030.32 5528.88 3.6 -3.6 S
-1030.32 5550.48 0 -21.6 S
-1030.32 5550.48 3.6 3.6 S
-1033.92 5554.08 10.8 0 S
-1054.08 5539.68 14.4 0 S
-1081.44 5525.28 7.2 0 S
-1085.04 5554.08 0 -28.8 S
-1077.84 5546.88 7.2 7.2 S
-1098 5525.28 3.6 0 S
-1114.56 5525.28 7.2 0 S
-1118.16 5554.08 0 -28.8 S
-1110.96 5546.88 7.2 7.2 S
-1131.12 5525.28 3.6 0 S
-1144.08 5528.88 3.6 -3.6 S
-1144.08 5550.48 0 -21.6 S
-1144.08 5550.48 3.6 3.6 S
-1147.68 5554.08 7.2 0 S
-1154.88 5554.08 3.6 -3.6 S
-1158.48 5550.48 0 -21.6 S
-1154.88 5525.28 3.6 3.6 S
-1147.68 5525.28 7.2 0 S
-1144.08 5532.48 14.4 14.4 S
-990 5579.28 10.8 0 S
-986.4 5582.88 3.6 -3.6 S
-986.4 5604.48 0 -21.6 S
-986.4 5604.48 3.6 3.6 S
-990 5608.08 10.8 0 S
-1010.16 5604.48 0 -21.6 S
-1010.16 5604.48 3.6 3.6 S
-1013.76 5608.08 7.2 0 S
-1020.96 5608.08 3.6 -3.6 S
-1024.56 5604.48 0 -21.6 S
-1020.96 5579.28 3.6 3.6 S
-1013.76 5579.28 7.2 0 S
-1010.16 5582.88 3.6 -3.6 S
-1033.92 5608.08 0 -28.8 S
-1033.92 5608.08 10.8 -10.8 S
-1044.72 5597.28 10.8 10.8 S
-1055.52 5608.08 0 -28.8 S
-1068.48 5608.08 0 -28.8 S
-1064.88 5608.08 14.4 0 S
-1079.28 5608.08 3.6 -3.6 S
-1082.88 5604.48 0 -7.2 S
-1079.28 5593.68 3.6 3.6 S
-1068.48 5593.68 10.8 0 S
-1092.24 5604.48 0 -21.6 S
-1092.24 5604.48 3.6 3.6 S
-1095.84 5608.08 7.2 0 S
-1103.04 5608.08 3.6 -3.6 S
-1106.64 5604.48 0 -21.6 S
-1103.04 5579.28 3.6 3.6 S
-1095.84 5579.28 7.2 0 S
-1092.24 5582.88 3.6 -3.6 S
-1116 5608.08 0 -28.8 S
-1116 5608.08 0 -3.6 S
-1116 5604.48 18 -18 S
-1134 5608.08 0 -28.8 S
-1143.36 5593.68 10.8 0 S
-1143.36 5579.28 14.4 0 S
-1143.36 5608.08 0 -28.8 S
-1143.36 5608.08 14.4 0 S
-1167.12 5608.08 0 -28.8 S
-1167.12 5608.08 0 -3.6 S
-1167.12 5604.48 18 -18 S
-1185.12 5608.08 0 -28.8 S
-1194.48 5608.08 14.4 0 S
-1201.68 5608.08 0 -28.8 S
-77 73 r5
-885.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-885.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-1238.4 3440.88 43.2 43.2 re
-f
-255 G
-1272.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-993.6 3462.48 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-984.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1648.8 2958.48 43.2 43.2 re
-f
-255 G
-1683 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1396.8 2958.48 43.2 43.2 re
-f
-255 G
-1431 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4294.8 4470.48 43.2 43.2 re
-f
-255 G
-4329 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4302 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4293 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4266 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4257 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4230 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4194 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4185 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4158 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4149 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4122 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4113 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4086 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4077 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4050 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4041 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4014 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4005 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3942 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3933 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3906 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3897 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3834 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3798 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3789 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3762 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3753 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3726 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3717 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3690 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3681 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3654 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3645 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3618 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3609 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3582 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3573 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3546 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3537 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3510 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3501 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3474 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3465 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3438 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3429 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3402 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3393 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3366 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3330 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3321 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3294 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3222 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3213 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3150 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3141 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3078 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3069 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2790 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2781 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2394 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2322 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2313 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2142 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2133 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2070 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2061 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1998 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1989 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1926 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1917 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1854 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1845 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1782 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1773 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1710 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1638 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1629 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4582.8 4528.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4575.6 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-3009.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-3002.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1425.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1418.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1396.8 3174.48 43.2 43.2 re
-f
-255 G
-1431 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2692.8 3174.48 43.2 43.2 re
-f
-255 G
-2727 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2998.8 3552.48 43.2 43.2 re
-f
-255 G
-3033 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 5226.48 43.2 43.2 re
-f
-255 G
-1071 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5212.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 4996.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 4996.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-931.68 5284.08 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 5284.08 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-931.68 4959.36 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 4959.36 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-993.6 5341.68 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 5341.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-993.6 4901.76 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 4901.76 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-2728.8 3552.48 43.2 43.2 re
-f
-255 G
-2763 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2844 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4564.8 5226.48 43.2 43.2 re
-f
-255 G
-4599 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 4121.28 57.5999 57.5999 re
-f
-255 G
-4637.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4564.8 4794.48 43.2 43.2 re
-f
-255 G
-4599 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4456.8 4290.48 43.2 43.2 re
-f
-255 G
-4491 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4716 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-799.199 3696.48 50.3999 50.3999 re
-f
-255 G
-839.52 3721.68 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-849.6 3594.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-839.52 3594.24 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-920.16 3756.96 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3756.96 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-920.16 3558.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3558.24 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-3826.8 3264.48 43.2 43.2 re
-f
-255 G
-3861 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 3286.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2566.8 3498.48 43.2 43.2 re
-f
-255 G
-2601 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 5190.48 43.2 43.2 re
-f
-255 G
-3663 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2800.8 3768.48 43.2 43.2 re
-f
-255 G
-2835 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2772 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5104.8 5298.48 43.2 43.2 re
-f
-255 G
-5139 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5241.6 2944.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2944.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-4215.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3934.8 2976.48 43.2 43.2 re
-f
-255 G
-3969 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 2998.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1242 3624.48 43.2 43.2 re
-f
-255 G
-1276.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-997.2 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-988.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2422.8 3786.48 43.2 43.2 re
-f
-255 G
-2457 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4503.6 3041.28 57.5999 57.5999 re
-f
-255 G
-4547.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4489.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4475.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3967.2 3638.88 50.3999 50.3999 re
-f
-255 G
-4007.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1648.8 3336.48 43.2 43.2 re
-f
-255 G
-1683 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1159.2 3260.88 50.3999 50.3999 re
-f
-255 G
-1199.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1281.6 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1271.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2962.8 5190.48 43.2 43.2 re
-f
-255 G
-2997 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3006 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2997 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4258.8 4128.48 43.2 43.2 re
-f
-255 G
-4293 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4374 4150.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4365 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1018.8 3264.48 43.2 43.2 re
-f
-255 G
-1053 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1062 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1053 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3967.2 4052.88 50.3999 50.3999 re
-f
-255 G
-4007.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-993.6 3916.08 43.2 43.2 re
-f
-255 G
-1027.8 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1027.8 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1029.6 4769.28 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4769.28 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1029.6 4092.48 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4092.48 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1047.6 4574.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4574.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4538.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4538.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4502.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4502.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4466.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4466.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4430.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4430.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4394.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4394.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4358.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4358.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4322.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4322.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-997.199 4261.68 50.3999 50.3999 re
-f
-255 G
-1037.52 4286.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2422.8 3948.48 43.2 43.2 re
-f
-255 G
-2457 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1414.8 3732.48 43.2 43.2 re
-f
-255 G
-1449 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1458 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3427.2 4160.88 50.3999 50.3999 re
-f
-255 G
-3467.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4186.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2692.8 2958.48 43.2 43.2 re
-f
-255 G
-2727 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2170.8 5226.48 43.2 43.2 re
-f
-255 G
-2205 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4215.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-820.8 3916.08 43.2 43.2 re
-f
-255 G
-855 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-864 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-855 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1540.8 3174.48 43.2 43.2 re
-f
-255 G
-1575 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1584 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1575 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 5190.48 43.2 43.2 re
-f
-255 G
-4455 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 5226.48 43.2 43.2 re
-f
-255 G
-3303 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 4794.48 43.2 43.2 re
-f
-255 G
-3951 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 4758.48 43.2 43.2 re
-f
-255 G
-4311 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 4758.48 43.2 43.2 re
-f
-255 G
-3807 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 5190.48 43.2 43.2 re
-f
-255 G
-3807 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 5226.48 43.2 43.2 re
-f
-255 G
-3951 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 5190.48 43.2 43.2 re
-f
-255 G
-4311 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 4758.48 43.2 43.2 re
-f
-255 G
-4455 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 4794.48 43.2 43.2 re
-f
-255 G
-3303 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 4758.48 43.2 43.2 re
-f
-255 G
-3663 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3387.6 3041.28 57.5999 57.5999 re
-f
-255 G
-3431.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3373.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3359.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3301.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3287.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2548.8 3174.48 43.2 43.2 re
-f
-255 G
-2583 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2592 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2818.8 5190.48 43.2 43.2 re
-f
-255 G
-2853 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3978 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4482 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4473 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3294 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 4060.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4060.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3780 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3771 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4500 4078.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4491 4078.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-5112 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5103 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4536 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4527 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4752 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4176 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4608 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3348 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3339 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4032 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1710 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2160 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2151 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2772 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2808 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2394 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2260.8 3592.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 3592.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3528 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4230 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2718 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3672 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1908 3466.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3466.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1368 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1980 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2412 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3042 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1008 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-999 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3952.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3945.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4906.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4899.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5032.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5032.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4312.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4305.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5032.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5025.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4744.8 5194.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4737.6 5194.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3384 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1918.8 5068.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1911.6 5068.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3970.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3970.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2854.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2847.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4240.8 5500.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4233.6 5500.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3880.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3873.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5410.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5410.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5104.8 5518.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5097.6 5518.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4060.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4053.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4384.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4377.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4834.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4827.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4438.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4431.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1846.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1839.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2188.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2181.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 5176.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 5176.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 4852.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 4852.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4096.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4089.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 5212.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 5212.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4132.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4125.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 3952.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 3952.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 5446.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 5446.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2412 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1126.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1119.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4636.8 3610.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4629.6 3610.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1234.8 3016.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1227.6 3016.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1756.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1749.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2260.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1980 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2124 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1828.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1821.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3844.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3837.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3808.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3801.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2314.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2307.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2530.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2764.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2757.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1486.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1479.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1594.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1587.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2458.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2451.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4708.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4708.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2772 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2962.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1900.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1893.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2026.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2019.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2034 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2602.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1990.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1983.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4258.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4258.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2710.8 4276.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2703.6 4276.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1522.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1515.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2782.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2775.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2134.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2127.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3034.8 3844.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3027.6 3844.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2548.8 4060.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2541.6 4060.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 4006.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 4006.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3250.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3243.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3214.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3207.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2890.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2883.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2098.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2091.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2080.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2073.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4402.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4402.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4438.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4438.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3538.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3531.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2844 3718.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3718.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2530.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3898.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3891.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3834 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3772.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3765.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3934.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3927.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2638.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2631.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2818.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2811.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2962.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3070.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3063.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2592 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3142.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3135.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1216.8 4600.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1209.6 4600.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1321.2 4506.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1314 4506.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3682.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3675.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3322.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3315.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3358.8 4114.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3351.6 4114.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3394.8 4186.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3387.6 4186.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1198.8 3718.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1191.6 3718.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3430.8 3700.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3423.6 3700.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2044.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2037.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3790.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3790.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3232.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3232.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4258.8 3304.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4251.6 3304.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2476.8 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2469.6 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3466.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3466.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-799.2 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-792 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1386 3826.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3826.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-993.6 3811.68 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-986.4 3811.68 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1094.4 3462.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1087.2 3462.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4716 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3366 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-7.2 w
-77 73 r5
-853.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-853.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4564.8 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-2977.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1393.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 5284.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 4959.36 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 5341.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 4901.76 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3721.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3594.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3756.96 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3558.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2944.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4543.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4471.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1195.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1267.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4769.28 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4092.48 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4574.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4538.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4502.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4466.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4430.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4394.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4358.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4322.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4286.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3427.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3355.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3283.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Page: 6 6
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-77 73 r5
-885.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-885.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-1238.4 3440.88 43.2 43.2 re
-f
-255 G
-1272.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-993.6 3462.48 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-984.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1648.8 2958.48 43.2 43.2 re
-f
-255 G
-1683 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1396.8 2958.48 43.2 43.2 re
-f
-255 G
-1431 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4294.8 4470.48 43.2 43.2 re
-f
-255 G
-4329 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4302 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4293 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4266 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4257 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4230 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4194 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4185 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4158 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4149 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4122 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4113 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4086 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4077 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4050 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4041 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4014 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4005 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3942 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3933 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3906 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3897 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3834 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3798 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3789 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3762 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3753 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3726 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3717 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3690 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3681 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3654 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3645 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3618 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3609 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3582 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3573 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3546 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3537 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3510 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3501 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3474 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3465 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3438 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3429 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3402 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3393 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3366 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3330 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3321 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3294 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3222 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3213 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3150 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3141 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3078 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3069 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2790 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2781 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2394 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2322 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2313 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2142 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2133 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2070 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2061 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1998 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1989 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1926 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1917 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1854 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1845 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1782 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1773 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1710 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1638 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1629 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4582.8 4528.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4575.6 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-3009.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-3002.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1425.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1418.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1396.8 3174.48 43.2 43.2 re
-f
-255 G
-1431 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2692.8 3174.48 43.2 43.2 re
-f
-255 G
-2727 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2998.8 3552.48 43.2 43.2 re
-f
-255 G
-3033 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 5226.48 43.2 43.2 re
-f
-255 G
-1071 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5212.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 4996.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 4996.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-931.68 5284.08 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 5284.08 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-931.68 4959.36 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 4959.36 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-993.6 5341.68 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 5341.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-993.6 4901.76 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 4901.76 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-2728.8 3552.48 43.2 43.2 re
-f
-255 G
-2763 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2844 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4564.8 5226.48 43.2 43.2 re
-f
-255 G
-4599 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 4121.28 57.5999 57.5999 re
-f
-255 G
-4637.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4564.8 4794.48 43.2 43.2 re
-f
-255 G
-4599 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4456.8 4290.48 43.2 43.2 re
-f
-255 G
-4491 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4716 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-799.199 3696.48 50.3999 50.3999 re
-f
-255 G
-839.52 3721.68 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-849.6 3594.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-839.52 3594.24 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-920.16 3756.96 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3756.96 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-920.16 3558.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3558.24 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-3826.8 3264.48 43.2 43.2 re
-f
-255 G
-3861 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 3286.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2566.8 3498.48 43.2 43.2 re
-f
-255 G
-2601 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 5190.48 43.2 43.2 re
-f
-255 G
-3663 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2800.8 3768.48 43.2 43.2 re
-f
-255 G
-2835 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2772 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5104.8 5298.48 43.2 43.2 re
-f
-255 G
-5139 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5241.6 2944.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2944.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-4215.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3934.8 2976.48 43.2 43.2 re
-f
-255 G
-3969 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 2998.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1242 3624.48 43.2 43.2 re
-f
-255 G
-1276.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-997.2 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-988.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2422.8 3786.48 43.2 43.2 re
-f
-255 G
-2457 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4503.6 3041.28 57.5999 57.5999 re
-f
-255 G
-4547.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4489.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4475.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3967.2 3638.88 50.3999 50.3999 re
-f
-255 G
-4007.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1648.8 3336.48 43.2 43.2 re
-f
-255 G
-1683 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1159.2 3260.88 50.3999 50.3999 re
-f
-255 G
-1199.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1281.6 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1271.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2962.8 5190.48 43.2 43.2 re
-f
-255 G
-2997 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3006 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2997 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4258.8 4128.48 43.2 43.2 re
-f
-255 G
-4293 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4374 4150.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4365 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1018.8 3264.48 43.2 43.2 re
-f
-255 G
-1053 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1062 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1053 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3967.2 4052.88 50.3999 50.3999 re
-f
-255 G
-4007.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-993.6 3916.08 43.2 43.2 re
-f
-255 G
-1027.8 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1027.8 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1029.6 4769.28 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4769.28 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1029.6 4092.48 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4092.48 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1047.6 4574.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4574.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4538.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4538.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4502.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4502.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4466.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4466.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4430.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4430.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4394.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4394.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4358.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4358.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4322.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4322.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-997.199 4261.68 50.3999 50.3999 re
-f
-255 G
-1037.52 4286.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2422.8 3948.48 43.2 43.2 re
-f
-255 G
-2457 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1414.8 3732.48 43.2 43.2 re
-f
-255 G
-1449 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1458 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3427.2 4160.88 50.3999 50.3999 re
-f
-255 G
-3467.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4186.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2692.8 2958.48 43.2 43.2 re
-f
-255 G
-2727 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2170.8 5226.48 43.2 43.2 re
-f
-255 G
-2205 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4215.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-820.8 3916.08 43.2 43.2 re
-f
-255 G
-855 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-864 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-855 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1540.8 3174.48 43.2 43.2 re
-f
-255 G
-1575 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1584 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1575 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 5190.48 43.2 43.2 re
-f
-255 G
-4455 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 5226.48 43.2 43.2 re
-f
-255 G
-3303 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 4794.48 43.2 43.2 re
-f
-255 G
-3951 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 4758.48 43.2 43.2 re
-f
-255 G
-4311 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 4758.48 43.2 43.2 re
-f
-255 G
-3807 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 5190.48 43.2 43.2 re
-f
-255 G
-3807 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 5226.48 43.2 43.2 re
-f
-255 G
-3951 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 5190.48 43.2 43.2 re
-f
-255 G
-4311 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 4758.48 43.2 43.2 re
-f
-255 G
-4455 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 4794.48 43.2 43.2 re
-f
-255 G
-3303 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 4758.48 43.2 43.2 re
-f
-255 G
-3663 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3387.6 3041.28 57.5999 57.5999 re
-f
-255 G
-3431.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3373.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3359.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3301.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3287.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2548.8 3174.48 43.2 43.2 re
-f
-255 G
-2583 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2592 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2818.8 5190.48 43.2 43.2 re
-f
-255 G
-2853 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3978 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4482 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4473 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3294 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 4060.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4060.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3780 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3771 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4500 4078.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4491 4078.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-5112 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5103 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4536 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4527 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4752 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4176 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4608 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3348 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3339 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4032 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1710 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2160 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2151 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2772 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2808 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2394 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2260.8 3592.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 3592.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3528 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4230 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2718 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3672 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1908 3466.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3466.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1368 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1980 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2412 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3042 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1008 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-999 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3952.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3945.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4906.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4899.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5032.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5032.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4312.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4305.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5032.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5025.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4744.8 5194.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4737.6 5194.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3384 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1918.8 5068.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1911.6 5068.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3970.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3970.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2854.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2847.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4240.8 5500.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4233.6 5500.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3880.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3873.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5410.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5410.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5104.8 5518.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5097.6 5518.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4060.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4053.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4384.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4377.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4834.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4827.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4438.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4431.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1846.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1839.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2188.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2181.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 5176.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 5176.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 4852.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 4852.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4096.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4089.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 5212.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 5212.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4132.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4125.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 3952.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 3952.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 5446.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 5446.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2412 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1126.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1119.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4636.8 3610.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4629.6 3610.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1234.8 3016.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1227.6 3016.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1756.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1749.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2260.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1980 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2124 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1828.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1821.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3844.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3837.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3808.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3801.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2314.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2307.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2530.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2764.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2757.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1486.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1479.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1594.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1587.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2458.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2451.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4708.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4708.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2772 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2962.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1900.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1893.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2026.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2019.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2034 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2602.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1990.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1983.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4258.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4258.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2710.8 4276.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2703.6 4276.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1522.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1515.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2782.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2775.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2134.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2127.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3034.8 3844.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3027.6 3844.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2548.8 4060.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2541.6 4060.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 4006.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 4006.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3250.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3243.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3214.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3207.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2890.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2883.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2098.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2091.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2080.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2073.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4402.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4402.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4438.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4438.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3538.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3531.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2844 3718.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3718.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2530.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3898.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3891.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3834 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3772.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3765.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3934.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3927.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2638.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2631.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2818.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2811.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2962.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3070.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3063.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2592 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3142.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3135.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1216.8 4600.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1209.6 4600.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1321.2 4506.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1314 4506.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3682.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3675.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3322.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3315.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3358.8 4114.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3351.6 4114.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3394.8 4186.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3387.6 4186.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1198.8 3718.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1191.6 3718.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3430.8 3700.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3423.6 3700.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2044.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2037.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3790.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3790.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3232.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3232.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4258.8 3304.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4251.6 3304.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2476.8 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2469.6 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3466.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3466.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-799.2 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-792 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1386 3826.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3826.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-993.6 3811.68 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-986.4 3811.68 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1094.4 3462.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1087.2 3462.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4716 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3366 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-7.2 w
-1 J
-77 73 r5
-853.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-853.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4564.8 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-2977.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1393.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 5284.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 4959.36 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 5341.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 4901.76 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3721.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3594.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3756.96 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3558.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2944.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4543.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4471.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1195.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1267.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4769.28 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4092.48 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4574.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4538.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4502.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4466.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4430.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4394.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4358.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4322.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4286.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3427.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3355.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3283.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Page: 7 7
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-77 73 r5
-885.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-885.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-871.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 2953.44 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2953.44 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-1238.4 3440.88 43.2 43.2 re
-f
-255 G
-1272.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-993.6 3462.48 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-984.6 3462.48 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1648.8 2958.48 43.2 43.2 re
-f
-255 G
-1683 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2484 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2475 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2412 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2340 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2331 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2268 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2259 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2196 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2187 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2124 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2052 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2043 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1980 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1396.8 2958.48 43.2 43.2 re
-f
-255 G
-1431 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4294.8 4470.48 43.2 43.2 re
-f
-255 G
-4329 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4302 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4293 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4266 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4257 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4230 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4194 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4185 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4158 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4149 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4122 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4113 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4086 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4077 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4050 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4041 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4014 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4005 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3942 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3933 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3906 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3897 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3834 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3798 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3789 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3762 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3753 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3726 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3717 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3690 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3681 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3654 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3645 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3618 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3609 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3582 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3573 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3546 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3537 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3510 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3501 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3474 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3465 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3438 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3429 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3402 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3393 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3366 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3330 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3321 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3294 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3222 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3213 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3150 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3141 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3078 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3069 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2790 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2781 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2394 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2322 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2313 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2142 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2133 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2070 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2061 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1998 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1989 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1926 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1917 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1854 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1845 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1782 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1773 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1710 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4492.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4492.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1638 4564.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1629 4564.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4582.8 4528.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4575.6 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-3009.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-3002.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1425.6 4528.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1418.4 4528.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1396.8 3174.48 43.2 43.2 re
-f
-255 G
-1431 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1368 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2692.8 3174.48 43.2 43.2 re
-f
-255 G
-2727 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2998.8 3552.48 43.2 43.2 re
-f
-255 G
-3033 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 5226.48 43.2 43.2 re
-f
-255 G
-1071 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5212.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1080 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1071 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1152 4996.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1143 4996.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-931.68 5284.08 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 5284.08 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-931.68 4959.36 m
-0 -29.43 -23.85 -53.28 -53.28 -53.28 c
--29.43 0 -53.28 23.85 -53.28 53.28 c
-0 29.43 23.85 53.28 53.28 53.28 c
-29.43 0 53.28 -23.85 53.28 -53.28 c
-f
-255 G
-924.48 4959.36 m
-0 -25.45 -20.63 -46.08 -46.08 -46.08 c
--25.45 0 -46.08 20.63 -46.08 46.08 c
-0 25.45 20.63 46.08 46.08 46.08 c
-25.45 0 46.08 -20.63 46.08 -46.08 c
-f
-77 73 r5
-993.6 5341.68 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 5341.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-993.6 4901.76 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-986.4 4901.76 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-77 73 r5
-2728.8 3552.48 43.2 43.2 re
-f
-255 G
-2763 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2844 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4564.8 5226.48 43.2 43.2 re
-f
-255 G
-4599 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 4121.28 57.5999 57.5999 re
-f
-255 G
-4637.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 4150.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 4150.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4564.8 4794.48 43.2 43.2 re
-f
-255 G
-4599 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4824 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4815 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4752 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4680 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4671 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4608 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4456.8 4290.48 43.2 43.2 re
-f
-255 G
-4491 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4716 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-799.199 3696.48 50.3999 50.3999 re
-f
-255 G
-839.52 3721.68 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-849.6 3594.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-839.52 3594.24 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-920.16 3756.96 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3756.96 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-920.16 3558.24 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-913.68 3558.24 m
-0 -10.34 -8.38 -18.72 -18.72 -18.72 c
--10.34 0 -18.72 8.38 -18.72 18.72 c
-0 10.34 8.38 18.72 18.72 18.72 c
-10.34 0 18.72 -8.38 18.72 -18.72 c
-f
-77 73 r5
-3826.8 3264.48 43.2 43.2 re
-f
-255 G
-3861 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3978 3286.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2566.8 3498.48 43.2 43.2 re
-f
-255 G
-2601 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 5190.48 43.2 43.2 re
-f
-255 G
-3663 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2800.8 3768.48 43.2 43.2 re
-f
-255 G
-2835 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2772 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5104.8 5298.48 43.2 43.2 re
-f
-255 G
-5139 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5148 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5139 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5076 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5067 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5176.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5176.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5104.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5104.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4960.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4960.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4744.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4744.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4672.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4672.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4600.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4600.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4528.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4528.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4456.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4456.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4384.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4384.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4312.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4312.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4240.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4240.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4168.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4168.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4096.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4096.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 4024.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 4024.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3952.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3952.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3880.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3880.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3808.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3232.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3232.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3160.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3160.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5004 3088.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4995 3088.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-5241.6 2944.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 2944.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-5241.6 5464.08 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-5227.2 5464.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-77 73 r5
-4215.6 3527.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3556.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3556.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3934.8 2976.48 43.2 43.2 re
-f
-255 G
-3969 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3870 2998.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 2998.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1242 3624.48 43.2 43.2 re
-f
-255 G
-1276.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-997.2 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-988.2 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2422.8 3786.48 43.2 43.2 re
-f
-255 G
-2457 3808.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 3520.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 3520.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4503.6 3041.28 57.5999 57.5999 re
-f
-255 G
-4547.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4489.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4475.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3967.2 3638.88 50.3999 50.3999 re
-f
-255 G
-4007.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 3664.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1648.8 3336.48 43.2 43.2 re
-f
-255 G
-1683 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3358.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3358.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1908 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1836 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1827 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1764 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1755 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1692 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1683 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1159.2 3260.88 50.3999 50.3999 re
-f
-255 G
-1199.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1281.6 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1271.52 3286.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2962.8 5190.48 43.2 43.2 re
-f
-255 G
-2997 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3006 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2997 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4258.8 4128.48 43.2 43.2 re
-f
-255 G
-4293 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4374 4150.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4365 4150.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4593.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4637.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4723.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4709.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4795.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4781.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1018.8 3264.48 43.2 43.2 re
-f
-255 G
-1053 3286.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1062 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1053 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3967.2 4052.88 50.3999 50.3999 re
-f
-255 G
-4007.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3837.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3827.52 4078.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-993.6 3916.08 43.2 43.2 re
-f
-255 G
-1027.8 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1036.8 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1027.8 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1029.6 4769.28 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4769.28 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1029.6 4092.48 m
-0 -23.86 -19.34 -43.2 -43.2 -43.2 c
--23.86 0 -43.2 19.34 -43.2 43.2 c
-0 23.86 19.34 43.2 43.2 43.2 c
-23.86 0 43.2 -19.34 43.2 -43.2 c
-f
-255 G
-1022.4 4092.48 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-77 73 r5
-1047.6 4574.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4574.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4538.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4538.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4502.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4502.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4466.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4466.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4430.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4430.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4394.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4394.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-1047.6 4358.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-1037.52 4358.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-975.6 4322.88 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-965.52 4322.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-997.199 4261.68 50.3999 50.3999 re
-f
-255 G
-1037.52 4286.88 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2422.8 3948.48 43.2 43.2 re
-f
-255 G
-2457 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 3970.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 3970.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3258 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3249 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3186 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3177 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3114 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3105 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3042 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2970 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2961 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2898 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2889 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2826 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2817 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2754 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2745 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2682 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2673 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2610 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2601 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2538 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2529 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2466 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2457 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1414.8 3732.48 43.2 43.2 re
-f
-255 G
-1449 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 3754.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 3754.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2250 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2241 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2178 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2106 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2097 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2034 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1962 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1953 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1890 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1881 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1818 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1809 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1746 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1737 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1674 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1665 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1602 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1593 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1530 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1521 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1458 4186.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4186.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3427.2 4160.88 50.3999 50.3999 re
-f
-255 G
-3467.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4186.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4186.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4114.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 4042.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3477.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3467.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3549.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-255 G
-3539.52 3970.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2692.8 2958.48 43.2 43.2 re
-f
-255 G
-2727 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2808 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2170.8 5226.48 43.2 43.2 re
-f
-255 G
-2205 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2718 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2646 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2637 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2574 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2565 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2502 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2493 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2430 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2421 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2358 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2349 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2286 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2277 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2214 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2205 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4215.6 3869.28 57.5999 57.5999 re
-f
-255 G
-4259.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4345.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4331.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-4417.2 3898.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-4403.52 3898.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-820.8 3916.08 43.2 43.2 re
-f
-255 G
-855 3937.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-864 3865.68 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-855 3865.68 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1540.8 3174.48 43.2 43.2 re
-f
-255 G
-1575 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-1584 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1575 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 5190.48 43.2 43.2 re
-f
-255 G
-4455 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 5226.48 43.2 43.2 re
-f
-255 G
-3303 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 4794.48 43.2 43.2 re
-f
-255 G
-3951 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 4758.48 43.2 43.2 re
-f
-255 G
-4311 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 4758.48 43.2 43.2 re
-f
-255 G
-3807 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3772.8 5190.48 43.2 43.2 re
-f
-255 G
-3807 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3816 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3807 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3916.8 5226.48 43.2 43.2 re
-f
-255 G
-3951 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5248.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5248.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4176 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4104 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4095 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4032 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3960 5464.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5464.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4276.8 5190.48 43.2 43.2 re
-f
-255 G
-4311 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4320 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4420.8 4758.48 43.2 43.2 re
-f
-255 G
-4455 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-4464 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4455 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3268.8 4794.48 43.2 43.2 re
-f
-255 G
-3303 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 4816.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4816.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3528 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3456 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3447 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3384 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3312 5032.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3303 5032.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3628.8 4758.48 43.2 43.2 re
-f
-255 G
-3663 4780.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3672 5068.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 5068.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-3387.6 3041.28 57.5999 57.5999 re
-f
-255 G
-3431.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3373.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3359.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-3301.2 3070.08 m
-0 -15.91 -12.89 -28.8 -28.8 -28.8 c
--15.91 0 -28.8 12.89 -28.8 28.8 c
-0 15.91 12.89 28.8 28.8 28.8 c
-15.91 0 28.8 -12.89 28.8 -28.8 c
-f
-255 G
-3287.52 3070.08 m
-0 -8.35 -6.77 -15.12 -15.12 -15.12 c
--8.35 0 -15.12 6.77 -15.12 15.12 c
-0 8.35 6.77 15.12 15.12 15.12 c
-8.35 0 15.12 -6.77 15.12 -15.12 c
-f
-77 73 r5
-2548.8 3174.48 43.2 43.2 re
-f
-255 G
-2583 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2592 2980.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 2980.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2818.8 5190.48 43.2 43.2 re
-f
-255 G
-2853 5212.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-77 73 r5
-2862 5500.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2853 5500.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3978 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3969 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4482 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4473 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3790.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3790.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4788 3448.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4779 3448.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 3664.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3664.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3592.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3592.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4338 3304.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4329 3304.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3294 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3285 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3870 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3861 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4860 3736.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4851 3736.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 4060.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 4060.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3780 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3771 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4500 4078.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4491 4078.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4932 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4923 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-5112 4924.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-5103 4924.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4536 4888.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4527 4888.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4752 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4743 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4176 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4167 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4608 5374.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4599 5374.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3348 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3339 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3960 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3951 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4320 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4311 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4716 5140.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 5140.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4032 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4023 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1710 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1701 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2160 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2151 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2772 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2808 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2799 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2394 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2385 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1458 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1449 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3646.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3646.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1386 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2260.8 3592.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 3592.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3528 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3519 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-4230 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4221 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2718 4942.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2709 4942.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3672 4978.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3663 4978.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1908 3466.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1899 3466.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1368 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1359 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1980 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2412 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3042 3376.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3033 3376.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1008 2836.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-999 2836.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3952.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3945.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4906.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4899.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5032.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5032.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4312.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4305.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5032.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5025.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4744.8 5194.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4737.6 5194.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3384 5320.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3375 5320.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1918.8 5068.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1911.6 5068.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3970.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3970.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2854.8 5284.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2847.6 5284.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4240.8 5500.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4233.6 5500.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3880.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3873.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4924.8 5410.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4917.6 5410.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-5104.8 5518.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-5097.6 5518.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4060.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4053.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4384.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4377.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4834.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4827.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4870.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4863.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4438.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4431.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1846.8 5248.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1839.6 5248.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2188.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2181.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 5176.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 5176.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 4852.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 4852.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4096.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4089.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4690.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4690.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 5212.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 5212.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4132.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4125.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4456.8 3952.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4449.6 3952.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 5446.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 5446.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2412 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2403 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1126.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1119.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1270.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1263.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4636.8 3610.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4629.6 3610.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1234.8 3016.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1227.6 3016.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1756.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1749.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2260.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2253.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1980 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1971 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2124 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2115 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-1828.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1821.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3448.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3441.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3664.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3657.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3844.8 4888.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3837.6 4888.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3808.8 5554.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3801.6 5554.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2350.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2343.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2314.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2307.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4798.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4798.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2530.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2566.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2559.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2764.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2757.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1486.8 4672.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1479.6 4672.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 4762.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 4762.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1594.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1587.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4942.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4942.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2458.8 4636.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2451.6 4636.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4708.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4708.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 4726.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 4726.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 4906.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 4906.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1882.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1875.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2386.8 3826.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2379.6 3826.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2772 3898.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2763 3898.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2962.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1900.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1893.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2026.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2019.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2034 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2025 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2178 4042.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2169 4042.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2602.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1990.8 4132.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1983.6 4132.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2674.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2667.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2062.8 4258.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2055.6 4258.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2710.8 4276.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2703.6 4276.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1522.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1515.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2782.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2775.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2134.8 4312.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2127.6 4312.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3034.8 3844.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3027.6 3844.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2548.8 4060.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2541.6 4060.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1666.8 4096.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1659.6 4096.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 4006.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 4006.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3250.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3243.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2296.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2289.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3214.8 3664.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3207.6 3664.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1558.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1551.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2890.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2883.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2098.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2091.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2206.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2199.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2080.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2073.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2278.8 5014.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2271.6 5014.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2242.8 4420.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2235.6 4420.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1810.8 4402.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1803.6 4402.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1738.8 4438.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1731.6 4438.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3538.8 4240.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3531.6 4240.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2844 3718.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2835 3718.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-2530.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2523.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3898.8 3754.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3891.6 3754.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3834 3574.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3825 3574.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3772.8 3628.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3765.6 3628.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2602.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2595.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3934.8 4384.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3927.6 4384.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2638.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2631.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2422.8 5050.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2415.6 5050.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2818.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2811.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2494.8 5086.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2487.6 5086.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2962.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2955.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3070.8 4078.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3063.6 4078.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2998.8 2890.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2991.6 2890.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2592 3124.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-2583 3124.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3142.8 3070.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3135.6 3070.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1216.8 4600.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1209.6 4600.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1321.2 4506.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1314 4506.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3682.8 4348.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3675.6 4348.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2332.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2325.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3124.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3124.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3322.8 4042.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3315.6 4042.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3358.8 4114.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3351.6 4114.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3394.8 4186.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3387.6 4186.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1198.8 3718.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1191.6 3718.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3430.8 3700.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3423.6 3700.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3862.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3862.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2044.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2037.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-3340.8 3430.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-3333.6 3430.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3790.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3790.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4186.8 3232.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4179.6 3232.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1954.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1947.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3340.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3340.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4546.8 3898.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4539.6 3898.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4258.8 3304.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-4251.6 3304.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2476.8 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2469.6 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-2800.8 3466.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-2793.6 3466.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-799.2 3286.08 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-792 3286.08 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1386 3826.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-1377 3826.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-993.6 3811.68 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-986.4 3811.68 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-1094.4 3462.48 m
-0 -7.95 -6.45 -14.4 -14.4 -14.4 c
--7.95 0 -14.4 6.45 -14.4 14.4 c
-0 7.95 6.45 14.4 14.4 14.4 c
-7.95 0 14.4 -6.45 14.4 -14.4 c
-f
-255 G
-1087.2 3462.48 m
-0 -3.98 -3.22 -7.2 -7.2 -7.2 c
--3.98 0 -7.2 3.22 -7.2 7.2 c
-0 3.98 3.22 7.2 7.2 7.2 c
-3.98 0 7.2 -3.22 7.2 -7.2 c
-f
-125 121 r5
-4716 3070.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-4707 3070.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-125 121 r5
-3366 3196.08 m
-0 -11.93 -9.67 -21.6 -21.6 -21.6 c
--11.93 0 -21.6 9.67 -21.6 21.6 c
-0 11.93 9.67 21.6 21.6 21.6 c
-11.93 0 21.6 -9.67 21.6 -21.6 c
-f
-255 G
-3357 3196.08 m
-0 -6.96 -5.64 -12.6 -12.6 -12.6 c
--6.96 0 -12.6 5.64 -12.6 12.6 c
-0 6.96 5.64 12.6 12.6 12.6 c
-6.96 0 12.6 -5.64 12.6 -12.6 c
-f
-7.2 w
-1 J
-77 73 r5
-853.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-853.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2953.44 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4564.8 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-2977.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1393.2 4528.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 5284.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-889.2 4959.36 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 5341.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-975.6 4901.76 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 4150.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3721.68 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-835.2 3594.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3756.96 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-905.76 3558.24 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 2944.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-5209.2 5464.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3556.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4543.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4471.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 3664.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1195.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1267.2 3286.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4633.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4705.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4777.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4003.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3823.2 4078.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4769.28 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-997.2 4092.48 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4574.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4538.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4502.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4466.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4430.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4394.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4358.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-961.2 4322.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-1033.2 4286.88 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4186.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4114.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 4042.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3463.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3535.2 3970.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4255.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4327.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-4399.2 3898.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3427.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3355.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-3283.2 3070.08 m
-0 -5.96 -4.84 -10.8 -10.8 -10.8 c
--5.96 0 -10.8 4.84 -10.8 10.8 c
-0 5.96 4.84 10.8 10.8 10.8 c
-5.96 0 10.8 -4.84 10.8 -10.8 c
-h
-S
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Page: 8 8
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-K
-453.6 2784.24 5040 2849.04 re
-f
-255 G
-896.4 5464.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-896.4 2953.44 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-5252.4 5464.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-5252.4 2953.44 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1227.6 3430.08 64.7998 64.7998 re
-f
-1004.4 3462.48 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1638 2947.68 64.7998 64.7998 re
-f
-1774.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1846.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1990.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2062.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2134.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2206.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2278.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2350.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2422.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2494.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2494.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2422.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2350.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2278.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2206.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2134.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2062.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1990.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1846.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1774.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1702.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1386 2947.68 64.7998 64.7998 re
-f
-1378.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4284 4459.68 64.7998 64.7998 re
-f
-4312.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4276.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4240.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4204.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4168.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4132.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4096.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4060.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4024.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3988.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3952.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3916.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3880.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3844.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3808.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3772.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3736.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3700.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3664.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3628.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3592.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3556.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3520.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3484.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3448.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3412.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3376.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3340.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3304.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3232.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3160.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3124.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3088.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2908.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2872.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2836.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2800.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2764.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2728.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2692.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2656.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2620.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2584.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2548.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2512.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2476.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2440.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2404.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2368.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2332.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2296.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2260.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2224.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2152.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2116.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2080.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2044.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2008.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1972.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1936.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1900.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1864.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1828.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1792.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1756.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1720.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1684.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1648.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4593.6 4528.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-3020.4 4528.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1436.4 4528.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1386 3163.68 64.7998 64.7998 re
-f
-1378.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2682 3163.68 64.7998 64.7998 re
-f
-2818.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2988 3541.68 64.7998 64.7998 re
-f
-3124.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3124.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3052.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1026 5215.68 64.7998 64.7998 re
-f
-1162.8 5212.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1090.8 5176.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1162.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1090.8 5104.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1162.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1090.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1162.8 4996.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-942.48 5284.08 m
-0 -35.39 -28.69 -64.08 -64.08 -64.08 c
--35.39 0 -64.08 28.69 -64.08 64.08 c
-0 35.39 28.69 64.08 64.08 64.08 c
-35.39 0 64.08 -28.69 64.08 -64.08 c
-f
-942.48 4959.36 m
-0 -35.39 -28.69 -64.08 -64.08 -64.08 c
--35.39 0 -64.08 28.69 -64.08 64.08 c
-0 35.39 28.69 64.08 64.08 64.08 c
-35.39 0 64.08 -28.69 64.08 -64.08 c
-f
-1004.4 5341.68 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-1004.4 4901.76 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-2718 3541.68 64.7998 64.7998 re
-f
-2854.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4554 5215.68 64.7998 64.7998 re
-f
-4690.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4834.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4834.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4690.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4618.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4582.8 4110.48 79.2 79.2 re
-f
-4734 4150.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4806 4150.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4554 4783.68 64.7998 64.7998 re
-f
-4690.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4834.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4834.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4690.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4618.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4446 4279.68 64.7998 64.7998 re
-f
-4726.8 4312.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4582.8 3516.48 79.2 79.2 re
-f
-4734 3556.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4806 3556.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-788.399 3685.68 71.9998 71.9998 re
-f
-860.4 3594.24 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-930.96 3756.96 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-930.96 3558.24 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3816 3253.68 64.7998 64.7998 re
-f
-3988.8 3286.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2556 3487.68 64.7998 64.7998 re
-f
-2620.8 3808.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3618 5179.68 64.7998 64.7998 re
-f
-3682.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2790 3757.68 64.7998 64.7998 re
-f
-2782.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5094 5287.68 64.7998 64.7998 re
-f
-5158.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 5176.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 5104.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4960.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4888.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4744.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4672.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4600.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4528.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4456.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4384.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4312.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4240.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4168.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4096.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4024.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3952.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3880.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3808.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3736.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3664.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3592.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3520.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3304.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3232.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3160.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3088.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5176.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5104.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4960.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4888.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4744.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4672.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4600.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4528.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4456.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4384.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4312.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4240.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4168.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4096.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4024.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3952.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3880.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3808.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3736.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3664.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3592.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3520.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3304.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3232.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3160.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3088.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5176.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5104.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4960.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4888.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4744.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4672.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4600.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4528.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4456.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4384.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4312.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4240.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4168.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4096.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4024.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3952.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3880.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3808.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3736.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3664.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3592.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3520.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3304.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3232.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3160.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3088.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5252.4 2944.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-5252.4 5464.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-4204.8 3516.48 79.2 79.2 re
-f
-4356 3556.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4428 3556.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-3924 2965.68 64.7998 64.7998 re
-f
-3880.8 2998.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1231.2 3613.68 64.7998 64.7998 re
-f
-1008 3646.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2412 3775.68 64.7998 64.7998 re
-f
-2476.8 3520.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4492.8 3030.48 79.2 79.2 re
-f
-4500 3070.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4428 3070.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-3956.4 3628.08 71.9998 71.9998 re
-f
-3848.4 3664.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-1638 3325.68 64.7998 64.7998 re
-f
-1774.8 3358.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1846.8 3358.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 3358.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1846.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1774.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1702.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1148.4 3250.08 71.9998 71.9998 re
-f
-1292.4 3286.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-2952 5179.68 64.7998 64.7998 re
-f
-3016.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4248 4117.68 64.7998 64.7998 re
-f
-4384.8 4150.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4582.8 3858.48 79.2 79.2 re
-f
-4734 3898.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4806 3898.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-1008 3253.68 64.7998 64.7998 re
-f
-1072.8 3070.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3956.4 4042.08 71.9998 71.9998 re
-f
-3848.4 4078.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-982.8 3905.28 64.7998 64.7998 re
-f
-1047.6 3865.68 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1040.4 4769.28 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1040.4 4092.48 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1058.4 4574.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.4 4538.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-1058.4 4502.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.4 4466.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-1058.4 4430.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.4 4394.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-1058.4 4358.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.4 4322.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.399 4250.88 71.9998 71.9998 re
-f
-2412 3937.68 64.7998 64.7998 re
-f
-2548.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2620.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2692.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2764.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2836.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2908.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2980.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3052.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3124.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3124.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3052.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2980.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2908.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2836.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2764.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2692.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2620.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2548.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2476.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1404 3721.68 64.7998 64.7998 re
-f
-1540.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1612.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1684.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1756.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1828.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1900.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1972.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2044.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2116.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2260.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2260.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2116.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2044.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1972.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1900.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1828.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1756.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1684.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1612.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1540.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1468.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3416.4 4150.08 71.9998 71.9998 re
-f
-3560.4 4186.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3488.4 4114.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3560.4 4114.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3488.4 4042.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3560.4 4042.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3488.4 3970.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3560.4 3970.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-2682 2947.68 64.7998 64.7998 re
-f
-2818.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2160 5215.68 64.7998 64.7998 re
-f
-2296.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2368.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2440.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2512.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2584.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2656.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2728.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2728.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2656.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2584.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2512.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2440.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2368.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2296.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2224.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4204.8 3858.48 79.2 79.2 re
-f
-4356 3898.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4428 3898.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-810 3905.28 64.7998 64.7998 re
-f
-874.8 3865.68 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1530 3163.68 64.7998 64.7998 re
-f
-1594.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4410 5179.68 64.7998 64.7998 re
-f
-4474.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3258 5215.68 64.7998 64.7998 re
-f
-3394.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3466.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3538.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3538.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3466.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3394.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3322.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3906 4783.68 64.7998 64.7998 re
-f
-4042.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4114.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4114.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4042.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3970.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4266 4747.68 64.7998 64.7998 re
-f
-4330.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3762 4747.68 64.7998 64.7998 re
-f
-3826.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3762 5179.68 64.7998 64.7998 re
-f
-3826.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3906 5215.68 64.7998 64.7998 re
-f
-4042.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4114.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4114.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4042.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3970.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4266 5179.68 64.7998 64.7998 re
-f
-4330.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4410 4747.68 64.7998 64.7998 re
-f
-4474.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3258 4783.68 64.7998 64.7998 re
-f
-3394.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3466.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3538.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3538.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3466.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3394.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3322.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3618 4747.68 64.7998 64.7998 re
-f
-3682.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3376.8 3030.48 79.2 79.2 re
-f
-3384 3070.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-3312 3070.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-2538 3163.68 64.7998 64.7998 re
-f
-2602.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2808 5179.68 64.7998 64.7998 re
-f
-2872.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3880.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3988.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4492.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4798.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4348.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4348.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4798.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4726.8 3664.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4870.8 3592.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4348.8 3304.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3304.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3880.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4942.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4870.8 3736.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4726.8 4060.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3790.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4510.8 4078.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4942.8 4924.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5122.8 4924.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4546.8 4888.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4330.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3970.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 5374.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4618.8 5374.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3358.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3970.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4330.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4726.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4042.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1468.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1720.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2170.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2782.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2818.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 3898.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2404.8 3898.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1468.8 3898.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1396.8 3646.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1396.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2271.6 3592.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3538.8 4942.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4240.8 4942.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2728.8 4942.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3682.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 3466.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1378.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1990.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2422.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3052.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1018.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3963.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4917.6 5284.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4935.6 5032.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4323.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-5043.6 4420.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2343.6 4420.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4755.6 5194.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3394.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1929.6 5068.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3351.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2577.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2865.6 5284.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4251.6 5500.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4881.6 5554.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3891.6 5248.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4935.6 5410.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-5115.6 5518.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4467.6 5554.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4071.6 5554.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4395.6 4636.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4845.6 4636.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4881.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4449.6 4690.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1857.6 5248.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2199.6 3070.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1965.6 5176.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1281.6 4852.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4107.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3459.6 4690.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1893.6 5212.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4143.6 5086.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4467.6 3952.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3675.6 5446.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3009.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2422.8 3124.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1137.6 3898.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1281.6 3898.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4647.6 3610.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1245.6 3016.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1767.6 2890.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2271.6 2890.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1990.8 3124.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2134.8 3124.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1839.6 3070.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3459.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3675.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3855.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3819.6 5554.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2289.6 4798.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2361.6 4798.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2361.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2253.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2325.6 4906.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2217.6 4906.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2505.6 4798.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2613.6 4798.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2541.6 4762.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2685.6 4762.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2577.6 4672.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2775.6 4672.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1497.6 4672.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1569.6 4762.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1605.6 4942.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2613.6 4942.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1677.6 4636.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2469.6 4636.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1749.6 4708.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2433.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1821.6 4906.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2397.6 4906.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1893.6 3826.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2397.6 3826.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2782.8 3898.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2973.6 3862.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1911.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2037.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2307.6 3862.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1965.6 3862.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2307.6 4240.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2044.8 4042.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 4042.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2613.6 4132.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2001.6 4132.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2685.6 4096.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2073.6 4096.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2073.6 4258.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2721.6 4276.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1533.6 4312.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2793.6 4312.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2145.6 4312.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3045.6 3844.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2559.6 4060.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1677.6 4096.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1965.6 4006.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3261.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2307.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3225.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1569.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2901.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2109.6 4348.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2217.6 4348.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2091.6 5014.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2289.6 5014.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2253.6 4420.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1821.6 4402.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1749.6 4438.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3549.6 4240.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2854.8 3718.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2541.6 3754.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3909.6 3754.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3844.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3783.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2613.6 4384.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3945.6 4384.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2649.6 5050.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2433.6 5050.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2829.6 5086.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2505.6 5086.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2973.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3081.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3009.6 2890.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2602.8 3124.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3153.6 3070.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1227.6 4600.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1332 4506.48 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3693.6 4348.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2343.6 3124.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2811.6 3124.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3333.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3369.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3405.6 4186.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1209.6 3718.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3441.6 3700.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3351.6 3862.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2055.6 3430.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3351.6 3430.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4197.6 3790.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4197.6 3232.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1965.6 3340.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4557.6 3340.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4557.6 3898.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4269.6 3304.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2487.6 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2811.6 3466.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-810 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1396.8 3826.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1004.4 3811.68 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1105.2 3462.48 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4726.8 3070.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3376.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Page: 9 9
-%%BeginPageSetup
-GS_pswrite_2_0_1001 begin
-595 842 /a4 setpagesize
-/pagesave save store 100 dict begin
-0.1 0.1 scale
-%%EndPageSetup
-gsave mark
-Q q
-0 0 5950 0 0 8420 ^ Y
-255 G
-440 2770 5060 2870 re
-f
-K
-453.6 2784.24 5040 2849.04 re
-f
-255 G
-896.4 5464.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-896.4 2953.44 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-5252.4 5464.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-5252.4 2953.44 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1227.6 3430.08 64.7998 64.7998 re
-f
-1004.4 3462.48 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1638 2947.68 64.7998 64.7998 re
-f
-1774.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1846.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1990.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2062.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2134.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2206.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2278.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2350.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2422.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2494.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2494.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2422.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2350.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2278.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2206.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2134.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2062.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1990.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1846.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1774.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1702.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1386 2947.68 64.7998 64.7998 re
-f
-1378.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4284 4459.68 64.7998 64.7998 re
-f
-4312.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4276.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4240.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4204.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4168.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4132.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4096.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4060.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4024.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3988.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3952.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3916.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3880.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3844.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3808.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3772.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3736.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3700.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3664.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3628.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3592.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3556.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3520.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3484.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3448.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3412.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3376.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3340.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3304.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3232.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3160.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3124.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3088.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2908.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2872.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2836.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2800.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2764.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2728.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2692.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2656.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2620.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2584.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2548.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2512.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2476.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2440.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2404.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2368.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2332.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2296.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2260.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2224.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2152.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2116.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2080.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2044.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2008.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1972.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1936.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1900.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1864.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1828.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1792.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1756.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1720.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1684.8 4492.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1648.8 4564.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4593.6 4528.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-3020.4 4528.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1436.4 4528.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1386 3163.68 64.7998 64.7998 re
-f
-1378.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2682 3163.68 64.7998 64.7998 re
-f
-2818.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2988 3541.68 64.7998 64.7998 re
-f
-3124.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3124.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3052.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1026 5215.68 64.7998 64.7998 re
-f
-1162.8 5212.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1090.8 5176.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1162.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1090.8 5104.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1162.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1090.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1162.8 4996.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-942.48 5284.08 m
-0 -35.39 -28.69 -64.08 -64.08 -64.08 c
--35.39 0 -64.08 28.69 -64.08 64.08 c
-0 35.39 28.69 64.08 64.08 64.08 c
-35.39 0 64.08 -28.69 64.08 -64.08 c
-f
-942.48 4959.36 m
-0 -35.39 -28.69 -64.08 -64.08 -64.08 c
--35.39 0 -64.08 28.69 -64.08 64.08 c
-0 35.39 28.69 64.08 64.08 64.08 c
-35.39 0 64.08 -28.69 64.08 -64.08 c
-f
-1004.4 5341.68 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-1004.4 4901.76 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-2718 3541.68 64.7998 64.7998 re
-f
-2854.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4554 5215.68 64.7998 64.7998 re
-f
-4690.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4834.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4834.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4690.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4618.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4582.8 4110.48 79.2 79.2 re
-f
-4734 4150.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4806 4150.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4554 4783.68 64.7998 64.7998 re
-f
-4690.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4834.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4834.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4690.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4618.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4446 4279.68 64.7998 64.7998 re
-f
-4726.8 4312.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4582.8 3516.48 79.2 79.2 re
-f
-4734 3556.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4806 3556.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-788.399 3685.68 71.9998 71.9998 re
-f
-860.4 3594.24 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-930.96 3756.96 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-930.96 3558.24 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3816 3253.68 64.7998 64.7998 re
-f
-3988.8 3286.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2556 3487.68 64.7998 64.7998 re
-f
-2620.8 3808.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3618 5179.68 64.7998 64.7998 re
-f
-3682.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2790 3757.68 64.7998 64.7998 re
-f
-2782.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5094 5287.68 64.7998 64.7998 re
-f
-5158.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 5176.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 5104.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4960.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4888.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4744.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4672.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4600.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4528.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4456.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4384.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4312.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4240.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4168.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4096.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 4024.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3952.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3880.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3808.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3736.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3664.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3592.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3520.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3304.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3232.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3160.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5158.8 3088.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5176.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5104.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4960.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4888.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4744.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4672.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4600.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4528.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4456.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4384.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4312.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4240.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4168.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4096.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 4024.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3952.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3880.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3808.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3736.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3664.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3592.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3520.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3304.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3232.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3160.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5086.8 3088.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5176.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5104.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4960.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4888.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4744.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4672.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4600.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4528.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4456.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4384.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4312.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4240.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4168.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4096.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 4024.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3952.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3880.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3808.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3736.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3664.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3592.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3520.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3304.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3232.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3160.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5014.8 3088.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5252.4 2944.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-5252.4 5464.08 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-4204.8 3516.48 79.2 79.2 re
-f
-4356 3556.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4428 3556.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-3924 2965.68 64.7998 64.7998 re
-f
-3880.8 2998.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1231.2 3613.68 64.7998 64.7998 re
-f
-1008 3646.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2412 3775.68 64.7998 64.7998 re
-f
-2476.8 3520.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4492.8 3030.48 79.2 79.2 re
-f
-4500 3070.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4428 3070.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-3956.4 3628.08 71.9998 71.9998 re
-f
-3848.4 3664.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-1638 3325.68 64.7998 64.7998 re
-f
-1774.8 3358.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1846.8 3358.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 3358.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1846.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1774.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1702.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1148.4 3250.08 71.9998 71.9998 re
-f
-1292.4 3286.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-2952 5179.68 64.7998 64.7998 re
-f
-3016.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4248 4117.68 64.7998 64.7998 re
-f
-4384.8 4150.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4582.8 3858.48 79.2 79.2 re
-f
-4734 3898.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4806 3898.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-1008 3253.68 64.7998 64.7998 re
-f
-1072.8 3070.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3956.4 4042.08 71.9998 71.9998 re
-f
-3848.4 4078.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-982.8 3905.28 64.7998 64.7998 re
-f
-1047.6 3865.68 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1040.4 4769.28 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1040.4 4092.48 m
-0 -29.82 -24.18 -54 -54 -54 c
--29.82 0 -54 24.18 -54 54 c
-0 29.82 24.18 54 54 54 c
-29.82 0 54 -24.18 54 -54 c
-f
-1058.4 4574.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.4 4538.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-1058.4 4502.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.4 4466.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-1058.4 4430.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.4 4394.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-1058.4 4358.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.4 4322.88 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-986.399 4250.88 71.9998 71.9998 re
-f
-2412 3937.68 64.7998 64.7998 re
-f
-2548.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2620.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2692.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2764.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2836.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2908.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2980.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3052.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3124.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 3970.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3268.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3196.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3124.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3052.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2980.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2908.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2836.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2764.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2692.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2620.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2548.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2476.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1404 3721.68 64.7998 64.7998 re
-f
-1540.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1612.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1684.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1756.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1828.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1900.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1972.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2044.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2116.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2260.8 3754.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2260.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2116.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2044.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1972.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1900.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1828.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1756.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1684.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1612.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1540.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1468.8 4186.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3416.4 4150.08 71.9998 71.9998 re
-f
-3560.4 4186.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3488.4 4114.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3560.4 4114.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3488.4 4042.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3560.4 4042.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3488.4 3970.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-3560.4 3970.08 m
-0 -19.88 -16.12 -36 -36 -36 c
--19.88 0 -36 16.12 -36 36 c
-0 19.88 16.12 36 36 36 c
-19.88 0 36 -16.12 36 -36 c
-f
-2682 2947.68 64.7998 64.7998 re
-f
-2818.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2160 5215.68 64.7998 64.7998 re
-f
-2296.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2368.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2440.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2512.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2584.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2656.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2728.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2728.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2656.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2584.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2512.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2440.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2368.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2296.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2224.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4204.8 3858.48 79.2 79.2 re
-f
-4356 3898.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-4428 3898.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-810 3905.28 64.7998 64.7998 re
-f
-874.8 3865.68 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1530 3163.68 64.7998 64.7998 re
-f
-1594.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4410 5179.68 64.7998 64.7998 re
-f
-4474.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3258 5215.68 64.7998 64.7998 re
-f
-3394.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3466.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3538.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3538.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3466.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3394.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3322.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3906 4783.68 64.7998 64.7998 re
-f
-4042.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4114.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4114.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4042.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3970.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4266 4747.68 64.7998 64.7998 re
-f
-4330.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3762 4747.68 64.7998 64.7998 re
-f
-3826.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3762 5179.68 64.7998 64.7998 re
-f
-3826.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3906 5215.68 64.7998 64.7998 re
-f
-4042.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4114.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 5248.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4114.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4042.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3970.8 5464.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4266 5179.68 64.7998 64.7998 re
-f
-4330.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4410 4747.68 64.7998 64.7998 re
-f
-4474.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3258 4783.68 64.7998 64.7998 re
-f
-3394.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3466.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3538.8 4816.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3538.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3466.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3394.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3322.8 5032.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3618 4747.68 64.7998 64.7998 re
-f
-3682.8 5068.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3376.8 3030.48 79.2 79.2 re
-f
-3384 3070.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-3312 3070.08 m
-0 -21.87 -17.73 -39.6 -39.6 -39.6 c
--21.87 0 -39.6 17.73 -39.6 39.6 c
-0 21.87 17.73 39.6 39.6 39.6 c
-21.87 0 39.6 -17.73 39.6 -39.6 c
-f
-2538 3163.68 64.7998 64.7998 re
-f
-2602.8 2980.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2808 5179.68 64.7998 64.7998 re
-f
-2872.8 5500.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3880.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3988.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4492.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4798.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4348.8 3790.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4348.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4798.8 3448.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4726.8 3664.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4870.8 3592.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4348.8 3304.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3304.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3880.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4942.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4870.8 3736.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4726.8 4060.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3790.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4510.8 4078.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4942.8 4924.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-5122.8 4924.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4546.8 4888.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4762.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4330.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3970.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4186.8 5374.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4618.8 5374.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3358.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3970.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4330.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4726.8 5140.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4042.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1468.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1720.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2170.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2782.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2818.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 3898.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2404.8 3898.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1468.8 3898.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1396.8 3646.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1396.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2271.6 3592.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3538.8 4942.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-4240.8 4942.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2728.8 4942.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3682.8 4978.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1918.8 3466.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1378.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1990.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2422.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3052.8 3376.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1018.8 2836.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3963.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4917.6 5284.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4935.6 5032.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4323.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-5043.6 4420.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2343.6 4420.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4755.6 5194.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3394.8 5320.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1929.6 5068.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3351.6 3970.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2577.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2865.6 5284.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4251.6 5500.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4881.6 5554.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3891.6 5248.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4935.6 5410.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-5115.6 5518.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4467.6 5554.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4071.6 5554.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4395.6 4636.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4845.6 4636.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4881.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4449.6 4690.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1857.6 5248.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2199.6 3070.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1965.6 5176.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1281.6 4852.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4107.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3459.6 4690.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1893.6 5212.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4143.6 5086.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4467.6 3952.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3675.6 5446.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3009.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2422.8 3124.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1137.6 3898.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1281.6 3898.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4647.6 3610.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1245.6 3016.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1767.6 2890.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2271.6 2890.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1990.8 3124.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2134.8 3124.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1839.6 3070.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3459.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3675.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3855.6 4888.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3819.6 5554.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2289.6 4798.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2361.6 4798.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2361.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2253.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2325.6 4906.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2217.6 4906.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2505.6 4798.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2613.6 4798.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2541.6 4762.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2685.6 4762.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2577.6 4672.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2775.6 4672.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1497.6 4672.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1569.6 4762.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1605.6 4942.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2613.6 4942.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1677.6 4636.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2469.6 4636.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1749.6 4708.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2433.6 4726.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1821.6 4906.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2397.6 4906.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1893.6 3826.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2397.6 3826.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2782.8 3898.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2973.6 3862.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1911.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2037.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2307.6 3862.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1965.6 3862.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2307.6 4240.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2044.8 4042.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2188.8 4042.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2613.6 4132.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2001.6 4132.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2685.6 4096.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2073.6 4096.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2073.6 4258.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2721.6 4276.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1533.6 4312.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2793.6 4312.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2145.6 4312.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3045.6 3844.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2559.6 4060.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1677.6 4096.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1965.6 4006.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3261.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2307.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3225.6 3664.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1569.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2901.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2109.6 4348.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2217.6 4348.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2091.6 5014.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2289.6 5014.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2253.6 4420.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1821.6 4402.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1749.6 4438.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3549.6 4240.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2854.8 3718.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-2541.6 3754.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3909.6 3754.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3844.8 3574.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3783.6 3628.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2613.6 4384.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3945.6 4384.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2649.6 5050.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2433.6 5050.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2829.6 5086.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2505.6 5086.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2973.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3081.6 4078.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3009.6 2890.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2602.8 3124.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3153.6 3070.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1227.6 4600.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1332 4506.48 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3693.6 4348.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2343.6 3124.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2811.6 3124.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3333.6 4042.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3369.6 4114.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3405.6 4186.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1209.6 3718.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3441.6 3700.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3351.6 3862.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2055.6 3430.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-3351.6 3430.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4197.6 3790.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4197.6 3232.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1965.6 3340.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4557.6 3340.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4557.6 3898.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4269.6 3304.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2487.6 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-2811.6 3466.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-810 3286.08 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1396.8 3826.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-1004.4 3811.68 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-1105.2 3462.48 m
-0 -13.92 -11.28 -25.2 -25.2 -25.2 c
--13.92 0 -25.2 11.28 -25.2 25.2 c
-0 13.92 11.28 25.2 25.2 25.2 c
-13.92 0 25.2 -11.28 25.2 -25.2 c
-f
-4726.8 3070.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-3376.8 3196.08 m
-0 -17.89 -14.51 -32.4 -32.4 -32.4 c
--17.89 0 -32.4 14.51 -32.4 32.4 c
-0 17.89 14.51 32.4 32.4 32.4 c
-17.89 0 32.4 -14.51 32.4 -32.4 c
-f
-cleartomark end end pagesave restore showpage
-%%PageTrailer
-%%Trailer
-%%Pages: 9
-%%EOF
diff --git a/doc/aicpower.ps b/doc/aicpower.ps
deleted file mode 100644 (file)
index 90f63d4..0000000
+++ /dev/null
@@ -1,9750 +0,0 @@
-%!
-/inch {72 mul} def
-
-/mils
-{
-1000 div inch
-} def
-
-/setcoords
-{
-8269 mils 0 translate
-90 rotate
-0.451036 0.451036 scale
-} def
-
-/box {
-exch dup 0 rlineto
-exch 0 exch rlineto
-neg 0 rlineto
-closepath
-stroke
-} def
-/fbox {
-exch dup 0 rlineto
-exch 0 exch rlineto
-neg 0 rlineto
-closepath
-fill
-} def
-
-
-setcoords
-
-2 setlinecap
-
-% Translate origin to the right place...
--38893 mils -59384 mils translate
-
-gsave
-gsave
-newpath
-43600 mils 63300 mils moveto
-43500 mils 63100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43500 mils 63100 mils moveto
-43400 mils 63300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43400 mils 63300 mils moveto
-43300 mils 63100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43300 mils 63100 mils moveto
-43200 mils 63300 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-43600 mils 63300 mils moveto
-43700 mils 63100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43700 mils 63100 mils moveto
-43750 mils 63200 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-43900 mils 63200 mils moveto
-43750 mils 63200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-43000 mils 63200 mils moveto
-43152 mils 63200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-43201 mils 63300 mils moveto
-43150 mils 63200 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43200 mils 63400 mils moveto
-(R9) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43300 mils 62900 mils moveto
-(10k) show
-grestore
-
-gsave
-gsave
-newpath
-42900 mils 62700 mils moveto
-43100 mils 62600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43100 mils 62600 mils moveto
-42900 mils 62500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42900 mils 62500 mils moveto
-43100 mils 62400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43100 mils 62400 mils moveto
-42900 mils 62300 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-42900 mils 62700 mils moveto
-43100 mils 62800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43100 mils 62800 mils moveto
-43000 mils 62850 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-43000 mils 63000 mils moveto
-43000 mils 62850 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-43000 mils 62100 mils moveto
-43000 mils 62252 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-42900 mils 62301 mils moveto
-43000 mils 62250 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43500 mils 62600 mils moveto
-(R10) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(R10) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-42500 mils 62500 mils moveto
-(1k5) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43000 mils 63000 mils moveto
-43000 mils 63200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43000 mils 61900 mils moveto
-43000 mils 62100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-42900 mils 61900 mils moveto
-43100 mils 61900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42955 mils 61850 mils moveto
-43045 mils 61850 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42980 mils 61810 mils moveto
-43020 mils 61810 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 65500 mils moveto
-43500 mils 65300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 65300 mils moveto
-43800 mils 65300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43800 mils 65500 mils moveto
-43800 mils 65300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43800 mils 65100 mils moveto
-43800 mils 65300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-43700 mils 65100 mils moveto
-43900 mils 65100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43755 mils 65050 mils moveto
-43845 mils 65050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43780 mils 65010 mils moveto
-43820 mils 65010 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43800 mils 67700 mils moveto
-43800 mils 67800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43800 mils 67800 mils moveto
-43500 mils 67800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 67700 mils moveto
-43500 mils 69400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-45400 mils 69400 mils moveto
-45400 mils 69200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-45400 mils 68500 mils moveto
-45400 mils 68700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-45600 mils 69000 mils moveto
-45200 mils 69000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45400 mils 68700 mils moveto
-45400 mils 68900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45400 mils 69000 mils moveto
-45400 mils 69200 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-45400 mils 68200 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-45600 mils 69111 mils moveto
-45500 mils 69111 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45549 mils 69060 mils moveto
-45549 mils 69160 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45700 mils 68900 mils moveto
-(C10) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45700 mils 68700 mils moveto
-(4.7uFx16V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 69400 mils moveto
-45400 mils 69400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-44300 mils 68300 mils moveto
-44300 mils 68500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-44200 mils 68300 mils moveto
-44400 mils 68300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44255 mils 68250 mils moveto
-44345 mils 68250 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44280 mils 68210 mils moveto
-44320 mils 68210 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-45400 mils 68300 mils moveto
-45400 mils 68500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-45300 mils 68300 mils moveto
-45500 mils 68300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45355 mils 68250 mils moveto
-45445 mils 68250 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45380 mils 68210 mils moveto
-45420 mils 68210 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-45100 mils 66900 mils moveto
-45100 mils 66300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-45100 mils 66300 mils moveto
-44900 mils 66300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-45700 mils 65800 mils moveto
-45700 mils 66000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-45600 mils 65800 mils moveto
-45800 mils 65800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45655 mils 65750 mils moveto
-45745 mils 65750 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45680 mils 65710 mils moveto
-45720 mils 65710 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-44900 mils 66900 mils moveto
-46300 mils 66900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-46800 mils 66500 mils moveto
-46800 mils 66700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-46700 mils 66500 mils moveto
-46900 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46755 mils 66450 mils moveto
-46845 mils 66450 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46780 mils 66410 mils moveto
-46820 mils 66410 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-gsave
-newpath
-47000 mils 68100 mils moveto
-46600 mils 68100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-47000 mils 68100 mils moveto
-46800 mils 68400 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-46800 mils 68400 mils moveto
-46600 mils 68100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-47000 mils 68400 mils moveto
-46600 mils 68400 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-46800 mils 67800 mils moveto
-46800 mils 68000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-46800 mils 68700 mils moveto
-46800 mils 68500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-46800 mils 68500 mils moveto
-46800 mils 68400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46800 mils 68100 mils moveto
-46800 mils 68000 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-47400 mils (D7) stringwidth pop
--1 mul add
-68100 mils
-moveto
-(D7) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-47200 mils (1N4007) stringwidth pop
-1 mul add
-68500 mils
-moveto
-(1N4007) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(1N4007) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-46800 mils 67800 mils moveto
-46800 mils 67500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-46800 mils 68700 mils moveto
-46800 mils 69400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-46800 mils 69400 mils moveto
-46800 mils 69600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-46650 mils 69600 mils moveto
-46950 mils 69600 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46600 mils 69700 mils moveto
-(+24V) show
-grestore
-
-gsave
-gsave
-newpath
-46500 mils 75600 mils moveto
-46500 mils 76000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46500 mils 75600 mils moveto
-46800 mils 75800 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-46800 mils 75800 mils moveto
-46500 mils 76000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46800 mils 75600 mils moveto
-46800 mils 76000 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-46200 mils 75800 mils moveto
-46400 mils 75800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-47100 mils 75800 mils moveto
-46900 mils 75800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-46900 mils 75800 mils moveto
-46800 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46500 mils 75800 mils moveto
-46400 mils 75800 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46900 mils (D1) stringwidth pop
--1 mul add
-76100 mils
-moveto
-(D1) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46500 mils (1N4148) stringwidth pop
--1 mul add
-76100 mils
-moveto
-(1N4148) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48200 mils 75100 mils moveto
-48700 mils 75100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48700 mils 75100 mils moveto
-48700 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48700 mils 75800 mils moveto
-47100 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48700 mils 75100 mils moveto
-48700 mils 74900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-48700 mils 74200 mils moveto
-48700 mils 74400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-48900 mils 74700 mils moveto
-48500 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-48700 mils 74400 mils moveto
-48700 mils 74600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-48700 mils 74700 mils moveto
-48700 mils 74900 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-48700 mils 73900 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-48900 mils 74811 mils moveto
-48800 mils 74811 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-48849 mils 74760 mils moveto
-48849 mils 74860 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-49000 mils 74600 mils moveto
-(C5) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-49000 mils 74400 mils moveto
-(1uFx25V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48700 mils 73600 mils moveto
-48700 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-46200 mils 71600 mils moveto
-46200 mils 71800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-46100 mils 71600 mils moveto
-46300 mils 71600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46155 mils 71550 mils moveto
-46245 mils 71550 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46180 mils 71510 mils moveto
-46220 mils 71510 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-gsave
-newpath
-43400 mils 74800 mils moveto
-43600 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43600 mils 74700 mils moveto
-43400 mils 74600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43400 mils 74600 mils moveto
-43600 mils 74500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43600 mils 74500 mils moveto
-43400 mils 74400 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-43400 mils 74800 mils moveto
-43600 mils 74900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43600 mils 74900 mils moveto
-43500 mils 74950 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-43500 mils 75100 mils moveto
-43500 mils 74950 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-43500 mils 74200 mils moveto
-43500 mils 74352 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-43400 mils 74401 mils moveto
-43500 mils 74350 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43300 mils 74700 mils moveto
-(R11) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(R11) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43000 mils 74400 mils moveto
-(330) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-44100 mils 75800 mils moveto
-46200 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-44100 mils 75800 mils moveto
-44100 mils 75600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-44100 mils 74900 mils moveto
-44100 mils 75100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-44300 mils 75400 mils moveto
-43900 mils 75400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44100 mils 75100 mils moveto
-44100 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44100 mils 75400 mils moveto
-44100 mils 75600 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-44100 mils 74600 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-44300 mils 75511 mils moveto
-44200 mils 75511 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44249 mils 75460 mils moveto
-44249 mils 75560 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44400 mils 75300 mils moveto
-(C3) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44200 mils 75000 mils moveto
-(10uFx25V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-44100 mils 74700 mils moveto
-44100 mils 74900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-44000 mils 74700 mils moveto
-44200 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44055 mils 74650 mils moveto
-44145 mils 74650 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44080 mils 74610 mils moveto
-44120 mils 74610 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-44100 mils 75800 mils moveto
-44100 mils 76000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-43950 mils 76000 mils moveto
-44250 mils 76000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-43975 mils 76050 mils moveto
-(+12V) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57000 mils 71600 mils moveto
-57000 mils 71800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-56900 mils 71600 mils moveto
-57100 mils 71600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-56955 mils 71550 mils moveto
-57045 mils 71550 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-56980 mils 71510 mils moveto
-57020 mils 71510 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-gsave
-newpath
-56600 mils 75600 mils moveto
-56600 mils 76000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-56600 mils 75600 mils moveto
-56300 mils 75800 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-56300 mils 75800 mils moveto
-56600 mils 76000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-56300 mils 75600 mils moveto
-56300 mils 76000 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-56900 mils 75800 mils moveto
-56700 mils 75800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-56000 mils 75800 mils moveto
-56200 mils 75800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-56200 mils 75800 mils moveto
-56300 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-56600 mils 75800 mils moveto
-56700 mils 75800 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56100 mils 76100 mils moveto
-(D2) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 76100 mils moveto
-(1N4148) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-59300 mils 75800 mils moveto
-59300 mils 75600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-59300 mils 74900 mils moveto
-59300 mils 75100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-59100 mils 75400 mils moveto
-59500 mils 75400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59300 mils 75100 mils moveto
-59300 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59300 mils 75400 mils moveto
-59300 mils 75600 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-59300 mils 74600 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-59100 mils 75511 mils moveto
-59200 mils 75511 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59151 mils 75460 mils moveto
-59151 mils 75560 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-59000 mils (C4) stringwidth pop
--1 mul add
-75300 mils
-moveto
-(C4) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-59000 mils (10uFx25V) stringwidth pop
--1 mul add
-75100 mils
-moveto
-(10uFx25V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-59300 mils 74700 mils moveto
-59300 mils 74900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-59200 mils 74700 mils moveto
-59400 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59255 mils 74650 mils moveto
-59345 mils 74650 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59280 mils 74610 mils moveto
-59320 mils 74610 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-59300 mils 75800 mils moveto
-59300 mils 76000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-59150 mils 76000 mils moveto
-59450 mils 76000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-59175 mils 76050 mils moveto
-(+12V) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-54500 mils 75100 mils moveto
-54500 mils 74900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-54500 mils 74200 mils moveto
-54500 mils 74400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-54300 mils 74700 mils moveto
-54700 mils 74700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-54500 mils 74400 mils moveto
-54500 mils 74600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-54500 mils 74700 mils moveto
-54500 mils 74900 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-54500 mils 73900 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-54300 mils 74811 mils moveto
-54400 mils 74811 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-54351 mils 74760 mils moveto
-54351 mils 74860 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54100 mils (C6) stringwidth pop
--1 mul add
-74600 mils
-moveto
-(C6) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54100 mils (1uFx25V) stringwidth pop
--1 mul add
-74400 mils
-moveto
-(1uFx25V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-50000 mils 73500 mils moveto
-50000 mils 73700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53300 mils 73700 mils moveto
-53300 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-50000 mils 72500 mils moveto
-50000 mils 72700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-49900 mils 72500 mils moveto
-50100 mils 72500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49955 mils 72450 mils moveto
-50045 mils 72450 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49980 mils 72410 mils moveto
-50020 mils 72410 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53300 mils 72500 mils moveto
-53300 mils 72700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-53200 mils 72500 mils moveto
-53400 mils 72500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53255 mils 72450 mils moveto
-53345 mils 72450 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53280 mils 72410 mils moveto
-53320 mils 72410 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-50000 mils 74500 mils moveto
-50000 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53300 mils 74500 mils moveto
-53300 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-50000 mils 75300 mils moveto
-50000 mils 75500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-49850 mils 75500 mils moveto
-50150 mils 75500 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-49800 mils 75600 mils moveto
-(+24V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53300 mils 75300 mils moveto
-53300 mils 75500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-53150 mils 75500 mils moveto
-53450 mils 75500 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53100 mils 75600 mils moveto
-(+24V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-50000 mils 75300 mils moveto
-50600 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53300 mils 75300 mils moveto
-52700 mils 75300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-50600 mils 75300 mils moveto
-50600 mils 75100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-50600 mils 74400 mils moveto
-50600 mils 74600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-50800 mils 74900 mils moveto
-50400 mils 74900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50600 mils 74600 mils moveto
-50600 mils 74800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50600 mils 74900 mils moveto
-50600 mils 75100 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-50600 mils 74100 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-50800 mils 75011 mils moveto
-50700 mils 75011 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50749 mils 74960 mils moveto
-50749 mils 75060 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-50900 mils 74800 mils moveto
-(C7) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-50700 mils 74500 mils moveto
-(1000uFx35V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-52700 mils 75300 mils moveto
-52700 mils 75100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-52700 mils 74400 mils moveto
-52700 mils 74600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52900 mils 74900 mils moveto
-52500 mils 74900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52700 mils 74600 mils moveto
-52700 mils 74800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52700 mils 74900 mils moveto
-52700 mils 75100 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-52700 mils 74100 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-52900 mils 75011 mils moveto
-52800 mils 75011 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52849 mils 74960 mils moveto
-52849 mils 75060 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52100 mils 74800 mils moveto
-(C8) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-51500 mils 75000 mils moveto
-(1000uFx35V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-50600 mils 74200 mils moveto
-50600 mils 74400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-50500 mils 74200 mils moveto
-50700 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50555 mils 74150 mils moveto
-50645 mils 74150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50580 mils 74110 mils moveto
-50620 mils 74110 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-52700 mils 74200 mils moveto
-52700 mils 74400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52600 mils 74200 mils moveto
-52800 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52655 mils 74150 mils moveto
-52745 mils 74150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52680 mils 74110 mils moveto
-52720 mils 74110 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-gsave
-gsave
-newpath
-45600 mils 72100 mils moveto
-47900 mils 72100 mils lineto
-stroke
-grestore
-gsave
-newpath
-47900 mils 72100 mils moveto
-47900 mils 75400 mils lineto
-stroke
-grestore
-gsave
-newpath
-47900 mils 75400 mils moveto
-45600 mils 75400 mils lineto
-stroke
-grestore
-gsave
-newpath
-45600 mils 75400 mils moveto
-45600 mils 72100 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-
-
-
-
-newpath
-10 mils setlinewidth
-45600 mils 75100 mils moveto
-45300 mils 75100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45500 mils (1) stringwidth pop
--1 mul add
-75150 mils
-moveto
-(1) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45700 mils 75100 mils
-10.000000
-.5 mul -1 mul add moveto
-(SV+) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-45600 mils 73600 mils moveto
-45300 mils 73600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45500 mils (2) stringwidth pop
--1 mul add
-73650 mils
-moveto
-(2) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45700 mils 73600 mils
-10.000000
-.5 mul -1 mul add moveto
-(INTOP) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-45600 mils 73000 mils moveto
-45300 mils 73000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45500 mils (3) stringwidth pop
--1 mul add
-73050 mils
-moveto
-(3) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45700 mils 73000 mils
-10.000000
-.5 mul -1 mul add moveto
-(INBOTTOM) show
-grestore
-
-
-gsave
-newpath
-45550 mils 74200 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-45500 mils 74200 mils moveto
-45300 mils 74200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45500 mils (4) stringwidth pop
--1 mul add
-74250 mils
-moveto
-(4) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45700 mils 74200 mils
-10.000000
-.5 mul -1 mul add moveto
-(/UVOUT) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-46200 mils 72100 mils moveto
-46200 mils 71800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46250 mils 71900 mils moveto
-(5) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46200 mils (GND) stringwidth pop
-.5 mul -1 mul add
-72200 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-47900 mils 72700 mils moveto
-48200 mils 72700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-48000 mils 72750 mils moveto
-(6) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46900 mils 72700 mils
-10.000000
-.5 mul -1 mul add moveto
-(BGATEFB) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-47900 mils 73000 mils moveto
-48200 mils 73000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-48000 mils 73050 mils moveto
-(19) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46900 mils 73000 mils
-10.000000
-.5 mul -1 mul add moveto
-(BGATEDR) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-45600 mils 74800 mils moveto
-45300 mils 74800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45500 mils (20) stringwidth pop
--1 mul add
-74850 mils
-moveto
-(20) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45700 mils 74800 mils
-10.000000
-.5 mul -1 mul add moveto
-(PV+) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-47900 mils 73600 mils moveto
-48200 mils 73600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-48000 mils 73650 mils moveto
-(21) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46900 mils 73600 mils
-10.000000
-.5 mul -1 mul add moveto
-(TSOURCE) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-47900 mils 74200 mils moveto
-48200 mils 74200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-48000 mils 74250 mils moveto
-(22) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46900 mils 74200 mils
-10.000000
-.5 mul -1 mul add moveto
-(TGATEFB) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-47900 mils 74500 mils moveto
-48200 mils 74500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-48000 mils 74550 mils moveto
-(23) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46900 mils 74500 mils
-10.000000
-.5 mul -1 mul add moveto
-(TGATEDR) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-47900 mils 75100 mils moveto
-48200 mils 75100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-48000 mils 75150 mils moveto
-(24) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-47100 mils 75100 mils
-10.000000
-.5 mul -1 mul add moveto
-(BOOST) show
-grestore
-
-
-newpath
-45300 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-45300 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-48200 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-48200 mils 74200 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-47300 mils 71900 mils moveto
-(LT1162) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-47600 mils 75500 mils moveto
-(U9) show
-grestore
-
-
-gsave
-gsave
-gsave
-newpath
-43200 mils 65800 mils moveto
-44600 mils 65800 mils lineto
-stroke
-grestore
-gsave
-newpath
-44600 mils 65800 mils moveto
-44600 mils 67400 mils lineto
-stroke
-grestore
-gsave
-newpath
-44600 mils 67400 mils moveto
-43200 mils 67400 mils lineto
-stroke
-grestore
-gsave
-newpath
-43200 mils 67400 mils moveto
-43200 mils 65800 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-gsave
-newpath
-44650 mils 66900 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-44700 mils 66900 mils moveto
-44900 mils 66900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44700 mils 66950 mils moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44100 mils 66900 mils
-10.000000
-.5 mul -1 mul add moveto
-(OUT) show
-grestore
-
-gsave
-newpath
-44650 mils 66300 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-44700 mils 66300 mils moveto
-44900 mils 66300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44700 mils 66350 mils moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44100 mils 66300 mils
-10.000000
-.5 mul -1 mul add moveto
-(OUT) show
-grestore
-
-newpath
-10 mils setlinewidth
-43200 mils 66600 mils moveto
-42900 mils 66600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-42900 mils 66650 mils moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43300 mils 66600 mils
-10.000000
-.5 mul -1 mul add moveto
-(IN) show
-grestore
-
-newpath
-10 mils setlinewidth
-43500 mils 65800 mils moveto
-43500 mils 65500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43550 mils 65600 mils moveto
-(4) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43500 mils
-10.000000
-.5 mul 1 mul add
-65900 mils moveto
-90 rotate
-(GND) show
-grestore
-
-newpath
-10 mils setlinewidth
-43800 mils 65800 mils moveto
-43800 mils 65500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43850 mils 65600 mils moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43800 mils
-10.000000
-.5 mul 1 mul add
-65900 mils moveto
-90 rotate
-(GND) show
-grestore
-
-newpath
-10 mils setlinewidth
-43500 mils 67400 mils moveto
-43500 mils 67700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43550 mils 67500 mils moveto
-(1) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43500 mils
-10.000000
-.5 mul 1 mul add
-67000 mils moveto
-90 rotate
-(Vdd) show
-grestore
-
-newpath
-10 mils setlinewidth
-43800 mils 67400 mils moveto
-43800 mils 67700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43850 mils 67500 mils moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-43800 mils
-10.000000
-.5 mul 1 mul add
-67000 mils moveto
-90 rotate
-(Vdd) show
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44100 mils 65600 mils moveto
-(MAX4429) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44200 mils 67500 mils moveto
-(U10) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-42900 mils 63200 mils moveto
-43000 mils 63200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57200 mils 61000 mils moveto
-(Actuator Interface Card - Power Driver & CAN Interface) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57000 mils 60700 mils moveto
-(aicpower.sch) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57300 mils 60400 mils moveto
-(2) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-58600 mils 60400 mils moveto
-(3) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 74200 mils moveto
-45300 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-42900 mils 73600 mils moveto
-45300 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-42900 mils 73000 mils moveto
-45300 mils 73000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48200 mils 72700 mils moveto
-48200 mils 73000 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-gsave
-newpath
-40200 mils 60300 mils moveto
-63500 mils 60300 mils lineto
-stroke
-grestore
-gsave
-newpath
-63500 mils 60300 mils moveto
-63500 mils 76800 mils lineto
-stroke
-grestore
-gsave
-newpath
-63500 mils 76800 mils moveto
-40200 mils 76800 mils lineto
-stroke
-grestore
-gsave
-newpath
-40200 mils 76800 mils moveto
-40200 mils 60300 mils lineto
-stroke
-grestore
-grestore
-
-
-gsave
-newpath
-59400 mils 60900 mils moveto
-59400 mils 60300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-56000 mils 60700 mils moveto
-(FILE:) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-59500 mils 60700 mils moveto
-(REVISION:) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-59500 mils 60400 mils moveto
-(DRAWN BY: ) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-56000 mils 60400 mils moveto
-(PAGE) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-57700 mils 60400 mils moveto
-(OF) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-56000 mils 61000 mils moveto
-(TITLE) show
-grestore
-
-gsave
-gsave
-newpath
-55900 mils 60300 mils moveto
-63500 mils 60300 mils lineto
-stroke
-grestore
-gsave
-newpath
-63500 mils 60300 mils moveto
-63500 mils 61700 mils lineto
-stroke
-grestore
-gsave
-newpath
-63500 mils 61700 mils moveto
-55900 mils 61700 mils lineto
-stroke
-grestore
-gsave
-newpath
-55900 mils 61700 mils moveto
-55900 mils 60300 mils lineto
-stroke
-grestore
-grestore
-
-gsave
-newpath
-55900 mils 60900 mils moveto
-63500 mils 60900 mils lineto
-stroke
-grestore
-
-grestore
-
-gsave
-gsave
-gsave
-newpath
-55300 mils 72100 mils moveto
-57600 mils 72100 mils lineto
-stroke
-grestore
-gsave
-newpath
-57600 mils 72100 mils moveto
-57600 mils 75400 mils lineto
-stroke
-grestore
-gsave
-newpath
-57600 mils 75400 mils moveto
-55300 mils 75400 mils lineto
-stroke
-grestore
-gsave
-newpath
-55300 mils 75400 mils moveto
-55300 mils 72100 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-
-
-
-
-newpath
-10 mils setlinewidth
-57600 mils 75100 mils moveto
-57900 mils 75100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57700 mils 75150 mils moveto
-(7) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57500 mils (SV+) stringwidth pop
--1 mul add
-75100 mils
-10.000000
-.5 mul -1 mul add moveto
-(SV+) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-57600 mils 73600 mils moveto
-57900 mils 73600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57700 mils 73650 mils moveto
-(8) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57500 mils (INTOP) stringwidth pop
--1 mul add
-73600 mils
-10.000000
-.5 mul -1 mul add moveto
-(INTOP) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-57600 mils 73000 mils moveto
-57900 mils 73000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57700 mils 73050 mils moveto
-(9) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57500 mils (INBOTTOM) stringwidth pop
--1 mul add
-73000 mils
-10.000000
-.5 mul -1 mul add moveto
-(INBOTTOM) show
-grestore
-
-
-gsave
-newpath
-57650 mils 74200 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-57700 mils 74200 mils moveto
-57900 mils 74200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57700 mils 74250 mils moveto
-(10) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57500 mils (/UVOUT) stringwidth pop
--1 mul add
-74200 mils
-10.000000
-.5 mul -1 mul add moveto
-(/UVOUT) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-57000 mils 72100 mils moveto
-57000 mils 71800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56950 mils (11) stringwidth pop
--1 mul add
-71900 mils
-moveto
-(11) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57000 mils (GND) stringwidth pop
-.5 mul -1 mul add
-72200 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-55300 mils 72700 mils moveto
-55000 mils 72700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55200 mils (12) stringwidth pop
--1 mul add
-72750 mils
-moveto
-(12) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56300 mils (BGATEFB) stringwidth pop
--1 mul add
-72700 mils
-10.000000
-.5 mul -1 mul add moveto
-(BGATEFB) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-55300 mils 73000 mils moveto
-55000 mils 73000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55200 mils (13) stringwidth pop
--1 mul add
-73050 mils
-moveto
-(13) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56300 mils (BGATEDR) stringwidth pop
--1 mul add
-73000 mils
-10.000000
-.5 mul -1 mul add moveto
-(BGATEDR) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-57600 mils 74800 mils moveto
-57900 mils 74800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57700 mils 74850 mils moveto
-(14) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57500 mils (PV+) stringwidth pop
--1 mul add
-74800 mils
-10.000000
-.5 mul -1 mul add moveto
-(PV+) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-55300 mils 73600 mils moveto
-55000 mils 73600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55200 mils (15) stringwidth pop
--1 mul add
-73650 mils
-moveto
-(15) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56300 mils (TSOURCE) stringwidth pop
--1 mul add
-73600 mils
-10.000000
-.5 mul -1 mul add moveto
-(TSOURCE) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-55300 mils 74200 mils moveto
-55000 mils 74200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55200 mils (16) stringwidth pop
--1 mul add
-74250 mils
-moveto
-(16) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56300 mils (TGATEFB) stringwidth pop
--1 mul add
-74200 mils
-10.000000
-.5 mul -1 mul add moveto
-(TGATEFB) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-55300 mils 74500 mils moveto
-55000 mils 74500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55200 mils (17) stringwidth pop
--1 mul add
-74550 mils
-moveto
-(17) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56300 mils (TGATEDR) stringwidth pop
--1 mul add
-74500 mils
-10.000000
-.5 mul -1 mul add moveto
-(TGATEDR) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-55300 mils 75100 mils moveto
-55000 mils 75100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55200 mils (18) stringwidth pop
--1 mul add
-75150 mils
-moveto
-(18) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56100 mils (BOOST) stringwidth pop
--1 mul add
-75100 mils
-10.000000
-.5 mul -1 mul add moveto
-(BOOST) show
-grestore
-
-
-newpath
-57900 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-57900 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-55000 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55000 mils 74200 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55900 mils (LT1162) stringwidth pop
--1 mul add
-71900 mils
-moveto
-(LT1162) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57500 mils (U9) stringwidth pop
--1 mul add
-75500 mils
-moveto
-(U9) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-55000 mils 72700 mils moveto
-55000 mils 73000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-54500 mils 74200 mils moveto
-54500 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-54500 mils 75100 mils moveto
-55000 mils 75100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57900 mils 74800 mils moveto
-57900 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-45300 mils 74800 mils moveto
-45300 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-54500 mils 75800 mils moveto
-56000 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-54500 mils 75100 mils moveto
-54500 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56900 mils 75800 mils moveto
-59300 mils 75800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57900 mils 73000 mils moveto
-57900 mils 71000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57900 mils 71000 mils moveto
-45000 mils 71000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-45000 mils 71000 mils moveto
-45000 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57900 mils 73600 mils moveto
-58300 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-58300 mils 73600 mils moveto
-58300 mils 70700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-58300 mils 70700 mils moveto
-44800 mils 70700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-44800 mils 70700 mils moveto
-44800 mils 73000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 70200 mils moveto
-58800 mils 70200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-58800 mils 70200 mils moveto
-58800 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-58800 mils 74200 mils moveto
-57900 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48200 mils 73600 mils moveto
-50000 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55000 mils 73600 mils moveto
-53300 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48200 mils 73900 mils moveto
-48200 mils 74500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48200 mils 73900 mils moveto
-49500 mils 73900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-49500 mils 72900 mils moveto
-48200 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55000 mils 73900 mils moveto
-55000 mils 74500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55000 mils 73900 mils moveto
-53800 mils 73900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53800 mils 72900 mils moveto
-55000 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-55300 mils 69200 mils moveto
-55500 mils 69100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55500 mils 69100 mils moveto
-55300 mils 69000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55300 mils 69000 mils moveto
-55500 mils 68900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55500 mils 68900 mils moveto
-55300 mils 68800 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-55300 mils 69200 mils moveto
-55500 mils 69300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55500 mils 69300 mils moveto
-55400 mils 69350 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-55400 mils 69500 mils moveto
-55400 mils 69350 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-55400 mils 68600 mils moveto
-55400 mils 68752 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55300 mils 68801 mils moveto
-55400 mils 68750 mils lineto
-stroke
-grestore
-
-
-
-
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 68600 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 68600 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56000 mils 69100 mils moveto
-(R1) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(R1) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55500 mils 68600 mils moveto
-(2k2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55400 mils 69500 mils moveto
-55400 mils 69700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55250 mils 69700 mils moveto
-55550 mils 69700 mils lineto
-stroke
-grestore
-
-
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55100 mils 69800 mils moveto
-(VCAN0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 66300 mils moveto
-52800 mils 66300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-52800 mils 66300 mils moveto
-52800 mils 66200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-52800 mils 66000 mils moveto
-52800 mils 66200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52700 mils 66000 mils moveto
-52900 mils 66000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52755 mils 65950 mils moveto
-52845 mils 65950 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52780 mils 65910 mils moveto
-52820 mils 65910 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55300 mils 67100 mils moveto
-55300 mils 67300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55150 mils 67300 mils moveto
-55450 mils 67300 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55000 mils 67400 mils moveto
-(VCAN0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56800 mils 67000 mils moveto
-56800 mils 66900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-58200 mils 67800 mils moveto
-59300 mils 67800 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-gsave
-newpath
-56500 mils 67300 mils moveto
-57900 mils 67300 mils lineto
-stroke
-grestore
-gsave
-newpath
-57900 mils 67300 mils moveto
-57900 mils 68900 mils lineto
-stroke
-grestore
-gsave
-newpath
-57900 mils 68900 mils moveto
-56500 mils 68900 mils lineto
-stroke
-grestore
-gsave
-newpath
-56500 mils 68900 mils moveto
-56500 mils 67300 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-newpath
-10 mils setlinewidth
-57900 mils 68400 mils moveto
-58200 mils 68400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-58000 mils 68450 mils moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57300 mils 68400 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANH) show
-grestore
-
-newpath
-10 mils setlinewidth
-57900 mils 67800 mils moveto
-58200 mils 67800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-58000 mils 67850 mils moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57300 mils 67800 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANL) show
-grestore
-
-newpath
-10 mils setlinewidth
-56500 mils 68600 mils moveto
-56200 mils 68600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56200 mils 68650 mils moveto
-(1) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 68600 mils
-10.000000
-.5 mul -1 mul add moveto
-(TXD) show
-grestore
-
-newpath
-10 mils setlinewidth
-56500 mils 68300 mils moveto
-56200 mils 68300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56200 mils 68350 mils moveto
-(4) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 68300 mils
-10.000000
-.5 mul -1 mul add moveto
-(RXD) show
-grestore
-
-newpath
-10 mils setlinewidth
-56500 mils 67700 mils moveto
-56200 mils 67700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56200 mils 67750 mils moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 67700 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vref) show
-grestore
-
-newpath
-10 mils setlinewidth
-56800 mils 67300 mils moveto
-56800 mils 67000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56850 mils 67100 mils moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 67400 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-newpath
-10 mils setlinewidth
-57100 mils 67300 mils moveto
-57100 mils 67000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57150 mils 67100 mils moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57100 mils 67400 mils
-10.000000
-.5 mul -1 mul add moveto
-(Rs) show
-grestore
-
-newpath
-10 mils setlinewidth
-57200 mils 68900 mils moveto
-57200 mils 69200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57250 mils 69000 mils moveto
-(3) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57000 mils 68800 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vcc) show
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57400 mils 67100 mils moveto
-(PCA82C250) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 69000 mils moveto
-(U4) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57100 mils 66700 mils moveto
-57100 mils 67000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57100 mils 66700 mils moveto
-57100 mils 66500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-57250 mils 66500 mils moveto
-56950 mils 66500 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 66300 mils moveto
-(GNDCAN0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55400 mils 68300 mils moveto
-55400 mils 68100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55550 mils 68100 mils moveto
-55250 mils 68100 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54900 mils 67900 mils moveto
-(GNDCAN0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 68300 mils moveto
-55400 mils 68300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 66600 mils moveto
-52200 mils 66600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 69000 mils moveto
-53100 mils 68900 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-52800 mils 68700 mils moveto
-52700 mils 68500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52700 mils 68500 mils moveto
-52600 mils 68700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52600 mils 68700 mils moveto
-52500 mils 68500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52500 mils 68500 mils moveto
-52400 mils 68700 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-52800 mils 68700 mils moveto
-52900 mils 68500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52900 mils 68500 mils moveto
-52950 mils 68600 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-53100 mils 68600 mils moveto
-52950 mils 68600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-52200 mils 68600 mils moveto
-52352 mils 68600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52401 mils 68700 mils moveto
-52350 mils 68600 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52400 mils 68800 mils moveto
-(R2) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52400 mils 68300 mils moveto
-(390) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 68600 mils moveto
-56200 mils 68600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 69200 mils moveto
-55100 mils 69500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 69500 mils moveto
-57200 mils 69500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57200 mils 69500 mils moveto
-57200 mils 69200 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-55700 mils 66700 mils moveto
-55600 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55600 mils 66500 mils moveto
-55500 mils 66700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55500 mils 66700 mils moveto
-55400 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55400 mils 66500 mils moveto
-55300 mils 66700 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-55700 mils 66700 mils moveto
-55800 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55800 mils 66500 mils moveto
-55850 mils 66600 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-56000 mils 66600 mils moveto
-55850 mils 66600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-55100 mils 66600 mils moveto
-55252 mils 66600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55301 mils 66700 mils moveto
-55250 mils 66600 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55500 mils 66800 mils moveto
-(R4) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55400 mils 66300 mils moveto
-(390) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 66900 mils moveto
-55300 mils 66900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55300 mils 66900 mils moveto
-55300 mils 67100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56000 mils 66600 mils moveto
-56000 mils 68300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56000 mils 68300 mils moveto
-56200 mils 68300 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-52800 mils 67300 mils moveto
-52700 mils 67100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52700 mils 67100 mils moveto
-52600 mils 67300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52600 mils 67300 mils moveto
-52500 mils 67100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52500 mils 67100 mils moveto
-52400 mils 67300 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-52800 mils 67300 mils moveto
-52900 mils 67100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52900 mils 67100 mils moveto
-52950 mils 67200 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-53100 mils 67200 mils moveto
-52950 mils 67200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-52200 mils 67200 mils moveto
-52352 mils 67200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52401 mils 67300 mils moveto
-52350 mils 67200 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52400 mils 67400 mils moveto
-(R3) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52400 mils 66900 mils moveto
-(2k2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-52200 mils 67200 mils moveto
-52200 mils 66600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 67300 mils moveto
-53100 mils 67200 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-55300 mils 64900 mils moveto
-55500 mils 64800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55500 mils 64800 mils moveto
-55300 mils 64700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55300 mils 64700 mils moveto
-55500 mils 64600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55500 mils 64600 mils moveto
-55300 mils 64500 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-55300 mils 64900 mils moveto
-55500 mils 65000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55500 mils 65000 mils moveto
-55400 mils 65050 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-55400 mils 65200 mils moveto
-55400 mils 65050 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-55400 mils 64300 mils moveto
-55400 mils 64452 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55300 mils 64501 mils moveto
-55400 mils 64450 mils lineto
-stroke
-grestore
-
-
-
-
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 64300 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 64300 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56000 mils 64800 mils moveto
-(R5) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(R5) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55500 mils 64300 mils moveto
-(2k2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55400 mils 65200 mils moveto
-55400 mils 65400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55250 mils 65400 mils moveto
-55550 mils 65400 mils lineto
-stroke
-grestore
-
-
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55100 mils 65500 mils moveto
-(VCAN1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 62000 mils moveto
-52800 mils 62000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-52800 mils 62000 mils moveto
-52800 mils 61900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-52800 mils 61700 mils moveto
-52800 mils 61900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52700 mils 61700 mils moveto
-52900 mils 61700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52755 mils 61650 mils moveto
-52845 mils 61650 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52780 mils 61610 mils moveto
-52820 mils 61610 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55300 mils 62800 mils moveto
-55300 mils 63000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55150 mils 63000 mils moveto
-55450 mils 63000 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55000 mils 63100 mils moveto
-(VCAN1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56800 mils 62700 mils moveto
-56800 mils 62600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-58200 mils 63500 mils moveto
-59300 mils 63500 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-gsave
-newpath
-56500 mils 63000 mils moveto
-57900 mils 63000 mils lineto
-stroke
-grestore
-gsave
-newpath
-57900 mils 63000 mils moveto
-57900 mils 64600 mils lineto
-stroke
-grestore
-gsave
-newpath
-57900 mils 64600 mils moveto
-56500 mils 64600 mils lineto
-stroke
-grestore
-gsave
-newpath
-56500 mils 64600 mils moveto
-56500 mils 63000 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-newpath
-10 mils setlinewidth
-57900 mils 64100 mils moveto
-58200 mils 64100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-58000 mils 64150 mils moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57300 mils 64100 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANH) show
-grestore
-
-newpath
-10 mils setlinewidth
-57900 mils 63500 mils moveto
-58200 mils 63500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-58000 mils 63550 mils moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57300 mils 63500 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANL) show
-grestore
-
-newpath
-10 mils setlinewidth
-56500 mils 64300 mils moveto
-56200 mils 64300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56200 mils 64350 mils moveto
-(1) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 64300 mils
-10.000000
-.5 mul -1 mul add moveto
-(TXD) show
-grestore
-
-newpath
-10 mils setlinewidth
-56500 mils 64000 mils moveto
-56200 mils 64000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56200 mils 64050 mils moveto
-(4) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 64000 mils
-10.000000
-.5 mul -1 mul add moveto
-(RXD) show
-grestore
-
-newpath
-10 mils setlinewidth
-56500 mils 63400 mils moveto
-56200 mils 63400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56200 mils 63450 mils moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 63400 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vref) show
-grestore
-
-newpath
-10 mils setlinewidth
-56800 mils 63000 mils moveto
-56800 mils 62700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56850 mils 62800 mils moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 63100 mils
-10.000000
-.5 mul -1 mul add moveto
-(GND) show
-grestore
-
-newpath
-10 mils setlinewidth
-57100 mils 63000 mils moveto
-57100 mils 62700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57150 mils 62800 mils moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57100 mils 63100 mils
-10.000000
-.5 mul -1 mul add moveto
-(Rs) show
-grestore
-
-newpath
-10 mils setlinewidth
-57200 mils 64600 mils moveto
-57200 mils 64900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57250 mils 64700 mils moveto
-(3) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57000 mils 64500 mils
-10.000000
-.5 mul -1 mul add moveto
-(Vcc) show
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-57400 mils 62800 mils moveto
-(PCA82C250) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 64700 mils moveto
-(U5) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57100 mils 62400 mils moveto
-57100 mils 62700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57100 mils 62400 mils moveto
-57100 mils 62200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-57250 mils 62200 mils moveto
-56950 mils 62200 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-56600 mils 62000 mils moveto
-(GNDCAN1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55400 mils 64000 mils moveto
-55400 mils 63800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55550 mils 63800 mils moveto
-55250 mils 63800 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54900 mils 63600 mils moveto
-(GNDCAN1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 64000 mils moveto
-55400 mils 64000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 62300 mils moveto
-52200 mils 62300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 64700 mils moveto
-53100 mils 64600 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-52800 mils 64400 mils moveto
-52700 mils 64200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52700 mils 64200 mils moveto
-52600 mils 64400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52600 mils 64400 mils moveto
-52500 mils 64200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52500 mils 64200 mils moveto
-52400 mils 64400 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-52800 mils 64400 mils moveto
-52900 mils 64200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52900 mils 64200 mils moveto
-52950 mils 64300 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-53100 mils 64300 mils moveto
-52950 mils 64300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-52200 mils 64300 mils moveto
-52352 mils 64300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52401 mils 64400 mils moveto
-52350 mils 64300 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52400 mils 64500 mils moveto
-(R6) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52400 mils 64000 mils moveto
-(390) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 64300 mils moveto
-56200 mils 64300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 64900 mils moveto
-55100 mils 65200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 65200 mils moveto
-57200 mils 65200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-57200 mils 65200 mils moveto
-57200 mils 64900 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-55700 mils 62400 mils moveto
-55600 mils 62200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55600 mils 62200 mils moveto
-55500 mils 62400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55500 mils 62400 mils moveto
-55400 mils 62200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55400 mils 62200 mils moveto
-55300 mils 62400 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-55700 mils 62400 mils moveto
-55800 mils 62200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-55800 mils 62200 mils moveto
-55850 mils 62300 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-56000 mils 62300 mils moveto
-55850 mils 62300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-55100 mils 62300 mils moveto
-55252 mils 62300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-55301 mils 62400 mils moveto
-55250 mils 62300 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55500 mils 62500 mils moveto
-(R8) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-55400 mils 62000 mils moveto
-(390) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 62600 mils moveto
-55300 mils 62600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55300 mils 62600 mils moveto
-55300 mils 62800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56000 mils 62300 mils moveto
-56000 mils 64000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56000 mils 64000 mils moveto
-56200 mils 64000 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-52800 mils 63000 mils moveto
-52700 mils 62800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52700 mils 62800 mils moveto
-52600 mils 63000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52600 mils 63000 mils moveto
-52500 mils 62800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52500 mils 62800 mils moveto
-52400 mils 63000 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-52800 mils 63000 mils moveto
-52900 mils 62800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52900 mils 62800 mils moveto
-52950 mils 62900 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-53100 mils 62900 mils moveto
-52950 mils 62900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-52200 mils 62900 mils moveto
-52352 mils 62900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52401 mils 63000 mils moveto
-52350 mils 62900 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52400 mils 63100 mils moveto
-(R7) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52400 mils 62600 mils moveto
-(2k2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-52200 mils 62900 mils moveto
-52200 mils 62300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 63000 mils moveto
-53100 mils 62900 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-60400 mils 60700 mils moveto
-(1.3.0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-44300 mils 68500 mils moveto
-44300 mils 68700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-44300 mils 69400 mils moveto
-44300 mils 69200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-44100 mils 68900 mils moveto
-44500 mils 68900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44100 mils 69000 mils moveto
-44500 mils 69000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44300 mils 69200 mils moveto
-44300 mils 69000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44300 mils 68900 mils moveto
-44300 mils 68700 mils lineto
-stroke
-grestore
-
-
-
-
-
-newpath
-44300 mils 69400 mils
-30 mils
-0 360 arc
-fill
-newpath
-44300 mils 69400 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44600 mils 68800 mils moveto
-(C9) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44500 mils 68500 mils moveto
-(220nF) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-45700 mils 66000 mils moveto
-45700 mils 66200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-45700 mils 66900 mils moveto
-45700 mils 66700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-45500 mils 66400 mils moveto
-45900 mils 66400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45500 mils 66500 mils moveto
-45900 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45700 mils 66700 mils moveto
-45700 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-45700 mils 66400 mils moveto
-45700 mils 66200 mils lineto
-stroke
-grestore
-
-
-
-
-
-newpath
-45700 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-45700 mils 66900 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46000 mils 66300 mils moveto
-(C11) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-45900 mils 66000 mils moveto
-(2.2nF) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 68900 mils moveto
-53400 mils 68900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53200 mils 69000 mils moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53500 mils 68900 mils moveto
-(Anode) show
-grestore
-
-newpath
-10 mils setlinewidth
-53100 mils 68600 mils moveto
-53400 mils 68600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53200 mils 68700 mils moveto
-(3) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53500 mils 68600 mils moveto
-(Cathode) show
-grestore
-
-newpath
-10 mils setlinewidth
-54800 mils 68600 mils moveto
-55100 mils 68600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-54900 mils 68700 mils moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54500 mils 68600 mils moveto
-(Vo) show
-grestore
-
-newpath
-10 mils setlinewidth
-54800 mils 68900 mils moveto
-55100 mils 68900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-54900 mils 69000 mils moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54500 mils 68900 mils moveto
-(Vx) show
-grestore
-
-newpath
-10 mils setlinewidth
-54800 mils 69200 mils moveto
-55100 mils 69200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-54900 mils 69300 mils moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54400 mils 69200 mils moveto
-(Vcc) show
-grestore
-
-newpath
-10 mils setlinewidth
-54800 mils 68300 mils moveto
-55100 mils 68300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-54900 mils 68400 mils moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54300 mils 68300 mils moveto
-(GND) show
-grestore
-
-gsave
-gsave
-newpath
-53400 mils 68000 mils moveto
-54800 mils 68000 mils lineto
-stroke
-grestore
-gsave
-newpath
-54800 mils 68000 mils moveto
-54800 mils 69500 mils lineto
-stroke
-grestore
-gsave
-newpath
-54800 mils 69500 mils moveto
-53400 mils 69500 mils lineto
-stroke
-grestore
-gsave
-newpath
-53400 mils 69500 mils moveto
-53400 mils 68000 mils lineto
-stroke
-grestore
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53400 mils 69600 mils moveto
-(6N137) show
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53400 mils 69600 mils moveto
-(6N137) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54600 mils 69600 mils moveto
-(U12) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 64600 mils moveto
-53400 mils 64600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53200 mils 64700 mils moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53500 mils 64600 mils moveto
-(Anode) show
-grestore
-
-newpath
-10 mils setlinewidth
-53100 mils 64300 mils moveto
-53400 mils 64300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53200 mils 64400 mils moveto
-(3) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53500 mils 64300 mils moveto
-(Cathode) show
-grestore
-
-newpath
-10 mils setlinewidth
-54800 mils 64300 mils moveto
-55100 mils 64300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-54900 mils 64400 mils moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54500 mils 64300 mils moveto
-(Vo) show
-grestore
-
-newpath
-10 mils setlinewidth
-54800 mils 64600 mils moveto
-55100 mils 64600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-54900 mils 64700 mils moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54500 mils 64600 mils moveto
-(Vx) show
-grestore
-
-newpath
-10 mils setlinewidth
-54800 mils 64900 mils moveto
-55100 mils 64900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-54900 mils 65000 mils moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54400 mils 64900 mils moveto
-(Vcc) show
-grestore
-
-newpath
-10 mils setlinewidth
-54800 mils 64000 mils moveto
-55100 mils 64000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-54900 mils 64100 mils moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54300 mils 64000 mils moveto
-(GND) show
-grestore
-
-gsave
-gsave
-newpath
-53400 mils 63700 mils moveto
-54800 mils 63700 mils lineto
-stroke
-grestore
-gsave
-newpath
-54800 mils 63700 mils moveto
-54800 mils 65200 mils lineto
-stroke
-grestore
-gsave
-newpath
-54800 mils 65200 mils moveto
-53400 mils 65200 mils lineto
-stroke
-grestore
-gsave
-newpath
-53400 mils 65200 mils moveto
-53400 mils 63700 mils lineto
-stroke
-grestore
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53400 mils 65300 mils moveto
-(6N137) show
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53400 mils 65300 mils moveto
-(6N137) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54600 mils 65300 mils moveto
-(U14) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 62600 mils moveto
-54800 mils 62600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-55000 mils (2) stringwidth pop
--1 mul add
-62700 mils
-moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54700 mils (Anode) stringwidth pop
--1 mul add
-62600 mils
-moveto
-(Anode) show
-grestore
-
-newpath
-10 mils setlinewidth
-55100 mils 62300 mils moveto
-54800 mils 62300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-55000 mils (3) stringwidth pop
--1 mul add
-62400 mils
-moveto
-(3) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54700 mils (Cathode) stringwidth pop
--1 mul add
-62300 mils
-moveto
-(Cathode) show
-grestore
-
-newpath
-10 mils setlinewidth
-53400 mils 62300 mils moveto
-53100 mils 62300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53300 mils (6) stringwidth pop
--1 mul add
-62400 mils
-moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53700 mils (Vo) stringwidth pop
--1 mul add
-62300 mils
-moveto
-(Vo) show
-grestore
-
-newpath
-10 mils setlinewidth
-53400 mils 62600 mils moveto
-53100 mils 62600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53300 mils (7) stringwidth pop
--1 mul add
-62700 mils
-moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53700 mils (Vx) stringwidth pop
--1 mul add
-62600 mils
-moveto
-(Vx) show
-grestore
-
-newpath
-10 mils setlinewidth
-53400 mils 62900 mils moveto
-53100 mils 62900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53300 mils (8) stringwidth pop
--1 mul add
-63000 mils
-moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53800 mils (Vcc) stringwidth pop
--1 mul add
-62900 mils
-moveto
-(Vcc) show
-grestore
-
-newpath
-10 mils setlinewidth
-53400 mils 62000 mils moveto
-53100 mils 62000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53300 mils (5) stringwidth pop
--1 mul add
-62100 mils
-moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53900 mils (GND) stringwidth pop
--1 mul add
-62000 mils
-moveto
-(GND) show
-grestore
-
-gsave
-gsave
-newpath
-53400 mils 61700 mils moveto
-54800 mils 61700 mils lineto
-stroke
-grestore
-gsave
-newpath
-54800 mils 61700 mils moveto
-54800 mils 63200 mils lineto
-stroke
-grestore
-gsave
-newpath
-54800 mils 63200 mils moveto
-53400 mils 63200 mils lineto
-stroke
-grestore
-gsave
-newpath
-53400 mils 63200 mils moveto
-53400 mils 61700 mils lineto
-stroke
-grestore
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54800 mils (6N137) stringwidth pop
--1 mul add
-63300 mils
-moveto
-(6N137) show
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54800 mils (6N137) stringwidth pop
--1 mul add
-63300 mils
-moveto
-(6N137) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53600 mils (U15) stringwidth pop
--1 mul add
-63300 mils
-moveto
-(U15) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-55100 mils 66900 mils moveto
-54800 mils 66900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-55000 mils (2) stringwidth pop
--1 mul add
-67000 mils
-moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54700 mils (Anode) stringwidth pop
--1 mul add
-66900 mils
-moveto
-(Anode) show
-grestore
-
-newpath
-10 mils setlinewidth
-55100 mils 66600 mils moveto
-54800 mils 66600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-55000 mils (3) stringwidth pop
--1 mul add
-66700 mils
-moveto
-(3) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54700 mils (Cathode) stringwidth pop
--1 mul add
-66600 mils
-moveto
-(Cathode) show
-grestore
-
-newpath
-10 mils setlinewidth
-53400 mils 66600 mils moveto
-53100 mils 66600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53300 mils (6) stringwidth pop
--1 mul add
-66700 mils
-moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53700 mils (Vo) stringwidth pop
--1 mul add
-66600 mils
-moveto
-(Vo) show
-grestore
-
-newpath
-10 mils setlinewidth
-53400 mils 66900 mils moveto
-53100 mils 66900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53300 mils (7) stringwidth pop
--1 mul add
-67000 mils
-moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53700 mils (Vx) stringwidth pop
--1 mul add
-66900 mils
-moveto
-(Vx) show
-grestore
-
-newpath
-10 mils setlinewidth
-53400 mils 67200 mils moveto
-53100 mils 67200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53300 mils (8) stringwidth pop
--1 mul add
-67300 mils
-moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53800 mils (Vcc) stringwidth pop
--1 mul add
-67200 mils
-moveto
-(Vcc) show
-grestore
-
-newpath
-10 mils setlinewidth
-53400 mils 66300 mils moveto
-53100 mils 66300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-53300 mils (5) stringwidth pop
--1 mul add
-66400 mils
-moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53900 mils (GND) stringwidth pop
--1 mul add
-66300 mils
-moveto
-(GND) show
-grestore
-
-gsave
-gsave
-newpath
-53400 mils 66000 mils moveto
-54800 mils 66000 mils lineto
-stroke
-grestore
-gsave
-newpath
-54800 mils 66000 mils moveto
-54800 mils 67500 mils lineto
-stroke
-grestore
-gsave
-newpath
-54800 mils 67500 mils moveto
-53400 mils 67500 mils lineto
-stroke
-grestore
-gsave
-newpath
-53400 mils 67500 mils moveto
-53400 mils 66000 mils lineto
-stroke
-grestore
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54800 mils (6N137) stringwidth pop
--1 mul add
-67600 mils
-moveto
-(6N137) show
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-54800 mils (6N137) stringwidth pop
--1 mul add
-67600 mils
-moveto
-(6N137) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53600 mils (U13) stringwidth pop
--1 mul add
-67600 mils
-moveto
-(U13) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-58100 mils 61500 mils moveto
-(Universidade Federal do Rio Grande do Sul) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-58300 mils 61300 mils moveto
-(Departamento de Engenharia Eletrica) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-42900 mils 63200 mils moveto
-42700 mils 63200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-42700 mils 63300 mils moveto
-42700 mils 63100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42700 mils 63300 mils moveto
-42200 mils 63300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42200 mils 63300 mils moveto
-42100 mils 63200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42100 mils 63200 mils moveto
-42200 mils 63100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42200 mils 63100 mils moveto
-42700 mils 63100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-42000 mils (REFPOS) stringwidth pop
--1 mul add
-63200 mils
-10.000000
-.5 mul -1 mul add moveto
-(REFPOS) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-42700 mils 66600 mils moveto
-42900 mils 66600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-42100 mils 66700 mils moveto
-42100 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42100 mils 66700 mils moveto
-42600 mils 66700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42600 mils 66700 mils moveto
-42700 mils 66600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42700 mils 66600 mils moveto
-42600 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42600 mils 66500 mils moveto
-42100 mils 66500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-42000 mils (BRAKE) stringwidth pop
--1 mul add
-66600 mils
-10.000000
-.5 mul -1 mul add moveto
-(BRAKE) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-42700 mils 73600 mils moveto
-42900 mils 73600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-42100 mils 73700 mils moveto
-42100 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42100 mils 73700 mils moveto
-42600 mils 73700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42600 mils 73700 mils moveto
-42700 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42700 mils 73600 mils moveto
-42600 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42600 mils 73500 mils moveto
-42100 mils 73500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-42000 mils (DRVA) stringwidth pop
--1 mul add
-73600 mils
-10.000000
-.5 mul -1 mul add moveto
-(DRVA) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-42700 mils 73000 mils moveto
-42900 mils 73000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-42100 mils 73100 mils moveto
-42100 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42100 mils 73100 mils moveto
-42600 mils 73100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42600 mils 73100 mils moveto
-42700 mils 73000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42700 mils 73000 mils moveto
-42600 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-42600 mils 72900 mils moveto
-42100 mils 72900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-42000 mils (DRVB) stringwidth pop
--1 mul add
-73000 mils
-10.000000
-.5 mul -1 mul add moveto
-(DRVB) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-52000 mils 68600 mils moveto
-52200 mils 68600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-51400 mils 68700 mils moveto
-51400 mils 68500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51400 mils 68700 mils moveto
-51900 mils 68700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51900 mils 68700 mils moveto
-52000 mils 68600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52000 mils 68600 mils moveto
-51900 mils 68500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51900 mils 68500 mils moveto
-51400 mils 68500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-51300 mils (CAN0TX) stringwidth pop
--1 mul add
-68600 mils
-10.000000
-.5 mul -1 mul add moveto
-(CAN0TX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-52000 mils 64300 mils moveto
-52200 mils 64300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-51400 mils 64400 mils moveto
-51400 mils 64200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51400 mils 64400 mils moveto
-51900 mils 64400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51900 mils 64400 mils moveto
-52000 mils 64300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52000 mils 64300 mils moveto
-51900 mils 64200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51900 mils 64200 mils moveto
-51400 mils 64200 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-51300 mils (CAN1TX) stringwidth pop
--1 mul add
-64300 mils
-10.000000
-.5 mul -1 mul add moveto
-(CAN1TX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-52200 mils 66600 mils moveto
-52000 mils 66600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-52000 mils 66700 mils moveto
-52000 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52000 mils 66700 mils moveto
-51500 mils 66700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51500 mils 66700 mils moveto
-51400 mils 66600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51400 mils 66600 mils moveto
-51500 mils 66500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51500 mils 66500 mils moveto
-52000 mils 66500 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-51300 mils (CAN0RX) stringwidth pop
--1 mul add
-66600 mils
-10.000000
-.5 mul -1 mul add moveto
-(CAN0RX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-52200 mils 62300 mils moveto
-52000 mils 62300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-52000 mils 62400 mils moveto
-52000 mils 62200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52000 mils 62400 mils moveto
-51500 mils 62400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51500 mils 62400 mils moveto
-51400 mils 62300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51400 mils 62300 mils moveto
-51500 mils 62200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-51500 mils 62200 mils moveto
-52000 mils 62200 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-51300 mils (CAN1RX) stringwidth pop
--1 mul add
-62300 mils
-10.000000
-.5 mul -1 mul add moveto
-(CAN1RX) show
-grestore
-
-
-gsave
-/Helvetica findfont
-12.600000 scalefont
-setfont
-
-60400 mils 60400 mils moveto
-(Walter Fetter Lages & Fernando Pessutto) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56800 mils 66900 mils moveto
-57100 mils 66900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-56800 mils 62600 mils moveto
-57100 mils 62600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-58200 mils 68400 mils moveto
-59300 mils 68400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-58200 mils 64100 mils moveto
-59300 mils 64100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-59300 mils 68400 mils moveto
-59500 mils 68400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-60000 mils 68500 mils moveto
-60100 mils 68400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-60100 mils 68400 mils moveto
-60000 mils 68300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59500 mils 68400 mils moveto
-59600 mils 68300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 68500 mils moveto
-59500 mils 68400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 68500 mils moveto
-60000 mils 68500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 68300 mils moveto
-60000 mils 68300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-60200 mils 68400 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANH0) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-59300 mils 67800 mils moveto
-59500 mils 67800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-60000 mils 67900 mils moveto
-60100 mils 67800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-60100 mils 67800 mils moveto
-60000 mils 67700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59500 mils 67800 mils moveto
-59600 mils 67700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 67900 mils moveto
-59500 mils 67800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 67900 mils moveto
-60000 mils 67900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 67700 mils moveto
-60000 mils 67700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-60200 mils 67800 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANL0) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-59300 mils 64100 mils moveto
-59500 mils 64100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-60000 mils 64200 mils moveto
-60100 mils 64100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-60100 mils 64100 mils moveto
-60000 mils 64000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59500 mils 64100 mils moveto
-59600 mils 64000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 64200 mils moveto
-59500 mils 64100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 64200 mils moveto
-60000 mils 64200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 64000 mils moveto
-60000 mils 64000 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-60200 mils 64100 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANH1) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-59300 mils 63500 mils moveto
-59500 mils 63500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-60000 mils 63600 mils moveto
-60100 mils 63500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-60100 mils 63500 mils moveto
-60000 mils 63400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59500 mils 63500 mils moveto
-59600 mils 63400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 63600 mils moveto
-59500 mils 63500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 63600 mils moveto
-60000 mils 63600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-59600 mils 63400 mils moveto
-60000 mils 63400 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-60200 mils 63500 mils
-10.000000
-.5 mul -1 mul add moveto
-(CANL1) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-44100 mils 63200 mils moveto
-43900 mils 63200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-44700 mils 63300 mils moveto
-44700 mils 63100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44700 mils 63300 mils moveto
-44200 mils 63300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44200 mils 63300 mils moveto
-44100 mils 63200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44100 mils 63200 mils moveto
-44200 mils 63100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-44200 mils 63100 mils moveto
-44700 mils 63100 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-44800 mils 63200 mils
-10.000000
-.5 mul -1 mul add moveto
-(INDEX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-46800 mils 67800 mils moveto
-48200 mils 67800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-48200 mils 67800 mils moveto
-48400 mils 67800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-48400 mils 67900 mils moveto
-48400 mils 67700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-48400 mils 67900 mils moveto
-48900 mils 67900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-48900 mils 67900 mils moveto
-49000 mils 67800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49000 mils 67800 mils moveto
-48900 mils 67700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-48900 mils 67700 mils moveto
-48400 mils 67700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-49100 mils 67800 mils
-10.000000
-.5 mul -1 mul add moveto
-(/RELEASE) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 76000 mils moveto
-43500 mils 76200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-43350 mils 76200 mils moveto
-43650 mils 76200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-43375 mils 76250 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 69400 mils moveto
-43500 mils 69600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-43350 mils 69600 mils moveto
-43650 mils 69600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-43375 mils 69650 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 69000 mils moveto
-53100 mils 69200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52950 mils 69200 mils moveto
-53250 mils 69200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-52975 mils 69250 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 67300 mils moveto
-53100 mils 67500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52950 mils 67500 mils moveto
-53250 mils 67500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-52975 mils 67550 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 64700 mils moveto
-53100 mils 64900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52950 mils 64900 mils moveto
-53250 mils 64900 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-52975 mils 64950 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53100 mils 63000 mils moveto
-53100 mils 63200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-52950 mils 63200 mils moveto
-53250 mils 63200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-52975 mils 63250 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-50000 mils 73600 mils moveto
-50200 mils 73600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-50200 mils 73700 mils moveto
-50200 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50200 mils 73700 mils moveto
-50700 mils 73700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50700 mils 73700 mils moveto
-50800 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50800 mils 73600 mils moveto
-50700 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50700 mils 73500 mils moveto
-50200 mils 73500 mils lineto
-stroke
-grestore
-
-
-
-
-
-newpath
-50000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-50800 mils 73500 mils
-10.000000
-.5 mul -1 mul add moveto
-(MOTOR+) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-53300 mils 73600 mils moveto
-53100 mils 73600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-53100 mils 73700 mils moveto
-53100 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53100 mils 73700 mils moveto
-52600 mils 73700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52600 mils 73700 mils moveto
-52500 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52500 mils 73600 mils moveto
-52600 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-52600 mils 73500 mils moveto
-53100 mils 73500 mils lineto
-stroke
-grestore
-
-
-
-
-
-newpath
-53300 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 73600 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-52500 mils (MOTOR-) stringwidth pop
--1 mul add
-73500 mils
-10.000000
-.5 mul -1 mul add moveto
-(MOTOR-) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-43500 mils 70200 mils moveto
-43500 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-
-
-
-
-gsave
-newpath
-49750 mils 74300 mils moveto
-50000 mils 74300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 73900 mils moveto
-50000 mils 73900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 74100 mils moveto
-49850 mils 74150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 74100 mils moveto
-49850 mils 74050 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-49500 mils 73900 mils moveto
-49700 mils 73900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-50000 mils 74300 mils moveto
-50000 mils 74500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-50000 mils 73900 mils moveto
-50000 mils 73700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-
-gsave
-newpath
-49750 mils 74375 mils moveto
-49750 mils 74225 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 74175 mils moveto
-49750 mils 74025 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 73975 mils moveto
-49750 mils 73825 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49700 mils 74300 mils moveto
-49700 mils 73900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 74100 mils moveto
-49900 mils 74100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49900 mils 74100 mils moveto
-49900 mils 73900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50000 mils 74300 mils moveto
-50000 mils 74150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50000 mils 74150 mils moveto
-50050 mils 74050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50000 mils 74150 mils moveto
-49950 mils 74050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49950 mils 74050 mils moveto
-50050 mils 74050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49950 mils 74150 mils moveto
-50050 mils 74150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49950 mils 74150 mils moveto
-49925 mils 74125 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50050 mils 74150 mils moveto
-50075 mils 74175 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50000 mils 74050 mils moveto
-50000 mils 73900 mils lineto
-stroke
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-50100 mils 73900 mils moveto
-(IRF1010N) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-50100 mils 74300 mils moveto
-(Q1) show
-grestore
-
-gsave
-
-
-
-
-gsave
-newpath
-49750 mils 73300 mils moveto
-50000 mils 73300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 72900 mils moveto
-50000 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 73100 mils moveto
-49850 mils 73150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 73100 mils moveto
-49850 mils 73050 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-49500 mils 72900 mils moveto
-49700 mils 72900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-50000 mils 73300 mils moveto
-50000 mils 73500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-50000 mils 72900 mils moveto
-50000 mils 72700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-
-gsave
-newpath
-49750 mils 73375 mils moveto
-49750 mils 73225 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 73175 mils moveto
-49750 mils 73025 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 72975 mils moveto
-49750 mils 72825 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49700 mils 73300 mils moveto
-49700 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49750 mils 73100 mils moveto
-49900 mils 73100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49900 mils 73100 mils moveto
-49900 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50000 mils 73300 mils moveto
-50000 mils 73150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50000 mils 73150 mils moveto
-50050 mils 73050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50000 mils 73150 mils moveto
-49950 mils 73050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49950 mils 73050 mils moveto
-50050 mils 73050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49950 mils 73150 mils moveto
-50050 mils 73150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-49950 mils 73150 mils moveto
-49925 mils 73125 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50050 mils 73150 mils moveto
-50075 mils 73175 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-50000 mils 73050 mils moveto
-50000 mils 72900 mils lineto
-stroke
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-50100 mils 72900 mils moveto
-(IRF1010N) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-50100 mils 73300 mils moveto
-(Q2) show
-grestore
-
-gsave
-
-
-
-
-gsave
-newpath
-53550 mils 74300 mils moveto
-53300 mils 74300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 73900 mils moveto
-53300 mils 73900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 74100 mils moveto
-53450 mils 74150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 74100 mils moveto
-53450 mils 74050 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-53800 mils 73900 mils moveto
-53600 mils 73900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-53300 mils 74300 mils moveto
-53300 mils 74500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-53300 mils 73900 mils moveto
-53300 mils 73700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-
-gsave
-newpath
-53550 mils 74375 mils moveto
-53550 mils 74225 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 74175 mils moveto
-53550 mils 74025 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 73975 mils moveto
-53550 mils 73825 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53600 mils 74300 mils moveto
-53600 mils 73900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 74100 mils moveto
-53400 mils 74100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53400 mils 74100 mils moveto
-53400 mils 73900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53300 mils 74300 mils moveto
-53300 mils 74150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53300 mils 74150 mils moveto
-53250 mils 74050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53300 mils 74150 mils moveto
-53350 mils 74050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53350 mils 74050 mils moveto
-53250 mils 74050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53350 mils 74150 mils moveto
-53250 mils 74150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53350 mils 74150 mils moveto
-53375 mils 74125 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53250 mils 74150 mils moveto
-53225 mils 74175 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53300 mils 74050 mils moveto
-53300 mils 73900 mils lineto
-stroke
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53200 mils (IRF1010N) stringwidth pop
--1 mul add
-73900 mils
-moveto
-(IRF1010N) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53200 mils (Q3) stringwidth pop
--1 mul add
-74300 mils
-moveto
-(Q3) show
-grestore
-
-gsave
-
-
-
-
-gsave
-newpath
-53550 mils 73300 mils moveto
-53300 mils 73300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 72900 mils moveto
-53300 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 73100 mils moveto
-53450 mils 73150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 73100 mils moveto
-53450 mils 73050 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-53800 mils 72900 mils moveto
-53600 mils 72900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-53300 mils 73300 mils moveto
-53300 mils 73500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-53300 mils 72900 mils moveto
-53300 mils 72700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-
-gsave
-newpath
-53550 mils 73375 mils moveto
-53550 mils 73225 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 73175 mils moveto
-53550 mils 73025 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 72975 mils moveto
-53550 mils 72825 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53600 mils 73300 mils moveto
-53600 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53550 mils 73100 mils moveto
-53400 mils 73100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53400 mils 73100 mils moveto
-53400 mils 72900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53300 mils 73300 mils moveto
-53300 mils 73150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53300 mils 73150 mils moveto
-53250 mils 73050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53300 mils 73150 mils moveto
-53350 mils 73050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53350 mils 73050 mils moveto
-53250 mils 73050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53350 mils 73150 mils moveto
-53250 mils 73150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53350 mils 73150 mils moveto
-53375 mils 73125 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53250 mils 73150 mils moveto
-53225 mils 73175 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-53300 mils 73050 mils moveto
-53300 mils 72900 mils lineto
-stroke
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53200 mils (IRF1010N) stringwidth pop
--1 mul add
-72900 mils
-moveto
-(IRF1010N) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-53200 mils (Q4) stringwidth pop
--1 mul add
-73300 mils
-moveto
-(Q4) show
-grestore
-
-gsave
-
-
-
-
-gsave
-newpath
-46550 mils 67300 mils moveto
-46800 mils 67300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46550 mils 66900 mils moveto
-46800 mils 66900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46550 mils 67100 mils moveto
-46650 mils 67150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46550 mils 67100 mils moveto
-46650 mils 67050 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-46300 mils 66900 mils moveto
-46500 mils 66900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-46800 mils 67300 mils moveto
-46800 mils 67500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-46800 mils 66900 mils moveto
-46800 mils 66700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-
-gsave
-newpath
-46550 mils 67375 mils moveto
-46550 mils 67225 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46550 mils 67175 mils moveto
-46550 mils 67025 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46550 mils 66975 mils moveto
-46550 mils 66825 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46500 mils 67300 mils moveto
-46500 mils 66900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46550 mils 67100 mils moveto
-46700 mils 67100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46700 mils 67100 mils moveto
-46700 mils 66900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46800 mils 67300 mils moveto
-46800 mils 67150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46800 mils 67150 mils moveto
-46850 mils 67050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46800 mils 67150 mils moveto
-46750 mils 67050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46750 mils 67050 mils moveto
-46850 mils 67050 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46750 mils 67150 mils moveto
-46850 mils 67150 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46750 mils 67150 mils moveto
-46725 mils 67125 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46850 mils 67150 mils moveto
-46875 mils 67175 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-46800 mils 67050 mils moveto
-46800 mils 66900 mils lineto
-stroke
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46900 mils 66900 mils moveto
-(IRLZ24N) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-46900 mils 67300 mils moveto
-(Q5) show
-grestore
-
-gsave
-gsave
-newpath
-43700 mils 75700 mils moveto
-43300 mils 75700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43700 mils 75700 mils moveto
-43500 mils 75400 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-43500 mils 75400 mils moveto
-43300 mils 75700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43700 mils 75400 mils moveto
-43300 mils 75400 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-43500 mils 75100 mils moveto
-43500 mils 75300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-43500 mils 76000 mils moveto
-43500 mils 75800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-43500 mils 75300 mils moveto
-43500 mils 75400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43500 mils 75700 mils moveto
-43500 mils 75800 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-43300 mils 75600 mils moveto
-43200 mils 75500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43300 mils 75500 mils moveto
-43200 mils 75400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43200 mils 75400 mils moveto
-43250 mils 75425 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43200 mils 75400 mils moveto
-43225 mils 75450 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43200 mils 75500 mils moveto
-43250 mils 75525 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-43200 mils 75500 mils moveto
-43225 mils 75550 mils lineto
-stroke
-grestore
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-42950 mils 75650 mils moveto
-(D9) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-42900 mils (Red) stringwidth pop
-1 mul add
-76000 mils
-moveto
-(Red) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(Red) show
-grestore
-
-newpath
-43000 mils 63200 mils
-30 mils
-0 360 arc
-fill
-newpath
-43800 mils 65300 mils
-30 mils
-0 360 arc
-fill
-newpath
-43800 mils 65300 mils
-30 mils
-0 360 arc
-fill
-newpath
-43500 mils 67800 mils
-30 mils
-0 360 arc
-fill
-newpath
-43500 mils 67800 mils
-30 mils
-0 360 arc
-fill
-newpath
-43500 mils 69400 mils
-30 mils
-0 360 arc
-fill
-newpath
-43500 mils 67800 mils
-30 mils
-0 360 arc
-fill
-newpath
-43500 mils 69400 mils
-30 mils
-0 360 arc
-fill
-newpath
-44300 mils 69400 mils
-30 mils
-0 360 arc
-fill
-newpath
-45100 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-45100 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-45100 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-45700 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-46800 mils 67800 mils
-30 mils
-0 360 arc
-fill
-newpath
-48700 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-48700 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-48700 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-48700 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-44100 mils 75800 mils
-30 mils
-0 360 arc
-fill
-newpath
-45300 mils 75800 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 75300 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 75300 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 75300 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 75300 mils
-30 mils
-0 360 arc
-fill
-newpath
-45300 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-45300 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-48200 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-48200 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-43000 mils 63200 mils
-30 mils
-0 360 arc
-fill
-newpath
-43500 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-45000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-44800 mils 73000 mils
-30 mils
-0 360 arc
-fill
-newpath
-48200 mils 72900 mils
-30 mils
-0 360 arc
-fill
-newpath
-57900 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-57900 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-55000 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55000 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55000 mils 72900 mils
-30 mils
-0 360 arc
-fill
-newpath
-54500 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-54500 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-54500 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-57900 mils 75800 mils
-30 mils
-0 360 arc
-fill
-newpath
-57900 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-57900 mils 75800 mils
-30 mils
-0 360 arc
-fill
-newpath
-45300 mils 75800 mils
-30 mils
-0 360 arc
-fill
-newpath
-45300 mils 75800 mils
-30 mils
-0 360 arc
-fill
-newpath
-45300 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-54500 mils 75100 mils
-30 mils
-0 360 arc
-fill
-newpath
-59300 mils 75800 mils
-30 mils
-0 360 arc
-fill
-newpath
-57900 mils 75800 mils
-30 mils
-0 360 arc
-fill
-newpath
-45000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-45000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-44800 mils 73000 mils
-30 mils
-0 360 arc
-fill
-newpath
-44800 mils 73000 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-48700 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-54500 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-48200 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-48200 mils 72900 mils
-30 mils
-0 360 arc
-fill
-newpath
-48200 mils 72900 mils
-30 mils
-0 360 arc
-fill
-newpath
-55000 mils 74200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55000 mils 72900 mils
-30 mils
-0 360 arc
-fill
-newpath
-55000 mils 72900 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 68600 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 68600 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-57100 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-52200 mils 66600 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 68600 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 69500 mils
-30 mils
-0 360 arc
-fill
-newpath
-52200 mils 66600 mils
-30 mils
-0 360 arc
-fill
-newpath
-53100 mils 67200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 64300 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 64300 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-57100 mils 62600 mils
-30 mils
-0 360 arc
-fill
-newpath
-52200 mils 62300 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 64300 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-55400 mils 65200 mils
-30 mils
-0 360 arc
-fill
-newpath
-52200 mils 62300 mils
-30 mils
-0 360 arc
-fill
-newpath
-53100 mils 62900 mils
-30 mils
-0 360 arc
-fill
-newpath
-44300 mils 69400 mils
-30 mils
-0 360 arc
-fill
-newpath
-44300 mils 69400 mils
-30 mils
-0 360 arc
-fill
-newpath
-45700 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-45700 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-57100 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-57100 mils 66900 mils
-30 mils
-0 360 arc
-fill
-newpath
-57100 mils 62600 mils
-30 mils
-0 360 arc
-fill
-newpath
-57100 mils 62600 mils
-30 mils
-0 360 arc
-fill
-newpath
-46800 mils 67800 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-50000 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-53300 mils 73600 mils
-30 mils
-0 360 arc
-fill
-newpath
-43500 mils 74200 mils
-30 mils
-0 360 arc
-fill
-
-showpage
diff --git a/doc/aictini.ps b/doc/aictini.ps
deleted file mode 100644 (file)
index 769b811..0000000
+++ /dev/null
@@ -1,11361 +0,0 @@
-%!
-/inch {72 mul} def
-
-/mils
-{
-1000 div inch
-} def
-
-/setcoords
-{
-8269 mils 0 translate
-90 rotate
-0.451036 0.451036 scale
-} def
-
-/box {
-exch dup 0 rlineto
-exch 0 exch rlineto
-neg 0 rlineto
-closepath
-stroke
-} def
-/fbox {
-exch dup 0 rlineto
-exch 0 exch rlineto
-neg 0 rlineto
-closepath
-fill
-} def
-
-
-setcoords
-
-2 setlinecap
-
-% Translate origin to the right place...
--2093 mils -71084 mils translate
-
-gsave
-gsave
-gsave
-newpath
-8000 mils 76100 mils moveto
-9500 mils 76100 mils lineto
-stroke
-grestore
-gsave
-newpath
-9500 mils 76100 mils moveto
-9500 mils 87900 mils lineto
-stroke
-grestore
-gsave
-newpath
-9500 mils 87900 mils moveto
-8000 mils 87900 mils lineto
-stroke
-grestore
-gsave
-newpath
-8000 mils 87900 mils moveto
-8000 mils 76100 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-newpath
-10 mils setlinewidth
-8000 mils 82500 mils moveto
-7700 mils 82500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7820 mils 82550 mils moveto
-(1) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 82500 mils
-8.000000
-.5 mul -1 mul add moveto
-(IOS2) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 83100 mils moveto
-7700 mils 83100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7820 mils 83150 mils moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 83100 mils
-8.000000
-.5 mul -1 mul add moveto
-(IOS0) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-8000 mils 87600 mils moveto
-7700 mils 87600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7820 mils 87650 mils moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 87600 mils
-8.000000
-.5 mul -1 mul add moveto
-(OWIO) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 78300 mils moveto
-7700 mils 78300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7820 mils 78350 mils moveto
-(9) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 78300 mils
-8.000000
-.5 mul -1 mul add moveto
-(Vpp) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 86700 mils moveto
-7700 mils 86700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 86750 mils moveto
-(10) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 86700 mils
-8.000000
-.5 mul -1 mul add moveto
-(CTX) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 86400 mils moveto
-7700 mils 86400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 86450 mils moveto
-(11) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 86400 mils
-8.000000
-.5 mul -1 mul add moveto
-(CRX) show
-grestore
-
-gsave
-newpath
-7950 mils 76800 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-7900 mils 76800 mils moveto
-7700 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 76850 mils moveto
-(12) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 76800 mils
-8.000000
-.5 mul -1 mul add moveto
-(/CE0) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 79200 mils moveto
-9800 mils 79200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 79250 mils moveto
-(13) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 79200 mils
-8.000000
-.5 mul -1 mul add moveto
-(A19) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 85800 mils moveto
-7700 mils 85800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 85850 mils moveto
-(14) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 85800 mils
-8.000000
-.5 mul -1 mul add moveto
-(TX1) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 85500 mils moveto
-7700 mils 85500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 85550 mils moveto
-(15) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 85500 mils
-8.000000
-.5 mul -1 mul add moveto
-(XRX1) show
-grestore
-
-gsave
-newpath
-9550 mils 76800 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-9600 mils 76800 mils moveto
-9800 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 76850 mils moveto
-(16) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9110 mils 76800 mils
-8.000000
-.5 mul -1 mul add moveto
-(/RD) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 87300 mils moveto
-7700 mils 87300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 87350 mils moveto
-(17) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 87300 mils
-8.000000
-.5 mul -1 mul add moveto
-(INTOW) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 78900 mils moveto
-7700 mils 78900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 78950 mils moveto
-(18) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 78900 mils
-8.000000
-.5 mul -1 mul add moveto
-(SMCRST) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 84300 mils moveto
-7700 mils 84300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 84350 mils moveto
-(19) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 84300 mils
-8.000000
-.5 mul -1 mul add moveto
-(TX232) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 84000 mils moveto
-7700 mils 84000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 84050 mils moveto
-(20) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 83910 mils
-8.000000
-.5 mul -1 mul add moveto
-(RX232) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 84900 mils moveto
-7700 mils 84900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 84950 mils moveto
-(21) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 84900 mils
-8.000000
-.5 mul -1 mul add moveto
-(TX) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 84600 mils moveto
-7700 mils 84600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 84650 mils moveto
-(22) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 84600 mils
-8.000000
-.5 mul -1 mul add moveto
-(XRX0) show
-grestore
-
-gsave
-newpath
-7950 mils 79500 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-7900 mils 79500 mils moveto
-7700 mils 79500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 79550 mils moveto
-(23) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 79500 mils
-8.000000
-.5 mul -1 mul add moveto
-(/EXTINT) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 79200 mils moveto
-7700 mils 79200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 79250 mils moveto
-(24) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 79200 mils
-8.000000
-.5 mul -1 mul add moveto
-(CPURST) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 83700 mils moveto
-7700 mils 83700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 83750 mils moveto
-(25) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 83700 mils
-8.000000
-.5 mul -1 mul add moveto
-(DTR32) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 77700 mils moveto
-7700 mils 77700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 77750 mils moveto
-(26) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 77700 mils
-8.000000
-.5 mul -1 mul add moveto
-(EN2480) show
-grestore
-
-gsave
-newpath
-9550 mils 77700 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-9600 mils 77700 mils moveto
-9800 mils 77700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 77750 mils moveto
-(27) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8950 mils 77700 mils
-8.000000
-.5 mul -1 mul add moveto
-(/PCE3) show
-grestore
-
-gsave
-newpath
-9550 mils 78000 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-9600 mils 78000 mils moveto
-9800 mils 78000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 78050 mils moveto
-(28) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8950 mils 78000 mils
-8.000000
-.5 mul -1 mul add moveto
-(/PCE2) show
-grestore
-
-gsave
-newpath
-9550 mils 78300 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-9600 mils 78300 mils moveto
-9800 mils 78300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 78350 mils moveto
-(29) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8950 mils 78300 mils
-8.000000
-.5 mul -1 mul add moveto
-(/PCE1) show
-grestore
-
-gsave
-newpath
-9550 mils 78600 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-9600 mils 78600 mils moveto
-9800 mils 78600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 78650 mils moveto
-(30) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8950 mils 78600 mils
-8.000000
-.5 mul -1 mul add moveto
-(/PCE0) show
-grestore
-
-gsave
-newpath
-7950 mils 76500 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-7900 mils 76500 mils moveto
-7700 mils 76500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 76550 mils moveto
-(31) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 76500 mils
-8.000000
-.5 mul -1 mul add moveto
-(/CE3) show
-grestore
-
-gsave
-newpath
-9550 mils 77100 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-9600 mils 77100 mils moveto
-9800 mils 77100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 77150 mils moveto
-(32) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8950 mils 77100 mils
-8.000000
-.5 mul -1 mul add moveto
-(/PSEN) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 82800 mils moveto
-9800 mils 82800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 82850 mils moveto
-(33) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9190 mils 82800 mils
-8.000000
-.5 mul -1 mul add moveto
-(A7) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 83100 mils moveto
-9800 mils 83100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 83150 mils moveto
-(34) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 83100 mils
-8.000000
-.5 mul -1 mul add moveto
-(A6) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 83400 mils moveto
-9800 mils 83400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 83450 mils moveto
-(35) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 83400 mils
-8.000000
-.5 mul -1 mul add moveto
-(A5) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 83700 mils moveto
-9800 mils 83700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 83750 mils moveto
-(36) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 83700 mils
-8.000000
-.5 mul -1 mul add moveto
-(A4) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 82500 mils moveto
-9800 mils 82500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 82550 mils moveto
-(37) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 82500 mils
-8.000000
-.5 mul -1 mul add moveto
-(A8) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 82200 mils moveto
-9800 mils 82200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 82250 mils moveto
-(38) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 82200 mils
-8.000000
-.5 mul -1 mul add moveto
-(A9) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 81900 mils moveto
-9800 mils 81900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 81950 mils moveto
-(39) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 81900 mils
-8.000000
-.5 mul -1 mul add moveto
-(A10) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 81600 mils moveto
-9800 mils 81600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 81650 mils moveto
-(40) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 81600 mils
-8.000000
-.5 mul -1 mul add moveto
-(A11) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 81300 mils moveto
-9800 mils 81300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 81350 mils moveto
-(41) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 81300 mils
-8.000000
-.5 mul -1 mul add moveto
-(A12) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 81000 mils moveto
-9800 mils 81000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 81050 mils moveto
-(42) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 81000 mils
-8.000000
-.5 mul -1 mul add moveto
-(A13) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 80700 mils moveto
-9800 mils 80700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 80750 mils moveto
-(43) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 80700 mils
-8.000000
-.5 mul -1 mul add moveto
-(A14) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 80400 mils moveto
-9800 mils 80400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 80450 mils moveto
-(44) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 80400 mils
-8.000000
-.5 mul -1 mul add moveto
-(A15) show
-grestore
-
-gsave
-newpath
-7950 mils 77100 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-7900 mils 77100 mils moveto
-7700 mils 77100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 77150 mils moveto
-(45) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 77100 mils
-8.000000
-.5 mul -1 mul add moveto
-(/RCE0) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 85500 mils moveto
-9800 mils 85500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 85550 mils moveto
-(46) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 85500 mils
-8.000000
-.5 mul -1 mul add moveto
-(D7) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 85800 mils moveto
-9800 mils 85800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 85850 mils moveto
-(47) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 85800 mils
-8.000000
-.5 mul -1 mul add moveto
-(D6) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 86100 mils moveto
-9800 mils 86100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 86150 mils moveto
-(48) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 86100 mils
-8.000000
-.5 mul -1 mul add moveto
-(D5) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 86400 mils moveto
-9800 mils 86400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 86450 mils moveto
-(49) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 86400 mils
-8.000000
-.5 mul -1 mul add moveto
-(D4) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 86700 mils moveto
-9800 mils 86700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 86750 mils moveto
-(50) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 86700 mils
-8.000000
-.5 mul -1 mul add moveto
-(D3) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 87000 mils moveto
-9800 mils 87000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 87050 mils moveto
-(51) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 87000 mils
-8.000000
-.5 mul -1 mul add moveto
-(D2) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 87300 mils moveto
-9800 mils 87300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 87350 mils moveto
-(52) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 87300 mils
-8.000000
-.5 mul -1 mul add moveto
-(D1) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 87600 mils moveto
-9800 mils 87600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 87650 mils moveto
-(53) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 87600 mils
-8.000000
-.5 mul -1 mul add moveto
-(D0) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 84900 mils moveto
-9800 mils 84900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 84950 mils moveto
-(54) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9190 mils 84900 mils
-8.000000
-.5 mul -1 mul add moveto
-(A0) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 84600 mils moveto
-9800 mils 84600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 84650 mils moveto
-(55) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9190 mils 84600 mils
-8.000000
-.5 mul -1 mul add moveto
-(A1) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 84300 mils moveto
-9800 mils 84300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 84350 mils moveto
-(56) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 84300 mils
-8.000000
-.5 mul -1 mul add moveto
-(A2) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 84000 mils moveto
-9800 mils 84000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 84050 mils moveto
-(57) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 84000 mils
-8.000000
-.5 mul -1 mul add moveto
-(A3) show
-grestore
-
-gsave
-newpath
-9550 mils 76500 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-9600 mils 76500 mils moveto
-9800 mils 76500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 76550 mils moveto
-(58) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9110 mils 76500 mils
-8.000000
-.5 mul -1 mul add moveto
-(/WR) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 82800 mils moveto
-7700 mils 82800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 82850 mils moveto
-(59) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 82800 mils
-8.000000
-.5 mul -1 mul add moveto
-(IOS1) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 80100 mils moveto
-9800 mils 80100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 80150 mils moveto
-(60) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 80100 mils
-8.000000
-.5 mul -1 mul add moveto
-(A16) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 79800 mils moveto
-9800 mils 79800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 79850 mils moveto
-(61) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 79800 mils
-8.000000
-.5 mul -1 mul add moveto
-(A17) show
-grestore
-
-newpath
-10 mils setlinewidth
-9500 mils 79500 mils moveto
-9800 mils 79500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9600 mils 79550 mils moveto
-(62) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-9210 mils 79500 mils
-8.000000
-.5 mul -1 mul add moveto
-(A18) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 80400 mils moveto
-7700 mils 80400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 80450 mils moveto
-(63) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 80400 mils
-8.000000
-.5 mul -1 mul add moveto
-(ETH3) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 80100 mils moveto
-7700 mils 80100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 80150 mils moveto
-(64) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 80100 mils
-8.000000
-.5 mul -1 mul add moveto
-(ETH6) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 80700 mils moveto
-7700 mils 80700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 80750 mils moveto
-(65) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 80700 mils
-8.000000
-.5 mul -1 mul add moveto
-(ETH2) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 81000 mils moveto
-7700 mils 81000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 81050 mils moveto
-(66) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 81000 mils
-8.000000
-.5 mul -1 mul add moveto
-(ETH1) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-8000 mils 81600 mils moveto
-7700 mils 81600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 81650 mils moveto
-(71) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 81600 mils
-8.000000
-.5 mul -1 mul add moveto
-(EESK) show
-grestore
-
-newpath
-10 mils setlinewidth
-8000 mils 81900 mils moveto
-7700 mils 81900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7740 mils 81950 mils moveto
-(72) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-8050 mils 81900 mils
-8.000000
-.5 mul -1 mul add moveto
-(EED0) show
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-8050 mils 87950 mils moveto
-(TINIm390-RevD) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-9500 mils 88000 mils moveto
-(U1) show
-grestore
-
-gsave
-gsave
-newpath
-4300 mils 82800 mils moveto
-4300 mils 85200 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-4900 mils 82800 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4950 mils 82800 mils moveto
-5500 mils 82800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 82850 mils moveto
-(5) show
-grestore
-
-
-gsave
-newpath
-5050 mils 82650 mils
-150 mils
-250 360 arc
-stroke
-grestore
-
-gsave
-newpath
-4375 mils 82800 mils
-75 mils
-180 240 arc
-stroke
-grestore
-
-gsave
-newpath
-5050 mils 85390 mils
-150 mils
-0 110 arc
-stroke
-grestore
-
-gsave
-newpath
-4375 mils 85200 mils
-75 mils
-120 180 arc
-stroke
-grestore
-
-gsave
-newpath
-5200 mils 82637 mils moveto
-5200 mils 85405 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-4600 mils 83100 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4650 mils 83100 mils moveto
-5500 mils 83100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 83150 mils moveto
-(9) show
-grestore
-
-
-gsave
-newpath
-4900 mils 83400 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4950 mils 83400 mils moveto
-5500 mils 83400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 83450 mils moveto
-(4) show
-grestore
-
-
-gsave
-newpath
-4600 mils 83700 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4650 mils 83700 mils moveto
-5500 mils 83700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 83750 mils moveto
-(8) show
-grestore
-
-
-gsave
-newpath
-4900 mils 84000 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4950 mils 84000 mils moveto
-5500 mils 84000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 84050 mils moveto
-(3) show
-grestore
-
-
-gsave
-newpath
-4600 mils 84300 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4650 mils 84300 mils moveto
-5500 mils 84300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 84350 mils moveto
-(7) show
-grestore
-
-
-gsave
-newpath
-4900 mils 84600 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4950 mils 84600 mils moveto
-5500 mils 84600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 84650 mils moveto
-(2) show
-grestore
-
-
-gsave
-newpath
-4600 mils 84900 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4650 mils 84900 mils moveto
-5500 mils 84900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 84950 mils moveto
-(6) show
-grestore
-
-
-gsave
-newpath
-4900 mils 85200 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-4950 mils 85200 mils moveto
-5500 mils 85200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5300 mils 85250 mils moveto
-(1) show
-grestore
-
-
-gsave
-newpath
-4338 mils 82734 mils moveto
-5002 mils 82508 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 85531 mils moveto
-4337 mils 85265 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-5200 mils 86100 mils moveto
-(J9) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-4800 mils (FEMALE) stringwidth pop
--1 mul add
-85700 mils
-moveto
-(FEMALE) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-5000 mils 80700 mils moveto
-5300 mils 80700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-3850 mils 80650 mils moveto
-(2) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-5000 mils 80100 mils moveto
-5300 mils 80100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-3850 mils 80050 mils moveto
-(4) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-5000 mils 79500 mils moveto
-5300 mils 79500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-3850 mils 79450 mils moveto
-(6) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-5000 mils 78900 mils moveto
-5300 mils 78900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-3850 mils 78850 mils moveto
-(8) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-5000 mils 81000 mils moveto
-5300 mils 81000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-3850 mils 80950 mils moveto
-(1) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-5000 mils 80400 mils moveto
-5300 mils 80400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-3850 mils 80350 mils moveto
-(3) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-5000 mils 79800 mils moveto
-5300 mils 79800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-3850 mils 79750 mils moveto
-(5) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-5000 mils 79200 mils moveto
-5300 mils 79200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-3850 mils 79150 mils moveto
-(7) show
-grestore
-
-
-gsave
-newpath
-5000 mils 81000 mils moveto
-4100 mils 81000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 80700 mils moveto
-4100 mils 80700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 80400 mils moveto
-4100 mils 80400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 80100 mils moveto
-4100 mils 80100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 79800 mils moveto
-4100 mils 79800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 79500 mils moveto
-4100 mils 79500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 79200 mils moveto
-4100 mils 79200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 78900 mils moveto
-4100 mils 78900 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-3600 mils 78700 mils moveto
-4100 mils 78700 mils lineto
-stroke
-grestore
-gsave
-newpath
-4100 mils 78700 mils moveto
-4100 mils 81200 mils lineto
-stroke
-grestore
-gsave
-newpath
-4100 mils 81200 mils moveto
-3600 mils 81200 mils lineto
-stroke
-grestore
-gsave
-newpath
-3600 mils 81200 mils moveto
-3600 mils 78700 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-3900 mils 81600 mils moveto
-(J2) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-4100 mils (RJ45) stringwidth pop
--1 mul add
-81300 mils
-moveto
-(RJ45) show
-grestore
-
-gsave
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15200 mils 74100 mils moveto
-(IN) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15748 mils 74100 mils moveto
-(OUT) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15700 mils 73600 mils moveto
-(7805) show
-grestore
-
-gsave
-gsave
-newpath
-15100 mils 73800 mils moveto
-16100 mils 73800 mils lineto
-stroke
-grestore
-gsave
-newpath
-16100 mils 73800 mils moveto
-16100 mils 74400 mils lineto
-stroke
-grestore
-gsave
-newpath
-16100 mils 74400 mils moveto
-15100 mils 74400 mils lineto
-stroke
-grestore
-gsave
-newpath
-15100 mils 74400 mils moveto
-15100 mils 73800 mils lineto
-stroke
-grestore
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15456 mils 73901 mils moveto
-(GND) show
-grestore
-
-newpath
-10 mils setlinewidth
-15100 mils 74100 mils moveto
-14800 mils 74100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-14900 mils 74150 mils moveto
-(1) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-15600 mils 73500 mils moveto
-15600 mils 73800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15500 mils 73600 mils moveto
-(2) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-16100 mils 74100 mils moveto
-16400 mils 74100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-16230 mils 74150 mils moveto
-(3) show
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-16200 mils (U2) stringwidth pop
--1 mul add
-74500 mils
-moveto
-(U2) show
-grestore
-
-gsave
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12800 mils 74100 mils moveto
-(IN) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13348 mils 74100 mils moveto
-(OUT) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13300 mils 73600 mils moveto
-(7812) show
-grestore
-
-gsave
-gsave
-newpath
-12700 mils 73800 mils moveto
-13700 mils 73800 mils lineto
-stroke
-grestore
-gsave
-newpath
-13700 mils 73800 mils moveto
-13700 mils 74400 mils lineto
-stroke
-grestore
-gsave
-newpath
-13700 mils 74400 mils moveto
-12700 mils 74400 mils lineto
-stroke
-grestore
-gsave
-newpath
-12700 mils 74400 mils moveto
-12700 mils 73800 mils lineto
-stroke
-grestore
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13056 mils 73901 mils moveto
-(GND) show
-grestore
-
-newpath
-10 mils setlinewidth
-12700 mils 74100 mils moveto
-12400 mils 74100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12500 mils 74150 mils moveto
-(1) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-13200 mils 73500 mils moveto
-13200 mils 73800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13100 mils 73600 mils moveto
-(2) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-13700 mils 74100 mils moveto
-14000 mils 74100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13830 mils 74150 mils moveto
-(3) show
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-13800 mils (U3) stringwidth pop
--1 mul add
-74500 mils
-moveto
-(U3) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15600 mils 73300 mils moveto
-15600 mils 73500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-15500 mils 73300 mils moveto
-15700 mils 73300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-15555 mils 73250 mils moveto
-15645 mils 73250 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-15580 mils 73210 mils moveto
-15620 mils 73210 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13200 mils 73300 mils moveto
-13200 mils 73500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-13100 mils 73300 mils moveto
-13300 mils 73300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-13155 mils 73250 mils moveto
-13245 mils 73250 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-13180 mils 73210 mils moveto
-13220 mils 73210 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14300 mils 74300 mils moveto
-14300 mils 74500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-14150 mils 74500 mils moveto
-14450 mils 74500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-14175 mils 74550 mils moveto
-(+12V) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12400 mils 74300 mils moveto
-12400 mils 74500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-12250 mils 74500 mils moveto
-12550 mils 74500 mils lineto
-stroke
-grestore
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12200 mils 74600 mils moveto
-(+24V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14300 mils 74300 mils moveto
-14300 mils 74100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16700 mils 74100 mils moveto
-16700 mils 73900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-16700 mils 73200 mils moveto
-16700 mils 73400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-16900 mils 73700 mils moveto
-16500 mils 73700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-16700 mils 73400 mils moveto
-16700 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-16700 mils 73700 mils moveto
-16700 mils 73900 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-16700 mils 72900 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-16900 mils 73811 mils moveto
-16800 mils 73811 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-16849 mils 73760 mils moveto
-16849 mils 73860 mils lineto
-stroke
-grestore
-
-
-
-
-newpath
-16700 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-16700 mils 74100 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17000 mils 73600 mils moveto
-(C2) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17000 mils 73300 mils moveto
-(100uFx16V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14300 mils 74100 mils moveto
-14300 mils 73900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-14300 mils 73200 mils moveto
-14300 mils 73400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-14500 mils 73700 mils moveto
-14100 mils 73700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-14300 mils 73400 mils moveto
-14300 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-14300 mils 73700 mils moveto
-14300 mils 73900 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-14300 mils 72900 mils
-700 mils
-75 105 arc
-stroke
-grestore
-
-gsave
-newpath
-14500 mils 73811 mils moveto
-14400 mils 73811 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-14449 mils 73760 mils moveto
-14449 mils 73860 mils lineto
-stroke
-grestore
-
-
-
-
-newpath
-14300 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-14300 mils 74100 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-14600 mils 73600 mils moveto
-(C1) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-14500 mils 73300 mils moveto
-(100uFx25V) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16700 mils 73000 mils moveto
-16700 mils 73200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-16600 mils 73000 mils moveto
-16800 mils 73000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-16655 mils 72950 mils moveto
-16745 mils 72950 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-16680 mils 72910 mils moveto
-16720 mils 72910 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14300 mils 73000 mils moveto
-14300 mils 73200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-14200 mils 73000 mils moveto
-14400 mils 73000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-14255 mils 72950 mils moveto
-14345 mils 72950 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-14280 mils 72910 mils moveto
-14320 mils 72910 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-5500 mils 82600 mils moveto
-5500 mils 82800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-5600 mils 82600 mils moveto
-5400 mils 82600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5545 mils 82550 mils moveto
-5455 mils 82550 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5520 mils 82510 mils moveto
-5480 mils 82510 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 87600 mils moveto
-10500 mils 87600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10200 mils 87600 mils moveto
-(D0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 87300 mils moveto
-10500 mils 87300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10200 mils 87300 mils moveto
-(D1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 87300 mils moveto
-10700 mils 87500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 87000 mils moveto
-10500 mils 87000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10200 mils 87000 mils moveto
-(D2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 87000 mils moveto
-10700 mils 87200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 86700 mils moveto
-10500 mils 86700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10200 mils 86700 mils moveto
-(D3) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 86700 mils moveto
-10700 mils 86900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 86400 mils moveto
-10500 mils 86400 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10200 mils 86400 mils moveto
-(D4) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 86400 mils moveto
-10700 mils 86600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 86100 mils moveto
-10500 mils 86100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10200 mils 86100 mils moveto
-(D5) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 86100 mils moveto
-10700 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 85800 mils moveto
-10500 mils 85800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10200 mils 85800 mils moveto
-(D6) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 85800 mils moveto
-10700 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 85500 mils moveto
-10500 mils 85500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10200 mils 85500 mils moveto
-(D7) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 85500 mils moveto
-10700 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 77100 mils moveto
-6800 mils 77100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-7000 mils 77100 mils moveto
-(FLASH) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 76800 mils moveto
-6800 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-7000 mils 76800 mils moveto
-(FLASH) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6800 mils 78300 mils moveto
-7700 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 80400 mils moveto
-5300 mils 80400 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6400 mils 80400 mils moveto
-(ETH3) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 80700 mils moveto
-5300 mils 80700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6400 mils 80700 mils moveto
-(ETH2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 81000 mils moveto
-5300 mils 81000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6400 mils 81000 mils moveto
-(ETH1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 84000 mils moveto
-5500 mils 84000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6800 mils 84000 mils moveto
-(RX232) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 84300 mils moveto
-6100 mils 84300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6800 mils 84300 mils moveto
-(TX232) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10700 mils 78700 mils moveto
-10200 mils 78700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10200 mils 78700 mils moveto
-10200 mils 78600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10200 mils 78600 mils moveto
-9800 mils 78600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 78300 mils moveto
-10700 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10700 mils 77900 mils moveto
-10200 mils 77900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10200 mils 77900 mils moveto
-10200 mils 78000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10200 mils 78000 mils moveto
-9800 mils 78000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 77700 mils moveto
-10200 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10200 mils 77700 mils moveto
-10200 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10200 mils 77500 mils moveto
-10700 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10700 mils 77500 mils moveto
-11000 mils 77500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-10800 mils (1) stringwidth pop
-1 mul add
-77450 mils
-moveto
-(1) stringwidth pop
--1.0 mul
-8.000000
--1.0 mul
-rmoveto
-(1) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-11800 mils 77500 mils moveto
-12100 mils 77500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-11900 mils (2) stringwidth pop
-1 mul add
-77450 mils
-moveto
-(2) stringwidth pop
--1.0 mul
-8.000000
--1.0 mul
-rmoveto
-(2) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-10700 mils 77900 mils moveto
-11000 mils 77900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-10800 mils (3) stringwidth pop
-1 mul add
-77850 mils
-moveto
-(3) stringwidth pop
--1.0 mul
-8.000000
--1.0 mul
-rmoveto
-(3) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-11800 mils 77900 mils moveto
-12100 mils 77900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-11900 mils (4) stringwidth pop
-1 mul add
-77850 mils
-moveto
-(4) stringwidth pop
--1.0 mul
-8.000000
--1.0 mul
-rmoveto
-(4) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-10700 mils 78300 mils moveto
-11000 mils 78300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-10800 mils (5) stringwidth pop
-1 mul add
-78250 mils
-moveto
-(5) stringwidth pop
--1.0 mul
-8.000000
--1.0 mul
-rmoveto
-(5) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-11800 mils 78300 mils moveto
-12100 mils 78300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-11950 mils (6) stringwidth pop
-1 mul add
-78250 mils
-moveto
-(6) stringwidth pop
--1.0 mul
-8.000000
--1.0 mul
-rmoveto
-(6) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-10700 mils 78700 mils moveto
-11000 mils 78700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-10850 mils (7) stringwidth pop
-1 mul add
-78650 mils
-moveto
-(7) stringwidth pop
--1.0 mul
-8.000000
--1.0 mul
-rmoveto
-(7) show
-grestore
-
-
-
-
-newpath
-10 mils setlinewidth
-11800 mils 78700 mils moveto
-12100 mils 78700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-11950 mils (8) stringwidth pop
-1 mul add
-78650 mils
-moveto
-(8) stringwidth pop
--1.0 mul
-8.000000
--1.0 mul
-rmoveto
-(8) show
-grestore
-
-
-
-
-gsave
-newpath
-11000 mils 78100 mils moveto
-11800 mils 78100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 78500 mils moveto
-11800 mils 78500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11000 mils 77700 mils moveto
-11800 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-11400 mils 77300 mils moveto
-11400 mils 78900 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-11000 mils 77300 mils moveto
-11800 mils 77300 mils lineto
-stroke
-grestore
-gsave
-newpath
-11800 mils 77300 mils moveto
-11800 mils 78900 mils lineto
-stroke
-grestore
-gsave
-newpath
-11800 mils 78900 mils moveto
-11000 mils 78900 mils lineto
-stroke
-grestore
-gsave
-newpath
-11000 mils 78900 mils moveto
-11000 mils 77300 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-11300 mils (JP1) stringwidth pop
-1 mul add
-77200 mils
-moveto
-(JP1) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(JP1) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10700 mils 79000 mils moveto
-(ADDRESS SELECTION) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6100 mils 84300 mils moveto
-6100 mils 84600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6100 mils 84600 mils moveto
-5500 mils 84600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-5700 mils 80100 mils moveto
-7700 mils 80100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6400 mils 80100 mils moveto
-(ETH6) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-5700 mils 80100 mils moveto
-5700 mils 79500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-5700 mils 79500 mils moveto
-5300 mils 79500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12100 mils 78700 mils moveto
-12300 mils 78700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 78700 mils moveto
-12300 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12100 mils 77900 mils moveto
-12300 mils 77900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12100 mils 78300 mils moveto
-12300 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6800 mils 77100 mils moveto
-6800 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-gsave
-newpath
-3400 mils 72000 mils moveto
-26700 mils 72000 mils lineto
-stroke
-grestore
-gsave
-newpath
-26700 mils 72000 mils moveto
-26700 mils 88500 mils lineto
-stroke
-grestore
-gsave
-newpath
-26700 mils 88500 mils moveto
-3400 mils 88500 mils lineto
-stroke
-grestore
-gsave
-newpath
-3400 mils 88500 mils moveto
-3400 mils 72000 mils lineto
-stroke
-grestore
-grestore
-
-
-gsave
-newpath
-22600 mils 72600 mils moveto
-22600 mils 72000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19200 mils 72400 mils moveto
-(FILE:) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-22700 mils 72400 mils moveto
-(REVISION:) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-22700 mils 72100 mils moveto
-(DRAWN BY: ) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19200 mils 72100 mils moveto
-(PAGE) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20900 mils 72100 mils moveto
-(OF) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19200 mils 72700 mils moveto
-(TITLE) show
-grestore
-
-gsave
-gsave
-newpath
-19100 mils 72000 mils moveto
-26700 mils 72000 mils lineto
-stroke
-grestore
-gsave
-newpath
-26700 mils 72000 mils moveto
-26700 mils 73400 mils lineto
-stroke
-grestore
-gsave
-newpath
-26700 mils 73400 mils moveto
-19100 mils 73400 mils lineto
-stroke
-grestore
-gsave
-newpath
-19100 mils 73400 mils moveto
-19100 mils 72000 mils lineto
-stroke
-grestore
-grestore
-
-gsave
-newpath
-19100 mils 72600 mils moveto
-26700 mils 72600 mils lineto
-stroke
-grestore
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 85100 mils moveto
-16700 mils 85100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-15900 mils 85100 mils moveto
-(TRINT) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 83800 mils moveto
-16600 mils 83800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-15900 mils 83800 mils moveto
-(PWM) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13200 mils 84800 mils moveto
-12100 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 84800 mils moveto
-17400 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 84100 mils moveto
-16900 mils 84100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16900 mils 84100 mils moveto
-16900 mils 83100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16900 mils 83100 mils moveto
-12400 mils 83100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12400 mils 84500 mils moveto
-13200 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 84400 mils moveto
-18100 mils 84400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18100 mils 82900 mils moveto
-18100 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-19200 mils 79500 mils moveto
-18600 mils 79500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18600 mils 79500 mils moveto
-18600 mils 80300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 79200 mils moveto
-22400 mils 79200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21300 mils 79200 mils moveto
-(/CSPWM) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 78900 mils moveto
-22600 mils 78900 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21300 mils 78900 mils moveto
-(/ERD) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 78300 mils moveto
-26300 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21300 mils 78300 mils moveto
-(D0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 79500 mils moveto
-22300 mils 79500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21300 mils 79500 mils moveto
-(/CSLATCH) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-22300 mils 79500 mils moveto
-22300 mils 80300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18600 mils 80300 mils moveto
-22300 mils 80300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-19200 mils 77400 mils moveto
-18200 mils 77400 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18500 mils 77400 mils moveto
-(D1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 87400 mils moveto
-12100 mils 87600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 87100 mils moveto
-12100 mils 87300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 86800 mils moveto
-12100 mils 87000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 86500 mils moveto
-12100 mils 86700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 86200 mils moveto
-12100 mils 86400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 85900 mils moveto
-12100 mils 86100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 85600 mils moveto
-12100 mils 85800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 85300 mils moveto
-12100 mils 85500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 87400 mils moveto
-13200 mils 87400 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 87400 mils moveto
-(D7) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13200 mils 87100 mils moveto
-12300 mils 87100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 87100 mils moveto
-(D6) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 86800 mils moveto
-13200 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 86800 mils moveto
-(D5) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 86200 mils moveto
-13200 mils 86200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 86200 mils moveto
-(D3) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13200 mils 85900 mils moveto
-12300 mils 85900 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 85900 mils moveto
-(D2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13200 mils 85600 mils moveto
-12300 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 85600 mils moveto
-(D1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 85300 mils moveto
-13200 mils 85300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 85300 mils moveto
-(D0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-25600 mils 86600 mils moveto
-26300 mils 86600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-26100 mils (D0) stringwidth pop
--1 mul add
-86600 mils
-moveto
-(D0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-25600 mils 86300 mils moveto
-26300 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-26100 mils (D1) stringwidth pop
--1 mul add
-86300 mils
-moveto
-(D1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-25600 mils 86000 mils moveto
-26300 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-26100 mils (D2) stringwidth pop
--1 mul add
-86000 mils
-moveto
-(D2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-25600 mils 85700 mils moveto
-26300 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-26100 mils (D3) stringwidth pop
--1 mul add
-85700 mils
-moveto
-(D3) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-25600 mils 85100 mils moveto
-26300 mils 85100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-26100 mils (D5) stringwidth pop
--1 mul add
-85100 mils
-moveto
-(D5) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-25600 mils 84800 mils moveto
-26300 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-26100 mils (D6) stringwidth pop
--1 mul add
-84800 mils
-moveto
-(D6) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-25600 mils 84500 mils moveto
-26300 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-26100 mils (D7) stringwidth pop
--1 mul add
-84500 mils
-moveto
-(D7) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 85100 mils moveto
-26500 mils 85300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 85400 mils moveto
-26500 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 85700 mils moveto
-26500 mils 85900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 86000 mils moveto
-26500 mils 86200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 86300 mils moveto
-26500 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 86600 mils moveto
-26500 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 84800 mils moveto
-26500 mils 85000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 84500 mils moveto
-26500 mils 84700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18700 mils 79500 mils moveto
-(CLK) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13200 mils 83600 mils moveto
-13200 mils 83800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-13100 mils 83600 mils moveto
-13300 mils 83600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-13155 mils 83550 mils moveto
-13245 mils 83550 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-13180 mils 83510 mils moveto
-13220 mils 83510 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13200 mils 87400 mils moveto
-13500 mils 87400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 87452 mils moveto
-(1) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 87400 mils moveto
-(D) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13660 mils 87322 mils moveto
-(7 ) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 87100 mils moveto
-13500 mils 87100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 87152 mils moveto
-(2) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 87100 mils moveto
-(D) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13660 mils 87022 mils moveto
-(6) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 86800 mils moveto
-13500 mils 86800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 86852 mils moveto
-(3) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 86800 mils moveto
-(D) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13660 mils 86722 mils moveto
-(5) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 86500 mils moveto
-13500 mils 86500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 86552 mils moveto
-(4) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 86500 mils moveto
-(D) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13660 mils 86422 mils moveto
-(4  ) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 86200 mils moveto
-13500 mils 86200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 86252 mils moveto
-(5) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 86200 mils moveto
-(D) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13660 mils 86122 mils moveto
-(3) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 85900 mils moveto
-13500 mils 85900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 85952 mils moveto
-(6) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 85900 mils moveto
-(D) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13660 mils 85822 mils moveto
-(2) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 85600 mils moveto
-13500 mils 85600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 85652 mils moveto
-(7) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 85600 mils moveto
-(D) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13660 mils 85522 mils moveto
-(1) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 85300 mils moveto
-13500 mils 85300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 85352 mils moveto
-(8) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 85300 mils moveto
-(D) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13660 mils 85222 mils moveto
-(0) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 84800 mils moveto
-13500 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 84852 mils moveto
-(9) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 84800 mils moveto
-(CLK) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13900 mils 84722 mils moveto
-(0) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 84500 mils moveto
-13500 mils 84500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 84552 mils moveto
-(10) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 84500 mils moveto
-(OUT) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13900 mils 84422 mils moveto
-(0) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 84200 mils moveto
-13500 mils 84200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 84252 mils moveto
-(11) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 84200 mils moveto
-(GATE) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-14000 mils 84122 mils moveto
-(0 ) show
-grestore
-
-newpath
-10 mils setlinewidth
-13200 mils 83800 mils moveto
-13500 mils 83800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13342 mils 83852 mils moveto
-(12) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-13560 mils 83800 mils moveto
-(GND) show
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 83800 mils moveto
-15800 mils 83800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 83852 mils moveto
-(13) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15050 mils 83800 mils moveto
-(OUT) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15400 mils 83722 mils moveto
-(1) show
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 84100 mils moveto
-15800 mils 84100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 84152 mils moveto
-(14) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-14925 mils 84100 mils moveto
-(GATE) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15400 mils 84022 mils moveto
-(1) show
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 84400 mils moveto
-15800 mils 84400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 84452 mils moveto
-(15) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15050 mils 84400 mils moveto
-(CLK) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15400 mils 84322 mils moveto
-(1 ) show
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 84800 mils moveto
-15800 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 84852 mils moveto
-(16) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-14875 mils 84800 mils moveto
-(GATE) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15350 mils 84722 mils moveto
-(2) show
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 85100 mils moveto
-15800 mils 85100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 85152 mils moveto
-(17) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15000 mils 85100 mils moveto
-(OUT) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15350 mils 85022 mils moveto
-(2) show
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 85400 mils moveto
-15800 mils 85400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 85452 mils moveto
-(18) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15000 mils 85400 mils moveto
-(CLK) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15350 mils 85322 mils moveto
-(2) show
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 85800 mils moveto
-15800 mils 85800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 85852 mils moveto
-(19) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15250 mils 85800 mils moveto
-(A) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15350 mils 85722 mils moveto
-(0) show
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 86100 mils moveto
-15800 mils 86100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 86152 mils moveto
-(20) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15250 mils 86100 mils moveto
-(A) show
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15365 mils 86022 mils moveto
-(1) show
-grestore
-
-gsave
-newpath
-15550 mils 86500 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-15600 mils 86500 mils moveto
-15800 mils 86500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 86552 mils moveto
-(21) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15200 mils 86500 mils moveto
-(CS ) show
-grestore
-
-gsave
-newpath
-15200 mils 86634 mils moveto
-15400 mils 86634 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-15550 mils 86800 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-15600 mils 86800 mils moveto
-15800 mils 86800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 86852 mils moveto
-(22) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15200 mils 86800 mils moveto
-(RD) show
-grestore
-
-gsave
-newpath
-15200 mils 86934 mils moveto
-15400 mils 86934 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-15550 mils 87100 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-15600 mils 87100 mils moveto
-15800 mils 87100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 87152 mils moveto
-(23) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15200 mils 87100 mils moveto
-(WR) show
-grestore
-
-gsave
-newpath
-15200 mils 87234 mils moveto
-15400 mils 87234 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-15500 mils 87500 mils moveto
-15800 mils 87500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15585 mils 87552 mils moveto
-(24) show
-grestore
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15125 mils 87500 mils moveto
-(Vcc ) show
-grestore
-
-gsave
-gsave
-newpath
-13500 mils 83700 mils moveto
-15500 mils 83700 mils lineto
-stroke
-grestore
-gsave
-newpath
-15500 mils 83700 mils moveto
-15500 mils 87700 mils lineto
-stroke
-grestore
-gsave
-newpath
-15500 mils 87700 mils moveto
-13500 mils 87700 mils lineto
-stroke
-grestore
-gsave
-newpath
-13500 mils 87700 mils moveto
-13500 mils 83700 mils lineto
-stroke
-grestore
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-13500 mils 87750 mils moveto
-(8254) show
-grestore
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-15500 mils (U6) stringwidth pop
--1 mul add
-87800 mils
-moveto
-(U6) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12300 mils 86500 mils moveto
-13200 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 86500 mils moveto
-(D4) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-25600 mils 85400 mils moveto
-26300 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-26100 mils (D4) stringwidth pop
--1 mul add
-85400 mils
-moveto
-(D4) show
-grestore
-
-gsave
-gsave
-gsave
-newpath
-23900 mils 84200 mils moveto
-25300 mils 84200 mils lineto
-stroke
-grestore
-gsave
-newpath
-25300 mils 84200 mils moveto
-25300 mils 86900 mils lineto
-stroke
-grestore
-gsave
-newpath
-25300 mils 86900 mils moveto
-23900 mils 86900 mils lineto
-stroke
-grestore
-gsave
-newpath
-23900 mils 86900 mils moveto
-23900 mils 84200 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-
-
-newpath
-10 mils setlinewidth
-25300 mils 86600 mils moveto
-25600 mils 86600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25500 mils 86650 mils moveto
-(1) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25000 mils 86600 mils
-10.000000
-.5 mul -1 mul add moveto
-(D0) show
-grestore
-
-newpath
-10 mils setlinewidth
-25300 mils 86300 mils moveto
-25600 mils 86300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25400 mils 86350 mils moveto
-(15) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25000 mils 86300 mils
-10.000000
-.5 mul -1 mul add moveto
-(D1) show
-grestore
-
-newpath
-10 mils setlinewidth
-25300 mils 86000 mils moveto
-25600 mils 86000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25400 mils 86050 mils moveto
-(14) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25000 mils 86000 mils
-10.000000
-.5 mul -1 mul add moveto
-(D2) show
-grestore
-
-newpath
-10 mils setlinewidth
-25300 mils 85700 mils moveto
-25600 mils 85700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25400 mils 85750 mils moveto
-(13) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25000 mils 85700 mils
-10.000000
-.5 mul -1 mul add moveto
-(D3) show
-grestore
-
-newpath
-10 mils setlinewidth
-25300 mils 85400 mils moveto
-25600 mils 85400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25400 mils 85450 mils moveto
-(12) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25000 mils 85400 mils
-10.000000
-.5 mul -1 mul add moveto
-(D4) show
-grestore
-
-newpath
-10 mils setlinewidth
-25300 mils 85100 mils moveto
-25600 mils 85100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25400 mils 85150 mils moveto
-(11) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25000 mils 85100 mils
-10.000000
-.5 mul -1 mul add moveto
-(D5) show
-grestore
-
-newpath
-10 mils setlinewidth
-25300 mils 84800 mils moveto
-25600 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25400 mils 84850 mils moveto
-(10) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25000 mils 84800 mils
-10.000000
-.5 mul -1 mul add moveto
-(D6) show
-grestore
-
-newpath
-10 mils setlinewidth
-25300 mils 84500 mils moveto
-25600 mils 84500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25500 mils 84550 mils moveto
-(9) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-25000 mils 84500 mils
-10.000000
-.5 mul -1 mul add moveto
-(D7) show
-grestore
-
-gsave
-newpath
-23900 mils 86400 mils moveto
-24000 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-24000 mils 86300 mils moveto
-23900 mils 86200 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-23900 mils 86300 mils moveto
-23600 mils 86300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23700 mils 86350 mils moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-24000 mils 86300 mils
-10.000000
-.5 mul -1 mul add moveto
-(CLK) show
-grestore
-
-newpath
-10 mils setlinewidth
-23900 mils 84800 mils moveto
-23600 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23700 mils 84850 mils moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-24000 mils 84800 mils
-10.000000
-.5 mul -1 mul add moveto
-(CHA) show
-grestore
-
-newpath
-10 mils setlinewidth
-23900 mils 84500 mils moveto
-23600 mils 84500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23700 mils 84550 mils moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-24000 mils 84500 mils
-10.000000
-.5 mul -1 mul add moveto
-(CHB) show
-grestore
-
-newpath
-10 mils setlinewidth
-23900 mils 86600 mils moveto
-23600 mils 86600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23700 mils 86650 mils moveto
-(3) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-24000 mils 86600 mils
-10.000000
-.5 mul -1 mul add moveto
-(SEL) show
-grestore
-
-gsave
-newpath
-23850 mils 86000 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-23800 mils 86000 mils moveto
-23600 mils 86000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23700 mils 86050 mils moveto
-(4) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-24000 mils 86000 mils
-10.000000
-.5 mul -1 mul add moveto
-(/OE) show
-grestore
-
-gsave
-newpath
-23850 mils 85700 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-23800 mils 85700 mils moveto
-23600 mils 85700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23700 mils 85750 mils moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-24000 mils 85700 mils
-10.000000
-.5 mul -1 mul add moveto
-(/RST) show
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-24000 mils 87000 mils moveto
-(HCTL-2016) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-24000 mils 87200 mils moveto
-(U7) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12400 mils 84500 mils moveto
-12400 mils 83100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12100 mils 84800 mils moveto
-12100 mils 82900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21000 mils 84500 mils moveto
-23600 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21000 mils 84800 mils moveto
-23600 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 87600 mils moveto
-10700 mils 87800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-10700 mils 88400 mils moveto
-15100 mils 88400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-15100 mils 88400 mils moveto
-20900 mils 88400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-20900 mils 88400 mils moveto
-26500 mils 88400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 84900 mils moveto
-10500 mils 84900 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 84900 mils moveto
-(A0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 84600 mils moveto
-10500 mils 84600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 84600 mils moveto
-(A1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 84600 mils moveto
-10700 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 84300 mils moveto
-10500 mils 84300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 84300 mils moveto
-(A2) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 84300 mils moveto
-10700 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 84000 mils moveto
-10500 mils 84000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 84000 mils moveto
-(A3) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 84000 mils moveto
-10700 mils 84200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 83700 mils moveto
-10500 mils 83700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 83700 mils moveto
-(A4) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 83700 mils moveto
-10700 mils 83900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 83400 mils moveto
-10500 mils 83400 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 83400 mils moveto
-(A5) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 83400 mils moveto
-10700 mils 83600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 83100 mils moveto
-10500 mils 83100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 83100 mils moveto
-(A6) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 83100 mils moveto
-10700 mils 83300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 82800 mils moveto
-10500 mils 82800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 82800 mils moveto
-(A7) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 82800 mils moveto
-10700 mils 83000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 84900 mils moveto
-10700 mils 85100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 82500 mils moveto
-10500 mils 82500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 82500 mils moveto
-(A8) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 82200 mils moveto
-10500 mils 82200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 82200 mils moveto
-(A9) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 82200 mils moveto
-10700 mils 82400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 81900 mils moveto
-10500 mils 81900 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 81900 mils moveto
-(A10) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 81900 mils moveto
-10700 mils 82100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 81600 mils moveto
-10500 mils 81600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 81600 mils moveto
-(A11) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 81600 mils moveto
-10700 mils 81800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 81300 mils moveto
-10500 mils 81300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 81300 mils moveto
-(A12) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 81300 mils moveto
-10700 mils 81500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 81000 mils moveto
-10500 mils 81000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 81000 mils moveto
-(A13) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 81000 mils moveto
-10700 mils 81200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 80700 mils moveto
-10500 mils 80700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 80700 mils moveto
-(A14) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 80700 mils moveto
-10700 mils 80900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 80400 mils moveto
-10500 mils 80400 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 80400 mils moveto
-(A15) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 80400 mils moveto
-10700 mils 80600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 82500 mils moveto
-10700 mils 82700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 80100 mils moveto
-10500 mils 80100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 80100 mils moveto
-(A16) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 79800 mils moveto
-10500 mils 79800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 79800 mils moveto
-(A17) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 79800 mils moveto
-10700 mils 80000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 79500 mils moveto
-10500 mils 79500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 79500 mils moveto
-(A18) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 79500 mils moveto
-10700 mils 79700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 79200 mils moveto
-10500 mils 79200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 79200 mils moveto
-(A19) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 79200 mils moveto
-10700 mils 79400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-10500 mils 80100 mils moveto
-10700 mils 80300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-19200 mils 79200 mils moveto
-18500 mils 79200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18800 mils (A19) stringwidth pop
--1 mul add
-79200 mils
-moveto
-(A19) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18500 mils 79200 mils moveto
-18300 mils 79400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-19200 mils 78900 mils moveto
-18500 mils 78900 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18800 mils (A18) stringwidth pop
--1 mul add
-78900 mils
-moveto
-(A18) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18500 mils 78900 mils moveto
-18300 mils 79100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-19200 mils 78600 mils moveto
-18500 mils 78600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18800 mils (A17) stringwidth pop
--1 mul add
-78600 mils
-moveto
-(A17) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18500 mils 78600 mils moveto
-18300 mils 78800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-19200 mils 78300 mils moveto
-18500 mils 78300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18800 mils (A16) stringwidth pop
--1 mul add
-78300 mils
-moveto
-(A16) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18500 mils 78300 mils moveto
-18300 mils 78500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 86100 mils moveto
-18100 mils 86100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-16100 mils 86100 mils moveto
-(A1) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 85800 mils moveto
-18100 mils 85800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-16100 mils 85800 mils moveto
-(A0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18500 mils 86600 mils moveto
-23600 mils 86600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23100 mils 86600 mils moveto
-(A0) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12100 mils 82900 mils moveto
-18100 mils 82900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13300 mils 82300 mils moveto
-14500 mils 82300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-13300 mils 82300 mils moveto
-(CLOCK) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14500 mils 82300 mils moveto
-14500 mils 82900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 77400 mils moveto
-23400 mils 77400 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21500 mils 77400 mils moveto
-(/EXTINT) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-23400 mils 77400 mils moveto
-23400 mils 75100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 79500 mils moveto
-6400 mils 79500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6700 mils 79500 mils moveto
-(/EXTINT) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6400 mils 79500 mils moveto
-6400 mils 75100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6400 mils 75100 mils moveto
-23400 mils 75100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-18300 mils 81700 mils moveto
-10700 mils 81700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12100 mils 77500 mils moveto
-16200 mils 77500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 77500 mils moveto
-(/STROBE) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-19200 mils 76800 mils moveto
-16200 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18200 mils 76800 mils moveto
-(/STROBE) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16200 mils 77500 mils moveto
-16200 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18400 mils 86300 mils moveto
-23600 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23400 mils (CLOCK) stringwidth pop
--1 mul add
-86300 mils
-moveto
-(CLOCK) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18400 mils 86300 mils moveto
-18400 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 85400 mils moveto
-18400 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 78600 mils moveto
-22800 mils 78600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21300 mils 78600 mils moveto
-(/EWR) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 86500 mils moveto
-22400 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-16100 mils 86500 mils moveto
-(/CSPWM) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-22800 mils 85700 mils moveto
-23600 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23400 mils (/EWR) stringwidth pop
--1 mul add
-85700 mils
-moveto
-(/EWR) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-22600 mils 86000 mils moveto
-23600 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23400 mils (/ERD) stringwidth pop
--1 mul add
-86000 mils
-moveto
-(/ERD) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14900 mils 77700 mils moveto
-19200 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18500 mils 77700 mils moveto
-(/RD) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 76800 mils moveto
-14900 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 76800 mils moveto
-(/RD) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14500 mils 78000 mils moveto
-19200 mils 78000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18500 mils 78000 mils moveto
-(/WR) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14500 mils 78000 mils moveto
-14500 mils 76500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-9800 mils 76500 mils moveto
-14500 mils 76500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-10100 mils 76500 mils moveto
-(/WR) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 86800 mils moveto
-17600 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-16100 mils 86800 mils moveto
-(/RD) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 87100 mils moveto
-17800 mils 87100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-16100 mils 87100 mils moveto
-(/WR) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-20100 mils 72400 mils moveto
-(aictini.sch) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-20300 mils 72100 mils moveto
-(1) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21700 mils 72100 mils moveto
-(3) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-19800 mils 72700 mils moveto
-(Actuator Interface Card - CPU, PWM, Encoder, RS232 & Ethernet Interfaces) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18200 mils 77400 mils moveto
-18200 mils 81100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-15800 mils 87500 mils moveto
-16100 mils 87500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13000 mils 84200 mils moveto
-13200 mils 84200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13000 mils 84200 mils moveto
-13000 mils 84000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-13000 mils 84000 mils moveto
-12700 mils 84000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18200 mils 81100 mils moveto
-26300 mils 81100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 81100 mils moveto
-26500 mils 81300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-26300 mils 78300 mils moveto
-26500 mils 78500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-22800 mils 85700 mils moveto
-22800 mils 78600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-22600 mils 86000 mils moveto
-22600 mils 78900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-22400 mils 79200 mils moveto
-22400 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16600 mils 83800 mils moveto
-16600 mils 76500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16600 mils 76500 mils moveto
-19200 mils 76500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18200 mils 76500 mils moveto
-(PWM) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16700 mils 85100 mils moveto
-16700 mils 76200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16700 mils 76200 mils moveto
-19200 mils 76200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18200 mils 76200 mils moveto
-(TRINT) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17600 mils 86800 mils moveto
-17600 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17800 mils 87100 mils moveto
-17800 mils 78000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14900 mils 77700 mils moveto
-14900 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18100 mils 85800 mils moveto
-18300 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18100 mils 86100 mils moveto
-18300 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18500 mils 86600 mils moveto
-18300 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-23600 mils 72400 mils moveto
-(1.1.0) show
-grestore
-
-gsave
-gsave
-gsave
-newpath
-12100 mils 82000 mils moveto
-13000 mils 82000 mils lineto
-stroke
-grestore
-gsave
-newpath
-13000 mils 82000 mils moveto
-13000 mils 82600 mils lineto
-stroke
-grestore
-gsave
-newpath
-13000 mils 82600 mils moveto
-12100 mils 82600 mils lineto
-stroke
-grestore
-gsave
-newpath
-12100 mils 82600 mils moveto
-12100 mils 82000 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-gsave
-newpath
-13000 mils 82400 mils moveto
-12900 mils 82300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-12900 mils 82300 mils moveto
-13000 mils 82200 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-13300 mils 82300 mils moveto
-13000 mils 82300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-13050 mils 82350 mils moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12500 mils 82300 mils
-10.000000
-.5 mul -1 mul add moveto
-(OUT) show
-grestore
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12600 mils 82700 mils moveto
-(OSC) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12100 mils 82700 mils moveto
-(U11) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-12300 mils 81800 mils moveto
-(10MHz) show
-grestore
-
-gsave
-gsave
-gsave
-newpath
-19500 mils 75900 mils moveto
-20900 mils 75900 mils lineto
-stroke
-grestore
-gsave
-newpath
-20900 mils 75900 mils moveto
-20900 mils 79800 mils lineto
-stroke
-grestore
-gsave
-newpath
-20900 mils 79800 mils moveto
-19500 mils 79800 mils lineto
-stroke
-grestore
-gsave
-newpath
-19500 mils 79800 mils moveto
-19500 mils 75900 mils lineto
-stroke
-grestore
-grestore
-
-
-
-
-
-
-
-
-newpath
-10 mils setlinewidth
-19500 mils 79500 mils moveto
-19200 mils 79500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19396 mils (1) stringwidth pop
--1 mul add
-79550 mils
-moveto
-(1) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 79450 mils moveto
-(CLK/I0) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 79200 mils moveto
-19200 mils 79200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19420 mils (2) stringwidth pop
--1 mul add
-79250 mils
-moveto
-(2) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 79150 mils moveto
-(I1) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 78900 mils moveto
-19200 mils 78900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19396 mils (3) stringwidth pop
--1 mul add
-78950 mils
-moveto
-(3) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 78850 mils moveto
-(I2) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 78600 mils moveto
-19200 mils 78600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19420 mils (4) stringwidth pop
--1 mul add
-78650 mils
-moveto
-(4) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 78550 mils moveto
-(I3) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 78300 mils moveto
-19200 mils 78300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19404 mils (5) stringwidth pop
--1 mul add
-78350 mils
-moveto
-(5) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 78250 mils moveto
-(I4) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 78000 mils moveto
-19200 mils 78000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19420 mils (6) stringwidth pop
--1 mul add
-78050 mils
-moveto
-(6) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 77950 mils moveto
-(I5) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 77700 mils moveto
-19200 mils 77700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19396 mils (7) stringwidth pop
--1 mul add
-77750 mils
-moveto
-(7) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 77650 mils moveto
-(I6) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 77400 mils moveto
-19200 mils 77400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19382 mils (8) stringwidth pop
--1 mul add
-77450 mils
-moveto
-(8) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 77350 mils moveto
-(I7) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 77100 mils moveto
-19200 mils 77100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19372 mils (9) stringwidth pop
--1 mul add
-77150 mils
-moveto
-(9) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 77050 mils moveto
-(I8) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 76800 mils moveto
-19200 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19382 mils (10) stringwidth pop
--1 mul add
-76850 mils
-moveto
-(10) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 76750 mils moveto
-(I9) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 76500 mils moveto
-19200 mils 76500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19406 mils (11) stringwidth pop
--1 mul add
-76550 mils
-moveto
-(11) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 76450 mils moveto
-(I10) show
-grestore
-
-newpath
-10 mils setlinewidth
-19500 mils 76200 mils moveto
-19200 mils 76200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19390 mils (13) stringwidth pop
--1 mul add
-76250 mils
-moveto
-(13) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-19575 mils 76150 mils moveto
-(I11) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 79500 mils moveto
-21200 mils 79500 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 79550 mils moveto
-(23) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20454 mils 79450 mils moveto
-(IOQ0) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 79200 mils moveto
-21200 mils 79200 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 79250 mils moveto
-(22) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20494 mils 79150 mils moveto
-(IOQ1) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 78900 mils moveto
-21200 mils 78900 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 78950 mils moveto
-(21) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20454 mils 78850 mils moveto
-(IOQ2) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 78600 mils moveto
-21200 mils 78600 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 78650 mils moveto
-(20) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20478 mils 78550 mils moveto
-(IOQ3) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 78300 mils moveto
-21200 mils 78300 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 78350 mils moveto
-(19) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20454 mils 78250 mils moveto
-(IOQ4) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 78000 mils moveto
-21200 mils 78000 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 78050 mils moveto
-(18) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20478 mils 77950 mils moveto
-(IOQ5) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 77700 mils moveto
-21200 mils 77700 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 77750 mils moveto
-(17) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20462 mils 77650 mils moveto
-(IOQ6) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 77400 mils moveto
-21200 mils 77400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 77450 mils moveto
-(16) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20478 mils 77350 mils moveto
-(IOQ7) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 77100 mils moveto
-21200 mils 77100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 77150 mils moveto
-(15) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20470 mils 77050 mils moveto
-(IOQ8) show
-grestore
-
-newpath
-10 mils setlinewidth
-20900 mils 76800 mils moveto
-21200 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21000 mils 76850 mils moveto
-(14) show
-grestore
-
-
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-20454 mils 76750 mils moveto
-(IOQ9) show
-grestore
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-19500 mils 79900 mils moveto
-(22V10) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-19700 mils (U8) stringwidth pop
--1 mul add
-80100 mils
-moveto
-(U8) show
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21500 mils 73200 mils moveto
-(Universidade Federal do Rio Grande do Sul) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21700 mils 73000 mils moveto
-(Departamento de Engenharia Eletrica) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-19000 mils 77100 mils moveto
-19200 mils 77100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-18400 mils 77200 mils moveto
-18400 mils 77000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18400 mils 77200 mils moveto
-18900 mils 77200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18900 mils 77200 mils moveto
-19000 mils 77100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-19000 mils 77100 mils moveto
-18900 mils 77000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18900 mils 77000 mils moveto
-18400 mils 77000 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18300 mils (REFPOS) stringwidth pop
--1 mul add
-77100 mils
-10.000000
-.5 mul -1 mul add moveto
-(REFPOS) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 77700 mils moveto
-21400 mils 77700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-21400 mils 77800 mils moveto
-21400 mils 77600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21400 mils 77800 mils moveto
-21900 mils 77800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 77800 mils moveto
-22000 mils 77700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-22000 mils 77700 mils moveto
-21900 mils 77600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 77600 mils moveto
-21400 mils 77600 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-22100 mils 77700 mils
-10.000000
-.5 mul -1 mul add moveto
-(BRAKE) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 77100 mils moveto
-21400 mils 77100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-21400 mils 77200 mils moveto
-21400 mils 77000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21400 mils 77200 mils moveto
-21900 mils 77200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 77200 mils moveto
-22000 mils 77100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-22000 mils 77100 mils moveto
-21900 mils 77000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 77000 mils moveto
-21400 mils 77000 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-22100 mils 77100 mils
-10.000000
-.5 mul -1 mul add moveto
-(DRVA) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-21200 mils 76800 mils moveto
-21400 mils 76800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-21400 mils 76900 mils moveto
-21400 mils 76700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21400 mils 76900 mils moveto
-21900 mils 76900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 76900 mils moveto
-22000 mils 76800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-22000 mils 76800 mils moveto
-21900 mils 76700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 76700 mils moveto
-21400 mils 76700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-22100 mils 76800 mils
-10.000000
-.5 mul -1 mul add moveto
-(DRVB) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 86700 mils moveto
-7500 mils 86700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-7500 mils 86800 mils moveto
-7500 mils 86600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7500 mils 86800 mils moveto
-7000 mils 86800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7000 mils 86800 mils moveto
-6900 mils 86700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6900 mils 86700 mils moveto
-7000 mils 86600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7000 mils 86600 mils moveto
-7500 mils 86600 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6800 mils (CAN0TX) stringwidth pop
--1 mul add
-86700 mils
-10.000000
-.5 mul -1 mul add moveto
-(CAN0TX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-7700 mils 85800 mils moveto
-7500 mils 85800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-7500 mils 85900 mils moveto
-7500 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7500 mils 85900 mils moveto
-7000 mils 85900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7000 mils 85900 mils moveto
-6900 mils 85800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6900 mils 85800 mils moveto
-7000 mils 85700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7000 mils 85700 mils moveto
-7500 mils 85700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6800 mils (CAN1TX) stringwidth pop
--1 mul add
-85800 mils
-10.000000
-.5 mul -1 mul add moveto
-(CAN1TX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-7500 mils 86400 mils moveto
-7700 mils 86400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-6900 mils 86500 mils moveto
-6900 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6900 mils 86500 mils moveto
-7400 mils 86500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7400 mils 86500 mils moveto
-7500 mils 86400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7500 mils 86400 mils moveto
-7400 mils 86300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7400 mils 86300 mils moveto
-6900 mils 86300 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6800 mils (CAN0RX) stringwidth pop
--1 mul add
-86400 mils
-10.000000
-.5 mul -1 mul add moveto
-(CAN0RX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-7500 mils 85500 mils moveto
-7700 mils 85500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-6900 mils 85600 mils moveto
-6900 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6900 mils 85600 mils moveto
-7400 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7400 mils 85600 mils moveto
-7500 mils 85500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7500 mils 85500 mils moveto
-7400 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7400 mils 85400 mils moveto
-6900 mils 85400 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6800 mils (CAN1RX) stringwidth pop
--1 mul add
-85500 mils
-10.000000
-.5 mul -1 mul add moveto
-(CAN1RX) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-12400 mils 74100 mils moveto
-12400 mils 74300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-14000 mils 74100 mils moveto
-14800 mils 74100 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-23600 mils 72100 mils moveto
-(Walter Fetter Lages & Fernando Pessutto) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-20800 mils 84800 mils moveto
-21000 mils 84800 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-20200 mils 84900 mils moveto
-20200 mils 84700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-20200 mils 84900 mils moveto
-20700 mils 84900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-20700 mils 84900 mils moveto
-20800 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-20800 mils 84800 mils moveto
-20700 mils 84700 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-20700 mils 84700 mils moveto
-20200 mils 84700 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-20100 mils (CHA) stringwidth pop
--1 mul add
-84800 mils
-10.000000
-.5 mul -1 mul add moveto
-(CHA) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-20800 mils 84500 mils moveto
-21000 mils 84500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-20200 mils 84600 mils moveto
-20200 mils 84400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-20200 mils 84600 mils moveto
-20700 mils 84600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-20700 mils 84600 mils moveto
-20800 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-20800 mils 84500 mils moveto
-20700 mils 84400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-20700 mils 84400 mils moveto
-20200 mils 84400 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-20100 mils (CHB) stringwidth pop
--1 mul add
-84500 mils
-10.000000
-.5 mul -1 mul add moveto
-(CHB) show
-grestore
-
-
-gsave
-newpath
-10 mils setlinewidth
-16400 mils 74100 mils moveto
-17200 mils 74100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 74100 mils moveto
-17200 mils 74400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17200 mils 74400 mils moveto
-17200 mils 74600 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-17050 mils 74600 mils moveto
-17350 mils 74600 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-17075 mils 74650 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6800 mils 78300 mils moveto
-6800 mils 78500 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-6650 mils 78500 mils moveto
-6950 mils 78500 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-6675 mils 78550 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-12700 mils 84000 mils moveto
-12700 mils 84200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-12550 mils 84200 mils moveto
-12850 mils 84200 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-12575 mils 84250 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-17400 mils 84800 mils moveto
-17400 mils 85000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-17250 mils 85000 mils moveto
-17550 mils 85000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-17275 mils 85050 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-16100 mils 87500 mils moveto
-16100 mils 87700 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-15950 mils 87700 mils moveto
-16250 mils 87700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-15975 mils 87750 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-5500 mils 83400 mils moveto
-5700 mils 83400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-5650 mils 83450 mils moveto
-90 rotate
-(2) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-6500 mils 83400 mils moveto
-6300 mils 83400 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-6450 mils 83450 mils moveto
-90 rotate
-(1) show
-grestore
-
-
-gsave
-newpath
-5800 mils 83400 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-gsave
-newpath
-6200 mils 83400 mils
-50 mils
-0 360 arc
-stroke
-grestore
-
-gsave
-gsave
-newpath
-5700 mils 83300 mils moveto
-6300 mils 83300 mils lineto
-stroke
-grestore
-gsave
-newpath
-6300 mils 83300 mils moveto
-6300 mils 83500 mils lineto
-stroke
-grestore
-gsave
-newpath
-6300 mils 83500 mils moveto
-5700 mils 83500 mils lineto
-stroke
-grestore
-gsave
-newpath
-5700 mils 83500 mils moveto
-5700 mils 83300 mils lineto
-stroke
-grestore
-grestore
-
-
-
-newpath
-6500 mils 83400 mils
-30 mils
-0 360 arc
-fill
-newpath
-6500 mils 83400 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6000 mils 83800 mils moveto
-(JP2) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(JP2) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-5600 mils 83000 mils moveto
-(XRESET) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6500 mils 83700 mils moveto
-7700 mils 83700 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6800 mils 83700 mils moveto
-(DTR232) show
-grestore
-
-gsave
-
-newpath
-10 mils setlinewidth
-6500 mils 83100 mils moveto
-6650 mils 83100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-6550 mils 83150 mils moveto
-(1) show
-grestore
-
-
-newpath
-10 mils setlinewidth
-7350 mils 83100 mils moveto
-7500 mils 83100 mils lineto
-stroke
-1 setlinewidth
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7400 mils 83150 mils moveto
-(2) show
-grestore
-
-
-gsave
-newpath
-6650 mils 83100 mils moveto
-6825 mils 83100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7350 mils 83100 mils moveto
-7175 mils 83100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6800 mils 83185 mils moveto
-7200 mils 83185 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6839 mils 83100 mils
-14 mils
-0 360 arc
-stroke
-grestore
-
-gsave
-newpath
-7162 mils 83100 mils
-14 mils
-0 360 arc
-stroke
-grestore
-
-gsave
-newpath
-6970 mils 83355 mils moveto
-7020 mils 83355 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6970 mils 83305 mils moveto
-7020 mils 83305 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6970 mils 83305 mils moveto
-6995 mils 83255 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-7020 mils 83305 mils moveto
-6995 mils 83255 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6995 mils 83305 mils moveto
-6995 mils 83355 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-6995 mils 83255 mils moveto
-6995 mils 83186 mils lineto
-stroke
-grestore
-
-
-newpath
-6500 mils 83100 mils
-30 mils
-0 360 arc
-fill
-newpath
-6500 mils 83100 mils
-30 mils
-0 360 arc
-fill
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6900 mils 83400 mils moveto
-(S1) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6700 mils 82900 mils moveto
-(RESET) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-7500 mils 83100 mils moveto
-7500 mils 83300 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-7350 mils 83300 mils moveto
-7650 mils 83300 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-7375 mils 83350 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-gsave
-newpath
-17800 mils 74200 mils moveto
-17700 mils 74000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17700 mils 74000 mils moveto
-17600 mils 74200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17600 mils 74200 mils moveto
-17500 mils 74000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17500 mils 74000 mils moveto
-17400 mils 74200 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-17800 mils 74200 mils moveto
-17900 mils 74000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17900 mils 74000 mils moveto
-17950 mils 74100 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-18100 mils 74100 mils moveto
-17950 mils 74100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-17200 mils 74100 mils moveto
-17352 mils 74100 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-17401 mils 74200 mils moveto
-17350 mils 74100 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17700 mils 74500 mils moveto
-(R12) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(R12) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-17400 mils 73800 mils moveto
-(330) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-18100 mils 73000 mils moveto
-18100 mils 73200 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-18000 mils 73000 mils moveto
-18200 mils 73000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18055 mils 72950 mils moveto
-18145 mils 72950 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18080 mils 72910 mils moveto
-18120 mils 72910 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-5000 mils 82000 mils moveto
-5200 mils 82000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-4400 mils 82100 mils moveto
-4400 mils 81900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-4400 mils 82100 mils moveto
-4900 mils 82100 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-4900 mils 82100 mils moveto
-5000 mils 82000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5000 mils 82000 mils moveto
-4900 mils 81900 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-4900 mils 81900 mils moveto
-4400 mils 81900 mils lineto
-stroke
-grestore
-
-
-
-
-
-grestore
-
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-4300 mils (RESET) stringwidth pop
--1 mul add
-82000 mils
-10.000000
-.5 mul -1 mul add moveto
-(RESET) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6500 mils 82000 mils moveto
-6500 mils 83700 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-5500 mils 81800 mils moveto
-5500 mils 82200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5500 mils 81800 mils moveto
-5800 mils 82000 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-5800 mils 82000 mils moveto
-5500 mils 82200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5800 mils 81800 mils moveto
-5800 mils 82200 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-5200 mils 82000 mils moveto
-5400 mils 82000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-6100 mils 82000 mils moveto
-5900 mils 82000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-5900 mils 82000 mils moveto
-5800 mils 82000 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-5500 mils 82000 mils moveto
-5400 mils 82000 mils lineto
-stroke
-grestore
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-5800 mils (D3) stringwidth pop
--1 mul add
-82300 mils
-moveto
-(D3) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-6000 mils (1N4148) stringwidth pop
--1 mul add
-81600 mils
-moveto
-(1N4148) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-6500 mils 82000 mils moveto
-6100 mils 82000 mils lineto
-stroke
-grestore
-
-gsave
-gsave
-newpath
-17900 mils 73800 mils moveto
-18300 mils 73800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17900 mils 73800 mils moveto
-18100 mils 73500 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-18100 mils 73500 mils moveto
-18300 mils 73800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-17900 mils 73500 mils moveto
-18300 mils 73500 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-18100 mils 73200 mils moveto
-18100 mils 73400 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-newpath
-10 mils setlinewidth
-18100 mils 74100 mils moveto
-18100 mils 73900 mils lineto
-stroke
-1 setlinewidth
-
-
-
-
-
-gsave
-newpath
-18100 mils 73400 mils moveto
-18100 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18100 mils 73800 mils moveto
-18100 mils 73900 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-18300 mils 73700 mils moveto
-18400 mils 73600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18300 mils 73600 mils moveto
-18400 mils 73500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18400 mils 73500 mils moveto
-18350 mils 73525 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18400 mils 73500 mils moveto
-18375 mils 73550 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18400 mils 73600 mils moveto
-18350 mils 73625 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-18400 mils 73600 mils moveto
-18375 mils 73650 mils lineto
-stroke
-grestore
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18450 mils (D10) stringwidth pop
-1 mul add
-73750 mils
-moveto
-(D10) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(D10) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-18400 mils (Green) stringwidth pop
-1 mul add
-74000 mils
-moveto
-(Green) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(Green) show
-grestore
-
-gsave
-gsave
-newpath
-21200 mils 85500 mils moveto
-21400 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21400 mils 85400 mils moveto
-21200 mils 85300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21200 mils 85300 mils moveto
-21400 mils 85200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21400 mils 85200 mils moveto
-21200 mils 85100 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-21200 mils 85500 mils moveto
-21400 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21400 mils 85600 mils moveto
-21300 mils 85650 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-21300 mils 85800 mils moveto
-21300 mils 85650 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-21300 mils 84900 mils moveto
-21300 mils 85052 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-21200 mils 85101 mils moveto
-21300 mils 85050 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-21100 mils 85600 mils moveto
-(R13) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(R13) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-20800 mils 85200 mils moveto
-(2k7) show
-grestore
-
-gsave
-gsave
-newpath
-21700 mils 85500 mils moveto
-21900 mils 85400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 85400 mils moveto
-21700 mils 85300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21700 mils 85300 mils moveto
-21900 mils 85200 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 85200 mils moveto
-21700 mils 85100 mils lineto
-stroke
-grestore
-
-
-gsave
-newpath
-21700 mils 85500 mils moveto
-21900 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-21900 mils 85600 mils moveto
-21800 mils 85650 mils lineto
-stroke
-grestore
-
-newpath
-10 mils setlinewidth
-21800 mils 85800 mils moveto
-21800 mils 85650 mils lineto
-stroke
-1 setlinewidth
-
-
-
-newpath
-10 mils setlinewidth
-21800 mils 84900 mils moveto
-21800 mils 85052 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-21700 mils 85101 mils moveto
-21800 mils 85050 mils lineto
-stroke
-grestore
-
-
-
-
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-22300 mils 85600 mils moveto
-(R14) stringwidth pop
--1.0 mul
-10.000000
--1.0 mul
-rmoveto
-(R14) show
-grestore
-
-gsave
-/Helvetica findfont
-14.000000 scalefont
-setfont
-
-22000 mils 85200 mils moveto
-(2k7) show
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21300 mils 84900 mils moveto
-21300 mils 84800 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21300 mils 85800 mils moveto
-21300 mils 86000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-21150 mils 86000 mils moveto
-21450 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21175 mils 86050 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21800 mils 85800 mils moveto
-21800 mils 86000 mils lineto
-stroke
-1 setlinewidth
-
-
-
-gsave
-newpath
-21650 mils 86000 mils moveto
-21950 mils 86000 mils lineto
-stroke
-grestore
-
-gsave
-/Helvetica findfont
-11.200000 scalefont
-setfont
-
-21675 mils 86050 mils moveto
-(Vcc) show
-grestore
-
-
-grestore
-
-gsave
-newpath
-10 mils setlinewidth
-21800 mils 84900 mils moveto
-21800 mils 84500 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-10700 mils 88400 mils moveto
-10700 mils 85600 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-12100 mils 85400 mils moveto
-12100 mils 88400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-10700 mils 85200 mils moveto
-10700 mils 79300 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-18300 mils 86900 mils moveto
-18300 mils 78400 mils lineto
-stroke
-grestore
-
-gsave
-newpath
-30 mils setlinewidth
-26500 mils 88400 mils moveto
-26500 mils 81200 mils lineto
-stroke
-grestore
-
-newpath
-14300 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-14300 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-16700 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-16700 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-14300 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-14300 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-10700 mils 87500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 87500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 87200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 87200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86300 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86300 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 85700 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 85700 mils
-15 mils
-0 360 arc
-fill
-newpath
-12300 mils 77500 mils
-30 mils
-0 360 arc
-fill
-newpath
-12300 mils 77900 mils
-30 mils
-0 360 arc
-fill
-newpath
-12300 mils 78300 mils
-30 mils
-0 360 arc
-fill
-newpath
-12300 mils 77500 mils
-30 mils
-0 360 arc
-fill
-newpath
-12300 mils 77900 mils
-30 mils
-0 360 arc
-fill
-newpath
-12300 mils 77900 mils
-30 mils
-0 360 arc
-fill
-newpath
-12300 mils 78300 mils
-30 mils
-0 360 arc
-fill
-newpath
-12300 mils 78300 mils
-30 mils
-0 360 arc
-fill
-newpath
-18100 mils 84400 mils
-30 mils
-0 360 arc
-fill
-newpath
-18100 mils 84400 mils
-30 mils
-0 360 arc
-fill
-newpath
-18100 mils 85400 mils
-30 mils
-0 360 arc
-fill
-newpath
-18100 mils 84400 mils
-30 mils
-0 360 arc
-fill
-newpath
-18100 mils 85400 mils
-30 mils
-0 360 arc
-fill
-newpath
-12100 mils 87600 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 87600 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 87300 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 87300 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 87000 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 87000 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86700 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86700 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86400 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86400 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86100 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86100 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 85800 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 85800 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 85500 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 85500 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85300 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85300 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85600 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85600 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85900 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85900 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86200 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86200 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86500 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86500 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86800 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86800 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85000 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85000 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 84700 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 84700 mils
-15 mils
-0 360 arc
-fill
-newpath
-21800 mils 84500 mils
-30 mils
-0 360 arc
-fill
-newpath
-21300 mils 84800 mils
-30 mils
-0 360 arc
-fill
-newpath
-10700 mils 87800 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 87800 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 88400 mils
-30 mils
-0 360 arc
-fill
-newpath
-10700 mils 84800 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 84800 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 84500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 84500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 84200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 84200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83300 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83300 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 85100 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 85100 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82400 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82400 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82100 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82100 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81800 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81800 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82700 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82700 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 79700 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 79700 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 79400 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 79400 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80300 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80300 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 79400 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 79400 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 79100 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 79100 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 78800 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 78800 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 78500 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 78500 mils
-15 mils
-0 360 arc
-fill
-newpath
-14500 mils 82900 mils
-30 mils
-0 360 arc
-fill
-newpath
-14500 mils 82900 mils
-30 mils
-0 360 arc
-fill
-newpath
-14500 mils 82900 mils
-30 mils
-0 360 arc
-fill
-newpath
-18300 mils 81700 mils
-30 mils
-0 360 arc
-fill
-newpath
-10700 mils 81700 mils
-30 mils
-0 360 arc
-fill
-newpath
-10700 mils 81700 mils
-30 mils
-0 360 arc
-fill
-newpath
-18300 mils 81700 mils
-30 mils
-0 360 arc
-fill
-newpath
-12300 mils 77500 mils
-30 mils
-0 360 arc
-fill
-newpath
-18100 mils 85400 mils
-30 mils
-0 360 arc
-fill
-newpath
-17600 mils 77700 mils
-30 mils
-0 360 arc
-fill
-newpath
-17800 mils 78000 mils
-30 mils
-0 360 arc
-fill
-newpath
-26500 mils 81300 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 81300 mils
-15 mils
-0 360 arc
-fill
-newpath
-26470 mils 78470 mils moveto
-60 mils 60 mils fbox
-newpath
-17600 mils 77700 mils
-30 mils
-0 360 arc
-fill
-newpath
-17600 mils 77700 mils
-30 mils
-0 360 arc
-fill
-newpath
-17800 mils 78000 mils
-30 mils
-0 360 arc
-fill
-newpath
-17800 mils 78000 mils
-30 mils
-0 360 arc
-fill
-newpath
-18300 mils 86000 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 86000 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 86300 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 86300 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 86800 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 86800 mils
-15 mils
-0 360 arc
-fill
-newpath
-14300 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-14300 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-17200 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-16700 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-17200 mils 74100 mils
-30 mils
-0 360 arc
-fill
-newpath
-6500 mils 83400 mils
-30 mils
-0 360 arc
-fill
-newpath
-6500 mils 83400 mils
-30 mils
-0 360 arc
-fill
-newpath
-6500 mils 83100 mils
-30 mils
-0 360 arc
-fill
-newpath
-6500 mils 83100 mils
-30 mils
-0 360 arc
-fill
-newpath
-6500 mils 83400 mils
-30 mils
-0 360 arc
-fill
-newpath
-6500 mils 83100 mils
-30 mils
-0 360 arc
-fill
-newpath
-21300 mils 84800 mils
-30 mils
-0 360 arc
-fill
-newpath
-21300 mils 84800 mils
-30 mils
-0 360 arc
-fill
-newpath
-21800 mils 84500 mils
-30 mils
-0 360 arc
-fill
-newpath
-21800 mils 84500 mils
-30 mils
-0 360 arc
-fill
-newpath
-10700 mils 87500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 87200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86300 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 86000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 85700 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 87800 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 88400 mils
-30 mils
-0 360 arc
-fill
-newpath
-12100 mils 87600 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 87300 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 87000 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86700 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86400 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 86100 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 85800 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 85500 mils
-15 mils
-0 360 arc
-fill
-newpath
-12100 mils 88400 mils
-30 mils
-0 360 arc
-fill
-newpath
-10700 mils 81800 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 79700 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 79400 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 80300 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 84800 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 84500 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 84200 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83900 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83600 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83300 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 83000 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 85100 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82400 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82100 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 82700 mils
-15 mils
-0 360 arc
-fill
-newpath
-10700 mils 81700 mils
-30 mils
-0 360 arc
-fill
-newpath
-18300 mils 79400 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 79100 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 78800 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 78500 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 81700 mils
-30 mils
-0 360 arc
-fill
-newpath
-18300 mils 86000 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 86300 mils
-15 mils
-0 360 arc
-fill
-newpath
-18300 mils 86800 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 81300 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85300 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85600 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85900 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86200 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86500 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 86800 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 85000 mils
-15 mils
-0 360 arc
-fill
-newpath
-26500 mils 84700 mils
-15 mils
-0 360 arc
-fill
-
-showpage
index bb137d3..d01af43 100644 (file)
@@ -39,7 +39,7 @@
 
 /** Encapsulates functions used to provide communication between AIC simulator and host
 *      @author Walter Fetter Lages (w.fetter@ieee.org)
-*      @version AIC-1.3.0
+*      @version AIC-1.5.0
 */
 class AIC_HOST
 {
@@ -47,6 +47,7 @@ class AIC_HOST
        protected:
        
        double u;       ///< Motor voltage
+       double ref;     ///< PID reference
        int status;     ///< Current Status 
        
        public:
@@ -88,7 +89,13 @@ class AIC_HOST
 /** Gets the voltage to be applied to motor received with the last command
 *      @return voltage
 */     
-       double voltage(void) const;     
+       double voltage(void) const;
+       
+/** Gets the reference for PID associtated to motor received with the last command
+*      @return reference
+*      @since AIC-1.6.0
+*/     
+       double reference(void) const;   
 
 /** Thrown by AIC_HOST errors
 *      @author Walter Fetter Lages (w.fetter@ieee.org)
index be79e86..ef77c1a 100644 (file)
@@ -218,7 +218,7 @@ extern float encoder_read(void);
 *              the encoder was cleared
 *      @since AIC-1.5.0
 */
-extern float encoder_read_and_Clear(void);
+extern float encoder_read_and_clear(void);
 
 /** Turns an AIC on
 *      @since AIC-1.5.0
index 4c0c5fd..6eca0c9 100644 (file)
@@ -52,6 +52,7 @@ enum AIC_COMMAND
        AIC_MOTOR_OFF=          0x02,   ///< Turns motor off
        AIC_BRAKE_APPLY=        0x03,   ///< Aplies brake
        AIC_MOTOR_ACT=          0x10,   ///< Actuates motor with given voltage
+       AIC_MOTOR_REF=          0x15,   ///< Sets the reference for the motor PID
        AIC_STATUS=             0x20,   ///< Status identification
        AIC_BRAKE_RELEASE=      0x30,   ///< Releases brake
        AIC_MOTOR_ON=           0x31    ///< Turns motor on             
index 11e9995..18fe1ff 100644 (file)
@@ -29,7 +29,7 @@
 
 /** AIC Hardware Interface
 */
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 /** Provides access to all devices in an Actuator Interface Card
 *      @author Walter Fetter Lages (w.fetter@ieee.org)
@@ -72,6 +72,7 @@ public class AIC
        public void off()
        {
                motor.set(0);
+               brake.apply();
                motor.off();
                encoder.clear();
        }
index a258c9e..26e7a21 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 /** @addtogroup aichardware
 @{
index 518f321..8df39e3 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 /** @addtogroup aichardware
 @{
index a80695f..25a70cf 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 /** @addtogroup aichardware
 @{
index 789023f..b991ba4 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 import java.lang.*;
 
@@ -31,7 +31,7 @@ import java.lang.*;
 @{
 */
 
-/** Provides access host computer through a devived class
+/** Provides access to host computer through a derived class
 *      @see HostCAN
 *      @see HostUDP
 *      @author Walter Fetter Lages (w.fetter@ieee.org)
@@ -57,6 +57,10 @@ abstract public class Host
 /** Motor actuate command
 */
        public static final int MOTOR_ACT=0x10;
+       
+/** Motor PID reference command
+*/
+       public static final int MOTOR_REF=0x15; 
 
 /** Status message identifier
 */
@@ -81,6 +85,10 @@ abstract public class Host
 /** Voltage aplied to motors
 */
        protected double u=0;
+       
+/** Reference for PID associated to motors
+*/
+       protected double ref=0; 
 
 /** Brake and motor status
 */
@@ -121,6 +129,15 @@ abstract public class Host
        {
                return u;
        }
+       
+/** Gets PID reference
+*      @return PID reference
+*      @since AIC-1.6.0
+*/
+       public double reference()
+       {
+               return ref;
+       }       
 }
 /**
 @}
index c7c9549..74dd1d0 100644 (file)
@@ -25,7 +25,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 import com.dalsemi.comm.*;
 import com.dalsemi.system.*;
index 22e133d..ebb4797 100644 (file)
@@ -24,7 +24,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 import com.dalsemi.tininet.*;
 import java.net.*;
index db01ae1..8961024 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 /** @addtogroup aichardware
 @{
index 17843a8..5f9e8cb 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 /** @addtogroup aichardware
 @{
index b571a2f..1ccef6f 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 /** @addtogroup aichardware
 @{
index 42018b2..9606744 100644 (file)
@@ -23,7 +23,7 @@
 
 *******************************************************************************/
 
-package br.ufrgs.eletro.AIC;
+package br.ufrgs.ece.AIC;
 
 /** @addtogroup aichardware
 @{
index 06b0f4a..a5e43c1 100644 (file)
@@ -2,7 +2,7 @@
 
                        Actuator Interface Card
                        AIC Host Interface Simulation
-       Copyright (C) 2003 Walter Fetter Lages <w.fetter@ieee.org>
+       Copyright (C) 2003, 2005 Walter Fetter Lages <w.fetter@ieee.org>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -28,6 +28,7 @@
 AIC_HOST::AIC_HOST(void)
 {
        u=0;
+       ref=0;
        status=0;
 }
 
@@ -47,3 +48,8 @@ double AIC_HOST::voltage(void) const
        return u;
 }
 
+double AIC_HOST::reference(void) const
+{
+       return ref;
+}
+
index c9c5266..8440771 100644 (file)
@@ -27,11 +27,8 @@ encoder.mpp: encoder.a51 ${TINIINC} ${ASMINC}/aicpld.inc
 pwm.mpp: pwm.a51 ${TINIINC} ${ASMINC}/aicpld.inc
        ${ASMMACRO} -I${ASMINC} -e- pwm.a51
        
-motor.mpp: motor.a51 ${TINIINC}
-       ${ASMMACRO} -I${ASMINC} -e- motor.a51   
-
-aicio.mpp.lib: brake.mpp index.mpp pwm.mpp encoder.mpp motor.mpp
-       cat brake.mpp index.mpp pwm.mpp encoder.mpp motor.mpp > aicio.mpp.lib
+aicio.mpp.lib: brake.mpp index.mpp pwm.mpp encoder.mpp
+       cat brake.mpp index.mpp pwm.mpp encoder.mpp > aicio.mpp.lib
        
 install:
 
index 2110aea..411fb92 100644 (file)
@@ -36,7 +36,8 @@ void aic_on(void)
 
 void aic_off(void)
 {
-       motor_set(0);
+       motor_set(0.0);
+       brake_apply();
        motor_off();
        encoder_clear();
 }
index ebec810..a2b22d4 100644 (file)
@@ -37,6 +37,8 @@ _ap  EQU 01Dh           ; _ap mapped to R6_B3
 ; Encoder base address
 encoder_base:  db      0,0,0
 encoder_pulses:        db      0,0,0,0
+encoder_rad:   db      0,0,0,0
+encoder_radok: db      0,0,0,0
 
 ; Initializes Encoder
 ; void encoder_initialize(unsigned long base,long pulses);
@@ -195,5 +197,7 @@ encoder_posextend1:
                mov     dpx,r2
                mov     b,r3
 
+               ret
+
                end
 
index d2d8737..31d55a0 100644 (file)
 #include <aicio.h>
 
 extern long encoder_pulses;
+extern float encoder_rad;
+extern int encoder_radok;
+
+static void encoder_setrad(void)
+{
+       encoder_rad=2*M_PI/encoder_pulses;
+       encoder_radok=1;
+}
 
 float encoder_read(void)
 {
-               return ((2*M_PI/encoder_pulses)*encoder_get_count());
+               if(!encoder_radok) encoder_setrad();
+               return (encoder_rad*encoder_get_count());
 }
 
-float encoder_read_and_Clear(void)
+float encoder_read_and_clear(void)
 {
-               return ((2*M_PI/encoder_pulses)*encoder_get_count_and_clear());
+
+               if(!encoder_radok) encoder_setrad();
+               return (encoder_rad*encoder_get_count_and_clear());
 }
index 6627991..f92cd10 100644 (file)
 #define _MOTOR_C
 #include <aicio.h>
 
-static float motor_volt2duty;
+volatile float motor_volt2duty;
+
+void motor_globals(void) _naked
+{
+                       _asm
+motor_volt2duty:       db      0,0,0,0
+                       _endasm;
+}
 
 void motor_initialize(unsigned long baseadd,float voltage,float freq)
 {
        unsigned int count;
+
        motor_volt2duty=0.5/voltage;
-       count=(unsigned int)(REF_FREQ/freq) & 0xffff;
+       count=((unsigned int) (REF_FREQ/freq)) & 0xffff;
        pwm_initialize(baseadd,MIN_COUNT,count);
        pwm_off();
 }
@@ -48,7 +56,7 @@ void motor_on(void)
 {
         pwm_on();
 }
-       
+
 void motor_off(void)
 { 
        pwm_off();
@@ -56,7 +64,9 @@ void motor_off(void)
 
 float motor_set(float voltage)
 {
-       unsigned long dutycycle=((unsigned long)(voltage*motor_volt2duty*1000000))+500000;
+       unsigned long dutycycle;
+       
+       dutycycle=(((long)(voltage*motor_volt2duty*1000000.0))+500000);
        pwm_set_duty(dutycycle);
        return dutycycle;
 }
index e409a6d..a153aef 100644 (file)
@@ -250,8 +250,6 @@ pwm_parmabove:      mov     r3,#00h                 ; forces R3:R2:R1:R0=1000000
                mov     r0,#40h
 
 pwm_parmok:    
-               ; ljmp  pwm_countok             ; debug
-
 
                TINIOS_ENTER_CRITICAL_SECTION
 
@@ -272,14 +270,15 @@ pwm_waitshift:    mov     a,MCNT1
                mov     MCNT1,#00h              ; R1:R0 * max_count using 
                mov     MB,r0                   ; math accelarator
                mov     MB,r1
-               mov     dptr,#pwm_max_count             ; load max_count in R1_B1:R0:B1
+               mov     dptr,#pwm_max_count             ; load max_count in R5:R4
                movx    a,@dptr 
-               mov     R1_B1,a
+               mov     r5,a
                inc     dptr
                movx    a,@dptr
-               mov     R0_B1,a
+               mov     r4,a
                mov     MA,a
-               mov     a,R1_B1
+               mov     a,r5
+
                mov     MA,a
 pwm_waitmult:  mov     a,MCNT1
                jb      ACC.7,pwm_waitmult              ; wait MST cleared
@@ -307,10 +306,12 @@ pwm_waitdiv:      mov     a,MCNT1
                TINIOS_EXIT_CRITICAL_SECTION
 
                clr     c                       ; computes count
-               mov     a,R0_B1
+
+               mov     a,r4
                subb    a,r0
                mov     r0,a
-               mov     a,R1_B1
+               mov     a,r5
+
                subb    a,r1
                mov     r1,a
 
@@ -333,10 +334,12 @@ pwm_waitdiv:      mov     a,MCNT1
                
 
 pwm_countabove:        clr     c                       ; check if count > max_count-min_count  
-               mov     a,R0_B1                 ; computes max_count - min_count
+               
+               mov     a,r4                    ; computes max_count - min_count
+               mov     a,r4
                subb    a,r2
                mov     r2,a
-               mov     a,R1_B1
+               mov     a,r5
                subb    a,r3
                mov     r3,a
                
@@ -351,9 +354,6 @@ pwm_countabove:     clr     c                       ; check if count > max_count-min_count
 
 pwm_countok:   
                
-               ; mov   r0,#250                 ; debug
-               ; mov   r1,#0
-
                LOAD24  #pwm_base               ; get PWM address
 
                mov     a,#TIMER1_8254          ; compute timer 1 address
index d335686..5812241 100644 (file)
@@ -69,7 +69,7 @@ native_initialize:
                lcall   Natlib_LoadPrimitive    ; get second parameter in R3:R2:R1:R0
 
                push    R0_B0
-               push    R1_B1
+               push    R1_B0
 
                clr     a
                lcall   Natlib_LoadPrimitive    ; get first parameter in R3:R2:R1:R0
index 5c41b11..3af8fa8 100644 (file)
@@ -134,7 +134,7 @@ int main(int argc,char *argv[])
                cout << t << "\t";
 #endif
 
-//             y+=aic->encoder.read();
+               y+=aic->encoder.read();
 
                double e=ref(t)-y;
                u=pid.out(e);